-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-6400-CHASSIS-MIB-V1SMI.my
1430 lines (1286 loc) · 44.5 KB
/
CISCO-6400-CHASSIS-MIB-V1SMI.my
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MIB file created 28-Oct-2010 15:02:34, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-6400-CHASSIS-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-6400-CHASSIS-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
RowStatus, DisplayString
FROM SNMPv2-TC-v1
ifIndex
FROM IF-MIB
ciscoExperiment
FROM CISCO-SMI
Counter
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
cisco6400ChassisMIB OBJECT IDENTIFIER ::= { ciscoExperiment 27 }
-- MODULE-IDENTITY
-- LastUpdated
-- 200110220000Z
-- OrgName
-- Cisco Systems, Inc.
-- ContactInfo
-- Cisco Systems
-- Customer Service
--
-- Postal: 170 W Tasman Drive
-- San Jose, CA 95134
-- USA
--
-- Tel: +1 800 553-NETS
--
-- E-mail: [email protected]
-- Descr
-- Add nrpSwitchoverAlarm,
-- nrpSecondaryFailureAlarm,
-- nrpSecondaryRemovedAlarm, and
-- nrpMismatchAlarm.
-- RevDate
-- 200110220000Z
-- RevDescr
-- Add nrpBootUpAlarm. Deprecated cisco6400ChassisMIBCompliance
-- and cisco6400RedundantGroup. Created cisco6400ChassisMIBCompliance
-- and cisco6400RedundantGroup2.
-- RevDate
-- 200105101234Z
-- RevDescr
-- Add diskAlarm and imageAlarm.
-- RevDate
-- 200009251234Z
-- RevDescr
-- 6400 Chassis MIB.
-- RevDate
-- 9903220000Z
-- RevDescr
-- Add Signal Fail BER.
-- RevDate
-- 9808050000Z
-- RevDescr
-- Update chassis alarm threshold setup range & main-cpu auto-sync
-- flags.
-- RevDate
-- 9712100000Z
-- RevDescr
-- Initial version of this MIB module.
cisco6400ChassisMIBObjects OBJECT IDENTIFIER ::= { cisco6400ChassisMIB 1 }
c64RedundantGroup OBJECT IDENTIFIER ::= { cisco6400ChassisMIBObjects 1 }
c64ChassisGroup OBJECT IDENTIFIER ::= { cisco6400ChassisMIBObjects 2 }
c64TelcoAlarmMgmt OBJECT IDENTIFIER ::= { c64ChassisGroup 1 }
cisco6400ChassisMIBNotificationPrefix OBJECT IDENTIFIER ::= { cisco6400ChassisMIB 2 }
cisco6400ChassisMIBNotification OBJECT IDENTIFIER ::= { cisco6400ChassisMIBNotificationPrefix 0 }
cisco6400ChassisMIBConformance OBJECT IDENTIFIER ::= { cisco6400ChassisMIB 3 }
cisco6400ChassisMIBCompliances OBJECT IDENTIFIER ::= { cisco6400ChassisMIBConformance 1 }
cisco6400ChassisMIBGroups OBJECT IDENTIFIER ::= { cisco6400ChassisMIBConformance 2 }
APSEventStatus ::= INTEGER {
good(1),
noHardware(2),
doNotRevert(3),
manualSwitch(4),
signgalDegrade(5),
forceSwitch(6),
lockOut(7),
adminDown(8)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- APS event status of APS channel.
c64MainCPUConfigAutoSync OBJECT-TYPE
SYNTAX INTEGER(0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is an OR bit mask indicating various
auto-sync configuration:
Bit 0, if set, indicates that standard syncable
objects are set for auto-sync. The standard
set of objects may evolve from software release
to release. In release 1, this set is
startup-config, bootvar and config-register.
This flag is independent to the other flag
settings described below.
Bit 1, if set, indicates startup-config is set for
auto-sync
Bit 2. if set, indicates running-config is set for
auto-sync. This flag is not supported in
revison 1.
Bit 3, if set, indicates bootvar is set for auto-sync
Bit 4, if set, indicates config-register is set for
auto-sync.
Bit 5..31, are reserved for future expansion. Setting
any bit in this range will have no effect."
::= { c64RedundantGroup 1 }
c64MainCPUSwitchOver OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
forceOver(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object, when read always return a value of
ok(1).
Setting this object to forceOver(2) will have:
For a redundant NSP-A|B, force them to exchange the
primary and secondary roles. The primary NSP will
be reloaded."
::= { c64RedundantGroup 2 }
c64SlotConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF C64SlotConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant slot-pair entries.
A managment station that wish to create the redundancy
entry other than NSP should perform the following
steps:
Get the ciscoLS1010ModuleIndex from
ciscoLS1010ModuleTable which are mapped to the
corresponding pair of the physical slots to be
configured for redundancy.
Use the pair of the ciscoLS1010ModuleIndex
and a unique entry index to create table entry.
Only the adjacent slots can be configured for
redundancy."
::= { c64RedundantGroup 3 }
c64SlotConfigEntry OBJECT-TYPE
SYNTAX C64SlotConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing information for a particular pair
of redundant slots. The object value of
c64Slot1Index & c64Slot2Index refer to
the pair of ciscoLS1010ModuleIndex in
ciscoLS1010ModuleTable to be configured as redundant."
INDEX { c64SlotConfigModule1Index, c64SlotConfigModule2Index }
::= { c64SlotConfigTable 1 }
C64SlotConfigEntry ::= SEQUENCE {
c64SlotConfigModule1Index INTEGER,
c64SlotConfigModule2Index INTEGER,
c64Slot1Name DisplayString,
c64Slot2Name DisplayString,
c64SlotConfigPrefIndex INTEGER,
c64SlotSwitchOver INTEGER,
c64SlotConfigStatus RowStatus
}
c64SlotConfigModule1Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first slot in the pair of
slots to be configured for the redundacy. Its value
is obtained from ciscoLS1010ModuleIndex in
ciscoLS1010ModuleTable."
::= { c64SlotConfigEntry 1 }
c64SlotConfigModule2Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second slot in the pair of
slots to be configured for the redundacy. Its value
is the obtained from ciscoLS1010ModuleIndex in
ciscoLS1010ModuleTable."
::= { c64SlotConfigEntry 2 }
c64Slot1Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of slot#1 in the pair of slots
configured to redundant."
::= { c64SlotConfigEntry 3 }
c64Slot2Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of slot#2 in the pair of slots
configured to redundant."
::= { c64SlotConfigEntry 4 }
c64SlotConfigPrefIndex OBJECT-TYPE
SYNTAX INTEGER {
primarySlot(1),
secondarySlot(2)
}
ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specify which slot in the pair
of redundancy to be used as prefer slot.
The value of:
primarySlot(1) is telling the system use the slot
referred by c64Slot1Index as preferred slot.
secondarySlot(2) is to use the slot referred by
c64Slot2Index.
The default is primarySlot(1).
The slot prefer feature is removed and the
the object is deprecated"
::= { c64SlotConfigEntry 5 }
c64SlotSwitchOver OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
forceOver(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object, when read always return a value of
ok(1).
Setting this object to forceOver(2) will have:
For a redundant NRP slot pair, force them
to exchange the primary and secondary roles.
For a redundant carrier slot pair, force both
the subslots (line cards) to exchange the
primary(working) and secondary(protection) roles."
::= { c64SlotConfigEntry 6 }
c64SlotConfigStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status object for the c64SlotTable entry."
::= { c64SlotConfigEntry 7 }
c64SubSlotConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF C64SubSlotConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant subslot pair entries.
A managment station that wish to create the
subslot redundancy entry should perform the
following steps:
Get the ciscoLS1010ModuleIndex &
ciscoLS1010SubModuleIndex from
ciscoLS1010SubModuleTable which are mapped to the
corresponding pair of the physical sub-slots to be
configured for the redundancy.
Use the pair of the ciscoLS1010ModuleIndex &
ciscoLS1010SubModuleIndex and an unique entry index
to create table entry. Only the adjacent sub-slots
can be configured for redundancy."
::= { c64RedundantGroup 5 }
c64SubSlotConfigEntry OBJECT-TYPE
SYNTAX C64SubSlotConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing information for a particular pair
of redundant subslots."
INDEX { c64SubSlotConfigModule1Index, c64SubSlotConfigSubModule1Index, c64SubSlotConfigModule2Index, c64SubSlotConfigSubModule2Index, c64SubSlotRedundantIndex }
::= { c64SubSlotConfigTable 1 }
C64SubSlotConfigEntry ::= SEQUENCE {
c64SubSlotRedundantIndex INTEGER,
c64SubSlotConfigModule1Index INTEGER,
c64SubSlotConfigSubModule1Index INTEGER,
c64SubSlotConfigModule2Index INTEGER,
c64SubSlotConfigSubModule2Index INTEGER,
c64SubSlot1Name DisplayString,
c64SubSlot2Name DisplayString,
c64SubSlotConfigPrefIndex INTEGER,
c64SubSlotSwitchOver INTEGER,
c64SubSlotConfigStatus RowStatus
}
c64SubSlotRedundantIndex OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An arbitrary integer-value to uniquely identify
a redundant slot pair. This value must remain
constant while the NSP is running. It is not
guarenteed to be constant between reboots or
switchover of the NSP."
::= { c64SubSlotConfigEntry 1 }
c64SubSlotConfigModule1Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first slot in the pair of
sub-slots to be configured for the redundancy. Its
value is obtained from the ciscoLS1010ModuleIndex in
ciscoLS1010SubModuleTable."
::= { c64SubSlotConfigEntry 2 }
c64SubSlotConfigSubModule1Index OBJECT-TYPE
SYNTAX INTEGER(0..1)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first sub-slot in the pair
of sub-slots to be configured for the redundancy. Its
value is obtained from the ciscoLS1010SubModuleIndex
in ciscoLS1010SubModuleTable."
::= { c64SubSlotConfigEntry 3 }
c64SubSlotConfigModule2Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second slot in the pair of
sub-slots to be configured for the redundancy. Its
value is obtained from the ciscoLS1010ModuleIndex
in ciscoLS1010SubModuleTable."
::= { c64SubSlotConfigEntry 4 }
c64SubSlotConfigSubModule2Index OBJECT-TYPE
SYNTAX INTEGER(0..1)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second sub-slot in the pair
of sub-slots to be configured for the redundancy. Its
value is obtained from the ciscoLS1010SubModuleIndex
in ciscoLS1010SubModuleTable."
::= { c64SubSlotConfigEntry 5 }
c64SubSlot1Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is to reflect the string name in the
format of #/# for the sub-slot1 in the pair of
redundancy. This is produced by agent when
the table entry is created."
::= { c64SubSlotConfigEntry 6 }
c64SubSlot2Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is to reflect the string name in the
format of #/# for the sub-slot2 in the pair of
redundancy. This is produced by agent when table
entry is created."
::= { c64SubSlotConfigEntry 7 }
c64SubSlotConfigPrefIndex OBJECT-TYPE
SYNTAX INTEGER {
primarySubslot(1),
secondarySubslot(2)
}
ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specify which sub-slot in the pair of
redundancy to be used as prefer sub-slot.
The value of:
primarySubslot(1) is telling the system use the subslot
referred by c64SubSlotConfigModule1Index
and c64SubSlotConfigSubModule1Index as
preferred sub-slot.
secondarySubslot(2) is to use the sub-slot referred by
c64SubSlotConfigModule2Index and
c64SubSlotConfigSubModule2Index.
The default is primarySubslot(1).
The subslot prefer feature is removed and the object
is deprecated"
::= { c64SubSlotConfigEntry 8 }
c64SubSlotSwitchOver OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
forceOver(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object, when read always return a value of
ok(1). Setting this object to forceOver(2)
will have the result of:
For a redundant subslot card pair, force the
current master and slave cards (for NRPs) or
working and protection cards (for linecards) to
exchange roles."
::= { c64SubSlotConfigEntry 9 }
c64SubSlotConfigStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status object for c64SubSlotConfigTable
entry. "
::= { c64SubSlotConfigEntry 10 }
c64PortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF C64PortConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of redundant port-pair entries.
A management station that wish to create the
redundant entry should perform the following
steps:
Get the ciscoLS1010ModuleIndex,
ciscoLS1010SubModuleIndex and
ciscoLS1010PortIndex
from ciscoLS1010PortTable which are mapped to
the corresponding pair of the physical ports to
be configured for the redundancy.
Lookup the c64SubSlotConfigTable to see if
the corresponding sub-slots has been configured
for redundancy. If yes, get the entry's
c64SubSlotRedundantIndex. Otherwise the
application should abort this port redundancy
configuration.
Use the c64SubSlotRedundantIndex value and
ciscoLS1010ModuleIndex, ciscoLS1010SubModuleIndex and
ciscoLS1010PortIndex to create table entry. Only
the adjacent ports in the adjacent sub-slots can
be configured for redundancy."
::= { c64RedundantGroup 6 }
c64PortConfigEntry OBJECT-TYPE
SYNTAX C64PortConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing information for a particual pair of
redundant ports."
INDEX { c64PortConfigModule1Index, c64PortConfigSubModule1Index, c64PortConfigPort1Index, c64PortConfigModule2Index, c64PortConfigSubModule2Index, c64PortConfigPort2Index, c64SubSlotRedundantIndex }
::= { c64PortConfigTable 1 }
C64PortConfigEntry ::= SEQUENCE {
c64PortConfigModule1Index INTEGER,
c64PortConfigSubModule1Index INTEGER,
c64PortConfigPort1Index INTEGER,
c64PortConfigModule2Index INTEGER,
c64PortConfigSubModule2Index INTEGER,
c64PortConfigPort2Index INTEGER,
c64Port1Name DisplayString,
c64Port2Name DisplayString,
c64PortConfigPrefIndex INTEGER,
c64PortSwitchOver INTEGER,
c64PortConfigStatus RowStatus
}
c64PortConfigModule1Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first slot which contain
the port to be configured as the redundancy pair.
Its value is obtained from the ciscoLS1010ModuleIndex
in ciscoLS1010PortTable."
::= { c64PortConfigEntry 1 }
c64PortConfigSubModule1Index OBJECT-TYPE
SYNTAX INTEGER(0..1)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first sub-slot which contain
the port to be configured as the redundancy pair.
Its value is obtained from ciscoLS1010SubModuleIndex
in ciscoLS1010PortTable."
::= { c64PortConfigEntry 2 }
c64PortConfigPort1Index OBJECT-TYPE
SYNTAX INTEGER(0..255)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the first port in the pair of
ports to be configured for the redundancy.
Its value is obtained from ciscoLS1010PortIndex in
ciscoLS1010PortTable."
::= { c64PortConfigEntry 3 }
c64PortConfigModule2Index OBJECT-TYPE
SYNTAX INTEGER(1..15)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second slot which contain
the port to be configured as the redundancy pair.
Its value is obtained from the ciscoLS1010ModuleIndex
in ciscoLS1010PortTable."
::= { c64PortConfigEntry 4 }
c64PortConfigSubModule2Index OBJECT-TYPE
SYNTAX INTEGER(0..1)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second sub-slot which contain
the port to be configured as the redundancy pair.
Its value is obtained from the
ciscoLS1010SubModuleIndex in ciscoLS1010PortTable."
::= { c64PortConfigEntry 5 }
c64PortConfigPort2Index OBJECT-TYPE
SYNTAX INTEGER(0..255)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specify the second port in the pair of
ports to be configured for the redundancy.
Its value is obtained from the ciscoLS1010PortIndex in
ciscoLS1010PortTable."
::= { c64PortConfigEntry 6 }
c64Port1Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is to reflect the string name in the
format of #/#/# for the port1 in the pair of
redundancy. This is produced by agent when the
table entry is created."
::= { c64PortConfigEntry 7 }
c64Port2Name OBJECT-TYPE
SYNTAX DisplayString
-- Rsyntax OCTET STRING(SIZE(0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object is to reflect the string name in the
format of #/#/# for the port2 in the pair of
redundancy. This is produced by agent when the
table entry is created."
::= { c64PortConfigEntry 8 }
c64PortConfigPrefIndex OBJECT-TYPE
SYNTAX INTEGER {
primaryPort(1),
secondaryPort(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specify which port in the pair of
redundancy to be used as prefer port.
The value of:
primaryPort(1) is telling the system use the port
referred by c64PortConfigModule1Index,
c64PortConfigSubModule1Index and
c64PortConfigPort1Index as preferred port.
secondaryPort(2) is to use the port referred by
c64PortConfigModule2Index,
c64PortConfigSubModule2Index and
c64PortConfigPort2Index.
The default is primaryPort(1)."
::= { c64PortConfigEntry 9 }
c64PortSwitchOver OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
forceOver(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object, when read always return a value of
ok(1). Setting this object to one of the acceptable
values gives the following results:
forceOver(2): Force the current working and
protection ports to exchange roles."
::= { c64PortConfigEntry 10 }
c64PortConfigStatus OBJECT-TYPE
SYNTAX RowStatus
-- Rsyntax INTEGER {
-- active(1),
-- notInService(2),
-- notReady(3),
-- createAndGo(4),
-- createAndWait(5),
-- destroy(6)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status object for c64PortConfigTable
entry."
::= { c64PortConfigEntry 11 }
c64SonetAPSConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF C64SonetAPSConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing all instances of Sonet APS
configuration informations. To configure any APS
objects in this table, the corresponding subslots
pair have to be already configured for redundancy."
::= { c64RedundantGroup 7 }
c64SonetAPSConfigEntry OBJECT-TYPE
SYNTAX C64SonetAPSConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry containing APS information for a particular
interface."
INDEX { ifIndex }
::= { c64SonetAPSConfigTable 1 }
C64SonetAPSConfigEntry ::= SEQUENCE {
c64SonetAPSMode INTEGER,
c64SonetAPSBERThreshold INTEGER,
c64SonetAPSSwitchCmd INTEGER,
c64SonetAPSSFBERThreshold INTEGER
}
c64SonetAPSMode OBJECT-TYPE
SYNTAX INTEGER {
linear(1),
yCable(2),
disable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object is used to set the APS mode on the
corresponding interface referenced by ifIndex object.
The value linear(1) is the APS mode of linear 1+1
nonreverting and unidirectional. This only
true APS mode supported in cisco6400 at FCS.
The value yCable(2) is providing the port hardware
redundancy but not transmission line redundancy and
is not strictly an APS mode."
::= { c64SonetAPSConfigEntry 1 }
c64SonetAPSBERThreshold OBJECT-TYPE
SYNTAX INTEGER(0..150000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is object is used to set the Bit-Error-Rate
threshold at which an APS request of priority
'Signal Degrade' will be posted.
Value of 0 to disable the threshold."
::= { c64SonetAPSConfigEntry 2 }
c64SonetAPSSwitchCmd OBJECT-TYPE
SYNTAX INTEGER {
lockOut(1),
forceWorking(2),
forceProtect(3),
manualWorking(4),
manualProtect(5),
clear(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object when set except clear(4) is used to post
an APS priority request. This request succeeds if no
higher-priority request is posted.
lockOut(1):
locks out the protection channel corresponding
to this entry
forceWorking(2) & manualWorking(4):
post a request to switch away from the
working channel to protection channel of
this entry
forceProtect(3) & manualProtect(5):
post a request to switch away from the
protection channel to working channel of
this entry
clear(6):
Clears all posted APS priority requests in
this channel."
::= { c64SonetAPSConfigEntry 3 }
c64SonetAPSSFBERThreshold OBJECT-TYPE
SYNTAX INTEGER(3..5)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is object is used to set the Signal Fail
Bit-Error-Rate threshold at which an APS
request of priority 'Signal Fail' will be posted.
3 => 10E-3, 4 => 10E-4, 5 => 10E-5"
::= { c64SonetAPSConfigEntry 4 }
c64SonetAPSStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF C64SonetAPSStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table containing APS statistics and alarms
information for each interface."
::= { c64RedundantGroup 8 }
c64SonetAPSStatsEntry OBJECT-TYPE
SYNTAX C64SonetAPSStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A row in the c64SonetAPSStatsTable which corresponds
to the statistics/alarms kept by a particular
APS interface."
INDEX { ifIndex }
::= { c64SonetAPSStatsTable 1 }
C64SonetAPSStatsEntry ::= SEQUENCE {
c64SonetAPSWorkSectionStatus INTEGER,
c64SonetAPSWorkLineStatus INTEGER,
c64SonetAPSWorkPathStatus INTEGER,
c64SonetAPSWorkSectionBIPE Counter,
c64SonetAPSWorkLineBIPE Counter,
c64SonetAPSWorkLineFEBE Counter,
c64SonetAPSWorkPathBIPE Counter,
c64SonetAPSWorkPathFEBE Counter,
c64SonetAPSWorkPortStatus APSEventStatus,
c64SonetAPSProtectSectionStatus INTEGER,
c64SonetAPSProtectLineStatus INTEGER,
c64SonetAPSProtectPathStatus INTEGER,
c64SonetAPSProtectSectionBIPE Counter,
c64SonetAPSProtectLineBIPE Counter,
c64SonetAPSProtectLineFEBE Counter,
c64SonetAPSProtectPathBIPE Counter,
c64SonetAPSProtectPathFEBE Counter,
c64SonetAPSProtectPortStatus APSEventStatus,
c64SonetAPSChannelStatus APSEventStatus
}
c64SonetAPSWorkSectionStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the section level status of
the working channel in APS. The
c64SonetAPSWorkSectionStatus is a bit map represented
as a sum of multiple alarms simultaneously. The
sonetSectionNoDefect should be set if and only if no
other flag is set.
The various bit position are:
1 sonetSectionNoDefect
2 sonetSectionLOS
3 sonetSectionLOF
4 sonetBIPE(BIp-8)"
::= { c64SonetAPSStatsEntry 1 }
c64SonetAPSWorkLineStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the line level status of the
working channel in APS. The
c64SonetAPSWorkLineStatus is a bit map represented as
a sum of multiple alarms simultaneously. The
sonetLineNoDefect should be set if and only if no
other flag is set.
The various bit position are:
1 sonetLineNoDefect
2 sonetLineAIS
3 sonetLineRDI
4 sonetBIPE(BIP-8/24)
5 sonetFEBE"
::= { c64SonetAPSStatsEntry 2 }
c64SonetAPSWorkPathStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the path level status of the
working channel in APS. The
c64SonetAPSWorkPathStatus is a bit map represented as
a sum of multiple alarms simultaneously. The
sonetPathNoDefect should be set if and only if no
other flag is set.
The various bit position are:
1 sonetPathNoDefect
2 sonetPathSTSAIS
3 sonetPathSTSRDI
4 sonetPathSTSLOP
5 sonetBIPE(BIP-8)
6 sonetFEBE
7 sonetPathUnequipped
8 sonetPathSignalLabelMismatch"
::= { c64SonetAPSStatsEntry 3 }
c64SonetAPSWorkSectionBIPE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object counts the number of section BIP-8 errors
in working channel."
::= { c64SonetAPSStatsEntry 4 }
c64SonetAPSWorkLineBIPE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object counts the number of line BIP-8/24 errors
in working channel."
::= { c64SonetAPSStatsEntry 5 }
c64SonetAPSWorkLineFEBE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object counts the number of line
far-end-block-errors in working channel."
::= { c64SonetAPSStatsEntry 6 }
c64SonetAPSWorkPathBIPE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object counts the number of path BIP-8 errors
in working channel."
::= { c64SonetAPSStatsEntry 7 }
c64SonetAPSWorkPathFEBE OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object counts the number of path
far-end-block-errors in working channel."
::= { c64SonetAPSStatsEntry 8 }
c64SonetAPSWorkPortStatus OBJECT-TYPE
SYNTAX APSEventStatus
-- Rsyntax INTEGER {
-- good(1),
-- noHardware(2),
-- doNotRevert(3),
-- manualSwitch(4),
-- signgalDegrade(5),
-- forceSwitch(6),
-- lockOut(7),
-- adminDown(8)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates the last aps event detected
in working port."
::= { c64SonetAPSStatsEntry 9 }
c64SonetAPSProtectSectionStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the section level status of
the protection channel in APS. The
c64SonetAPSProtectSectionStatus is a bit map
represented as a sum of multiple alarms simultaneously.
The sonetSectionNoDefect should be set if and only if
no other flag is set.
The various bit position are:
1 sonetSectionNoDefect
2 sonetSectionLOS
4 sonetSectionLOF
8 sonetBIPE(BIp-8)"
::= { c64SonetAPSStatsEntry 10 }
c64SonetAPSProtectLineStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This variable indicates the line level status of the
protection channel in APS. The
c64SonetAPSProtectLineStatus is a bit map represented
as a sum of multiple alarms simultaneously. The
sonetLineNoDefect should be set if and only if no
other flag is set.
The various bit position are:
1 sonetLineNoDefect
2 sonetLineAIS
4 sonetLineRDI
8 sonetBIPE(BIP-8/24)
16 sonetFEBE"
::= { c64SonetAPSStatsEntry 11 }
c64SonetAPSProtectPathStatus OBJECT-TYPE
SYNTAX INTEGER(1..65535)
ACCESS read-only
STATUS mandatory