-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLLDP-EXT-DCBX-MIB
executable file
·994 lines (860 loc) · 36.3 KB
/
LLDP-EXT-DCBX-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
LLDP-EXT-DCBX-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, NOTIFICATION-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
lldpExtensions, LldpPortNumber
FROM LLDP-MIB;
lldpXdcbxMIB MODULE-IDENTITY
LAST-UPDATED "200811200000Z" -- November 20, 2008
ORGANIZATION "IEEE ??? Working Group"
CONTACT-INFO
"WG-URL: ???
WG-EMail: ???
Contact: Robert Cowart
Postal: IBM
6303 Barfield Road NE
Atlanta, GA 30328-4233
USA
Tel: +1-404-935-6841
E-mail: [email protected]
Contact: Nagaraj Govindaiah
Postal: EMULEX
2560 N First St. Ste.300
San Jose, CA 95131
USA
Tel: +1-408-904-4150
E-mail: [email protected]"
DESCRIPTION
"The LLDP Management Information Base extension module for
DCB Capability Exchage Protocol (DCBX).
In order to assure the uniqueness of the LLDP-MIB,
lldpXdcbxMIB is branched from lldpExtensions using OUI value
as the node. An OUI/'company_id' is a 24 bit globally unique
assigned number referenced by various standards."
-- OUI for IEEE DCBX is 6945 (00-1B-21)
::= { lldpExtensions 6945 }
--**************************************************
-- Once the OUI is determined we will use it create
-- the MIB branch for this extension similiar to how
-- other LLDP extensions have done.
--**************************************************
--------
-- Textual Conventions
--------
LldpXdcbxPriority ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"IEEE 802.1p Priorities."
SYNTAX Integer32 (0..7)
LldpXdcbxPriorityGroup ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"DCB Priority Groups."
SYNTAX INTEGER {priorityGroupId0(0),
priorityGroupId1(1),
priorityGroupId2(2),
priorityGroupId3(3),
priorityGroupId4(4),
priorityGroupId5(5),
priorityGroupId6(6),
priorityGroupId7(7),
reserved8(8),
reserved9(9),
reserved10(10),
reserved11(11),
reserved12(12),
reserved13(13),
reserved14(14),
noBandwidthLimit(15)}
LldpXdcbxFeatureType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type code of the DCB Feature. Following is a list of defined types:
2 – Priority Groups
3 – Priority Flow Control
4 - Application Protocol"
SYNTAX INTEGER {
priorityGroup(2),
priorityFlowControl(3),
applicationProtocol(4)
}
LldpXdcbxFeatureSubType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"LLDP DCBX Feature Sub Type."
SYNTAX INTEGER (0..255)
LldpXdcbxVersion ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"LLDP DCBX Version."
SYNTAX INTEGER (0..255)
LldpXdcbxTC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Traffic Classes Supported."
SYNTAX INTEGER (0..7)
LldpXdcbxPgBw ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Priority Group Bandwidth Range."
SYNTAX INTEGER (0..100)
LldpXdcbxTCPFC ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Number of TCs that can simultaneously support PFC."
SYNTAX INTEGER (1..8)
LldpXdcbxTCPeer ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Private Extension: Number of TCs that supported on the peer."
SYNTAX INTEGER (0..8)
LldpXdcbxAppProtos ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Number of Application Protocols (TLVs) supported."
SYNTAX INTEGER (0..15)
LldpXdcbxSF ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Selector Field to specify Application Protocol ID Type."
SYNTAX INTEGER {
l2EtherType(0),
socketNumber(1),
reserved2(2),
reserved3(3)
}
--------
-- DCBX MIB Objects
--------
lldpXdcbxNotifications OBJECT IDENTIFIER ::= { lldpXdcbxMIB 0 }
lldpXdcbxObjects OBJECT IDENTIFIER ::= { lldpXdcbxMIB 1 }
lldpXdcbxFeatures OBJECT IDENTIFIER ::= { lldpXdcbxMIB 2 }
--------
-- DCBX Port Configuration MIB Objects
--------
lldpXdcbxPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of all ports capable of supporting DCBX."
::= { lldpXdcbxObjects 1 }
lldpXdcbxPortEntry OBJECT-TYPE
SYNTAX LldpXdcbxPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing DCBX control parameters for a particular port."
INDEX { lldpXdcbxPortNumber }
::= { lldpXdcbxPortTable 1 }
LldpXdcbxPortEntry ::= SEQUENCE {
lldpXdcbxPortNumber LldpPortNumber,
lldpXdcbxPortEnable TruthValue,
lldpXdcbxPortVersionOper LldpXdcbxVersion,
lldpXdcbxPortVersionMax LldpXdcbxVersion,
lldpXdcbxPortSeqNo Integer32,
lldpXdcbxPortAckNo Integer32 }
lldpXdcbxPortNumber OBJECT-TYPE
SYNTAX LldpPortNumber
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each port contained in the chassis (that is known to the LLDP agent)
is uniquely identified by a port number.
A port number has no mandatory relationship to an InterfaceIndex
object (of the interfaces MIB, IETF RFC 2863). If the LLDP agent is a
IEEE 802.1D, IEEE 802.1Q bridge, the LldpPortNumber will have the same
value as the dot1dBasePort object (defined in IETF RFC 1493)
associated corresponding bridge port. If the system hosting LLDP agent
is not an IEEE 802.1D or an IEEE 802.1Q bridge, the LldpPortNumber
will have the same value as the corresponding interface's
InterfaceIndex object.
Port numbers should be in the range of 1 and 4096 since a particular
port is also represented by the corresponding port number bit in
LldpPortList."
::= { lldpXdcbxPortEntry 1 }
lldpXdcbxPortEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A device capable of any DCB feature must have DCBX enabled by default
with an option for DCBX to be administratively disabled."
DEFVAL { true }
::= { lldpXdcbxPortEntry 2 }
lldpXdcbxPortVersionOper OBJECT-TYPE
SYNTAX LldpXdcbxVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operating version of the DCBX protocol. The system adjusts as needed
to operate at the highest version supported by both link partners."
::= { lldpXdcbxPortEntry 3 }
lldpXdcbxPortVersionMax OBJECT-TYPE
SYNTAX LldpXdcbxVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Highest DCBX protocol version supported by the system. Version numbers
start at zero. The DCBX protocol must be backward compatible with all
previous versions."
::= { lldpXdcbxPortEntry 4 }
lldpXdcbxPortSeqNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value that changes each time an exchanged parameter in one or more
of the DCB feature TLV’s changes."
::= { lldpXdcbxPortEntry 5 }
lldpXdcbxPortAckNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SeqNo value from the most recent peer DCBX TLV that has been
handled. This acknowledges to the peer that a specific SeqNo has
been received."
::= { lldpXdcbxPortEntry 6 }
--------
-- DCBX General Feature Configuration MIB Objects
--------
lldpXdcbxFeatTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of DCBX features configured on this system."
::= { lldpXdcbxFeatures 1 }
lldpXdcbxFeatEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A entry containing DCBX feature parameters which are common to all
features."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatType, lldpXdcbxFeatSubType }
::= { lldpXdcbxFeatTable 1 }
LldpXdcbxFeatEntry ::= SEQUENCE {
lldpXdcbxFeatType LldpXdcbxFeatureType,
lldpXdcbxFeatSubType LldpXdcbxFeatureSubType,
lldpXdcbxFeatVersionOper LldpXdcbxVersion,
lldpXdcbxFeatVersionMax LldpXdcbxVersion,
lldpXdcbxFeatEnable TruthValue,
lldpXdcbxFeatWilling TruthValue,
lldpXdcbxFeatError TruthValue,
lldpXdcbxFeatAdvertise TruthValue,
lldpXdcbxFeatOperMode TruthValue,
lldpXdcbxFeatSyncd TruthValue,
lldpXdcbxFeatSeqNo Integer32,
lldpXdcbxFeatPeerWilling TruthValue,
lldpXdcbxFeatLocalParameterChange TruthValue,
lldpXdcbxFeatPeerEnable TruthValue,
lldpXdcbxFeatPeerError TruthValue,
lldpXdcbxFeatPeerAdvertise TruthValue,
lldpXdcbxFeatPeerTC LldpXdcbxTCPeer }
lldpXdcbxFeatType OBJECT-TYPE
SYNTAX LldpXdcbxFeatureType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type code of the DCB Feature. Following is a list of defined types:
2 – Priority Groups
3 – Priority Flow Control
4 – Application Protocol"
::= { lldpXdcbxFeatEntry 1 }
lldpXdcbxFeatSubType OBJECT-TYPE
SYNTAX LldpXdcbxFeatureSubType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Some Feature TLVs may define subtypes that are specific to that
feature. When subtypes are not defined by a specific feature, subtype
field should be set to zero.
In general, the Type and SubType, taken together, identify a unique
feature that is managed by an instance of the DCB Feature State
Machine."
DEFVAL { 0 }
::= { lldpXdcbxFeatEntry 2 }
lldpXdcbxFeatVersionOper OBJECT-TYPE
SYNTAX LldpXdcbxVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operating version of the feature. The system adjusts to operate at the
highest version supported by both link partners."
::= { lldpXdcbxFeatEntry 3 }
lldpXdcbxFeatVersionMax OBJECT-TYPE
SYNTAX LldpXdcbxVersion
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Highest feature version supported by the system. Version numbers start
at zero. The feature must be backward compatible for all previous
versions."
::= { lldpXdcbxFeatEntry 4 }
lldpXdcbxFeatEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Locally administered parameter that indicates whether the DCB feature
is enabled or not."
DEFVAL { true }
::= { lldpXdcbxFeatEntry 5 }
lldpXdcbxFeatWilling OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Locally administered parameter that indicates whether this feature
accepts its configuration from the peer or not. When set to TRUE, the
system uses the DesiredCfg supplied by a not Willing peer as the
OperCfg. A system set to Willing must be capable of accepting any
valid DesiredCfg for the feature from the peer.
If both local and remote systems have the same value for the Willing
flag, then the local DesiredCfg is used and the operational outcome of
the exchange is determined by the Compatible method of the feature."
DEFVAL { true }
::= { lldpXdcbxFeatEntry 6 }
lldpXdcbxFeatError OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates that an error has occurred during the configuration exchange
with the peer. Error is set TRUE when the OperCfg and OperMode of a
feature cannot be set as the protocol requires. Error is also set to
TRUE when the Compatible method for the feature fails. The Feature
turns OperMode to FALSE if either the local or remote Error flag is
set to TRUE.
Duplicate TLV’s for the same Type/SubType or the DCBX Control TLV also
causes Error to be set to TRUE."
DEFVAL { false }
::= { lldpXdcbxFeatEntry 7 }
lldpXdcbxFeatAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Locally administered parameter that indicates whether this feature is
exchanged in the DCBX TLV. When Advertise is False, received TLVs for
this feature are ignored."
::= { lldpXdcbxFeatEntry 8 }
lldpXdcbxFeatOperMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational state of the feature."
::= { lldpXdcbxFeatEntry 9 }
lldpXdcbxFeatSyncd OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the current DesiredCfg has been received by the
peer."
::= { lldpXdcbxFeatEntry 10 }
lldpXdcbxFeatSeqNo OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When Syncd is False, this indicates the value that SeqNo must
become equal to before Syncd can become True."
::= { lldpXdcbxFeatEntry 11 }
lldpXdcbxFeatPeerWilling OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Willing state of the peer as received in a DCBX TLV from the
peer."
::= { lldpXdcbxFeatEntry 12 }
lldpXdcbxFeatLocalParameterChange OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates that a configurable DCB Feature TLV field or state variable
has been modified on the local system."
::= { lldpXdcbxFeatEntry 13 }
lldpXdcbxFeatPeerEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Private Extension: The Feature Enable state of the peer as received in a DCBX TLV from the
peer."
::= { lldpXdcbxFeatEntry 14 }
lldpXdcbxFeatPeerError OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Private Extension: The Feature Error state of the peer as received in a DCBX TLV from the
peer."
::= { lldpXdcbxFeatEntry 15 }
lldpXdcbxFeatPeerAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Private Extension: The Feature Advertisment state of the peer as received in a DCBX TLV from the
peer."
::= { lldpXdcbxFeatEntry 16 }
lldpXdcbxFeatPeerTC OBJECT-TYPE
SYNTAX LldpXdcbxTCPeer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Private Extension: Number of TCs that supported on the peer.
Relevan for PG and PFC features. If not relevant (as for App feat), will be set to 0."
::= { lldpXdcbxFeatEntry 17 }
--------
-- DCBX Priority Group Feature Configuration MIB Objects
--------
lldpXdcbxFeatPg OBJECT IDENTIFIER ::= { lldpXdcbxFeatures 2 }
lldpXdcbxFeatPgNumTCsSupported OBJECT-TYPE
SYNTAX LldpXdcbxTC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of TCs supported by device.
Number of Priority Groups supported by a device can not be more than
number of TCs supported."
::= { lldpXdcbxFeatPg 1 }
lldpXdcbxFeatPgPrioAllocTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatPgPrioAllocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of priorities and the their priority group assignment or
declaration of no bandwidth limit."
::= { lldpXdcbxFeatPg 2 }
lldpXdcbxFeatPgPrioAllocEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatPgPrioAllocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a priority which allows the priority to be assigned to a
priority group, or declared with no bandwidth limit."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatPgPrioAllocPrioId }
::= { lldpXdcbxFeatPgPrioAllocTable 1 }
LldpXdcbxFeatPgPrioAllocEntry ::= SEQUENCE {
lldpXdcbxFeatPgPrioAllocPrioId LldpXdcbxPriority,
lldpXdcbxFeatPgPrioAllocPgIdDesired LldpXdcbxPriorityGroup,
lldpXdcbxFeatPgPrioAllocPgIdOper LldpXdcbxPriorityGroup,
lldpXdcbxFeatPgPrioAllocPgIdPeer LldpXdcbxPriorityGroup}
lldpXdcbxFeatPgPrioAllocPrioId OBJECT-TYPE
SYNTAX LldpXdcbxPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority which is to be assigned to a priority group, or defined
with no bandwidth limit."
::= { lldpXdcbxFeatPgPrioAllocEntry 1 }
lldpXdcbxFeatPgPrioAllocPgIdDesired OBJECT-TYPE
SYNTAX LldpXdcbxPriorityGroup
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The locally configured priority group value assigned to this
priority."
::= { lldpXdcbxFeatPgPrioAllocEntry 2 }
lldpXdcbxFeatPgPrioAllocPgIdOper OBJECT-TYPE
SYNTAX LldpXdcbxPriorityGroup
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating priority group value assigned to this priority.
NOTE: This value may be different than the locally desired value
depending on whether or not this feature is 'willing' to accept the
peer's desired configuration. The operating configuration MUST match
either the locally desired configuration or the peer's desired
configuration if the feature is operational."
::= { lldpXdcbxFeatPgPrioAllocEntry 3 }
lldpXdcbxFeatPgPrioAllocPgIdPeer OBJECT-TYPE
SYNTAX LldpXdcbxPriorityGroup
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority group value that the peer desires to assign to this
priority."
::= { lldpXdcbxFeatPgPrioAllocEntry 4 }
lldpXdcbxFeatPgBwAllocTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatPgBwAllocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of priority group bandwidth allocations."
::= { lldpXdcbxFeatPg 3 }
lldpXdcbxFeatPgBwAllocEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatPgBwAllocEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a priority group bandwidth allocation."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatPgBwAllocPgId }
::= { lldpXdcbxFeatPgBwAllocTable 1 }
LldpXdcbxFeatPgBwAllocEntry ::= SEQUENCE {
lldpXdcbxFeatPgBwAllocPgId LldpXdcbxPriorityGroup,
lldpXdcbxFeatPgBwAllocBwDesired LldpXdcbxPgBw,
lldpXdcbxFeatPgBwAllocBwOper LldpXdcbxPgBw,
lldpXdcbxFeatPgBwAllocBwPeer LldpXdcbxPgBw}
lldpXdcbxFeatPgBwAllocPgId OBJECT-TYPE
SYNTAX LldpXdcbxPriorityGroup
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority group for which bandwidth is allocated in this table."
::= { lldpXdcbxFeatPgBwAllocEntry 1 }
lldpXdcbxFeatPgBwAllocBwDesired OBJECT-TYPE
SYNTAX LldpXdcbxPgBw
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The locally configured bandwidth allocated to this priority group."
::= { lldpXdcbxFeatPgBwAllocEntry 2 }
lldpXdcbxFeatPgBwAllocBwOper OBJECT-TYPE
SYNTAX LldpXdcbxPgBw
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating bandwidth allocated to this priority group.
NOTE: This value may be different than the locally desired value
depending on whether or not this feature is 'willing' to accept the
peer's desired configuration. The operating configuration MUST match
either the locally desired configuration or the peer's desired
configuration if the feature is operational."
::= { lldpXdcbxFeatPgBwAllocEntry 3 }
lldpXdcbxFeatPgBwAllocBwPeer OBJECT-TYPE
SYNTAX LldpXdcbxPgBw
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bandwidth allocation that the peer desires to assign to this
priority group."
::= { lldpXdcbxFeatPgBwAllocEntry 4 }
--------
-- DCBX Priority Flow Control Feature Configuration MIB Objects
--------
lldpXdcbxFeatPfc OBJECT IDENTIFIER ::= { lldpXdcbxFeatures 3 }
lldpXdcbxFeatPfcNumTCPFCSupported OBJECT-TYPE
SYNTAX LldpXdcbxTCPFC
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of TCs that can simultaneously support PFC."
::= { lldpXdcbxFeatPfc 1 }
lldpXdcbxFeatPfcTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatPfcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of priority flow control configurations for each priority."
::= { lldpXdcbxFeatPfc 2 }
lldpXdcbxFeatPfcEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatPfcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for configuring priority flow control for each priority."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatPfcPriority }
::= { lldpXdcbxFeatPfcTable 1 }
LldpXdcbxFeatPfcEntry ::= SEQUENCE {
lldpXdcbxFeatPfcPriority LldpXdcbxPriority,
lldpXdcbxFeatPfcEnableDesired TruthValue,
lldpXdcbxFeatPfcEnableOper TruthValue,
lldpXdcbxFeatPfcEnablePeer TruthValue }
lldpXdcbxFeatPfcPriority OBJECT-TYPE
SYNTAX LldpXdcbxPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority for which priority flow control is being configured."
::= { lldpXdcbxFeatPfcEntry 1 }
lldpXdcbxFeatPfcEnableDesired OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The locally configured status of priority flow control for this
priority.
0: Disabled
1: Enabled
PFC Enabled means that flow control in both directions (Rx and Tx) is
enabled."
::= { lldpXdcbxFeatPfcEntry 2 }
lldpXdcbxFeatPfcEnableOper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating status of priority flow control for this priority.
NOTE: This value may be different than the locally desired value
depending on whether or not this feature is 'willing' to accept the
peer's desired configuration. The operating configuration MUST match
either the locally desired configuration or the peer's desired
configuration if the feature is operational."
::= { lldpXdcbxFeatPfcEntry 3 }
lldpXdcbxFeatPfcEnablePeer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority flow control status that the peer desires to assign to
this priority."
::= { lldpXdcbxFeatPfcEntry 4 }
--------
-- DCBX Application Protocol Feature Configuration MIB Objects
--------
lldpXdcbxFeatAppProto OBJECT IDENTIFIER ::= { lldpXdcbxFeatures 4 }
lldpXdcbxFeatAppProtoTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatAppProtoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Application Protocol configurations."
::= { lldpXdcbxFeatAppProto 1 }
lldpXdcbxFeatAppProtoEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatAppProtoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for configuring Application Protocol ID."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatAppProtoIndex }
::= { lldpXdcbxFeatAppProtoTable 1 }
LldpXdcbxFeatAppProtoEntry ::= SEQUENCE {
lldpXdcbxFeatAppProtoIndex LldpXdcbxAppProtos,
lldpXdcbxFeatAppProtoSF LldpXdcbxSF,
lldpXdcbxFeatAppProtoOUI Integer32,
lldpXdcbxFeatAppProtoId INTEGER }
lldpXdcbxFeatAppProtoIndex OBJECT-TYPE
SYNTAX LldpXdcbxAppProtos
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The index of the Application Protocol being configured in a list of
Application Protocols."
::= { lldpXdcbxFeatAppProtoEntry 1 }
lldpXdcbxFeatAppProtoSF OBJECT-TYPE
SYNTAX LldpXdcbxSF
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the Selector Field for this application protocol."
::= { lldpXdcbxFeatAppProtoEntry 2 }
lldpXdcbxFeatAppProtoOUI OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the Application Protocol OUI for this application
protocol."
::= { lldpXdcbxFeatAppProtoEntry 3 }
lldpXdcbxFeatAppProtoId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the Application Protocol ID for this application
protocol."
::= { lldpXdcbxFeatAppProtoEntry 4 }
lldpXdcbxFeatAppProtoPrioTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXdcbxFeatAppProtoPrioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of priority configurations for each application protocol."
::= { lldpXdcbxFeatAppProto 2 }
lldpXdcbxFeatAppProtoPrioEntry OBJECT-TYPE
SYNTAX LldpXdcbxFeatAppProtoPrioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for selecting priorities for the Application Protocol."
INDEX { lldpXdcbxPortNumber, lldpXdcbxFeatAppProtoIndex, lldpXdcbxFeatAppProtoPriority }
::= { lldpXdcbxFeatAppProtoPrioTable 1 }
LldpXdcbxFeatAppProtoPrioEntry ::= SEQUENCE {
lldpXdcbxFeatAppProtoPriority LldpXdcbxPriority,
lldpXdcbxFeatAppProtoEnableDesired TruthValue,
lldpXdcbxFeatAppProtoEnableOper TruthValue,
lldpXdcbxFeatAppProtoEnablePeer TruthValue }
lldpXdcbxFeatAppProtoPriority OBJECT-TYPE
SYNTAX LldpXdcbxPriority
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority for which Application Protocol is being configured."
::= { lldpXdcbxFeatAppProtoPrioEntry 1 }
lldpXdcbxFeatAppProtoEnableDesired OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The locally configured status of Application Protocol for this
priority.
0: Disabled
1: Enabled"
::= { lldpXdcbxFeatAppProtoPrioEntry 2 }
lldpXdcbxFeatAppProtoEnableOper OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operating status of Application Protocol for this priority.
NOTE: This value may be different than the locally desired value
depending on whether or not this feature is 'willing' to accept the
peer's desired configuration. The operating configuration MUST match
either the locally desired configuration or the peer's desired
configuration if the feature is operational."
::= { lldpXdcbxFeatAppProtoPrioEntry 3 }
lldpXdcbxFeatAppProtoEnablePeer OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Application Protocol status that the peer desires to assign to
this priority."
::= { lldpXdcbxFeatAppProtoPrioEntry 4 }
--------
-- DCBX Notifications
--------
lldpXdcbxMiscControlError NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent whenever an error occurs with DCBX control and there
is no other trap defined for the specific error condition."
::= { lldpXdcbxNotifications 1 }
lldpXdcbxMiscFeatureError NOTIFICATION-TYPE
OBJECTS { lldpXdcbxFeatError }
STATUS current
DESCRIPTION
"This trap is sent whenever lldpXdcbxFeatError is true and there is no
other trap defined for the specific error condition."
::= { lldpXdcbxNotifications 2 }
lldpXdcbxMultiplePeers NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when multiple LLDP neighbors are detected on the
same port.
DCBX is expected to operate over a point to point link. If multiple
LLDP neighbors are detected, then DCBX behaves as if the peer's DCBX
TLVs are not present until the multiple LLDP neighbor condition is no
longer present. An LLDP neighbor is identified by its logical MAC
Service Access Identifier (MSAP). The logical MSAP is a concatenation
of the chassis ID and port ID values transmitted in the LLDPDU."
::= { lldpXdcbxNotifications 3 }
lldpXdcbxLldpTxDisabled NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when the LLDP transmit has been disabled.
LLDP gives administrator control to enable/disable the protocol
independently on the Rx side and Tx side. Since DCBX is an
acknowledged protocol which uses LLDP, for the protocol to operate
correctly both LLDP Rx and Tx must be enabled on the interface on
which DCBX runs. The behavior of DCBX is as follows with respect to
LLDP Rx/Tx admin state controls:
- If either of Rx or Tx is in disable state, DCBX is disabled on the
interface. Neither the control nor feature state machines should
run. The LLDP PDU's that are generated from this interface do not
have any DCBX TLVs. If the peer sends DCBX TLVs they should be
ignored as far as the DCBX state machines are concerned.
- When DCBX is currently running and LLDP TX is disabled, then
according to the LLDP specification, a shutdown LLDPDU is sent. When
the peer receives this PDU, DCBX is determined to be disabled on the
peer. This is equivalent to DCBX TLV TTL expired in the Control
State machine and Rx.Feature.present() = FALSE in the Feature state
machine. If for some reason this frame is lost, then DCBX depends on
standard rxInfoTTL expiry of the peer's LLDP TLV's.
- When DCBX is currently running and LLDP Rx is disabled, then all
DCBX TLV's including the control TLV should be withdrawn from the
LLDP PDUs that the interface generates. The peer's behavior should
be the same as discussed in the previous case."
::= { lldpXdcbxNotifications 4 }
lldpXdcbxLldpRxDisabled NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when the LLDP receive has been disabled.
LLDP gives administrator control to enable/disable the protocol
independently on the Rx side and Tx side. Since DCBX is an
acknowledged protocol which uses LLDP, for the protocol to operate
correctly both LLDP Rx and Tx must be enabled on the interface on
which DCBX runs. The behavior of DCBX is as follows with respect to
LLDP Rx/Tx admin state controls:
- If either of Rx or Tx is in disable state, DCBX is disabled on the
interface. Neither the control nor feature state machines should
run. The LLDP PDU's that are generated from this interface do not
have any DCBX TLVs. If the peer sends DCBX TLVs they should be
ignored as far as the DCBX state machines are concerned.
- When DCBX is currently running and LLDP TX is disabled, then
according to the LLDP specification, a shutdown LLDPDU is sent. When
the peer receives this PDU, DCBX is determined to be disabled on the
peer. This is equivalent to DCBX TLV TTL expired in the Control
State machine and Rx.Feature.present() = FALSE in the Feature state
machine. If for some reason this frame is lost, then DCBX depends on
standard rxInfoTTL expiry of the peer's LLDP TLV's.
- When DCBX is currently running and LLDP Rx is disabled, then all
DCBX TLV's including the control TLV should be withdrawn from the
LLDP PDUs that the interface generates. The peer's behavior should
be the same as discussed in the previous case."
::= { lldpXdcbxNotifications 5 }
lldpXdcbxDupControlTlv NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when a duplicate control Sub-TLV is detected.
The DCBX Control Sub-TLV and the set of Feature Sub-TLVs can be
arranged in any order within the DCBX TLV. Duplicate Sub-TLV’s (such
as more than one Sub-TLV for the same feature) are not allowed.
A duplicate DCBX Control TLV causes an error for all features."
::= { lldpXdcbxNotifications 6 }
lldpXdcbxDupFeatureTlv NOTIFICATION-TYPE
OBJECTS { lldpXdcbxFeatType }
STATUS current
DESCRIPTION
"This trap is sent when a duplicate feature Sub-TLV is detected.
The DCBX Control Sub-TLV and the set of Feature Sub-TLVs can be
arranged in any order within the DCBX TLV. Duplicate Sub-TLV's (such
as more than one Sub-TLV for the same feature) are not allowed.
Duplicates are handled as a configuration error for the feature."
::= { lldpXdcbxNotifications 7 }
lldpXdcbxPeerNoFeat NOTIFICATION-TYPE
OBJECTS { lldpXdcbxFeatType }
STATUS current
DESCRIPTION
"This trap is sent when a feature is not supported on by a peer.
This condition can occur when a device does not support a feature (not
really an error) or if the feature's Advertise flag is off (possible
configuration error)."
::= { lldpXdcbxNotifications 8 }
lldpXdcbxPeerNoResp NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when the peer has stopped responding as evidenced by
an LLDP timeout event."
::= { lldpXdcbxNotifications 9 }
lldpXdcbxPeerConfigMismatch NOTIFICATION-TYPE
OBJECTS { lldpXdcbxPortNumber }
STATUS current
DESCRIPTION
"This trap is sent when the configuration received from peer results
into partial or complete mismatch."
::= { lldpXdcbxNotifications 10 }
END