-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCISCO-ERR-DISABLE-MIB-V1SMI.my
991 lines (941 loc) · 31.4 KB
/
CISCO-ERR-DISABLE-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
-- MIB file created 23-Jun-2016 16:28:36, by
-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com
CISCO-ERR-DISABLE-MIB DEFINITIONS ::= BEGIN
-- From file: "CISCO-ERR-DISABLE-MIB.my"
-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T"
IMPORTS
ifIndex
FROM IF-MIB
TruthValue
FROM SNMPv2-TC-v1
TimeIntervalSec
FROM CISCO-TC
VlanIndexOrZero
FROM CISCO-PRIVATE-VLAN-MIB
ciscoMgmt
FROM CISCO-SMI
Gauge
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
ciscoErrDisableMIB OBJECT IDENTIFIER ::= { ciscoMgmt 548 }
-- MODULE-IDENTITY
-- LastUpdated
-- 201606020000Z
-- 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
-- This MIB module provides the ability for a Network
-- Management Station (NMS) to configure and monitor the
-- error-disable feature via SNMP.
--
-- The error-disable feature allows other software
-- features running in a system to operationally disable a
-- system entity upon detecting abnormal conditions.
--
-- Examples of such a system entity include interfaces, a
-- vlan configured in the system, or a VLAN allowed on
-- specific layer 2 multi-vlan interface.
--
-- More specific examples:
--
-- a) When BPDU guard is enabled on an interface
-- it is expected that no BPDU packets are received by
-- the interface. If a BPDU packet is received, then the
-- BPDU guard will operationally disable the
-- interface.
--
-- b) Users can configure a particular threshold of
-- broadcast packets received on an interface. If the
-- number of packets received exceeds the threshold, then
-- storm-control will disable the interface.
--
-- c) When unidirectional Link Detection (UDLD) detects a
-- unidirectional link on an interface, it can disable
-- the interface.
--
-- d) On a trunk or a multi-vlan layer 2 port, if
-- port-security detects violation on a particular vlan,
-- then it can operationally disable that vlan on that
-- port.
--
-- The definition of 'abnormal condition' is under the
-- control of features that make use of the error-disable
-- feature to disable system entities.
--
-- The error-disable feature supports the following
-- configuration:
--
-- 1) Whether software features can in fact use the
-- error-disable feature upon detecting abnormal
-- conditions.
-- NOTE: Some software features will ALWAYS use the
-- error-disable feature to disable entities upon
-- detection of error.
--
-- 2) Whether the system can attempt to automatically
-- recover after a system entity has been disabled (e.g.,
-- A system can attempt to bring up a physical interface
-- which had been disabled earlier)
--
-- 3) If error recovery is possible, then the time
-- interval to wait before the system starts the recovery
-- attempt.
-- RevDate
-- 201606020000Z
-- RevDescr
-- Added the following new enumerations in
-- CErrDisableFeatureID:
-- other(36), portReinitLimitReached(37),
-- adminRxBBCreditPerfBufIncomp(38), ficonNotEnabled(39),
-- adminModeIncomp(40), adminSpeedIncomp(41), ncompAdminRxBBCredit(42),
-- adminRxBufSizeIncomp(43), eppFailure(44), osmEPortUp(45),
-- osmNonEPortUp(46), udldUniDir(47), udldTxRxLoop(48),
-- udldNeighbourMismatch(49), udldEmptyEcho(50),
-- udldAggrasiveModeLinkFailed(51), excessivePortInterrupts(52),
-- channelErrDisabled(53), hwProgFailed(54),
-- internalHandshakeFailed(55), stpInconsistencyOnVpcPeerLink(56),
-- stpPortStateFailure(57), ipConflict(58),
-- multipleMSapIdsRcvd(59), oneHundredPdusWithoutAck(60),
-- and ipQosCompatCheckFailure(61).
-- RevDate
-- 201304230000Z
-- RevDescr
-- Added ciscoErrDisableFeatureFlapGroup and
-- a new enumeration flapControl(4) in
-- cErrDisableFeatureConfigurable.
-- RevDate
-- 201010190000Z
-- RevDescr
-- Added a new enumeration in CErrDisableFeatureID:
-- tranceiverIncomp(35).
-- RevDate
-- 200903230000Z
-- RevDescr
-- Added the following new enumerations in
-- CErrDisableFeatureID:
-- sfpConfigMismatch(24), communityLimit(25), invalidPolicy(26),
-- lsGroup(27), ekey(28), portModeFailure(29),
-- pppoeIaRateLimit(30), oamRemoteCriticalEvent(31),
-- oamRemoteDyingGasp(32), oamRemoteLinkFault(33),
-- and mvrp(34).
--
-- Added the new enumeration detectShutdownVlan(3)
-- to cErrDisableFeatureConfigurable.
--
-- Added ciscoErrDisableShutdownVlanGroup.
-- RevDate
-- 200804070000Z
-- RevDescr
-- Added the following new enumerations in
-- CErrDisableFeatureID:
-- packetBuffer(18), macLimit(19), linkMonitorFailure(20),
-- oamRemoteFailure(21), dot1adIncompEtype(22), and
-- dot1adIncompTunnel(23).
--
-- cErrDisableInterfaceEvent notification is deprecated
-- and replaced by a new notification
-- cErrDisableInterfaceEventRev1.
--
-- Modified the description of cErrDisableNotifEnable
-- to add control for cErrDisableInterfaceEventRev1
-- notification.
-- RevDate
-- 200605310000Z
-- RevDescr
-- Initial version of this MIB module.
ciscoErrDisableMIBNotifs OBJECT IDENTIFIER ::= { ciscoErrDisableMIB 0 }
ciscoErrDisableMIBObjects OBJECT IDENTIFIER ::= { ciscoErrDisableMIB 1 }
ciscoErrDisableMIBConform OBJECT IDENTIFIER ::= { ciscoErrDisableMIB 2 }
cErrDisableGlobalObjects OBJECT IDENTIFIER ::= { ciscoErrDisableMIBObjects 1 }
cErrDisableFeatureObjects OBJECT IDENTIFIER ::= { ciscoErrDisableMIBObjects 2 }
cErrDisableIfObjects OBJECT IDENTIFIER ::= { ciscoErrDisableMIBObjects 3 }
cErrDisableNotificationsPrefix OBJECT IDENTIFIER ::= { ciscoErrDisableMIBNotifs 1 }
ciscoErrDisableMIBCompliances OBJECT IDENTIFIER ::= { ciscoErrDisableMIBConform 1 }
ciscoErrDisableMIBGroups OBJECT IDENTIFIER ::= { ciscoErrDisableMIBConform 2 }
CErrDisableFeatureID ::= INTEGER {
udld(1),
bpduGuard(2),
channelMisconfig(3),
pagpFlap(4),
dtpFlap(5),
linkFlap(6),
l2ptGuard(7),
dot1xSecurityViolation(8),
portSecurityViolation(9),
gbicInvalid(10),
dhcpRateLimit(11),
unicastFlood(12),
vmps(13),
stormControl(14),
inlinePower(15),
arpInspection(16),
portLoopback(17),
packetBuffer(18),
macLimit(19),
linkMonitorFailure(20),
oamRemoteFailure(21),
dot1adIncompEtype(22),
dot1adIncompTunnel(23),
sfpConfigMismatch(24),
communityLimit(25),
invalidPolicy(26),
lsGroup(27),
ekey(28),
portModeFailure(29),
pppoeIaRateLimit(30),
oamRemoteCriticalEvent(31),
oamRemoteDyingGasp(32),
oamRemoteLinkFault(33),
mvrp(34),
tranceiverIncomp(35),
other(36),
portReinitLimitReached(37),
adminRxBBCreditPerfBufIncomp(38),
ficonNotEnabled(39),
adminModeIncomp(40),
adminSpeedIncomp(41),
adminRxBBCreditIncomp(42),
adminRxBufSizeIncomp(43),
eppFailure(44),
osmEPortUp(45),
osmNonEPortUp(46),
udldUniDir(47),
udldTxRxLoop(48),
udldNeighbourMismatch(49),
udldEmptyEcho(50),
udldAggrasiveModeLinkFailed(51),
excessivePortInterrupts(52),
channelErrDisabled(53),
hwProgFailed(54),
internalHandshakeFailed(55),
stpInconsistencyOnVpcPeerLink(56),
stpPortStateFailure(57),
ipConflict(58),
multipleMSapIdsRcvd(59),
oneHundredPdusWithoutAck(60),
ipQosCompatCheckFailure(61)
}
-- TEXTUAL-CONVENTION
-- Status
-- mandatory
-- Descr
-- An integer-value assigned to various features/events
-- that can error disable a system entity
--
-- udld: Unidirectional Link Detection
--
-- bpduGuard: Spanning Tree BPDU Guard feature that prevents
-- processing BPDU packets on an access interface
--
-- channelMisconfig: General Link Aggregation mis-configuration
--
-- pagpFlap: Cisco's PAGP Link Aggregation protocol errors
--
-- dtpFlap: Dynamic Trunking Protocol errors
--
-- linkFlap: Link State flapping
--
-- l2ptGuard: L2 Protocol Tunnel errors
--
-- dot1xSecurityViolation: 802.1x authentication violations
--
-- portSecurity: Port Security violations
--
-- gbicInvalid: Invalid GBIC errors (examples include
-- unsupported GBIC being inserted)
--
-- dhcpRateLimit: DHCP snooping rate limit violation
--
-- unicastFlood: Unicast Flooding threshold violations
--
-- vmps: VLAN Membership Policy Server feature related errors
--
-- stormControl: storm control (broadcast/multicast/unicast)
-- threshold violations
--
-- inlinePower: Errors in inline power
--
-- arpInspection: Errors detected by Dynamic Arp Inspection
-- (DAI) feature
--
-- portLoopback: Interface Loopback Error
--
-- packetBuffer: Packet Buffer Error
--
-- macLimit: Errors detected by Mac Address Limit feature
--
-- linkMonitorFailure: Link Monitoring failure
--
-- oamRemoteFailure: Remote Failure detected by Ethernet OAM
-- (Operations, Administration, and Maintenance) feature
--
-- dot1adIncompEtype: 802.1ad Ether-type Incompatible errors
--
-- dot1adIncompTunnel: 802.1ad Pdu Tunnel Incompatible errors
--
-- sfpConfigMismatch: Mismatch on SFP configuration
--
-- communityLimit: Vlan Community Limit violations
--
-- invalidPolicy: QoS Policy violation
--
-- lsGroup: Errors detected by Link State Group Tracking feature
--
-- ekey: Errors detected by Error Key Mechanism
--
-- portModeFailure: Port mode change failure
--
-- pppoeIaRateLimit: Errors detected by PPPoE Intermediate Agent
-- Rate Limit feature
--
-- oamRemoteCriticalEvent: Ethernet OAM Remote Critical Event
-- Failure
--
-- oamRemoteDyingGasp: Ethernet OAM Remote Dying Gasp Failure
--
-- oamRemoteLinkFault: Ethernet OAM Remote Link Fault Failure
--
-- mvrp: Errors detected by Multiple VLAN Registration Protocol
--
-- tranceiverIncomp: Tranceiver incompatible errors
--
-- other: Any other feature not covered by enumerations listed here
--
-- portReinitLimitReached: Port reinitialization limit reached
--
-- adminRxBBCreditPerfBufIncomp: Incompatible admin port rxbbcredit performance buffers
--
-- ficonNotEnabled: Ficon not enabled
--
-- adminModeIncomp: Incompatible port admin mode
--
-- adminSpeedIncomp: Incompatible port admin speed
--
-- adminRxBBCreditIncomp: Incompatible admin port rxbbcredit
--
-- adminRxBufSizeIncomp: Incompatible admin port rxbufsize
--
-- eppFailure: EPP Failure
--
-- osmEPortUp: First interface in this group is E
--
-- osmNonEPortUp: Other interfaces in this group are not shut
--
-- udldUniDir: Unidirectional UDLD detected
--
-- udldTxRxLoop: UDLD Tx-Rx loop
--
-- udldNeighbourMismatch: UDLD neighbor mismatch
--
-- udldEmptyEcho: UDLD empty echo
--
-- udldAggrasiveModeLinkFailed: UDLD detected link failure in aggressive mode
--
-- excessivePortInterrupts: Error disabled due to excessive port interrupts
--
-- channelErrDisabled: Channel error-disabled
--
-- hwProgFailed: hardware programming failed
--
-- internalHandshakeFailed: Internal handshake failure
--
-- stpInconsistencyOnVpcPeerLink: STP inconsistency on VPC peer-link
--
-- stpPortStateFailure: STP has set port state to failure
--
-- ipConflict: Error disabled due to IP address conflict
--
-- multipleMSapIdsRcvd: DCX Multiple MSAP IDs recieved for the port
--
-- oneHundredPdusWithoutAck: DCX Recieved 100 PDUs without ACK
--
-- ipQosCompatCheckFailure: IP Qos DCBXP compat check failed
cErrDisableRecoveryInterval OBJECT-TYPE
SYNTAX TimeIntervalSec
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the error-disable recovery time
interval.
When a system entity is operationally disabled upon
detecting abnormal condition by a particular feature,
the system waits for a period equal to this time interval,
and then re-enable the entity if automatic recovery is
enabled for the feature."
::= { cErrDisableGlobalObjects 1 }
cErrDisableNotifEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies whether cErrDisableInterfaceEvent
and cErrDisableInterfaceEventRev1
notifications should be generated when a system entity is
error-disabled."
::= { cErrDisableGlobalObjects 2 }
cErrDisableNotifRate OBJECT-TYPE
SYNTAX Gauge
-- Units
-- Notification/Minute
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of this object specifies the maximum number of
error-disable notifications the device will generate per
minute.
A value of '0' specifies no limit and the device
will generate a notification for each error-disable
event."
::= { cErrDisableGlobalObjects 3 }
cErrDisableFeatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF CErrDisableFeatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the error-disable related info
for each feature employing the error-disable
feature."
::= { cErrDisableFeatureObjects 1 }
cErrDisableFeatureEntry OBJECT-TYPE
SYNTAX CErrDisableFeatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry is created for each feature that employs the
error-disable feature."
INDEX { cErrDisableFeatureIndex }
::= { cErrDisableFeatureTable 1 }
CErrDisableFeatureEntry ::= SEQUENCE {
cErrDisableFeatureIndex CErrDisableFeatureID,
cErrDisableFeatureConfigurable OCTET STRING,
cErrDisableFeatureDetectEnable TruthValue,
cErrDisableFeatureRecoveryEnable TruthValue,
cErrDisableFeatureRecoveryInterval TimeIntervalSec,
cErrDisableFeatureDetectShutdownVlan TruthValue,
cErrDisableFeatureMaxFlapCount Gauge,
cErrDisableFeatureFlapTimePeriod Gauge
}
cErrDisableFeatureIndex OBJECT-TYPE
SYNTAX CErrDisableFeatureID
-- Rsyntax INTEGER {
-- udld(1),
-- bpduGuard(2),
-- channelMisconfig(3),
-- pagpFlap(4),
-- dtpFlap(5),
-- linkFlap(6),
-- l2ptGuard(7),
-- dot1xSecurityViolation(8),
-- portSecurityViolation(9),
-- gbicInvalid(10),
-- dhcpRateLimit(11),
-- unicastFlood(12),
-- vmps(13),
-- stormControl(14),
-- inlinePower(15),
-- arpInspection(16),
-- portLoopback(17),
-- packetBuffer(18),
-- macLimit(19),
-- linkMonitorFailure(20),
-- oamRemoteFailure(21),
-- dot1adIncompEtype(22),
-- dot1adIncompTunnel(23),
-- sfpConfigMismatch(24),
-- communityLimit(25),
-- invalidPolicy(26),
-- lsGroup(27),
-- ekey(28),
-- portModeFailure(29),
-- pppoeIaRateLimit(30),
-- oamRemoteCriticalEvent(31),
-- oamRemoteDyingGasp(32),
-- oamRemoteLinkFault(33),
-- mvrp(34),
-- tranceiverIncomp(35),
-- other(36),
-- portReinitLimitReached(37),
-- adminRxBBCreditPerfBufIncomp(38),
-- ficonNotEnabled(39),
-- adminModeIncomp(40),
-- adminSpeedIncomp(41),
-- adminRxBBCreditIncomp(42),
-- adminRxBufSizeIncomp(43),
-- eppFailure(44),
-- osmEPortUp(45),
-- osmNonEPortUp(46),
-- udldUniDir(47),
-- udldTxRxLoop(48),
-- udldNeighbourMismatch(49),
-- udldEmptyEcho(50),
-- udldAggrasiveModeLinkFailed(51),
-- excessivePortInterrupts(52),
-- channelErrDisabled(53),
-- hwProgFailed(54),
-- internalHandshakeFailed(55),
-- stpInconsistencyOnVpcPeerLink(56),
-- stpPortStateFailure(57),
-- ipConflict(58),
-- multipleMSapIdsRcvd(59),
-- oneHundredPdusWithoutAck(60),
-- ipQosCompatCheckFailure(61)
-- }
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object uniquely identifies a feature that makes
use of the error-disable feature."
::= { cErrDisableFeatureEntry 1 }
cErrDisableFeatureConfigurable OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1..2))
-- BITS are:
-- detectionEnable(0)
-- recoveryEnable(1)
-- recoveryInterval(2)
-- detectShutdownVlan(3)
-- flapControl(4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates whether the error-disable related
configuration is configurable for this feature. If a bit
is set to 1, then the corresponding error-disable
configuration can be configured.
'detectionEnable' - indicates the error-disable detection
can be enabled/disabled for this feature
via cErrDisableFeatureDetectEnable.
'recoveryEnable' - indicates the error-disable recovery
can be enabled/disabled for this feature
via cErrDisableFeatureRecoveryEnable.
'recoveryInterval' - indicates the error-disable recovery
Interval can be configured via
cErrDisableFeatureRecoveryInterval.
'detectShutdownVlan' - indicates the error-disable detection
shutdown vlan mode can be configured for
this feature via
cErrDisableFeatureDetectShutdownVlan.
'flapControl' - indicates the error-disable flap control
can be configured via
cErrDisableFeatureMaxFlapCount and
cErrDisableFeatureFlapTimePeriod."
::= { cErrDisableFeatureEntry 2 }
cErrDisableFeatureDetectEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies whether the error-disable detection
is enabled for the feature.
Note:
This object is read-write only for those features
that are configurable, meaning:
cErrDisableFeatureConfigurable.<featureIndex> has the
first bit set to 1."
::= { cErrDisableFeatureEntry 3 }
cErrDisableFeatureRecoveryEnable OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies whether the system can
automatically recover a system entity that has been
disabled by the feature."
::= { cErrDisableFeatureEntry 4 }
cErrDisableFeatureRecoveryInterval OBJECT-TYPE
SYNTAX TimeIntervalSec
-- Rsyntax Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the error-recovery time interval
that will be used by the system for any system entity that
is error-disabled by this particular feature.
If the value of this object is '0', then the device will
use the value specified by the global configuration object
cErrDisableRecoveryInterval."
::= { cErrDisableFeatureEntry 5 }
cErrDisableFeatureDetectShutdownVlan OBJECT-TYPE
SYNTAX TruthValue
-- Rsyntax INTEGER {
-- true(1),
-- false(2)
-- }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies whether shutting down the violating
VLAN on an interface is enabled or not. The value of 'true'
indicates that shutting down the violating VLAN on an
interface is enabled. The value of 'false' indicates that
shutting down the violating VLAN on an interface is
disabled."
::= { cErrDisableFeatureEntry 6 }
cErrDisableFeatureMaxFlapCount OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the maximum number of flaps that
are allowed to occur before setting to error disable state.
A read-only value of zero indicates that no flap control
is present."
::= { cErrDisableFeatureEntry 7 }
cErrDisableFeatureFlapTimePeriod OBJECT-TYPE
SYNTAX Gauge
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object specifies the period of time counting the number of
flaps that are allowed before setting to error disable state.
A read-only value of zero indicates that no flap control
is present."
::= { cErrDisableFeatureEntry 8 }
cErrDisableIfStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF CErrDisableIfStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table provides interface (port) specific
error-disable status information. Each conceptual row
provides status information about a {interface, vlan}
disabled by a feature.
On a trunk or multi-vlan access interface, a given vlan on
the interface can be error-disabled. In this case, the row is
indexed by the ifIndex for the interface and the vlan
index corresponding to the vlan in question.
If the interface is carrying only 1 vlan or the entire
trunk interface is error-disabled (due to link flaps, for
example) then the vlan index portion of the row index is
0."
::= { cErrDisableIfObjects 1 }
cErrDisableIfStatusEntry OBJECT-TYPE
SYNTAX CErrDisableIfStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A collection of objects that specify the status of an
error-disabled Interface or {interface, vlan}."
INDEX { ifIndex, cErrDisableIfStatusVlanIndex }
::= { cErrDisableIfStatusTable 1 }
CErrDisableIfStatusEntry ::= SEQUENCE {
cErrDisableIfStatusVlanIndex VlanIndexOrZero,
cErrDisableIfStatusCause CErrDisableFeatureID,
cErrDisableIfStatusTimeToRecover TimeIntervalSec
}
cErrDisableIfStatusVlanIndex OBJECT-TYPE
SYNTAX VlanIndexOrZero
-- Rsyntax INTEGER(0..4095)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This object specifies the vlan of the given interface
that has been error-disabled. If the physical interface is
error-disabled then the value of this object is 0."
::= { cErrDisableIfStatusEntry 1 }
cErrDisableIfStatusCause OBJECT-TYPE
SYNTAX CErrDisableFeatureID
-- Rsyntax INTEGER {
-- udld(1),
-- bpduGuard(2),
-- channelMisconfig(3),
-- pagpFlap(4),
-- dtpFlap(5),
-- linkFlap(6),
-- l2ptGuard(7),
-- dot1xSecurityViolation(8),
-- portSecurityViolation(9),
-- gbicInvalid(10),
-- dhcpRateLimit(11),
-- unicastFlood(12),
-- vmps(13),
-- stormControl(14),
-- inlinePower(15),
-- arpInspection(16),
-- portLoopback(17),
-- packetBuffer(18),
-- macLimit(19),
-- linkMonitorFailure(20),
-- oamRemoteFailure(21),
-- dot1adIncompEtype(22),
-- dot1adIncompTunnel(23),
-- sfpConfigMismatch(24),
-- communityLimit(25),
-- invalidPolicy(26),
-- lsGroup(27),
-- ekey(28),
-- portModeFailure(29),
-- pppoeIaRateLimit(30),
-- oamRemoteCriticalEvent(31),
-- oamRemoteDyingGasp(32),
-- oamRemoteLinkFault(33),
-- mvrp(34),
-- tranceiverIncomp(35),
-- other(36),
-- portReinitLimitReached(37),
-- adminRxBBCreditPerfBufIncomp(38),
-- ficonNotEnabled(39),
-- adminModeIncomp(40),
-- adminSpeedIncomp(41),
-- adminRxBBCreditIncomp(42),
-- adminRxBufSizeIncomp(43),
-- eppFailure(44),
-- osmEPortUp(45),
-- osmNonEPortUp(46),
-- udldUniDir(47),
-- udldTxRxLoop(48),
-- udldNeighbourMismatch(49),
-- udldEmptyEcho(50),
-- udldAggrasiveModeLinkFailed(51),
-- excessivePortInterrupts(52),
-- channelErrDisabled(53),
-- hwProgFailed(54),
-- internalHandshakeFailed(55),
-- stpInconsistencyOnVpcPeerLink(56),
-- stpPortStateFailure(57),
-- ipConflict(58),
-- multipleMSapIdsRcvd(59),
-- oneHundredPdusWithoutAck(60),
-- ipQosCompatCheckFailure(61)
-- }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object specifies the feature/event that caused the
{interface, vlan} (or the entire interface) to be
error-disabled."
::= { cErrDisableIfStatusEntry 2 }
cErrDisableIfStatusTimeToRecover OBJECT-TYPE
SYNTAX TimeIntervalSec
-- Rsyntax Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time left before the system attempts an automatic
recovery of the interface or the vlan of the given
interface. If no recovery is scheduled, then the value
of this object is '0'."
::= { cErrDisableIfStatusEntry 3 }
cErrDisableInterfaceEvent TRAP-TYPE
--?? Non-reverse mappable trap
ENTERPRISE cErrDisableNotificationsPrefix
VARIABLES {
cErrDisableIfStatusCause }
-- Status
-- deprecated
DESCRIPTION
"The cErrDisableInterfaceEvent is generated when an interface
or {interface, vlan} is error-disabled by the feature
specified in cErrDisableIfStatusCause.
cErrDisableInterfaceEvent is deprecated and replaced by
cErrDisableInterfaceEventRev1."
::= 1
cErrDisableInterfaceEventRev1 TRAP-TYPE
-- Reverse mappable trap
ENTERPRISE ciscoErrDisableMIB
VARIABLES {
cErrDisableIfStatusCause }
-- Status
-- mandatory
DESCRIPTION
"The cErrDisableInterfaceEventRev1 is generated when an
interface or {interface, vlan} is error-disabled by the
feature specified in cErrDisableIfStatusCause.
cErrDisableInterfaceEventRev1 deprecates
cErrDisableInterfaceEvent to make it RFC 2578 compliant.
According to section 8.5 of RFC 2578, the next
to last sub-identifier in the name of any newly-defined
notification must have the value zero."
::= 2
ciscoErrDisableGlobalCfgGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 1 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to configure error-disable
-- functionality.
-- objects
-- cErrDisableRecoveryInterval
ciscoErrDisableFeatureCfgGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 2 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to manage the configuration of
-- the error-disable feature.
-- objects
-- cErrDisableFeatureConfigurable,
-- cErrDisableFeatureDetectEnable,
-- cErrDisableFeatureRecoveryEnable,
-- cErrDisableFeatureRecoveryInterval
ciscoErrDisableIfStatusGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 3 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of error-disable interface status objects.
-- objects
-- cErrDisableIfStatusCause, cErrDisableIfStatusTimeToRecover
ciscoErrDisableNotifCfgGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 4 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to configure error-disable
-- notifications.
-- objects
-- cErrDisableNotifEnable, cErrDisableNotifRate
ciscoErrDisableShutdownVlanGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 7 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to manage the configuration of
-- error-disable detection shutdown vlan mode.
-- objects
-- cErrDisableFeatureDetectShutdownVlan
ciscoErrDisableFeatureFlapGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 8 }
-- OBJECT-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of objects to manage the configuration of
-- the error-disable flap control.
-- objects
-- cErrDisableFeatureMaxFlapCount,
-- cErrDisableFeatureFlapTimePeriod
ciscoErrDisableNotifGroup OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 5 }
-- NOTIFICATION-GROUP
-- Status
-- deprecated
-- Descr
-- A collection of error-disable notification objects.
-- notifications
-- cErrDisableInterfaceEvent
ciscoErrDisableNotifGroupRev1 OBJECT IDENTIFIER ::= { ciscoErrDisableMIBGroups 6 }
-- NOTIFICATION-GROUP
-- Status
-- mandatory
-- Descr
-- A collection of error-disable notification objects.
-- notifications
-- cErrDisableInterfaceEventRev1
ciscoErrDisableMIBCompliance OBJECT IDENTIFIER ::= { ciscoErrDisableMIBCompliances 1 }
-- MODULE-COMPLIANCE
-- Status
-- deprecated
-- Descr
-- The compliance statement for the cisco errdisable MIB.
-- Module
-- >>current<<
-- MandGroup
-- ciscoErrDisableGlobalCfgGroup
-- MandGroup
-- ciscoErrDisableFeatureCfgGroup
-- MandGroup
-- ciscoErrDisableIfStatusGroup
-- OptGroup
-- ciscoErrDisableNotifCfgGroup
-- OptGroup
-- ciscoErrDisableNotifGroup
ciscoErrDisableMIBComplianceRev1 OBJECT IDENTIFIER ::= { ciscoErrDisableMIBCompliances 2 }
-- MODULE-COMPLIANCE
-- Status
-- deprecated
-- Descr
-- The compliance statement for the cisco errdisable MIB.
-- Module
-- >>current<<
-- MandGroup
-- ciscoErrDisableGlobalCfgGroup
-- MandGroup
-- ciscoErrDisableFeatureCfgGroup
-- MandGroup
-- ciscoErrDisableIfStatusGroup
-- OptGroup
-- ciscoErrDisableNotifCfgGroup
-- OptGroup
-- ciscoErrDisableNotifGroupRev1
-- OptGroup
-- ciscoErrDisableShutdownVlanGroup
-- ObjVar
-- cErrDisableRecoveryInterval
-- ObjVar
-- cErrDisableNotifEnable
-- ObjVar
-- cErrDisableNotifRate
-- ObjVar
-- cErrDisableFeatureDetectEnable
-- ObjVar
-- cErrDisableFeatureRecoveryEnable
-- ObjVar
-- cErrDisableFeatureRecoveryInterval
-- ObjVar
-- cErrDisableFeatureDetectShutdownVlan
ciscoErrDisableMIBComplianceRev2 OBJECT IDENTIFIER ::= { ciscoErrDisableMIBCompliances 3 }
-- MODULE-COMPLIANCE
-- Status
-- mandatory
-- Descr
-- The compliance statement for the cisco errdisable MIB.
-- Module
-- >>current<<
-- MandGroup
-- ciscoErrDisableGlobalCfgGroup
-- MandGroup
-- ciscoErrDisableFeatureCfgGroup
-- MandGroup
-- ciscoErrDisableIfStatusGroup
-- OptGroup
-- ciscoErrDisableNotifCfgGroup
-- OptGroup
-- ciscoErrDisableNotifGroupRev1
-- OptGroup
-- ciscoErrDisableShutdownVlanGroup
-- OptGroup
-- ciscoErrDisableFeatureFlapGroup
-- ObjVar
-- cErrDisableRecoveryInterval
-- ObjVar
-- cErrDisableNotifEnable
-- ObjVar
-- cErrDisableNotifRate
-- ObjVar
-- cErrDisableFeatureDetectEnable
-- ObjVar
-- cErrDisableFeatureRecoveryEnable
-- ObjVar
-- cErrDisableFeatureRecoveryInterval
-- ObjVar
-- cErrDisableFeatureDetectShutdownVlan
-- ObjVar
-- cErrDisableFeatureMaxFlapCount
-- ObjVar
-- cErrDisableFeatureFlapTimePeriod
END