-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathENTERASYS-SPANNING-TREE-DIAGNOSTIC-MIB
1675 lines (1499 loc) · 59.4 KB
/
ENTERASYS-SPANNING-TREE-DIAGNOSTIC-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ENTERASYS-SPANNING-TREE-DIAGNOSTIC-MIB DEFINITIONS ::= BEGIN
-- enterasys-spanning-tree-diagnostic-mib.txt
--
-- Part Number:
--
--
-- This module provides authoritative definitions for Enterasys
-- Networks' IEEE Spanning Tree Diagnostic MIB.
--
-- This module will be extended, as needed.
-- Enterasys Networks reserves the right to make changes in this
-- specification and other information contained in this document
-- without prior notice. The reader should consult Enterasys Networks
-- to determine whether any such changes have been made.
--
-- In no event shall Enterasys Networks be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Enterasys
-- Networks has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Enterasys Networks grants vendors, end-users, and other interested
-- parties a non-exclusive license to use this Specification in
-- connection with the management of Enterasys Networks products.
-- Copyright 2002-2006 Enterasys Networks, Inc.
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Counter32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DateAndTime
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
BridgeId, dot1dStpPortEntry, dot1dStpPort
FROM BRIDGE-MIB
etsysModules
FROM ENTERASYS-MIB-NAMES;
etsysSpanningTreeDiagnosticMIB MODULE-IDENTITY
LAST-UPDATED "200610041949Z" -- Wed Oct 4 19:49 GMT 2006
ORGANIZATION "Enterasys Networks, Inc"
CONTACT-INFO
"Postal: Enterasys Networks
50 Minuteman Rd.
Andover, MA 01810-1008
USA
Phone: +1 978 684 1000
E-mail: [email protected]
WWW: http://www.enterasys.com"
DESCRIPTION
"This MIB module defines a portion of the SNMP enterprise
MIBs under Enterasys Networks' enterprise OID pertaining to
the Spanning Tree Protocols IEEE 802.1D, 802.1w, and 802.1s."
REVISION "200610041949Z" -- Wed Oct 4 19:49 GMT 2006
DESCRIPTION
"Added an object specifying a disputed BPDU threshold value,
and added two disputed BPDU threshold exceeded notifications,
one for the CIST and one for MSTIs."
REVISION "200501241546Z" -- Mon Jan 24 15:46 GMT 2005
DESCRIPTION
"Changed references of dot1dBasePort to dot1dStpPort."
REVISION "200406071920Z" -- Mon Jun 7 19:20 GMT 2004
DESCRIPTION
"Added the etsysStpDiagCistBridgePortTable and
etsysStpDiagMstiBridgePortTable which are the
same as the etsysStpDiagCistPortTable and the
etsysStpDiagMstiPortTable but are index by
bridge port."
REVISION "200301151918Z" -- Wed Jan 15 19:18 GMT 2003
DESCRIPTION
"Added four objects to count the number of inferior BPDUs
received from a bridge port that incorrectly believes itself
to be the designated port."
REVISION "200211211901Z" -- Thu Nov 21 19:01 GMT 2002
DESCRIPTION
"Added four objects to count the reception and transmission
of IEEE 802.1D Configuration BPDUs with their Topology Change
flags set, both on a overall and on a per port basis.
Deprecated the etsysStpDiagMstiPortTopChanges object."
REVISION "200211182136Z" -- Mon Nov 18 21:36 GMT 2002
DESCRIPTION
"Added etsysStpDiagMstiPortNumber as an index to
etsysStpDiagMstiPortTable."
REVISION "200210102101Z" -- Thu Oct 10 21:01 GMT 2002
DESCRIPTION
"The initial version of this MIB module"
::= { etsysModules 29 }
-- -------------------------------------------------------------
-- Textual Conventions
-- -------------------------------------------------------------
EtsysStpPortRole ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Indicates the port role for RST and MST:
disabled - This port has no role.
root - This port has the role of root port.
designated - This port has the role of designated port.
alternate - This port has the role of alternate port.
backUp - This port has the role of backup port.
master - This port has the role of master port."
REFERENCE
"IEEE P802.1s/D15 clause 13.12"
SYNTAX INTEGER {
disabled(1),
root(2),
designated(3),
alternate(4),
backUp(5),
master(6)
}
-- ---------------------------------------------------------- --
-- branches in the ENTERASYS-SPANNING-TREE-DIAGNOSTIC-MIB
-- ---------------------------------------------------------- --
etsysStpDiagObjects OBJECT IDENTIFIER ::= { etsysSpanningTreeDiagnosticMIB 1 }
etsysStpDiagControl OBJECT IDENTIFIER ::= { etsysStpDiagObjects 1 }
etsysStpDiagCommon OBJECT IDENTIFIER ::= { etsysStpDiagObjects 2 }
etsysStpDiagCistPort OBJECT IDENTIFIER ::= { etsysStpDiagObjects 3 }
etsysStpDiagMsti OBJECT IDENTIFIER ::= { etsysStpDiagObjects 4 }
etsysStpDiagMstiPort OBJECT IDENTIFIER ::= { etsysStpDiagObjects 5 }
etsysStpDiagRootHistory OBJECT IDENTIFIER ::= { etsysStpDiagObjects 6 }
etsysStpDiagTrapConfig OBJECT IDENTIFIER ::= { etsysStpDiagObjects 7 }
etsysStpDiagNotifications OBJECT IDENTIFIER ::= { etsysStpDiagObjects 0 }
-- ---------------------------------------------------------- --
-- Spanning Tree diagnostic MIB control info
-- ---------------------------------------------------------- --
etsysStpDiagCounterReset OBJECT-TYPE
SYNTAX INTEGER {
noOp(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reading this object always returns noOp(1). Writing the
value noOp(1) has no effect. Writing the value reset(2)
to this object will cause all of the counters in this MIB
module to be reset to zero. Zeroing the counters in this
MIB module MUST NOT effect the data presented in any other
MIB module. Zeroing the counters in this MIB module WILL
affect all users of this MIB module. It is expected that
this MIB module will be used by only one person at a time,
as counter resets will cause counter discontinuities for
all users."
::= { etsysStpDiagControl 1 }
etsysStpDiagCounterResetElapsedTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since the counters in this MIB module
were last reset to zero. If the counters have not been
reset to zero since the last initialization return the
number of seconds since the last initialization."
::= { etsysStpDiagControl 2 }
etsysStpDiagCounterResetDateAndTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time at which the counters in this MIB module
were last reset to zero. If the counters have not been
reset to zero since the last initialization return the
date and time of the last initialization."
::= { etsysStpDiagControl 3 }
-- ---------------------------------------------------------- --
-- Common and Internal Spanning Tree diagnostic info
-- ---------------------------------------------------------- --
etsysStpDiagTopChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of topology changes. This is a shadow copy
of the dot1dStpTopChanges object from the IETF BRIDGE-MIB.
Zeroing this object MUST NOT affect dot1dStpTopChanges."
REFERENCE
"IEEE P802.1s/D15 clause 12.8.1.1.3"
::= { etsysStpDiagCommon 1 }
etsysStpDiagCommonInvalidBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid BPDUs received."
REFERENCE
"IEEE P802.1s/D15 clause 14.4"
::= { etsysStpDiagCommon 2 }
etsysStpDiagCommonStpCfgBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 3 }
etsysStpDiagCommonStpCfgBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 4 }
etsysStpDiagCommonStpTcnBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs received."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 5 }
etsysStpDiagCommonStpTcnBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs transmitted."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 6 }
etsysStpDiagCommonRstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCommon 7 }
etsysStpDiagCommonRstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCommon 8 }
etsysStpDiagCommonRstTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received with the
Topology Change flag set. These BPDUs are included
in the overall count of 802.1w BPDUs received in the
etsysStpDiagCommonRstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCommon 9 }
etsysStpDiagCommonRstTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted with the
Topology Change flag set. These BPDUs are included
in the overall count of 802.1w BPDUs transmitted in
the etsysStpDiagCommonRstBpduTx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCommon 10 }
etsysStpDiagCommonMstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCommon 11 }
etsysStpDiagCommonMstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCommon 12 }
etsysStpDiagCommonMstCistTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received with the
Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs received in the etsysStpDiagCommonMstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCommon 13 }
etsysStpDiagCommonMstCistTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted with the
Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs transmitted in the etsysStpDiagCommonMstBpduRx
object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCommon 14 }
etsysStpDiagCommonStpCfgBpduRxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received
with the Topology Change flag set. These BPDUs are included
in the overall count of 802.1D Configuration BPDUs received
in the etsysStpDiagCommonStpCfgBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 15 }
etsysStpDiagCommonStpCfgBpduTxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted
with the Topology Change flag set. These BPDUs are included
in the overall count of 802.1D Configuration BPDUs transmitted
in the etsysStpDiagCommonStpCfgBpduTx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCommon 16 }
etsysStpDiagCommonDisputedBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of BPDUs received with inferior designated
information and that have the learning flag set. These
BPDU's may indicate the presence of a one way communication
path between adjacent bridge ports. They can also occur as
part of normal operation of a network, and may persist for a
while during power up."
REFERENCE
"IEEE DRAFT P802.1y/D4 clause 17.19.25"
::= { etsysStpDiagCommon 17 }
etsysStpDiagMessageExpiration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the BPDU message timer expired.
This indicates that BPDUs are not being received on
a regular basis."
::= { etsysStpDiagCommon 28 }
-- ---------------------------------------------------------- --
-- Common and Internal Spanning Tree per port diagnostic info
-- ---------------------------------------------------------- --
--
-- ---------------------------------------------------------- --
-- NOTE: This table is instanced by MIB-II interface number.
-- ---------------------------------------------------------- --
etsysStpDiagCistPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysStpDiagCistPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains port level diagnostic information
indexed by its MIB-II interface number."
::= { etsysStpDiagCistPort 1 }
etsysStpDiagCistPortEntry OBJECT-TYPE
SYNTAX EtsysStpDiagCistPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of diagnostic information maintained for every port."
INDEX { etsysStpDiagCistPortNumber }
::= { etsysStpDiagCistPortTable 1 }
EtsysStpDiagCistPortEntry ::=
SEQUENCE {
etsysStpDiagCistPortNumber InterfaceIndex,
etsysStpDiagCistPortRole EtsysStpPortRole,
etsysStpDiagCistPortInvalidBpdu Counter32,
etsysStpDiagCistPortStpCfgBpduRx Counter32,
etsysStpDiagCistPortStpCfgBpduTx Counter32,
etsysStpDiagCistPortStpTcnBpduRx Counter32,
etsysStpDiagCistPortStpTcnBpduTx Counter32,
etsysStpDiagCistPortRstBpduRx Counter32,
etsysStpDiagCistPortRstBpduTx Counter32,
etsysStpDiagCistPortRstTcRx Counter32,
etsysStpDiagCistPortRstTcTx Counter32,
etsysStpDiagCistPortMstBpduRx Counter32,
etsysStpDiagCistPortMstBpduTx Counter32,
etsysStpDiagCistPortMstCistTcRx Counter32,
etsysStpDiagCistPortMstCistTcTx Counter32,
etsysStpDiagCistPortExpiration Counter32,
etsysStpDiagCistPortStpCfgBpduRxTcFlagSet Counter32,
etsysStpDiagCistPortStpCfgBpduTxTcFlagSet Counter32,
etsysStpDiagCistPortDisputedBpdu Counter32
}
etsysStpDiagCistPortNumber OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MIB-II interface number of the port for which this entry
contains Spanning Tree Protocol diagnostic information."
REFERENCE
"IEEE P802.1s/D15 clause 12.8.2"
::= { etsysStpDiagCistPortEntry 1 }
etsysStpDiagCistPortRole OBJECT-TYPE
SYNTAX EtsysStpPortRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the port role for this port."
REFERENCE
"IEEE P802.1s/D15 clause 13.12"
::= { etsysStpDiagCistPortEntry 2 }
etsysStpDiagCistPortInvalidBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.4"
::= { etsysStpDiagCistPortEntry 3 }
etsysStpDiagCistPortStpCfgBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received
on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 4 }
etsysStpDiagCistPortStpCfgBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted
on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 5 }
etsysStpDiagCistPortStpTcnBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 6 }
etsysStpDiagCistPortStpTcnBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 7 }
etsysStpDiagCistPortRstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistPortEntry 8 }
etsysStpDiagCistPortRstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistPortEntry 9 }
etsysStpDiagCistPortRstTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received on this port
with the Topology Change flag set. These BPDUs are
included in the overall count of 802.1w BPDUs received
in the etsysStpDiagCistPortRstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistPortEntry 10 }
etsysStpDiagCistPortRstTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted on this
port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1w BPDUs
transmitted in the etsysStpDiagCistPortRstBpduTx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistPortEntry 11 }
etsysStpDiagCistPortMstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistPortEntry 12 }
etsysStpDiagCistPortMstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistPortEntry 13 }
etsysStpDiagCistPortMstCistTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received on this port
with the Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs received in the etsysStpDiagCistPortMstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistPortEntry 14 }
etsysStpDiagCistPortMstCistTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted on this port
with the Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs transmitted in the etsysStpDiagCistPortMstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistPortEntry 15 }
etsysStpDiagCistPortExpiration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the BPDU message timer expired.
This indicates that BPDUs are not being received on
a regular basis."
::= { etsysStpDiagCistPortEntry 16 }
etsysStpDiagCistPortStpCfgBpduRxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received
on this port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1D Configuration
BPDUs received in the etsysStpDiagCistPortStpCfgBpduRx
object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 17 }
etsysStpDiagCistPortStpCfgBpduTxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted
on this port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1D Configuration
BPDUs transmitted in the etsysStpDiagCistPortStpCfgBpduRx
object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistPortEntry 18 }
etsysStpDiagCistPortDisputedBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of BPDUs received on this port with inferior
designated information and that have the learning flag set.
These BPDU's may indicate the presence of a one way
communication path between adjacent bridge ports. They can
also occur as part of normal operation of a network, and may
persist for a while during power up."
REFERENCE
"IEEE DRAFT P802.1y/D4 clause 17.19.25"
::= { etsysStpDiagCistPortEntry 19 }
-- ---------------------------------------------------------- --
-- Common and Internal Spanning Tree per bridge port diag info
-- ---------------------------------------------------------- --
--
-- ---------------------------------------------------------- --
-- NOTE: This table augments dot1dStpPortEntry
-- ---------------------------------------------------------- --
etsysStpDiagCistBridgePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysStpDiagCistBridgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains port level diagnostic information
indexed by bridge port."
::= { etsysStpDiagCistPort 2 }
etsysStpDiagCistBridgePortEntry OBJECT-TYPE
SYNTAX EtsysStpDiagCistBridgePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of diagnostic information maintained for every port."
AUGMENTS { dot1dStpPortEntry }
::= { etsysStpDiagCistBridgePortTable 1 }
EtsysStpDiagCistBridgePortEntry ::=
SEQUENCE {
etsysStpDiagCistBridgePortRole EtsysStpPortRole,
etsysStpDiagCistBridgePortInvalidBpdu Counter32,
etsysStpDiagCistBridgePortStpCfgBpduRx Counter32,
etsysStpDiagCistBridgePortStpCfgBpduTx Counter32,
etsysStpDiagCistBridgePortStpTcnBpduRx Counter32,
etsysStpDiagCistBridgePortStpTcnBpduTx Counter32,
etsysStpDiagCistBridgePortRstBpduRx Counter32,
etsysStpDiagCistBridgePortRstBpduTx Counter32,
etsysStpDiagCistBridgePortRstTcRx Counter32,
etsysStpDiagCistBridgePortRstTcTx Counter32,
etsysStpDiagCistBridgePortMstBpduRx Counter32,
etsysStpDiagCistBridgePortMstBpduTx Counter32,
etsysStpDiagCistBridgePortMstCistTcRx Counter32,
etsysStpDiagCistBridgePortMstCistTcTx Counter32,
etsysStpDiagCistBridgePortExpiration Counter32,
etsysStpDiagCistBridgePortStpCfgBpduRxTcFlagSet Counter32,
etsysStpDiagCistBridgePortStpCfgBpduTxTcFlagSet Counter32,
etsysStpDiagCistBridgePortDisputedBpdu Counter32
}
etsysStpDiagCistBridgePortRole OBJECT-TYPE
SYNTAX EtsysStpPortRole
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the port role for this port."
REFERENCE
"IEEE P802.1s/D15 clause 13.12"
::= { etsysStpDiagCistBridgePortEntry 2 }
etsysStpDiagCistBridgePortInvalidBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of invalid BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.4"
::= { etsysStpDiagCistBridgePortEntry 3 }
etsysStpDiagCistBridgePortStpCfgBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received
on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 4 }
etsysStpDiagCistBridgePortStpCfgBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted
on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 5 }
etsysStpDiagCistBridgePortStpTcnBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 6 }
etsysStpDiagCistBridgePortStpTcnBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Topology Change Notification
BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 7 }
etsysStpDiagCistBridgePortRstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistBridgePortEntry 8 }
etsysStpDiagCistBridgePortRstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistBridgePortEntry 9 }
etsysStpDiagCistBridgePortRstTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs received on this port
with the Topology Change flag set. These BPDUs are
included in the overall count of 802.1w BPDUs received
in the etsysStpDiagCistPBridgeortRstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistBridgePortEntry 10 }
etsysStpDiagCistBridgePortRstTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1w BPDUs transmitted on this
port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1w BPDUs
transmitted in the etsysStpDiagCistBridgePortRstBpduTx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.2"
::= { etsysStpDiagCistBridgePortEntry 11 }
etsysStpDiagCistBridgePortMstBpduRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistBridgePortEntry 12 }
etsysStpDiagCistBridgePortMstBpduTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted on this port."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistBridgePortEntry 13 }
etsysStpDiagCistBridgePortMstCistTcRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received on this port
with the Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs received in the etsysStpDiagCistBridgePortMstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistBridgePortEntry 14 }
etsysStpDiagCistBridgePortMstCistTcTx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs transmitted on this port
with the Topology Change flag set in the CIST Flags field.
These BPDUs are included in the overall count of 802.1s
BPDUs transmitted in the etsysStpDiagCistBridgePortMstBpduRx object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.3"
::= { etsysStpDiagCistBridgePortEntry 15 }
etsysStpDiagCistBridgePortExpiration OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the BPDU message timer expired.
This indicates that BPDUs are not being received on
a regular basis."
::= { etsysStpDiagCistBridgePortEntry 16 }
etsysStpDiagCistBridgePortStpCfgBpduRxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs received
on this port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1D Configuration
BPDUs received in the etsysStpDiagCistBridgePortStpCfgBpduRx
object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 17 }
etsysStpDiagCistBridgePortStpCfgBpduTxTcFlagSet OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1D Configuration BPDUs transmitted
on this port with the Topology Change flag set. These BPDUs
are included in the overall count of 802.1D Configuration
BPDUs transmitted in the etsysStpDiagCistBridgePortStpCfgBpduRx
object."
REFERENCE
"IEEE P802.1s/D15 clause 14.3.1"
::= { etsysStpDiagCistBridgePortEntry 18 }
etsysStpDiagCistBridgePortDisputedBpdu OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of BPDUs received on this port with inferior
designated information and that have the learning flag set.
These BPDU's may indicate the presence of a one way
communication path between adjacent bridge ports. They can
also occur as part of normal operation of a network, and may
persist for a while during power up."
REFERENCE
"IEEE DRAFT P802.1y/D4 clause 17.19.25"
::= { etsysStpDiagCistBridgePortEntry 19 }
-- ---------------------------------------------------------- --
-- Multiple Spanning Tree Instance diagnostic info
-- ---------------------------------------------------------- --
etsysStpDiagMstiTable OBJECT-TYPE
SYNTAX SEQUENCE OF EtsysStpDiagMstiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains diagnostic information for each
IEEE 802.1s Multiple Spanning Tree Instance."
::= { etsysStpDiagMsti 1 }
etsysStpDiagMstiEntry OBJECT-TYPE
SYNTAX EtsysStpDiagMstiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of diagnostic information for each IEEE 802.1s
Multiple Spanning Tree Instance that is configured."
INDEX { etsysStpDiagMstiId }
::= { etsysStpDiagMstiTable 1 }
EtsysStpDiagMstiEntry ::=
SEQUENCE {
etsysStpDiagMstiId Unsigned32,
etsysStpDiagMstiTopChanges Counter32,
etsysStpDiagMstiConfigMsgRx Counter32,
etsysStpDiagMstiConfigMsgTx Counter32,
etsysStpDiagMstiTcRx Counter32,
etsysStpDiagMstiTcTx Counter32,
etsysStpDiagMstiDisputedBpdu Counter32
}
etsysStpDiagMstiId OBJECT-TYPE
SYNTAX Unsigned32 (1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique ID of this Multiple Spanning Tree instance.
The CIST (common and internal spanning tree) is not
represented in this table. There are a maximum of
sixty-four MSTIs, each with a unique identifier in
the range of 1-4094."
REFERENCE
"IEEE P802.1s/D15 clause 12.8.1.2.2"
::= { etsysStpDiagMstiEntry 1 }
etsysStpDiagMstiTopChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of topology changes detected on
this Mulitple Spanning Tree Instance."
REFERENCE
"IEEE P802.1s/D15 clause 12.8.1.2.3"
::= { etsysStpDiagMstiEntry 2 }
etsysStpDiagMstiConfigMsgRx OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of 802.1s BPDUs received with MSTI