forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-STP-EXTENSIONS-MIB.my
5004 lines (4214 loc) · 182 KB
/
CISCO-STP-EXTENSIONS-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-STP-EXTENSIONS-MIB
--
-- August 1997, Fei Xu
--
-- Copyright (c) 1997, 1998-2004, 2005 by Cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-STP-EXTENSIONS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Integer32,
Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TruthValue,
TimeStamp,
DisplayString,
RowStatus,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
vlanTrunkPortEntry,
VlanIndex,
vtpVlanEntry,
vtpVlanEditEntry
FROM CISCO-VTP-MIB
dot1dStpPortEntry
FROM BRIDGE-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoStpExtensionsMIB MODULE-IDENTITY
LAST-UPDATED "200512200000Z"
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 MIB module for managing Cisco extensions to
the 802.1D Spanning Tree Protocol (STP)."
REVISION "200512200000Z"
DESCRIPTION
"Added bit value rstp(5) to stpxSMSTPortStatus and
dispute(4) to stpxRPVSTPortStatus."
REVISION "200504120000Z"
DESCRIPTION
"Changed the description clauses of stpxMSTMaxHopCount
and stpxMSTInstanceRemainingHopCount.
Added StpxMSTConfigurationDigest textual convention.
Deprecated stpxMSTGroup3 and added the following groups:
stpxRSTPTransmitHoldCountGroup,
stpxSMSTPortMSTModeGroup, stpxSMSTMaxHopCountGroup,
stpxSMSTConfigDigestGroup and stpxMSTGroup4.
Added bit dispute(4) into the BITS syntax of
stpxSMSTPortStatus.
Deprecated stpxMIBCompliance11 and added
stpxMIBCompliance12."
REVISION "200407210000Z"
DESCRIPTION "Added stpxPathCostOperModeGroup
and changed the decription of
stpxSpanningTreePathCostMode."
REVISION "200404080000Z"
DESCRIPTION
"Added stpxSMSTInstanceCISTGroup.
Added 3 new bit values into the BITS syntax
of stpxNotificationEnable:
inconsistency(2), rootInconsistency(3),
and loopInconsistency(4)."
REVISION "200401140000Z"
DESCRIPTION
"Deprecated stpxMSTGroup2 and
stpxPreferredMSTInstancesGroup.
Added stpxMSTGroup3, stpxSMSTGroup,
stpxSMSTInstanceGroup, stpxSMSTInstanceEditGroup,
stpxSMSTPortStatusGroup, stpxSMSTPortHelloTimeGroup.
Added one new value master(7) to stpxMSTPortRoleValue
and stpxRSTPPortRoleValue. Added 2 new unused bit
value into the BITS syntax of stpxRPVSTPortStatus."
REVISION "200310230000Z"
DESCRIPTION
"Added stpxExtendedSysIDGroup,
stpxNotificationEnableGroup, and
stpxFastStartOperModeGroup."
REVISION "200207110000Z"
DESCRIPTION
"Added Rapid Spanning Tree Protocol support.
Added stpxUplinkFastOperEnabled and
stpxBackboneFastOperEnabled objects.
Replaced stpxMSTPortAdminLinkType,
stpxMSTPortOperLinkType,
stpxMSTPortProtocolMigration
with stpxRSTPPortAdminLinkType,
stpxRSTPPortOperLinkType and
stpxRSTPPortProtocolMigration
defined in stpxRSTPPortTable.
Replaced stpxMSTPortRoleTable with
stpxRSTPPortRoleTable. Added stpxRPVSTPortTable."
REVISION "200112060000Z"
DESCRIPTION
"Added per port Bpdu Guard and Bpdu Filter
mode configuration support. Modified the
description of stpxUplinkFastEnabled and
stpxUplinkStationLearningGenRate for MST
support. "
REVISION "200109140000Z"
DESCRIPTION
"Added MST support, Loop Guard Global Default mode
support and Fast Start Global Default mode support.
Deprecated stpxFastStartPortEnable and
stpxLoopGuardConfigEnabled objects. Changed description
of stpxUplinkFastEnabled, stpxUplinkFastTransitions,
stpxUplinkStationLearningGenRate,
stpxUplinkStationLearningFrames objects for MST support."
REVISION "200106200000Z"
DESCRIPTION
"Added BPDU Skewing feature support and modified
the SYNTAX clause of stpxUplinkStationLearningGenRate."
REVISION "200104120000Z"
DESCRIPTION
"Added PVST+ VLAN Configuration, MISTP to VLAN mapping,
Loopguard, and Port Fast Start support."
REVISION "200005230000Z"
DESCRIPTION
"Added Long Spanning Tree Path Cost Mode support."
REVISION "200003210000Z"
DESCRIPTION
"Added Rootguard, 4k VLAN and MISTP support."
REVISION "9711101200Z"
DESCRIPTION
"Additional objects to support SSTP."
REVISION "9708191200Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 82 }
stpxObjects OBJECT IDENTIFIER ::= { ciscoStpExtensionsMIB 1 }
stpxUplinkFastObjects OBJECT IDENTIFIER ::= { stpxObjects 1 }
stpxVlanObjects OBJECT IDENTIFIER ::= { stpxObjects 2 }
stpxInconsistencyObjects
OBJECT IDENTIFIER ::= { stpxObjects 3 }
stpxBackboneFastObjects
OBJECT IDENTIFIER ::= { stpxObjects 4 }
stpxRootGuardObjects OBJECT IDENTIFIER ::= { stpxObjects 5 }
stpxSpanningTreeObjects OBJECT IDENTIFIER ::= { stpxObjects 6 }
stpxMISTPObjects OBJECT IDENTIFIER ::= { stpxObjects 7 }
stpxLoopGuardObjects OBJECT IDENTIFIER ::= { stpxObjects 8 }
stpxFastStartObjects OBJECT IDENTIFIER ::= { stpxObjects 9 }
stpxBpduSkewingObjects OBJECT IDENTIFIER ::= { stpxObjects 10 }
stpxMSTObjects OBJECT IDENTIFIER ::= { stpxObjects 11 }
stpxRSTPObjects OBJECT IDENTIFIER ::= { stpxObjects 12 }
stpxRPVSTObjects OBJECT IDENTIFIER ::= { stpxObjects 13 }
stpxSMSTObjects OBJECT IDENTIFIER ::= { stpxObjects 14 }
stpxNotifications OBJECT IDENTIFIER ::= { ciscoStpExtensionsMIB 2 }
--
-- Textual Conventions
--
StpxMSTConfigurationDigest ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x"
STATUS current
DESCRIPTION
"Represents an MST configuration digest."
SYNTAX OCTET STRING (SIZE (16))
--
-- UplinkFast capability
--
stpxUplinkFastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the UplinkFast capability is
administratively enabled on the device.
If the platform does not support configuration of this
object when the object value of stpxSpanningTreeType is
mst(4), then this object is not instantiated."
::= { stpxUplinkFastObjects 1 }
stpxUplinkFastTransitions OBJECT-TYPE
SYNTAX Counter32
UNITS "transitions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of UplinkFast transitions (from
the STP 'Blocking' state directly to the STP 'Forwarding'
state). All transitions are included in this counter,
irrespective of the instance of the Spanning Tree
Protocol on which they occur.
If the platform supports the stpxUplinkFastOperEnabled
object, then this object is not instantiated when the
object value of stpxUplinkFastOperEnabled is false(2).
If the platform does not support the
stpxUplinkFastOperEnabled object, then this object is
not instantiated when the object value of
stpxSpanningTreeType is mst(4)."
::= { stpxUplinkFastObjects 2 }
stpxUplinkStationLearningGenRate OBJECT-TYPE
SYNTAX Integer32 (0..32000)
UNITS "frames"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of station-learning frames that this
device will generate in each 100 milli-second period after
a UplinkFast transition. By configuring this object, the
network administrator can limit the rate at which
station-learning frames are generated.
If the platform does not support configuration of this
object when the object value of stpxSpanningTreeType is
mst(4), then this object is not instantiated."
::= { stpxUplinkFastObjects 3 }
stpxUplinkStationLearningFrames OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of station-learning frames generated
due to UplinkFast transitions. All generated
station-learning frames are included in this counter,
irrespective of the instance of the Spanning Tree Protocol
on which the UplinkFast transition occurred.
If the platform supports the stpxUplinkFastOperEnabled
object, then this object is not instantiated when the
object value of stpxUplinkFastOperEnabled is false(2).
If the platform does not support the
stpxUplinkFastOperEnabled object, then this object is
not instantiated when the object value of
stpxSpanningTreeType is mst(4)."
::= { stpxUplinkFastObjects 4 }
stpxUplinkFastOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether the UplinkFast capability is
operationally enabled on the device."
::= { stpxUplinkFastObjects 5 }
--
-- Preferred VLANs for Load-Sharing across VLAN Trunk Ports
--
stpxPreferredVlansTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPreferredVlansEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table containing indications of which VLANs are
preferred on which VLAN trunk ports. The preferred
VLANs on a trunk port have a lower Path Cost value
compared with the VLANs on the trunk not in the
preferred list. If the value of stpxSpanningTreeType
is neither pvstPlus(1) nor rapidPvstPlus(5), the
configuration in this table has no effect. "
::= { stpxVlanObjects 1 }
stpxPreferredVlansEntry OBJECT-TYPE
SYNTAX StpxPreferredVlansEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry indicating which VLANs are preferred on a
specific VLAN trunk port."
AUGMENTS { vlanTrunkPortEntry }
::= { stpxPreferredVlansTable 1 }
StpxPreferredVlansEntry ::=
SEQUENCE {
stpxPreferredVlansMap OCTET STRING,
stpxPreferredVlansMap2k OCTET STRING,
stpxPreferredVlansMap3k OCTET STRING,
stpxPreferredVlansMap4k OCTET STRING
}
stpxPreferredVlansMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN in the
management domain on this trunk port. The first octet
corresponds to VLANs with VlanIndex values of 0 through 7;
the second octet to VLANs 8 through 15; etc. The most
significant bit of each octet corresponds to the lowest
value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 1 }
stpxPreferredVlansMap2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 1024 through 2047 in the management
domain on this trunk port. The first octet corresponds to
VLANs with VlanIndex values of 1024 through 1031;
the second octet to VLANs 1032 through 1039; etc.
The most significant bit of each octet corresponds to the
lowest value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 2 }
stpxPreferredVlansMap3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 2048 through 3071 in the management
domain on this trunk port. The first octet corresponds to
VLANs with VlanIndex values of 2048 through 2055;
the second octet to VLANs 2056 through 2063; etc.
The most significant bit of each octet corresponds to the
lowest value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 3 }
stpxPreferredVlansMap4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 3072 through 4095 in the management
domain on this trunk port. The first octet corresponds to
VLANs with VlanIndex values of 3072 through 3079;
the second octet to VLANs 3080 through 3087; etc.
The most significant bit of each octet corresponds to the
lowest value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 4 }
--
-- Spanning Tree Protocol PVST+ VLAN Configuration
--
stpxPVSTVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPVSTVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A list of Virtual LAN entries containing
information for Spanning Tree PVST+ protocol.
An entry will exist for each VLAN existing on
the device."
::= { stpxVlanObjects 2 }
stpxPVSTVlanEntry OBJECT-TYPE
SYNTAX StpxPVSTVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing Spanning Tree PVST+ Protocol
information for a particular Virtual LAN."
INDEX { stpxPVSTVlanIndex }
::= { stpxPVSTVlanTable 1 }
StpxPVSTVlanEntry ::=
SEQUENCE {
stpxPVSTVlanIndex
VlanIndex,
stpxPVSTVlanEnable
INTEGER
}
stpxPVSTVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An index value that uniquely identifies the
Virtual LAN associated with this information."
::= { stpxPVSTVlanEntry 1 }
stpxPVSTVlanEnable OBJECT-TYPE
SYNTAX INTEGER { enabled(1),
disabled(2),
notApplicable(3) -- read-only
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether Spanning Tree PVST+
Protocol is enabled for this Virtual LAN. If
Spanning Tree PVST+ Protocol is not supported
on this VLAN, then notApplicable(3) will be
returned while retrieving the object value for
this VLAN.
If the device only supports a single global
Spanning Tree PVST+ Protocol enable/disable
for all the existing VLANs, then the object
value assigned to this VLAN will be applied
to the object values of all the instances
in this table which do not have the value
of notApplicable(3).
If the value of stpxSpanningTreeType is neither
pvstPlus(1) nor rapidPvstPlus(5), then the value
of stpxPVSTVlanEnable for this VLAN can not be
changed."
DEFVAL { enabled }
::= { stpxPVSTVlanEntry 2 }
--
-- Objects to support Cisco's Shared Spanning Tree Protocol (SSTP).
--
stpxInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the ports for which
a particular VLAN's Spanning Tree has been found to
have an inconsistency. Two types of inconsistency
are discovered: 1) an inconsistency where two different
port types have been plugged together; and 2) an
inconsistency where different switches have different
PVIDs for the same link."
::= { stpxInconsistencyObjects 1 }
stpxInconsistencyEntry OBJECT-TYPE
SYNTAX StpxInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A VLAN on a particular port for which a Spanning Tree
inconsistency is currently in effect."
INDEX { stpxVlanIndex, stpxPortIndex }
::= { stpxInconsistencyTable 1 }
StpxInconsistencyEntry ::= SEQUENCE {
stpxVlanIndex VlanIndex,
stpxPortIndex Integer32,
stpxInconsistentState BITS
}
stpxVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN id of the VLAN."
::= { stpxInconsistencyEntry 1 }
stpxPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE
"dot1dBasePort is defined in RFC1493."
::= { stpxInconsistencyEntry 2 }
stpxInconsistentState OBJECT-TYPE
SYNTAX BITS {
typeInconsistent(0), -- a port-type inconsistency
pvidInconsistent(1) -- a PVID inconsistency
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The types of inconsistency which have been discovered on
this port for this VLAN's Spanning Tree.
When this object exists, the value of the corresponding
instance of the Bridge MIB's dot1dStpPortState object will
be 'broken(6)'."
REFERENCE
"dot1dStpPortState is defined in RFC-1493."
::= { stpxInconsistencyEntry 3 }
--
-- BackboneFast capability
--
stpxBackboneFastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the BackboneFast capability is
administratively enabled on the device."
::= { stpxBackboneFastObjects 1 }
stpxBackboneFastInInferiorBPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inferior BPDUs received by the switch
since the stpxBackboneFastOperEnabled has
become true(1). If the value of
stpxBackboneFastOperEnabled is false(2), then this
mib object will have a value of 0."
::= { stpxBackboneFastObjects 2 }
stpxBackboneFastInRLQRequestPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query request PDUs received by the
switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 3 }
stpxBackboneFastInRLQResponsePDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query response PDUs received by the
switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 4 }
stpxBackboneFastOutRLQRequestPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query request PDUs transmitted by
the switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 5 }
stpxBackboneFastOutRLQResponsePDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query response PDUs transmitted by
the switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 6 }
stpxBackboneFastOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether the BackboneFast capability is
operationally enabled on the device."
::= { stpxBackboneFastObjects 7 }
--
-- STP Root Guard Capability
--
stpxRootGuardConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRootGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
Spanning Tree RootGuard capability can be configured."
::= { stpxRootGuardObjects 1 }
stpxRootGuardConfigEntry OBJECT-TYPE
SYNTAX StpxRootGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A bridge port for which Spanning Tree RootGuard
capability can be configured."
INDEX { stpxRootGuardConfigPortIndex }
::= { stpxRootGuardConfigTable 1 }
StpxRootGuardConfigEntry ::= SEQUENCE {
stpxRootGuardConfigPortIndex Integer32,
stpxRootGuardConfigEnabled TruthValue
}
stpxRootGuardConfigPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE
"dot1dBasePort is defined in RFC1493."
::= { stpxRootGuardConfigEntry 1 }
stpxRootGuardConfigEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the RootGuard capability is
enabled on this port or not. This configuration will be
applied to all Spanning Tree instances in which this port
exists."
DEFVAL { false }
::= { stpxRootGuardConfigEntry 2 }
stpxRootInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRootInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
a particular Spanning Tree instance has been found
to have an root-inconsistency. The agent creates a new
entry in this table whenever it detects a new
root-inconsistency, and deletes entries
when/soon after the inconsistency is no longer present."
::= { stpxRootGuardObjects 2 }
stpxRootInconsistencyEntry OBJECT-TYPE
SYNTAX StpxRootInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Spanning Tree instance on a particular port for
which a Spanning Tree root-inconsistency is currently
in effect."
INDEX { stpxRootInconsistencyIndex, stpxRootInconsistencyPortIndex }
::= { stpxRootInconsistencyTable 1 }
StpxRootInconsistencyEntry ::= SEQUENCE {
stpxRootInconsistencyIndex Integer32,
stpxRootInconsistencyPortIndex Integer32,
stpxRootInconsistencyState TruthValue
}
stpxRootInconsistencyIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, such as the VLAN id
of the VLAN if the object value of stpxSpanningTreeType
is pvstPlus(1) or rapidPvstPlus(5)."
::= { stpxRootInconsistencyEntry 1 }
stpxRootInconsistencyPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE
"dot1dBasePort is defined in RFC1493."
::= { stpxRootInconsistencyEntry 2 }
stpxRootInconsistencyState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the port on a particular Spanning
Tree instance is currently in root-inconsistent
state or not."
::= { stpxRootInconsistencyEntry 3 }
--
-- stpxSpanningTreeObjects
--
stpxSpanningTreeType OBJECT-TYPE
SYNTAX INTEGER {
pvstPlus(1),
mistp(2),
mistpPvstPlus(3),
mst(4),
rapidPvstPlus(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The actual mode of spanning tree protocol runs
on the device. It can be one of the following:
pvstPlus -- PVST+ (Per VLAN Spanning Tree+ Protocol).
mistp -- MISTP (Multi Instance Spanning Tree Protocol).
mistpPvstPlus -- MISTP with the tunneling scheme
enabled for PVST+.
mst -- IEEE 802.1s Multiple Spanning Tree (MST)
with IEEE 802.1w Rapid Spanning Tree Protocol
(RSTP).
rapidPvstPlus -- IEEE 802.1w Rapid Spanning Tree
Protocol (RSTP) for all vlans in PVST+.
When the value of this MIB object gets changed, the
network connectivity would be affected and the
connectivity to this device would also be lost
temporarily."
DEFVAL { pvstPlus }
::= { stpxSpanningTreeObjects 1}
stpxSpanningTreePathCostMode OBJECT-TYPE
SYNTAX INTEGER {
short(1), -- 16 bits spanning tree path
-- cost mode
long(2) -- 32 bits spanning tree path
-- cost mode
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the administrative spanning tree path cost mode
configured on device."
DEFVAL { short }
::= { stpxSpanningTreeObjects 2 }
stpxLongStpPortPathCostTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxLongStpPortPathCostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the spanning tree port path cost
configuration when stpxSpanningTreePathCostOperMode is
long(2).
If the value of stpxSpanningTreePathCostOperMode is
short(1), this table is not instantiated."
::= { stpxSpanningTreeObjects 3 }
stpxLongStpPortPathCostEntry OBJECT-TYPE
SYNTAX StpxLongStpPortPathCostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the spanning tree port path cost
configuration."
AUGMENTS { dot1dStpPortEntry }
::= { stpxLongStpPortPathCostTable 1 }
StpxLongStpPortPathCostEntry ::= SEQUENCE {
stpxLongStpPortPathCost Unsigned32
}
stpxLongStpPortPathCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The contribution of this port to the path cost (in 32
bits value) of paths towards the spanning tree root which
include this port.
This object is used to configure the spanning tree port
path cost in 32 bits value range when the
stpxSpanningTreePathCostOperMode is long(2).
If the stpxSpanningTreePathCostOperMode is short(1), this
MIB object is not instantiated."
::= { stpxLongStpPortPathCostEntry 1}
stpxExtendedSysIDAdminEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether Extended System ID feature
is administratively enabled on the device or not."
REFERENCE
"IEEE 802.1t."
::= { stpxSpanningTreeObjects 4 }
stpxExtendedSysIDOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether Extended System ID feature
is operationaly enabled on the device or not.
If the value of this object is true(1), then
the accepted values for dot1dStpPriority
in BRIDGE-MIB should be multiples of 4096 plus
bridge instance ID, such as VlanIndex. Changing
this object value might cause the values of
dot1dBaseBridgeAddress and dot1dStpPriority
in BRIDGE-MIB to be changed also."
REFERENCE
"IEEE 802.1t."
::= { stpxSpanningTreeObjects 5 }
stpxNotificationEnable OBJECT-TYPE
SYNTAX BITS {
newRoot(0),
topologyChange(1),
inconsistency(2),
rootInconsistency(3),
loopInconsistency(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether a specified notification is enabled or not.
If a bit corresponding to a notification is set to 1, then
the specified notification can be generated.
newRoot -- the newRoot notification as defined in BRIDGE-MIB.
topologyChange -- the topologyChange notification as
defined in BRIDGE-MIB.
inconsistency -- the stpxInconsistencyUpdate notification.
rootInconsistency -- the stpxRootInconsistencyUpdate
notification.
loopInconsistency -- the stpxLoopInconsistencyUpdate
notification."
::= { stpxSpanningTreeObjects 6 }
stpxSpanningTreePathCostOperMode OBJECT-TYPE
SYNTAX INTEGER {
short(1), -- 16 bits spanning tree path
-- cost mode
long(2) -- 32 bits spanning tree path
-- cost mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the operational spanning tree path cost mode
on device. This mode applies to all instances of the Spanning
Tree protocol running on the device.
When the value of this MIB object gets changed, the path cost
of all ports will be reassigned to the default path cost
values based on the new spanning tree path cost mode and the
ports' speed.
When the value of this MIB object is long(2),
the stpxLongStpPortPathCost MIB object must be used in order
to retrieve/configure the spanning tree port path cost as a
32 bits value. The set operation on dot1dStpPortPathCost in
BRIDGE-MIB will be rejected. While retrieving the value of
dot1dStpPortPathCost, the maximum value of 65535 will be
returned if the value of stpxLongStpPortPathCost for the same
instance exceeds 65535.
When the value of this MIB object is short(1),
the dot1dStpPortPathCost in BRIDGE-MIB must be used."
::= { stpxSpanningTreeObjects 7 }
-- MISTP Objects
stpxMISTPInstanceNumber OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of MISTP instances, that are supported by the device
when the value of stpxSpanningTreeType is either mistp(2)
or mistpPvstPlus(3)."
::= { stpxMISTPObjects 1}
-- When stpxSpanningTreeType is modified from a value of 'pvstPlus' to
-- either 'mistp' or 'mistpPvstPlus', the agent will create a fixed
-- number (specified in stpxMISTPInstanceNumber) of MISTP instances in
-- this table. When stpxSpanningTreeType is changed to 'pvstPlus', the
-- agent will delete all the MISTP instances from this table and also
-- all the MIB objects associated with them.
stpxMISTPInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMISTPInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one entry for each instance of MISTP and
it contains stpxMISTPInstanceNumber entries, numbered from 1
to stpxMISTPInstanceNumber.
This table is only instantiated when the value of
stpxSpanningTreeType is mistp(2) or mistpPvstPlus(3)."
::= {stpxMISTPObjects 2 }
stpxMISTPInstanceEntry OBJECT-TYPE
SYNTAX StpxMISTPInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION