-
Notifications
You must be signed in to change notification settings - Fork 1
/
CISCO-STACK-MIB.my
13365 lines (12071 loc) · 576 KB
/
CISCO-STACK-MIB.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
-- *****************************************************************
-- CISCO-STACK-MIB.my
--
-- June 1995, Fei Xu
--
-- Copyright (c) 1995-2012, 2014 by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
--
CISCO-STACK-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, IpAddress, TimeTicks,
Counter32, Counter64, Unsigned32, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue, MacAddress,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
fddimibPORTSMTIndex, fddimibPORTIndex
FROM FDDI-SMT73-MIB
OwnerString, ifName, ifIndex
FROM IF-MIB
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
workgroup
FROM CISCO-SMI
ringStationMacAddress
FROM TOKEN-RING-RMON-MIB
PhysicalIndex
FROM ENTITY-MIB
VlanIndex
FROM CISCO-VTP-MIB;
ciscoStackMIB MODULE-IDENTITY
LAST-UPDATED "201403030000Z"
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
"This MIB provides configuration and runtime status for
chassis, modules, ports, etc. on the Catalyst systems."
REVISION "201403030000Z"
DESCRIPTION
"Modified chassisSysType for new hardwares:
'c6880xle', 'c6807xl', 'c6880x'.
Modified chassisComponentType for new hardwares:
'c6880xFan', 'c6807xlFan', 'c6800xl33vcon'.
Modified chassisPs1Type and chassisPs2Type to include:
'c6880x3kwac', 'c6880x3kwdc', 'c6800xl3kwac'.
Modified moduleType to include new hardwares:
'c6800ia48td', 'c6800ia48fpd',
'c6880x16p10g', 'c6880x', 'c6880xle16p10g', 'c6880xle'.
Modified moduleSubType to include new hardwares:
'c6880xpfc', 'c6880xlepfc', 'c6880xdfc', 'c6880xledfc'.
Modified portType to include:
'e10GBaseDwdm3347', 'e10GBaseDwdm3740',
'e10GBaseDwdm4135', 'e10GBaseDwdm4532',
'e10GBaseDwdm4932', 'e10GBaseDwdm5333',
'e10GBaseDwdm5736', 'e10GBaseDwdm6141',
'e10GBaseACU7M', 'e10GBaseACU10M',
'e1000BaseEXSMD', 'e1000BaseZXSMD',
'e1000BaseTE', 'e1000BaseSXMMD',
'e1000BaseLHSMD', 'e100BaseFXGE'."
REVISION "201206160000Z"
DESCRIPTION
"Modified moduleType to include:
'c7600Es4Tg3cxl', 'c7600Es2Tg3cxl', 'c76EsXt4Tg3cxl',
'c76EsXt2Tg3cxl', 'c7600Es4Tg3c', 'c7600Es2Tg3c',
'c76EsXt4Tg3c', 'c76EsXt2Tg3c', 'wsSvcWism2k9',
'wsSvcAsaSm1', 'wsSvcNam3k9', 'wsSvcAsaSm1k7',
'wsSvcVse1k9', 'vssup2t10g', 'wsx6148ege45at',
'wsx690810g', 'wsx690440g', 'wsx6148egetx',
'wsx6848tx', 'wsx6848sfp', 'wsx6824sfp',
'wsx681610ge', 'wsx681610t'.
Modified moduleSubType to include new hardwares:
'vsf6kpfc4', 'wsf6kdfc4exl', 'c7600Es3cxl',
'c7600Es3c', 'wsf6kdfc4e', 'vsf6kpfc4xl',
'wsf6kdfc4axl', 'wsf6kdfc4a'.
Modified moduleSubType2 to include new hardwares:
'aceModExpnDc', 'wsSvcAppProc1', 'c7600Es4Tg',
'c7600Es2Tg', 'c7600EsItu4TgLk', 'c7600EsItu2TgLk',
'vsf6kmsfc5'.
Modified portType to include:
'e40GBaseEmpty', 'e10GBaseCU1M', 'e10GBaseCU3M',
'e10GBaseCU5M', 'e10GBaseCU7M', 'e10GBaseCUdot3M',
'e10GBaseCU2M', 'e10GBaseCU4M', 'e10GBaseCU6M',
'e10GBaseUSR', 'e10GBaseLRMSM', 'e1000BaseDwdm3346',
'e1000BaseDwdm3739', 'e1000BaseDwdm4134',
'e1000BaseDwdm4532', 'e1000BaseDwdm4931',
'e1000BaseDwdm5332', 'e1000BaseDwdm5736',
'e1000BaseDwdm6141', 'e40GBaseLR', 'e40GBaseSR',
'e40GBaseUnapproved'
Rename 'e10GBaseT' to 'e10GBaseTPluggable'."
REVISION "201002010000Z"
DESCRIPTION
"Modified moduleType to include:
'wsx6708a10ge', 'wsx671610t'."
REVISION "200712120000Z"
DESCRIPTION
"Modified chassisSysType for new hardwares:
'wsc6509ve'.
Modified chassisComponentType for new hardwares:
'wsc6509veFan'.
Modified chassisPs1Type and chassisPs2Type to include:
'pwr6000dc', 'pwr4500dc'.
Modified moduleType to include:
'wssup32pge', 'wssup32p10ge', 'wssvcpisa32', 'wsf6kmsfc2a',
'wsSvcMwam1', 'wsSvcPsd1', 'wsSvcSamiBb', 'vss72010g',
'wsx671610ge'.
Modified moduleSubType to include new hardwares:
'vsf6kpfc3cxl', 'vsf6kpfc3c'.
Modified moduleSubType2 to include new hardwares:
'vsf6kmsfc3', 'me6524msfc2a', 'wssvcpisa32'.
Modified portType to include:
'intrusionProtect', 'e1000BaseSvc', 'e10GBaseSvc',
'e10GBaseLRM', 'e10GBaseT'.
Modified syslogMessageFacility to include:
'dom', 'mvrp'.
Added ipPermitGroup3."
REVISION "200705290000Z"
DESCRIPTION
"Modified moduleType to include 'wsx6066SlbSk9'."
REVISION "200705250000Z"
DESCRIPTION
"Updated chassisPs1Type and chassisPs2Type to include:
'pwr1500dc'.
Modified moduleType to include:
'osm12t3e3', 'osm4GeWanGbicPlus', 'm7600Sip600',
'm7600Sip200', 'm7600Sip400', 'c7600ssc400',
'c7600ssc600', 'esm2x10ge', 'rsp720', 'rsp720base',
'c7600msfc4'.
Updated moduleSubType to include new hardwares:
'm7600pfc3c', 'sip600earl', 'c7600esmdfc3cxl',
'c7600esmdfc3c'.
Updated moduleSubType2 to include new hardwares:
'esm2x10ge', 'c7600msfc4'."
REVISION "200703300000Z"
DESCRIPTION
"Modified chassisSysType to include:
'mec6524gs8s', 'mec6524gt8s', 'cisco7603s'.
Updated chassisPs1Type and chassisPs2Type to include:
'pwr400dc', 'pwr400ac'.
Updated chassisComponentType for new hardwares:
'fan6524', 'fanMod6Shs', 'fanMod9Shs', 'fanMod9St',
'fanMod3Hs'.
Modified moduleType to include:
'mec6524gs8s', 'mec6524gt8s', 'me6524msfc2a',
'wsx670810ge'.
Updated moduleSubType to include new hardwares:
'mec6524pfc3c', 'wsf6700dfc3c', 'wsf6700dfc3cxl'.
Modified VendorIdType to compliance with SNMP v2
format"
REVISION "200510280000Z"
DESCRIPTION
"Modified chassisComponentType to include:
'fanMod4Hs'.
Modified syslogMessageFacility to include:
'eou', 'backup', 'eoam', 'webauth'.
Modified sysErrDisableTimeoutEnable to include:
'ethernetOam', 'gl2ptEoamThresholdExceed'.
Updated chassisPs1Type and chassisPs2Type to include:
'pwr2700dc', 'pwr2700ac4', 'pwr2700dc4', and
'wscac8700we'.
Modified moduleType to include:
'osm4oc3PosMM', 'wsx6196rj21',
'wssup32ge3b', 'wsSvcIpSec1',
'wsx6148arj45', 'wsSvcWebVpnk9',
'ace106500k9', 'ace046500k9',
'wsSvcAdm1k9', 'wsSvcAgm1k9',
'wssup3210ge3b', 'osm2choc12T3SI',
'wsf6700cfc', 'osm8choc3DS0SI'.
Updated portType to include:
'e10GBaseEdc1310', 'e10GBaseSW',
'sslVpn', 'adsm',
'agsm', 'aces',
'e10GBaseZR', 'e100BaseEX',
'e100BaseZX'."
REVISION "200504270000Z"
DESCRIPTION
"Added support of the following objects:
cisco7604sysID, wsc6504esysID
Modified sysEnableStpxTrap to include:
'enabledForInconOnly', 'enabledForRootOnly',
'enabledForLoopOnly', 'enabledForInconRootOnly',
'enabledForInconLoopOnly', 'enabledForRootLoopOnly'
Modified sysErrDisableTimeoutEnable to include:
'camMonitor', 'gl2ptCdpThresholdExceed',
'gl2ptStpThresholdExceed', 'gl2ptVtpThresholdExceed',
'linkRxCrc', 'linkTxCrc',
'linkInErrors', 'packetBufferError'
Updated chassisSysType for new hardwares:
cisco7604 and wsc6504e
Updated chassisPs1Type and chassisPs2Type for new
hardwares:
wscac6000w and pwr2700ac
Updated chassisComponentType for new hardwares:
wsc6506eFan, wsc6509eFan, wsc6503eFan, wsc6000vtte.
Updated moduleType for hardware:
osm2oc48OneDptSSDual, osm2oc48OneDptSIDual,
osm2oc48OneDptSLDual, osm4choc12T3MM,
osm4choc12T3SI, osm8choc12T3MM,
osm8choc12T3SI, osm2choc48T3SS,
osm1choc48T3SI, osm2choc48T3SI,
osm4choc3DS0SI, osm1choc12T1SI,
osm12ct3T1, osm24t3e3,
osm2oc12AtmMMPlus, osm2oc12AtmSIPlus,
osm8oc3PosSLPlus, wsx6516aGbic,
wsx6148getx, wsSvcWlan1k9,
wsSvcAon1k9, wsx6148FeSfp,
wsx65822pa
Updated moduleType for name changed:
wsx61821pa changed to wsx61822pa
Updated moduleSubType to include new hardwares:
wsf6700dfc3a, wsf6kdfc3bxl,
wsf6kpfc3bxl, wsf6700dfc3bxl,
wsf6700dfc3b, wsf6kdfc3b
Updated moduleSubType to include new hardwares:
wssvccmm6e1, wssvccmm6t1,
wssvccmm24fxs, wssvccmmact
Updated portType to include:
e10GBaseWdm1550, e10GBaseLW,
e10GBaseEW, lwa,
aons, e100BaseEmpty,
e100BaseUnknown, e100BaseUnapproved,
e100BaseSX, e100BaseBX10D,
e100BaseBX10U, e1000BaseBX10D,
e1000BaseBX10U, e10GBaseBad
Updated portType for name changed:
posOc48mm changed to posOc48sms
Modified ipPermitAccessType, ipPermitDeniedAccess,
ipPermitAccessTypeEnable to include:
http
Modified syslogMessageFacility to include:
diags
Modified portCpbInlinePower to include:
static
Deprecated sysEnableStpxTrap, replaced by
stpxNotificationEnable in
CISCO-STP-EXTENSIONS-MIB.my
Deprecated radiusServerTable, replaced by
crRadiusServerTable in CISCO-RADIUS-MIB.my
Added new conformance Groups:
optionalSystemTrapGroup1,
authenticationGroup2,
systemTrapGroup2,
notificationGroup."
REVISION "200405140000Z"
DESCRIPTION
"Modified sysEnableBridgeTraps to include:
'enabledForNewRootOnly' and 'enabledForTopoChangeOnly'
Updated moduleType for new hardwares:
wsx2948ggetx, wsx2948ggetxgbrj and wsx6748sfp
Updated moduleSubType for the new harware:
wsf6kpfc3b
Updated moduleSubType2 for the new harware:
wsf6kVpwrGe
Updated portType to include:
e10GBaseSR, e10GBaseCX4,
e1000BaseUnknown and e10GBaseUnknown,
e10GBaseUnapproved, e1000BaseWdmRxOnly,
e1000BaseDwdm3033,e1000BaseDwdm3112,
e1000BaseDwdm3190,e1000BaseDwdm3268,
e1000BaseDwdm3425,e1000BaseDwdm3504,
e1000BaseDwdm3582,e1000BaseDwdm3661,
e1000BaseDwdm3819,e1000BaseDwdm3898,
e1000BaseDwdm3977,e1000BaseDwdm4056,
e1000BaseDwdm4214,e1000BaseDwdm4294,
e1000BaseDwdm4373,e1000BaseDwdm4453,
e1000BaseDwdm4612,e1000BaseDwdm4692,
e1000BaseDwdm4772,e1000BaseDwdm4851,
e1000BaseDwdm5012,e1000BaseDwdm5092,
e1000BaseDwdm5172,e1000BaseDwdm5252,
e1000BaseDwdm5413,e1000BaseDwdm5494,
e1000BaseDwdm5575,e1000BaseDwdm5655,
e1000BaseDwdm5817,e1000BaseDwdm5898,
e1000BaseDwdm5979,e1000BaseDwdm6061,
e10GBaseWdmRxOnly, e10GBaseDwdm3033,
e10GBaseDwdm3112, e10GBaseDwdm3190
e10GBaseDwdm3268, e10GBaseDwdm3425,
e10GBaseDwdm3504, e10GBaseDwdm3582,
e10GBaseDwdm3661, e10GBaseDwdm3819,
e10GBaseDwdm3898, e10GBaseDwdm3977,
e10GBaseDwdm4056, e10GBaseDwdm4214,
e10GBaseDwdm4294, e10GBaseDwdm4373,
e10GBaseDwdm4453, e10GBaseDwdm4612,
e10GBaseDwdm4692, e10GBaseDwdm4772,
e10GBaseDwdm4851, e10GBaseDwdm5012,
e10GBaseDwdm5092, e10GBaseDwdm5172,
e10GBaseDwdm5252, e10GBaseDwdm5413,
e10GBaseDwdm5494, e10GBaseDwdm5575,
e10GBaseDwdm5655, e10GBaseDwdm5817,
e10GBaseDwdm5898, e10GBaseDwdm5979 and
e10GBaseDwdm6061
Modified portAdminSpeed to include:
'autoDetect10100'
Modified syslogMessageFacility to include:
'dhcpsnooping'."
REVISION "200401150000Z"
DESCRIPTION
"Updated workgroup for new hardware:
wsc2948ggetxsysID
Updated chassisSysType for new hardware:
wsc2948ggetx
Updated chassisPs1Type for new hardware:
w156
Updated moduleType for new hardwares:
wsx4148lxmt, wsx4548gbrj45, wsx4548gbrj45v
wsx4248rj21v, wsx4302gb, wsx4248rj45v, wsx6748getx,
wsx670410ge, wsx6724sfp and wsx6148x2rj45
Updated moduleSubType2 for new hardwares:
wsf6kmsfc, wsf6kmsfc2, wsf6kmsfc2a,
wsf6kFe48af, wsf6kGe48af and wsf6kFe48x2af,
Updated moduleType for new hardwares:
e1000BaseUnknown and e10GBaseUnknown.
Modified syslogMessageFacility to include 'callhome'.
Modified sysErrDisableTimeoutEnable to include
'arpInspectionRate' and 'noStaticInlinePwr'.
Modified Description clause for deprecated objects:
sysIpAddr, sysNetMask, sysBroadcast, sysReset,
sysConsolePrimaryLoginAuthentication,
sysConsolePrimaryEnableAuthentication,
sysTelnetPrimaryLoginAuthentication,
sysTelnetPrimaryEnableAuthentication,
sysPortFastBpduGuard, chassisSerialNumber,
chassisComponentTable, moduleSerialNumber,
moduleHwHiVersion, moduleHwLoVersion,
moduleFwHiVersion, moduleFwLoVersion,
moduleSwHiVersion, moduleSwLoVersion,
portSpantreeFastStart, monitorGrp and
vlanSpantreeEnable.
Added new conformance Groups:
systemMiscGroup1,
systemTrapGroup1,
optionalSystemMiscGroup6,
optionalChassisGroup1,
portGroup4,
vlanGroup2,
ipPermitGroup2 and
optionalPortGroup1."
REVISION "200305290000Z"
DESCRIPTION
"Change the ORGANIZATION clause. Deprecated
sysClearMacTime object."
REVISION
"200305050000Z"
DESCRIPTION
"Add support of the following objects: cisco7613sysID,
wsc6509nebasysID. ChassisType: wsc4507, wsc6509NEBA,
wsc65509, cisco7613. chassisPs1Type: pwr950dc,
pwr1900ac, pwr1900dc, wscac3000w,
pwrc451400dcp, wscdc3000w, pwr1400ac.
chassisPs2Type: pwr950dc, pwr1900ac, pwr1900dc,
wscac3000w, wscdc3000w, pwr1400ac.
moduleTable: wsSvcIdsm2, wsSvcFwm1, wsSvcCe1,
wssvcSsl1, osm2oc12PosMMPlus, osm2oc12PosSIPlus,
osm16oc3PosSIPlus, osm1oc48PosSSPlus,osm1oc48PosSIPlus,
osm1oc48PosSLPlus, osm4oc3PosSIPlus, osm8oc3PosSIPlus,
osm4oc12PosSIPlus, wsx6548getx, wssup720, wssup720base.
moduleSubType: wsf6kpfc2a, wsf6kdfca, vsp300dfc,
wsf6kpfc3a, wsf6kdfc3a. moduleSubType2: wsg6489,
wsg6485, wsu4502gb, wssvcidsupg, wssup720.
portType: e100BaseLX.
Deprecate the following objects: sysIpAddr, sysNetMask,
sysBroadcast, sysTrapReceiverTable, sysReset,
sysClearPortTime, sysClearMacTime,
sysPortFastBpduGuard, chassisComponentTable,
portSpantreeFastStart, vlanTable, portChannelTable.
Remove the TC MacAddressType, and replaced other uses
by MacAddress."
REVISION
"200209240000Z"
DESCRIPTION
"Added more HW models."
REVISION
"200106110000Z"
DESCRIPTION
"Added cat6000 new HW chassis & modules."
REVISION
"200104110000Z"
DESCRIPTION
"Added more HW modules;
Added the following MIB objects under systemGrp:
sysMaxRmonMemory
sysMacReductionAdminEnable
sysMacReductionOperEnable
Added the following MIB object under fileCopyGrp:
fileCopyRuntimeConfigPart
Added the following MIB object under filterPortTable:
filterPortSuppressionOption
Added the following MIB object under syslogGrp:
syslogTelnetEnable"
REVISION
"200010100000Z"
DESCRIPTION
"Added more HW modules;
Added the following objects in systemGrp
sshPublicKeySize
Added the vlanTrunkMappingTable in vlanGrp
Added portJumboFrameGrp
Added the following objects in portCpbTable:
portCpbCosRewrite
portCpbTosRewrite
portCpbCopsGrouping
Added copyTechReportFromRuntimeToHost in fileCopyAction
Added ssh(2) in ipPermitAccessType &
ipPermitDeniedAccess."
REVISION
"200005160000Z"
DESCRIPTION
"Added more HW models;
Added the following objects:
portInlinePowerDetect
vlanPortAuxiliaryVlan
portCpbInlinePower
portCpbAuxiliaryVlan
moduleAdditionalStatus
sysExtendedRmonNetflowModuleMask
Added the voiceGrp
Added the switchAccelerationGrp"
REVISION
"200002020000Z"
DESCRIPTION
"Added the following objects:
sysPortFastBpduGuard
sysErrDisableTimeoutEnable
sysErrDisableTimeoutInterval
sysTrafficMonitorHighWaterMark
chassisPs3Type
chassisPs3Status
chassisPs3TestResult
chassisPEMInstalled
moduleEntPhysicalIndex
portAdditionalOperStatus
portEntPhysicalIndex
filterPortBroadcastThresholdFraction
mcastEnableRgmp
portCpbSpan.
modified ipPermitGrp for supporting IP Permit
Enhancement. Added more HW models."
REVISION
"9909300000Z"
DESCRIPTION
"Added more HW models."
REVISION
"9903260000Z"
DESCRIPTION
"Added traceRouteGrp."
REVISION
"9902120000Z"
DESCRIPTION
"Initial v2 version of this MIB module."
::= { workgroup 1 }
adapterCard OBJECT IDENTIFIER ::= { workgroup 2 }
wsc1000sysID OBJECT IDENTIFIER ::= { workgroup 3 }
wsc1100sysID OBJECT IDENTIFIER ::= { workgroup 4 }
wsc1200sysID OBJECT IDENTIFIER ::= { workgroup 5 }
wsc1400sysID OBJECT IDENTIFIER ::= { workgroup 6 }
wsc5000sysID OBJECT IDENTIFIER ::= { workgroup 7 }
wsc1600sysID OBJECT IDENTIFIER ::= { workgroup 8 }
cpw1600sysID OBJECT IDENTIFIER ::= { workgroup 9 }
wsc3000sysID OBJECT IDENTIFIER ::= { workgroup 10 }
-- rhino OBJECT IDENTIFIER ::= { workgroup 11 }
wsc2900sysID OBJECT IDENTIFIER ::= { workgroup 12 }
cpw2200sysID OBJECT IDENTIFIER ::= { workgroup 13 }
esStack OBJECT IDENTIFIER ::= { workgroup 14 }
wsc3200sysID OBJECT IDENTIFIER ::= { workgroup 15 }
cpw1900sysID OBJECT IDENTIFIER ::= { workgroup 16 }
wsc5500sysID OBJECT IDENTIFIER ::= { workgroup 17 }
wsc1900sysID OBJECT IDENTIFIER ::= { workgroup 18 }
cpw1220sysID OBJECT IDENTIFIER ::= { workgroup 19 }
wsc2820sysID OBJECT IDENTIFIER ::= { workgroup 20 }
cpw1420sysID OBJECT IDENTIFIER ::= { workgroup 21 }
dcd OBJECT IDENTIFIER ::= { workgroup 22 }
wsc3100sysID OBJECT IDENTIFIER ::= { workgroup 23 }
cpw1800sysID OBJECT IDENTIFIER ::= { workgroup 24 }
cpw1601sysID OBJECT IDENTIFIER ::= { workgroup 25 }
wsc3001sysID OBJECT IDENTIFIER ::= { workgroup 26 }
cpw1220csysID OBJECT IDENTIFIER ::= { workgroup 27 }
wsc1900csysID OBJECT IDENTIFIER ::= { workgroup 28 }
wsc5002sysID OBJECT IDENTIFIER ::= { workgroup 29 }
cpw1220isysID OBJECT IDENTIFIER ::= { workgroup 30 }
wsc1900isysID OBJECT IDENTIFIER ::= { workgroup 31 }
tsStack OBJECT IDENTIFIER ::= { workgroup 32 }
wsc3900sysID OBJECT IDENTIFIER ::= { workgroup 33 }
wsc5505sysID OBJECT IDENTIFIER ::= { workgroup 34 }
wsc2926sysID OBJECT IDENTIFIER ::= { workgroup 35 }
wsc5509sysID OBJECT IDENTIFIER ::= { workgroup 36 }
wsc3920sysID OBJECT IDENTIFIER ::= { workgroup 37 }
wsc6006sysID OBJECT IDENTIFIER ::= { workgroup 38 }
wsc6009sysID OBJECT IDENTIFIER ::= { workgroup 39 }
wsc4003sysID OBJECT IDENTIFIER ::= { workgroup 40 }
wsc4912gsysID OBJECT IDENTIFIER ::= { workgroup 41 }
wsc2948gsysID OBJECT IDENTIFIER ::= { workgroup 42 }
wsc6509sysID OBJECT IDENTIFIER ::= { workgroup 44 }
wsc6506sysID OBJECT IDENTIFIER ::= { workgroup 45 }
wsc4006sysID OBJECT IDENTIFIER ::= { workgroup 46 }
wsc6509nebsysID OBJECT IDENTIFIER ::= { workgroup 47 }
wsc6knamsysID OBJECT IDENTIFIER ::= { workgroup 48 }
wsc2980gsysID OBJECT IDENTIFIER ::= { workgroup 49 }
wsc6513sysID OBJECT IDENTIFIER ::= { workgroup 50 }
wsc2980gasysID OBJECT IDENTIFIER ::= { workgroup 51 }
cisco7603sysID OBJECT IDENTIFIER ::= { workgroup 53 }
cisco7606sysID OBJECT IDENTIFIER ::= { workgroup 54 }
cisco7609sysID OBJECT IDENTIFIER ::= { workgroup 55 }
wsc6503sysID OBJECT IDENTIFIER ::= { workgroup 56 }
wsc4503sysID OBJECT IDENTIFIER ::= { workgroup 58 }
wsc4506sysID OBJECT IDENTIFIER ::= { workgroup 59 }
cisco7613sysID OBJECT IDENTIFIER ::= { workgroup 60 }
wsc6509nebasysID OBJECT IDENTIFIER ::= { workgroup 61 }
wsc2948ggetxsysID OBJECT IDENTIFIER ::= { workgroup 62 }
cisco7604sysID OBJECT IDENTIFIER ::= { workgroup 63 }
wsc6504esysID OBJECT IDENTIFIER ::= { workgroup 64 }
wsc1900LiteFxsysID OBJECT IDENTIFIER ::= { workgroup 175 }
-- stackMIBobjects
systemGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 1 }
chassisGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 2 }
moduleGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 3 }
portGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 4 }
tftpGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 5 }
brouterGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 6 }
filterGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 7 }
monitorGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 8 }
vlanGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 9 }
securityGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 10 }
tokenRingGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 11 }
multicastGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 12 }
dnsGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 13 }
syslogGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 14 }
ntpGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 15 }
tacacsGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 16 }
ipPermitListGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 17 }
portChannelGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 18 }
portCpbGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 19 }
portTopNGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 20 }
mdgGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 21 }
radiusGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 22 }
traceRouteGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 24 }
fileCopyGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 25 }
voiceGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 26 }
portJumboFrameGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 27 }
switchAccelerationGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 28 }
configGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 29 }
-- textual conventions
-- The vendor ID portion of a MacAddress (first 3 octets
-- of the 6-octet MAC address)
VendorIdType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Vendor ID Type"
SYNTAX OCTET STRING (SIZE (3))
-- the system group
-- Implementation of the system group is current for all Cisco Workgroup
-- Stack products.
sysMgmtType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
snmpV1(2), -- Simple Network Management Protocol
smux(3), -- SNMP MUX sub-agent
snmpV2V1(4), -- Bi-lingual SNMP, Ver 2 and 1
snmpV2cV1(5),-- Bi-lingual SNMP, V2c and V1
snmpV3V2cV1(6) -- SNMPv3, SNMPv2c and SNMPv1
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Type of network management running on this
entity."
::= { systemGrp 1 }
sysIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "This entity's IP address.
This object is deprecated and replaced by
ciiIPAddressType and ciiIPAddress in
CISCO-IP-IF-MIB."
::= { systemGrp 2 }
sysNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "This entity's subnet mask.
This object is deprecated and replaced by
ciiIPAddressPrefixLength in CISCO-IP-IF-MIB."
::= { systemGrp 3 }
sysBroadcast OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "This entity's broadcast address.
This object is deprecated and replaced by
ciiIPAddressBroadcast in CISCO-IP-IF-MIB."
::= { systemGrp 4 }
-- the trap receiver table
sysTrapReceiverTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysTrapReceiverEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The trap receiver table (0 to 20 entries). This
table lists the addresses of Network Management
Stations that should receive trap messages from
this entity when an exception condition occurs.
This table is deprecated and replaced by
trapDestTable and other tables in SNMP-TARGET-
MIB and SNMP-NOTIFICATION-MIB."
::= { systemGrp 5 }
sysTrapReceiverEntry OBJECT-TYPE
SYNTAX SysTrapReceiverEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A trap receiver table entry."
INDEX { sysTrapReceiverAddr }
::= { sysTrapReceiverTable 1 }
SysTrapReceiverEntry ::=
SEQUENCE {
sysTrapReceiverType
INTEGER,
sysTrapReceiverAddr
IpAddress,
sysTrapReceiverComm
DisplayString
}
sysTrapReceiverType OBJECT-TYPE
SYNTAX INTEGER {
valid(1), -- add this entry
invalid(2) -- remove this entry
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "Setting this object to invalid(2) removes the
corresponding entry from the sysTrapReceiverTable.
To add a new entry to the sysTrapReceiverTable,
set this object to valid(1) for an IpAddress which
is not already in the table."
::= { sysTrapReceiverEntry 1 }
sysTrapReceiverAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION "IP address for trap receiver."
::= { sysTrapReceiverEntry 2 }
sysTrapReceiverComm OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "Community string used for trap messages to this
trap receiver."
::= { sysTrapReceiverEntry 3 }
-- the community table
-- This table is deprecated and replaced by the sysCommunityRo,
-- sysCommunityRw, and sysCommunityRwa objects. New workgroup products
-- will not support this table. Older products will continue to support
-- this table for some time in order to be backwards compatible with
-- existing network management applications. When this table does exist,
-- sysCommunityString.2 is the same value as sysCommunityRo,
-- sysCommunityString.3 is the same value as sysCommunityRw, and
-- sysCommunityString.4 is the same as sysCommunityRwa.
sysCommunityTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysCommunityEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "The community table (4 entries). This table lists
community strings and their access levels. When an
SNMP message is received by this entity, the
community string in the message is compared with
this table to determine access rights of the
sender.
Note that this item is only accessible when using
the community string defined in sysCommunityRwa."
::= { systemGrp 6 }
sysCommunityEntry OBJECT-TYPE
SYNTAX SysCommunityEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION "A community table entry."
INDEX { sysCommunityAccess }
::= { sysCommunityTable 1 }
SysCommunityEntry ::=
SEQUENCE {
sysCommunityAccess
INTEGER,
sysCommunityString
DisplayString
}
sysCommunityAccess OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
readOnly(2), -- read but not write all
-- but restricted items
readWrite(3), -- read and write all but
-- restricted items
readWriteAll(4) -- read and write all
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION "A value of readWriteAll(4) allows the community
to read and write all objects in the MIB. A
value of readWrite(3) allows the community to
read and write all objects except restricted
items such as community strings, which cannot
be accessed at all. A value of readOnly(2) allows
the community to read all objects except
restricted items. A value of other(1) allows no
access."
::= { sysCommunityEntry 1 }
sysCommunityString OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "Configurable community string with access rights
defined by the value of sysCommunityAccess."
::= { sysCommunityEntry 2 }
-- additional system group objects
sysAttachType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
dualAttach(2), -- port 1 is A and port 2 is B
singleAttach(3),-- port 1 is S and port 2 is M
nullAttach(4), -- port 1 is M and port 2 is M
dualPrio(5) -- dual attach priority mode
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The requested concentrator attachment type. For a
dual attachment concentrator which can be
connected to the trunk ring, the first FDDI port
is configured as A and the second FDDI port is
configured as B.
For a single attachment concentrator which can be
connected beneath another concentrator, the first
FDDI port is configured as M and the second FDDI
port is configured as S. For a null attachment
concentrator which can be located at the root of
the tree, the first two FDDI ports are configured
as M.
This object does not take effect until the
concentrator is reset. The current attachment
type can be determined from snmpFddiPORTPCType
for ports 1 and 2."
DEFVAL { dualAttach }
::= { systemGrp 7 }
sysTraffic OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Traffic meter value, i.e. the percentage of
bandwidth utilization for the previous polling
interval."
::= { systemGrp 8 }
sysReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2), -- resetting the system
resetMinDown(3) -- reset in minimal down time
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "Writing reset(2) to this object resets the
control logic of all modules in the system.
Writing resetMinDown(3) to this object resets the
system with the minimal system down time. The
resetMinDown(3) is only supported in systems with
redundant supervisors.
This object is deprecated and replaced by
csyScheduledReset in CISCO-SYSTEM-MIB."
::= { systemGrp 9 }
sysBaudRate OBJECT-TYPE
SYNTAX INTEGER {
b600(600),
b1200(1200),
b2400(2400),
b4800(4800),
b9600(9600),
b19200(19200),
b38400(38400)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The baud rate in bits per second of the RS-232
port."
DEFVAL { b9600 }
::= { systemGrp 10 }
sysInsertMode OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
standard(2), -- standard insertion
scheduled(3), -- scheduled insertion
graceful(4) -- graceful insertion
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode for inserting M-ports into the
concentrator ring."
::= { systemGrp 11 }
sysClearMacTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "The time (in hundredths of a second) since mac
counters were last cleared. Writing a 0 to this
object causes the mac counters to be cleared."
::= { systemGrp 12 }
sysClearPortTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "The time (in hundredths of a second) since port
counters were last cleared. Writing a 0 to this
object causes the port counters to be cleared."
::= { systemGrp 13 }
-- the FDDI ring map table
sysFddiRingTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysFddiRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The fddi ring map table. This table lists the
nodes in the FDDI ring(s) to which the system
belongs."
::= { systemGrp 14 }
sysFddiRingEntry OBJECT-TYPE
SYNTAX SysFddiRingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A FDDI Ring table entry."
INDEX { sysFddiRingSMTIndex, sysFddiRingAddress }
::= { sysFddiRingTable 1 }
SysFddiRingEntry ::=
SEQUENCE {
sysFddiRingSMTIndex
INTEGER,
sysFddiRingAddress
MacAddress,
sysFddiRingNext
MacAddress
}
sysFddiRingSMTIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of the SMT index associated with this
ring."
::= { sysFddiRingEntry 1 }
sysFddiRingAddress OBJECT-TYPE
SYNTAX MacAddress -- OCTET STRING (SIZE (6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of this node in the FDDI ring."
::= { sysFddiRingEntry 2 }
sysFddiRingNext OBJECT-TYPE
SYNTAX MacAddress -- OCTET STRING (SIZE (6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of the next node in the FDDI
ring."
::= { sysFddiRingEntry 3 }
-- additional system group objects
sysEnableModem OBJECT-TYPE
SYNTAX INTEGER { enabled(1), disabled(2) }
MAX-ACCESS read-write