-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCISCO-CAT6K-CROSSBAR-MIB
2775 lines (2405 loc) · 93.5 KB
/
CISCO-CAT6K-CROSSBAR-MIB
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
-- *****************************************************************
-- CISCO-CAT6K-CROSSBAR-MIB.my
--
-- Mar 2001, Padma Pullela
-- Nov. 2002, Padma Pullela/Lilian Jiang
-- March 2003, Padma Pullela
-- June 2004, Padma Pullela
--
-- Copyright (c) 2001-2002, 2003-2009 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-CAT6K-CROSSBAR-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Unsigned32,
Gauge32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION,
TruthValue,
DisplayString,
DateAndTime,
TimeStamp
FROM SNMPv2-TC
entPhysicalName,
entPhysicalVendorType,
entPhysicalIndex,
entPhysicalDescr
FROM ENTITY-MIB
Percent
FROM CISCO-QOS-PIB-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoCat6kCrossbarMIB MODULE-IDENTITY
LAST-UPDATED "200902150000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: [email protected]"
DESCRIPTION
"The Catalyst 6000 Crossbar MIB provides instrumentation for
configuration and operation of the crossbar switching fabric
module, and additional functionalities for switching bus
and internal bus, etc.
"
REVISION "200902150000Z"
DESCRIPTION
"Added cc6kxbarErrRcvryPersLinkResGroup and
cc6kxbarErrRcvryChResyncGroup,
cc6kxbarTMSwBusUtilGroup,
cc6kxbarTMSwBusUtilNotifControlGroup,
cc6kxbarTMSwBusUtilNotifObjectGroup,
cc6kxbarTMSwBusUtilNotifGroup,
cc6kxbarTMChUtilGroup,
cc6kxbarTMChUtilNotifControlGroup,
cc6kxbarTMChUtilNotifObjectGroup,
cc6kxbarTMChUtilNotifGroup.
Added two new enumerations 'pfc4' and 'pfc4xl'
in cc6kxbarSysCapPfcOperMode.
Added DISPLAY-HINT in TEXTUAL-CONVENTION
of ModuleSlotNumber and FabricChannelNumber."
REVISION "200712180000Z"
DESCRIPTION
"Added cc6kxbarSysCapPfcOperModeGroup,
cc6kxbarSysCapSwitchResGroup, cc6kxbarChannelUtilGroup1,
cc6kxbarSwBusGroup1, cc6kxbarErrorGroup,
cc6kxbarErrRcvryThresholdGroup and
cc6kxbarErrRcvrySwitchoverGroup."
REVISION "200612190000Z"
DESCRIPTION
"Added cc6kxbarDcefOnlyModeAllowedGroup,
cc6kxbarForceBusModeGroup,
cc6kxbarFlowCtrlNotifCtrlGroup,
cc6kxbarFlowCtrlBusThreshGroup,
cc6kxbarFlowCtrlBusThrNotifGroup
and cc6kxbarBusOnlyModeOperGroup."
REVISION "200411190000Z"
DESCRIPTION
"Added cc6kxbarIntBusCRCErrGroup."
REVISION "200408110000Z"
DESCRIPTION
"Added cc6kxbarIntBusNotifControlGroup and
cc6kxbarIntBusCRCErrNotifGroup."
REVISION "200406110000Z"
DESCRIPTION
"Added cc6kxbarTruncatedModeOper Object and changed the
description of cc6kxbarTruncatedModeAllowed and
cc6kxbarMinFabricPresent."
REVISION "200309290000Z"
DESCRIPTION
"Changed the description of cc6kxbarTruncatedModeAllowed and
cc6kxbarMinFabricPresent. Removed default value for
cc6kxbarTruncatedModeAllowed."
REVISION "200304020000Z"
DESCRIPTION
"Changed the SYNTAX and description of cc6kxbarMinFabricPresent
and description of cc6kxbarTruncatedModeAllowed."
REVISION "200212050000Z"
DESCRIPTION
"Added cc6kxbarModuleChannelSpeed, cc6kxbarSwBusSwitchingStatus,
cc6kxbarSwBusFailureDuration, cc6kxbarSwBusNotifEnable
objects and cc6kxbarSwBusStallNotif notification."
REVISION "200106250000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 217 }
ciscoCat6kXbarMIBObjects OBJECT IDENTIFIER
::= { ciscoCat6kCrossbarMIB 1 }
cc6kxbarConfiguration OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 1 }
cc6kxbarStatus OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 2 }
cc6kxbarStatistics OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 3 }
cc6kxbarSwBusObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 4 }
cc6kxbarIntBusObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 5 }
cc6kxbarFlowCtrlObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 6 }
cc6kxbarSystemCapacityObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 7 }
cc6kxbarErrorRecoveryObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 8 }
cc6kxbarTrafficMonitorObjects OBJECT IDENTIFIER
::= { ciscoCat6kXbarMIBObjects 9 }
cc6kxbarTrafficMonitorSwBusObjects OBJECT IDENTIFIER
::= { cc6kxbarTrafficMonitorObjects 1}
cc6kxbarTrafficMonitorChObjects OBJECT IDENTIFIER
::= { cc6kxbarTrafficMonitorObjects 2}
-- Textual Conventions
ModuleSlotNumber ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION "Slot number of the module."
SYNTAX Unsigned32
FabricChannelNumber ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION "Fabric channel number."
SYNTAX Unsigned32
ChannelStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Status of the Channel."
SYNTAX INTEGER {
ok(1),
syncError(2),
heartbeatError(3),
crcError(4),
bufferError(5),
timeoutError(6),
unused(7)
}
-- Configuration objects
cc6kxbarFallbackMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"cc6kxbarFallbackMode controls system fallback to bus-mode
after loss of switching fabric module.
'true' - When the last fabric card is removed
system will adjust the supervisor and
line cards switching mode automatically without
resetting the system. With this feature enabled,
the switch might lose traffic while it's
changing the switching mode.
'false' - All the ports in the system will be
disabled when the last fabric card is removed."
DEFVAL { true }
::= { cc6kxbarConfiguration 1 }
cc6kxbarBusOnlyModeAllowed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether bus mode is administratively enabled on
the device or not."
::= { cc6kxbarConfiguration 2 }
cc6kxbarTruncatedModeAllowed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether truncated mode is
administratively enabled on the device or not."
::= { cc6kxbarConfiguration 3 }
cc6kxbarMinFabricPresent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the minimum number
of switching fabric capable modules to be present in the
system, for any switching fabric capable module to be in
'crossbarmode' indicated by cc6kxbarModuleModeSwitchingMode,
when cc6kxbarTruncatedModeOper is 'false'."
::= { cc6kxbarConfiguration 4 }
cc6kxbarLcdBannerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarLcdBannerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"cc6kxbarLcdBannerTable configures the Lcd banner of the
fabric module."
::= { cc6kxbarConfiguration 5 }
cc6kxbarLcdBannerEntry OBJECT-TYPE
SYNTAX Cc6kxbarLcdBannerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in cc6kxbarLcdBannerTable.
Entries are created by the agent based on the
size of the lcd banner."
INDEX { cc6kxbarLcdBannerIndex }
::= { cc6kxbarLcdBannerTable 1 }
Cc6kxbarLcdBannerEntry ::= SEQUENCE {
cc6kxbarLcdBannerIndex Unsigned32,
cc6kxbarLcdBannerBanner DisplayString,
cc6kxbarLcdBannerMaxSize Unsigned32
}
cc6kxbarLcdBannerIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Object which specifies a unique entry in the
table."
::= { cc6kxbarLcdBannerEntry 1 }
cc6kxbarLcdBannerBanner OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Message that would be displayed on the fabric card LCD.
The size of cc6kxbarLcdBannerBanner should be less than
or equal to the cc6kxbarLcdBannerMaxSize value."
::= { cc6kxbarLcdBannerEntry 2 }
cc6kxbarLcdBannerMaxSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum size of the associated cc6kxbarLcdBannerBanner
object."
::= { cc6kxbarLcdBannerEntry 3 }
cc6kxbarTruncatedModeOper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the truncated mode is
operationally enabled on the device or not.
'true' - With the fabric module present in the system,
cc6kxbarModuleModeSwitchingMode will be
'crossbarmode' for all the fabric capable
modules.
'false'- With the cc6kxbarMinFabricPresent fabric capable
modules and the fabric module present in the system,
cc6kxbarModuleModeSwitchingMode
will be 'crossbarmode' for fabric capable modules."
::= { cc6kxbarConfiguration 6 }
cc6kxbarDcefOnlyModeAllowed OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the dcef mode is enabled on the standby
supervisor or not.
'true' - Setting cc6kxbarDcefOnlyModeAllowed to 'true'
makes the cc6kxbarModuleModeSwitchingMode of
all the active modules to 'dcefmode'.
With the active fabric module present in the system,
with the switch being in stateful switchover mode,
with all the cards that has no distributed Cisco
Express forwarding switching support being
powered down and on some platforms with standby
supervisor ports being shutdown, changing
cc6kxbarDcefOnlyModeAllowed to 'true' will make the
standby supervisor module reloaded and booted up
as distributed forwarding module.
'false'- Setting cc6kxbarDcefOnlyModeAllowed to 'false'
makes the cc6kxbarModuleModeSwitchingMode of the
standby supervisor module to the default value.
Changing cc6kxbarDcefOnlyModeAllowed to 'false'
will make the standby supervisor reloaded and booted
up with the default cc6kxbarModuleModeSwitchingMode."
::= { cc6kxbarConfiguration 7 }
cc6kxbarForceBusMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether some affected modules are forced to be in
'busmode' or not.
'true' - Setting cc6kxbarForceBusMode to 'true' makes the
cc6kxbarModuleModeSwitchingMode of all
the affected modules to 'busmode'. Changing the
cc6kxbarForceBusMode to 'true' will make all the
affected modules reloaded and booted up as
non fabric capable modules.
'false'- Setting cc6kxbarForceBusMode to 'false' makes the
cc6kxbarModuleModeSwitchingMode of all the affected
modules to the default value. Changing
cc6kxbarForceBusMode to 'false' will make all the
affected modules reloaded and booted up with the
default cc6kxbarModuleModeSwitchingMode."
::= { cc6kxbarConfiguration 8 }
cc6kxbarBusOnlyModeOper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the bus mode is operationally enabled on the
device or not.
'true' - Modules are allowed to run in 'busmode'.
'false' - None of the modules are allowed to run in 'busmode'
i.e., All the non-fabric capable modules will
be powered off. Absence of fabric module results
in all the fabric capable modules being powered
off."
::= { cc6kxbarConfiguration 9 }
-- Status objects
cc6kxbarFabricActiveSlot OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cc6kxbarFabricActiveSlot indicates the slot number of the
active switching fabric module. A value of zero indicates
that the active switching fabric module is either powered
down or not present in the chassis."
::= { cc6kxbarStatus 1 }
cc6kxbarFabricBackupSlot OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cc6kxbarFabricBackupSlot indicates the slot number of the
backup switching fabric module. A value of zero indicates
that the backup switching fabric module is either powered
down or not present in the chassis."
::= { cc6kxbarStatus 2 }
cc6kxbarModuleModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarModuleModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"cc6kxbarModuleModeTable indicates the switching mode of each
module in the system."
::= { cc6kxbarStatus 3 }
cc6kxbarModuleModeEntry OBJECT-TYPE
SYNTAX Cc6kxbarModuleModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in cc6kxbarModuleModeTable. The agent creates
an entry when a non switching fabric module
is inserted in the chassis.
The agent destroys an entry when a non switching fabric
module is power down or reset or removed from the chassis."
INDEX { cc6kxbarModuleModeModule }
::= { cc6kxbarModuleModeTable 1 }
Cc6kxbarModuleModeEntry ::= SEQUENCE {
cc6kxbarModuleModeModule ModuleSlotNumber,
cc6kxbarModuleModeSwitchingMode INTEGER
}
cc6kxbarModuleModeModule OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The module slot number."
::= { cc6kxbarModuleModeEntry 1 }
cc6kxbarModuleModeSwitchingMode OBJECT-TYPE
SYNTAX INTEGER {
busmode(1),
crossbarmode(2),
dcefmode(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"cc6kxbarModuleModeSwitchingMode indicates switching mode
of the cc6kxbarModuleModeModule.
'busmode' - Modules in this mode don't use fabric.
Backplane is used for both lookup and data
forwarding.
'crossbarmode' - Modules in this mode use backplane
for forwarding decision and fabric for data
forwarding
'dcefmode' - Modules in this mode use fabric for data
forwarding and local forwarding is enabled."
::= { cc6kxbarModuleModeEntry 2 }
cc6kxbarModuleChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarModuleChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"cc6kxbarModuleChannelTable shows the operational status
of fabric channels. This table will be instantiated only when
cc6kxbarFabricActiveSlot has a valid value other than zero."
::= { cc6kxbarStatus 4 }
cc6kxbarModuleChannelEntry OBJECT-TYPE
SYNTAX Cc6kxbarModuleChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in cc6kxbarModuleChannelTable."
INDEX {
cc6kxbarModuleChannelModule,
cc6kxbarModuleChannelChannel
}
::= { cc6kxbarModuleChannelTable 1 }
Cc6kxbarModuleChannelEntry ::= SEQUENCE {
cc6kxbarModuleChannelModule ModuleSlotNumber,
cc6kxbarModuleChannelChannel FabricChannelNumber,
cc6kxbarModuleChannelModStatus ChannelStatus,
cc6kxbarModuleChannelFabStatus ChannelStatus,
cc6kxbarModuleChannelSpeed Gauge32
}
cc6kxbarModuleChannelModule OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The module slot number."
::= { cc6kxbarModuleChannelEntry 1 }
cc6kxbarModuleChannelChannel OBJECT-TYPE
SYNTAX FabricChannelNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fabric channel number of the cc6kxbarModuleChannelModule."
::= { cc6kxbarModuleChannelEntry 2 }
cc6kxbarModuleChannelModStatus OBJECT-TYPE
SYNTAX ChannelStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fabric channel at the
cc6kxbarModuleChannelModule."
::= { cc6kxbarModuleChannelEntry 3 }
cc6kxbarModuleChannelFabStatus OBJECT-TYPE
SYNTAX ChannelStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the fabric channel at the
cc6kxbarFabricActiveSlot."
::= { cc6kxbarModuleChannelEntry 4 }
cc6kxbarModuleChannelSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The speed in mega bits per second of the
cc6kxbarModuleChannelChannel for cc6kxbarModuleChannelModule."
::= { cc6kxbarModuleChannelEntry 5 }
-- Statistics Objects
cc6kxbarStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"cc6kxbarStatisticsTable gives the
fabric channel counters and utilization
information. This table will be instantiated when
cc6kxbarFabricActiveSlot has a valid value other than
zero."
::= { cc6kxbarStatistics 1 }
cc6kxbarStatisticsEntry OBJECT-TYPE
SYNTAX Cc6kxbarStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in cc6kxbarStatisticsTable."
INDEX {
cc6kxbarStatisticsModule,
cc6kxbarStatisticsChannel
}
::= { cc6kxbarStatisticsTable 1 }
Cc6kxbarStatisticsEntry ::= SEQUENCE {
cc6kxbarStatisticsModule ModuleSlotNumber,
cc6kxbarStatisticsChannel FabricChannelNumber,
cc6kxbarStatisticsInErrors Counter32,
cc6kxbarStatisticsOutErrors Counter32,
cc6kxbarStatisticsOutDropped Counter32,
cc6kxbarStatisticsInUtil Percent,
cc6kxbarStatisticsOutUtil Percent,
cc6kxbarStatisticsPeakInUtil Percent,
cc6kxbarStatisticsPeakTmInUtil DateAndTime,
cc6kxbarStatisticsPeakOutUtil Percent,
cc6kxbarStatisticsPeakTmOutUtil DateAndTime
}
cc6kxbarStatisticsModule OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The module slot number."
::= { cc6kxbarStatisticsEntry 1 }
cc6kxbarStatisticsChannel OBJECT-TYPE
SYNTAX FabricChannelNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fabric channel number associated with the
cc6kxbarStatisticsModule."
::= { cc6kxbarStatisticsEntry 2 }
cc6kxbarStatisticsInErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error packets received on
cc6kxbarStatisticsChannel for cc6kxbarStatisticsModule
since this entry was last initialized."
::= { cc6kxbarStatisticsEntry 3 }
cc6kxbarStatisticsOutErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error packets transmitted on
cc6kxbarStatisticsModule through the
cc6kxbarStatisticsChannel since this entry was
last initialized."
::= { cc6kxbarStatisticsEntry 4 }
cc6kxbarStatisticsOutDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of dropped packets transmitted on the
cc6kxbarStatisticsChannel for cc6kxbarStatisticsModule
since this entry was last initialized."
::= { cc6kxbarStatisticsEntry 5 }
cc6kxbarStatisticsInUtil OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input utilization of the cc6kxbarStatisticsChannel for
cc6kxbarStatisticsModule."
::= { cc6kxbarStatisticsEntry 6 }
cc6kxbarStatisticsOutUtil OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output utilization of the cc6kxbarStatisticsChannel for
cc6kxbarStatisticsModule."
::= { cc6kxbarStatisticsEntry 7 }
cc6kxbarStatisticsPeakInUtil OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the peak value of cc6kxbarStatisticsInUtil of the
cc6kxbarStatisticsChannel for cc6kxbarStatisticsModule."
::= {cc6kxbarStatisticsEntry 8}
cc6kxbarStatisticsPeakTmInUtil OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the time of most recent change in the corresponding
instance value of cc6kxbarStatisticsPeakInUtil."
::= {cc6kxbarStatisticsEntry 9}
cc6kxbarStatisticsPeakOutUtil OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the peak value of cc6kxbarStatisticsOutUtil of the
cc6kxbarStatisticsChannel for cc6kxbarStatisticsModule."
::= {cc6kxbarStatisticsEntry 10}
cc6kxbarStatisticsPeakTmOutUtil OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the time of most recent change in the corresponding
instance value of cc6kxbarStatisticsPeakOutUtil."
::= {cc6kxbarStatisticsEntry 11}
cc6kxbarErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarErrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"cc6kxbarErrorTable provides the fabric channel error
information. This table will be instantiated only when
cc6kxbarFabricActiveSlot has a valid value other than zero."
::= { cc6kxbarStatistics 2 }
cc6kxbarErrorEntry OBJECT-TYPE
SYNTAX Cc6kxbarErrorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in cc6kxbarErrorTable for a specific fabric channel
on a specific module."
INDEX { cc6kxbarErrorModule, cc6kxbarErrorChannel }
::= { cc6kxbarErrorTable 1 }
Cc6kxbarErrorEntry ::= SEQUENCE {
cc6kxbarErrorModule ModuleSlotNumber,
cc6kxbarErrorChannel FabricChannelNumber,
cc6kxbarErrorModuleCrc Gauge32,
cc6kxbarErrorModuleHbeat Gauge32,
cc6kxbarErrorModuleSync Gauge32,
cc6kxbarErrorModuleDDRSync Gauge32,
cc6kxbarErrorChannelSync Gauge32,
cc6kxbarErrorChannelBuffer Gauge32,
cc6kxbarErrorChannelTimeout Gauge32
}
cc6kxbarErrorModule OBJECT-TYPE
SYNTAX ModuleSlotNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The module slot number."
::= { cc6kxbarErrorEntry 1 }
cc6kxbarErrorChannel OBJECT-TYPE
SYNTAX FabricChannelNumber
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fabric channel number associated with the
cc6kxbarErrorModule."
::= { cc6kxbarErrorEntry 2 }
cc6kxbarErrorModuleCrc OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of CRC error packets for the
cc6kxbarErrorChannel of the cc6kxbarErrorModule."
::= { cc6kxbarErrorEntry 3 }
cc6kxbarErrorModuleHbeat OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of heartbeat misses detected
for the cc6kxbarErrorChannel of the cc6kxbarErrorModule."
::= { cc6kxbarErrorEntry 4 }
cc6kxbarErrorModuleSync OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of times cc6kxbarErrorModule could
not sync to the active switching fabric module."
::= { cc6kxbarErrorEntry 5 }
cc6kxbarErrorModuleDDRSync OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of DDR(Double Data Rate) channel
sync errors for the cc6kxbarErrorChannel of the
cc6kxbarErrorModule."
::= { cc6kxbarErrorEntry 6 }
cc6kxbarErrorChannelSync OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of sync errors received at
cc6kxbarErrorChannel."
::= { cc6kxbarErrorEntry 7 }
cc6kxbarErrorChannelBuffer OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of times the memory buffer for
cc6kxbarErrorChannel of the cc6kxbarErrorModule is full."
::= { cc6kxbarErrorEntry 8 }
cc6kxbarErrorChannelTimeout OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of timeouts for input from
the cc6kxbarErrorChannel of the cc6kxbarErrorModule."
::= { cc6kxbarErrorEntry 9 }
-- Switching Bus Objects
cc6kxbarSwBusSwitchingStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
stalled(2),
isolated(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current switching status of the
switching bus on the system.
normal -- the switching bus is under normal
packet switching operation.
stalled -- the switching bus has stopped packet
switching but is still attached to
the system, i.e., the switching bus
is stalled.
isolated -- the switching bus has stopped packet
switching and is detached from
the system, i.e., the switching bus
is isolated.
The object is only instantiated on systems which
support switching bus switching detection feature."
::= { cc6kxbarSwBusObjects 1 }
cc6kxbarSwBusFailureDuration OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the failure duration of the switching
bus since the switching bus has transitioned
out of the normal(1) state as monitored by
cc6kxbarSwBusSwitchingStatus. If the object
value of cc6kxbarSwBusSwitchingStatus is
normal(1), then the object value of
cc6kxbarSwBusFailureDuration should be zero.
The object is only instantiated on systems which
support switching bus switching detection feature."
::= { cc6kxbarSwBusObjects 2 }
cc6kxbarSwBusNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the notification
cc6kxbarSwBusStatusChangeNotif should be generated
when there is change in the switching status of the
switching bus as monitored by
cc6kxbarSwBusSwitchingStatus.
The object is only instantiated on systems which
support switching bus switching detection feature."
::= { cc6kxbarSwBusObjects 3 }
cc6kxbarSwBusUtilization OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the percentage of bandwidth utilization
of the switching bus."
::= { cc6kxbarSwBusObjects 4 }
cc6kxbarSwBusPeakUtilization OBJECT-TYPE
SYNTAX Percent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the peak percentage value of bandwidth
utilization of the switching bus since the system
started."
::= { cc6kxbarSwBusObjects 5 }
cc6kxbarSwBusPeakTimeUtil OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the time at which the peak percentage value
of bandwidth utilization of the switching bus value
occurred."
::= { cc6kxbarSwBusObjects 6 }
-- Internal Bus Objects
cc6kxbarIntBusNotifEnable OBJECT-TYPE
SYNTAX BITS {
intBusCRCErrExcd(0),
intBusCRCErrRcvrd(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the generation of a specified
notification for internal bus is enabled or not.
If a bit corresponding to a notification is set to
1, then that notification can be generated.
intBusCRCErrExcd -- the cc6kxbarIntBusCRCErrExcdNotif
notification.
intBusCRCErrRcvrd -- the cc6kxbarIntBusCRCErrRcvrdNotif
notification.
"
::= { cc6kxbarIntBusObjects 1 }
cc6kxbarIntBusCRCErrTable OBJECT-TYPE
SYNTAX SEQUENCE OF Cc6kxbarIntBusCRCErrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing internal bus CRC error information
on a list of physical entities (such as modules)."
::= { cc6kxbarIntBusObjects 2 }
cc6kxbarIntBusCRCErrEntry OBJECT-TYPE
SYNTAX Cc6kxbarIntBusCRCErrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing internal bus CRC error information
on a physical entity (such as a module)."
INDEX { entPhysicalIndex }
::= { cc6kxbarIntBusCRCErrTable 1 }
Cc6kxbarIntBusCRCErrEntry ::= SEQUENCE {
cc6kxbarIntBusCRCErrExcdStatus TruthValue,
cc6kxbarIntBusCRCErrExcdCount Unsigned32
}
cc6kxbarIntBusCRCErrExcdStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the internal bus CRC error
on a physical entity is currently exceeding the fatal
threshold or not."
::= { cc6kxbarIntBusCRCErrEntry 1 }
cc6kxbarIntBusCRCErrExcdCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of times the internal bus CRC
error on a physical entity has exceeded the fatal
threshold."
::= { cc6kxbarIntBusCRCErrEntry 2 }
-- Flow Control Objects
cc6kxbarFlowCtrlNotifEnable OBJECT-TYPE
SYNTAX BITS {
busThreshExcd(0)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether the generation of a specified
notification for flow control feature is enabled or
not. If a bit corresponding to a notification is set
to one, then that notification can be generated.
busThreshExcd -- the cc6kxbarFlowCtrlBusThrExcdNotif
notification.
"
::= { cc6kxbarFlowCtrlObjects 1 }
cc6kxbarFlowCtrlBusFIFOThrMode OBJECT-TYPE
SYNTAX INTEGER {
off(1),
on(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the mode configuration of the system bus
flow control FIFO threshold.
off -- the flow control FIFO threshold is set to the
original value defined by the system.
on -- the flow control FIFO threshold is set to the
lower value defined by the system.
auto -- the system starts monitoring the system bus
flow control FIFO threshold and will change the
flow control FIFO threshold from the original
value to the lower value when the system detects
the first occurrence of the threshold exceeding
on a physical entity (such as a module) over
the system allowed limit."
::= { cc6kxbarFlowCtrlObjects 2 }
cc6kxbarFlowCtrlBusFIFOThrValue OBJECT-TYPE
SYNTAX INTEGER {
original(1),
lower(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current value of the system bus flow
control FIFO threshold, whether it is the original
value or the lower value."
::= { cc6kxbarFlowCtrlObjects 3 }