forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ANSI_TIA_LLDP_MED.mib
1689 lines (1419 loc) · 58.1 KB
/
ANSI_TIA_LLDP_MED.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
LLDP-EXT-MED-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Gauge32, Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
lldpExtensions, lldpLocPortNum,
lldpRemTimeMark, lldpRemLocalPortNum, lldpRemIndex,
lldpPortConfigEntry, lldpRemChassisIdSubtype, lldpRemChassisId
FROM LLDP-MIB
-- Dscp is locally defined instead of import
-- Dscp
-- FROM DIFFSERV-DSCP-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB;
lldpXMedMIB MODULE-IDENTITY
LAST-UPDATED "200507280000Z" -- July 28th, 2005
ORGANIZATION "TIA TR41.4 Working Group"
CONTACT-INFO
"WG-URL: http://www.tiaonline.org/standards/sfg/scope.cfm#TR-41.4
WG-EMail: [email protected]
Contact: Chair, TIA TR-41
Postal: Telecommunications Industry Association
2500 Wilson Blvd., Suite 300
Arlington, VA 22201 USA
Tel: (703) 907-7700
E-mail: [email protected]"
DESCRIPTION
"The LLDP Management Information Base extension module for
TIA-TR41.4 Media Endpoint Discovery information.
In order to assure the uniqueness of the LLDP-MIB,
lldpXMedMIB is branched from lldpExtensions using the TIA OUI
value as the node. An OUI/'company_id' is a 24 bit globally
unique assigned number referenced by various standards.
Copyright (C) TIA (2005). This version of this MIB module
is published as Section 13.3 of ANSI/TIA-1057.
See the standard itself for full legal notices."
REVISION "200507280000Z" -- July 28th, 2005
DESCRIPTION
"Published as part of ANSI/TIA-1057."
-- OUI for TIA TR-41 is 4795 (00-12-BB)
::= { lldpExtensions 4795 }
------------------------------------------------------------------------------
------------------------------------------------------------------------------
--
-- LLDP-MED Information
--
------------------------------------------------------------------------------
------------------------------------------------------------------------------
lldpXMedNotifications OBJECT IDENTIFIER ::= { lldpXMedMIB 0 }
lldpXMedObjects OBJECT IDENTIFIER ::= { lldpXMedMIB 1 }
-- LLDP MED Extension Notifications
-- Transmission of LLDP MED Extension Notification is controlled by the
-- lldpNotificationInterval object in the LLDP MIB defined in
-- IEEE 802.1AB-2005
lldpXMedTopologyChangeDetected NOTIFICATION-TYPE
OBJECTS { lldpRemChassisIdSubtype,
lldpRemChassisId,
lldpXMedRemDeviceClass
}
STATUS current
DESCRIPTION
"A notification generated by the local device sensing
a change in the topology that indicates that a new remote
device attached to a local port, or a remote device disconnected
or moved from one port to another."
::= { lldpXMedNotifications 1 }
-- LLDP MED extension MIB groups
lldpXMedConfig OBJECT IDENTIFIER ::= { lldpXMedObjects 1 }
lldpXMedLocalData OBJECT IDENTIFIER ::= { lldpXMedObjects 2 }
lldpXMedRemoteData OBJECT IDENTIFIER ::= { lldpXMedObjects 3 }
-- textual conventions
LldpXMedDeviceClass ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Device Class to which the device is a member.
A value of notDefined(0) indicates that the device
has capabilities not covered by any of the LLDP-MED classes.
A value of endpointClass1(1) indicates that the device
has endpoint class 1 capabilities.
A value of endpointClass2(2) indicates that the device
has endpoint class 2 capabilities.
A value of endpointClass3(3) indicates that the device
has endpoint class 3 capabilities.
A value of networkConnectivity(4) indicates that the device
has network connectivity device capabilities."
SYNTAX INTEGER {
notDefined(0),
endpointClass1(1),
endpointClass2(2),
endpointClass3(3),
networkConnectivity(4)
}
-- LLDP-MED Capabilities TC
LldpXMedCapabilities ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Bitmap that includes the MED organizationally defined set of LLDP
TLVs the device is capable of and whose transmission is allowed on
the local LLDP agent by network management.
Each bit in the bitmap corresponds to an LLDP-MED subtype associated
with a specific TIA TR41.4 MED TLV.
Having the bit 'capabilities(0)' set indicates that the LLDP
agent refers to the Capabilities TLVs.
Having the bit 'networkPolicy(1)' set indicates that the LLDP
agent refers to the Network Policy TLVs.
Having the bit 'location(2)' set indicates that
the LLDP agent refers to the Emergency Communications
System Location TLVs.
Having the bit 'extendedPSE(3)' set indicates that
the LLDP agent refers to the Extended PoE TLVs with PSE
capabilities.
Having the bit 'extendedPD(4)' set indicates that
the LLDP agent refers to the Extended PoE TLVs with PD
capabilities.
Having the bit 'inventory(5)' set indicates that
the LLDP agent refers to the Hardware Revision, Firmware
Revision, Software Revision, Serial Number, Manufacturer Name,
Model Name, and Asset ID TLVs."
SYNTAX BITS {
capabilities(0),
networkPolicy(1),
location(2),
extendedPSE(3),
extendedPD(4),
inventory(5)
}
-- Location Subtype Textual Convention
LocationSubtype ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The location subtype advertised by the remote endpoint.
A value coordinateBased(2) indicates that the location subtype
advertised by the endpoint is defined to use the relevant sub-
fields of the DHCP option for Coordinate LCI as specified in
ANSI/TIA-1057, Section 10.2.4.3.1.
A value civicAddress(3) indicates that the location subtype
advertised by the endpoint is defined to use the relevant sub-
fields of the DHCP option for Civic Address as specified in
ANSI/TIA-1057, Section 10.2.4.3.2.
A value elin(4) indicates that the location subtype
advertised by the endpoint is defined to use the Emergency
Location Information Number (ELIN) as specified in
ANSI/TIA-1057, Section 10.2.4.3.3."
SYNTAX INTEGER {
unknown(1),
coordinateBased(2),
civicAddress(3),
elin(4)
}
-- Policy Application Type Textual Convention
PolicyAppType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The media type that defines the primary function of the
application for the policy advertised by an endpoint.
Having the bit voice(1) set indicates that the media type defining
a primary function of the application for the policy advertised on
the local port is voice.
Having the bit voiceSignaling(3) set indicates that the media type
defining a primary function of the application for the policy
advertised on the local port is voice signaling.
Having the bit guestVoice(4) set indicates that the media type
Defining a primary function of the application for the policy
advertised on the local port is guest voice.
Having the bit guestVoiceSignaling(5) set indicates that the media
type defining a primary function of the application for the policy
advertised on the local port is guest voice signaling.
Having the bit softPhoneVoice(6) set indicates that the media type
Defining a primary function of the application for the policy
advertised on the local port is softphone voice.
Having the bit videoConferencing(7) set indicates that the media
type defining a primary function of the application for the policy
advertised on the local port is voice.
Having the bit streamingVideo(8) set indicates that the media type
defining a primary function of the application for the policy
advertised on the local port is streaming video.
Having the bit videoSignaling(2) set indicates that the media type
defining a primary function of the application for the policy
advertised on the local port is video signaling."
SYNTAX BITS {
unknown(0),
voice(1),
voiceSignaling(2),
guestVoice(3),
guestVoiceSignaling(4),
softPhoneVoice(5),
videoconferencing(6),
streamingVideo(7),
videoSignaling(8)
}
-- Dscp Definition is taken from DIFFSERV-DSCP-TC
-- Differentiated Services Code-Point Textual Convention
Dscp ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A Differentiated Services Code-Point that may be used for
marking a traffic stream."
REFERENCE
"RFC 2474, RFC 2780"
SYNTAX Integer32 (0..63)
------------------------------------------------------------------------------
-- MED - Configuration
------------------------------------------------------------------------------
lldpXMedLocDeviceClass OBJECT-TYPE
SYNTAX LldpXMedDeviceClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Local Device Class."
REFERENCE
" ANSI/TIA-1057, Section 10.2.2.2"
::= { lldpXMedConfig 1 }
lldpXMedPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that controls selection of LLDP TLVs to be transmitted
on individual ports."
::= { lldpXMedConfig 2 }
lldpXMedPortConfigEntry OBJECT-TYPE
SYNTAX LldpXMedPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"LLDP configuration information that controls the
transmission of the MED organizationally defined TLVs on
LLDP transmission capable ports.
This configuration object augments the lldpPortConfigEntry of
the LLDP-MIB, therefore it is only present along with the port
configuration defined by the associated lldpPortConfigEntry
entry.
Each active lldpXMedPortConfigEntry must be stored and
retrieved from non-volatile storage (along with the
corresponding lldpPortConfigEntry) after a re-initialization
of the management system."
AUGMENTS { lldpPortConfigEntry }
::= { lldpXMedPortConfigTable 1 }
LldpXMedPortConfigEntry ::= SEQUENCE {
lldpXMedPortCapSupported LldpXMedCapabilities,
lldpXMedPortConfigTLVsTxEnable LldpXMedCapabilities,
lldpXMedPortConfigNotifEnable TruthValue
}
lldpXMedPortCapSupported OBJECT-TYPE
SYNTAX LldpXMedCapabilities
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bitmap includes the MED organizationally defined set of LLDP
TLVs whose transmission is possible for the respective port
on the LLDP agent of the device. Each bit in the bitmap corresponds
to an LLDP-MED subtype associated with a specific TIA TR41.4 MED
optional TLV. If the bit is set, the agent supports the
corresponding TLV."
REFERENCE
"ANSI/TIA-1057, Section 10.2.2.3"
::= { lldpXMedPortConfigEntry 1 }
lldpXMedPortConfigTLVsTxEnable OBJECT-TYPE
SYNTAX LldpXMedCapabilities
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lldpXMedPortConfigTLVsTxEnable, defined as a bitmap,
includes the MED organizationally defined set of LLDP
TLVs whose transmission is allowed on the local LLDP agent by
the network management. Each bit in the bitmap corresponds
to an LLDP-MED subtype associated with a specific TIA TR41.4 MED
optional TLV. If the bit is set, the agent will send the
corresponding TLV if the respective capability is supported per
port.
Setting a bit with in this object for a non-supported capability
shall have no functional effect and will result in an inconsistent
value error returned to the management application.
There are other rules and restrictions that prevent arbitrary
combinations of TLVs to be enabled on LLDP-MED devices according to
the device classes. These rules are defined in Section 10.2.1,
Tables 5 - 9 of ANSI/TIA-1057. In case a management application
attempts to set this object to a value that does not follow the rules,
the set operation shall have and will result in an inconsistent
value error returned to the management application.
Setting this object to an empty set is valid and effectively
disables LLDP-MED on a per-port basis by disabling transmission of
all MED organizational TLVs. In this case the remote tables objects
in the LLDP-MED MIB corresponding to the respective port will not
be populated.
The default value for lldpXMedPortConfigTLVsTxEnable object
is an empty set, which means no enumerated values are set.
The value of this object must be restored from non-volatile
storage after a re-initialization of the management system."
REFERENCE
"ANSI/TIA-1057, Section 10.2.2.3"
DEFVAL { { } }
::= { lldpXMedPortConfigEntry 2 }
lldpXMedPortConfigNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A value of 'true(1)' enables sending the topology change
traps on this port.
A value of 'false(2)' disables sending the topology change
traps on this port."
REFERENCE
" ANSI/TIA-1057, Section 12.3"
DEFVAL { false }
::= { lldpXMedPortConfigEntry 3 }
lldpXMedFastStartRepeatCount OBJECT-TYPE
SYNTAX Unsigned32 (1..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of times the fast start LLDPDU are being sent during the
activation of the fast start mechanism defined by LLDP-MED."
REFERENCE
" ANSI/TIA-1057, Section 11.2.1"
DEFVAL { 3 }
::= { lldpXMedConfig 3 }
------------------------------------------------------------------------------
-- LLDP-MED - Local Device Information
------------------------------------------------------------------------------
---
--- lldpXMedLocMediaPolicyTable: Local Media Policy
--- Information Table
---
---
lldpXMedLocMediaPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedLocMediaPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per policy type per port
of media policy information (as a part of the MED
organizational extension) on the local system known
to this agent."
::= { lldpXMedLocalData 1 }
lldpXMedLocMediaPolicyEntry OBJECT-TYPE
SYNTAX LldpXMedLocMediaPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular policy on a specific
port component."
INDEX { lldpLocPortNum, lldpXMedLocMediaPolicyAppType }
::= { lldpXMedLocMediaPolicyTable 1 }
LldpXMedLocMediaPolicyEntry ::= SEQUENCE {
lldpXMedLocMediaPolicyAppType PolicyAppType,
lldpXMedLocMediaPolicyVlanID Integer32,
lldpXMedLocMediaPolicyPriority Integer32,
lldpXMedLocMediaPolicyDscp Dscp,
lldpXMedLocMediaPolicyUnknown TruthValue,
lldpXMedLocMediaPolicyTagged TruthValue
}
lldpXMedLocMediaPolicyAppType OBJECT-TYPE
SYNTAX PolicyAppType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The media type that defines the primary function of the
application for the policy advertised by an endpoint."
REFERENCE
"ANSI/TIA-1057, Section 10.2.3.1"
::= { lldpXMedLocMediaPolicyEntry 1 }
lldpXMedLocMediaPolicyVlanID OBJECT-TYPE
SYNTAX Integer32 (0|1..4094|4095)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An extension of the VLAN Identifier for the port,
as defined in IEEE 802.1P-1998.
A value of 1 through 4094 is used to define a valid PVID.
A value of 0 shall be used if the device is using priority tagged
frames, meaning that only the 802.1p priority level is significant
and the default VID of the ingress port is being used instead.
A value of 4095 is reserved for implementation use."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.5"
::= { lldpXMedLocMediaPolicyEntry 2 }
lldpXMedLocMediaPolicyPriority OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of the 802.1p priority
which is associated with the given port on the
local system."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.6 "
::= { lldpXMedLocMediaPolicyEntry 3 }
lldpXMedLocMediaPolicyDscp OBJECT-TYPE
SYNTAX Dscp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of the Differentiated Service
Code Point (DSCP) as defined in IETF RFC 2474 and RFC 2475
which is associated with the given port on the local system."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.7"
::= { lldpXMedLocMediaPolicyEntry 4 }
lldpXMedLocMediaPolicyUnknown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that the
network policy for the specified application type is
currently unknown. In this case, the VLAN ID, the
layer 2 priority and the DSCP value fields are ignored.
A value of 'false' indicates that this network policy
is defined."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.2"
::= { lldpXMedLocMediaPolicyEntry 5 }
lldpXMedLocMediaPolicyTagged OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A value of 'true' indicates that the application is using a
tagged VLAN.
A value of 'false' indicates that for the specific application
the device either is using an untagged VLAN or does not
support port based VLAN operation. In this case, both the
VLAN ID and the Layer 2 priority fields are ignored and
only the DSCP value has relevance."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.3"
::= { lldpXMedLocMediaPolicyEntry 6 }
--- Inventory Information
--- Local Inventory Information transmitted by an endpoint
lldpXMedLocHardwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific hardware revision string
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.1"
::= { lldpXMedLocalData 2 }
lldpXMedLocFirmwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific firmware revision string
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.2"
::= { lldpXMedLocalData 3 }
lldpXMedLocSoftwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific software revision string
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.3"
::= { lldpXMedLocalData 4 }
lldpXMedLocSerialNum OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific serial number
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.4"
::= { lldpXMedLocalData 5 }
lldpXMedLocMfgName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific manufacturer name
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.5"
::= { lldpXMedLocalData 6 }
lldpXMedLocModelName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific model name
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.6"
::= { lldpXMedLocalData 7 }
lldpXMedLocAssetID OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific asset tracking identifier
as advertised by the endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.7"
::= { lldpXMedLocalData 8 }
--- Location Information
--- Local Location Information transmitted by an endpoint
--- lldpXMedLocLocationTable - Location Information
---
lldpXMedLocLocationTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedLocLocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Location information as advertised
by the local system.
The information may be configured per port by a Location
Information Server (LIS) or other management application.
Multiple Location TLVs of different subtypes may be transmitted
in the same PDU.
The information in this table MUST be stored in non-volatile-memory
and persist over restart/reboot sequences."
::= { lldpXMedLocalData 9 }
lldpXMedLocLocationEntry OBJECT-TYPE
SYNTAX LldpXMedLocLocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about Location information for the local device."
INDEX { lldpLocPortNum, lldpXMedLocLocationSubtype}
::= { lldpXMedLocLocationTable 1 }
LldpXMedLocLocationEntry ::= SEQUENCE {
lldpXMedLocLocationSubtype LocationSubtype,
lldpXMedLocLocationInfo OCTET STRING
}
lldpXMedLocLocationSubtype OBJECT-TYPE
SYNTAX LocationSubtype
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The location subtype advertised by the local device."
REFERENCE
"ANSI/TIA-1057, Section 10.2.4.2"
::= { lldpXMedLocLocationEntry 1 }
lldpXMedLocLocationInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location information. Parsing of this information is
dependent upon the location subtype, as defined by the value of the
lldpXMedLocLocationSubtype object."
REFERENCE
"ANSI/TIA-1057, Section 10.2.4.3"
DEFVAL { "" }
::= { lldpXMedLocLocationEntry 2 }
--- Extended Power over Ethernet objects
---
lldpXMedLocXPoEDeviceType OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
pseDevice(2),
pdDevice(3),
none(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the type of Power-via-MDI (Power over Ethernet) advertised
by the local device.
A value pseDevice(2) indicates that the device is advertised as a
Power Sourcing Entity (PSE).
A value pdDevice(3) indicates that the device is advertised as a
Powered Device (PD).
A value of none(4) indicates that the device does not support PoE."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.1"
::= { lldpXMedLocalData 10 }
--- Extended PoE - PSE objects
--- PSE Port Table
lldpXMedLocXPoEPSEPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedLocXPoEPSEPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per port of PSE PoE
information on the local system known to this agent."
::= { lldpXMedLocalData 11 }
lldpXMedLocXPoEPSEPortEntry OBJECT-TYPE
SYNTAX LldpXMedLocXPoEPSEPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular port PoE information."
INDEX { lldpLocPortNum }
::= { lldpXMedLocXPoEPSEPortTable 1 }
LldpXMedLocXPoEPSEPortEntry ::= SEQUENCE {
lldpXMedLocXPoEPSEPortPowerAv Gauge32,
lldpXMedLocXPoEPSEPortPDPriority INTEGER
}
lldpXMedLocXPoEPSEPortPowerAv OBJECT-TYPE
SYNTAX Gauge32 (0..1023)
UNITS "tenth of watt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of the power available from the
PSE via this port expressed in units of 0.1 watts."
REFERENCE
" ANSI/TIA-1057, Section 10.2.5.4 "
::= { lldpXMedLocXPoEPSEPortEntry 1 }
lldpXMedLocXPoEPSEPortPDPriority OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
critical(2),
high(3),
low(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reflects the PD power priority that is being advertised on this
PSE port.
If both locally configure priority and
ldpXMedRemXPoEPDPowerPriority are available on this port, it is
a matter of local policy which one takes precedence. This object
reflects the active value on this port.
If the priority is not configured or known by the PD, the value
unknown(1) will be returned.
A value critical(2) indicates that the device advertises its power
Priority as critical, as per RFC 3621.
A value high(3) indicates that the device advertises its power
Priority as high, as per RFC 3621.
A value low(4) indicates that the device advertises its power
Priority as low, as per RFC 3621."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.3"
::= { lldpXMedLocXPoEPSEPortEntry 2 }
lldpXMedLocXPoEPSEPowerSource OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
primary(2),
backup(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the type of PSE Power Source advertised
by the local device.
A value primary(2) indicates that the device advertises its power
source as primary.
A value backup(3) indicates that the device advertises its power
Source as backup."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.2"
::= { lldpXMedLocalData 12 }
--- Extended PoE - PD objects
lldpXMedLocXPoEPDPowerReq OBJECT-TYPE
SYNTAX Gauge32 (0..1023)
UNITS "tenth of watt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of the power required by a
PD expressed in units of 0.1 watts."
REFERENCE
" ANSI/TIA-1057, Section 10.2.4.3 "
::= { lldpXMedLocalData 13 }
lldpXMedLocXPoEPDPowerSource OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
fromPSE(2),
local(3),
localAndPSE(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the type of Power Source advertised as being used
by the local device.
A value fromPSE(2) indicates that the device advertises its power
source as received from a PSE.
A value local(3) indicates that the device advertises its power
source as local.
A value localAndPSE(4) indicates that the device advertises its
power source as using both local and PSE power."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.2"
::= { lldpXMedLocalData 14 }
lldpXMedLocXPoEPDPowerPriority OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
critical(2),
high(3),
low(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the priority advertised as being required by this PD.
A value critical(2) indicates that the device advertises its power
Priority as critical, as per RFC 3621.
A value high(3) indicates that the device advertises its power
Priority as high, as per RFC 3621.
A value low(4) indicates that the device advertises its power
Priority as low, as per RFC 3621."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.3"
::= { lldpXMedLocalData 15 }
------------------------------------------------------------------------------
-- LLDP-MED - Remote Devices Information
------------------------------------------------------------------------------
-- LLdpXMedRemCapabilitiesTable
-- this table is read by a manager to determine what capabilities
-- exists and are enabled on the remote system connected to the port
-- The information in this table is based upon the information advertised
-- by the remote device and received on each port in the capabilities TLV
lldpXMedRemCapabilitiesTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemCapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that displays LLDP-MED capabilities of remote devices
connected to individual ports."
::= { lldpXMedRemoteData 1 }
lldpXMedRemCapabilitiesEntry OBJECT-TYPE
SYNTAX LldpXMedRemCapabilitiesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"LLDP-MED capabilities of remote devices connected to the device
ports and communicating via LLDP-MED.
The remote tables in the LLDP-MED MIB excepting this table may be
sparsely populate. An entry in one of these table is meaningful
and shall be populated by the agent only if the corresponding bits
for the respective function are set in the objects in this table."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex }
::= { lldpXMedRemCapabilitiesTable 1 }
LldpXMedRemCapabilitiesEntry ::= SEQUENCE {
lldpXMedRemCapSupported LldpXMedCapabilities,
lldpXMedRemCapCurrent LldpXMedCapabilities,
lldpXMedRemDeviceClass LldpXMedDeviceClass
}
lldpXMedRemCapSupported OBJECT-TYPE
SYNTAX LldpXMedCapabilities
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bitmap includes the MED organizationally defined set of LLDP
TLVs whose transmission is possible on the LLDP agent of the remote
device connected to this port. Each bit in the bitmap corresponds
to an LLDP-MED subtype associated with a specific TIA TR41.4 MED
optional TLV. If the bit is set, the agent has the capability
to support the corresponding TLV."
REFERENCE
"ANSI/TIA-1057, Sections 10.2.2.1"
::= { lldpXMedRemCapabilitiesEntry 1 }
lldpXMedRemCapCurrent OBJECT-TYPE
SYNTAX LldpXMedCapabilities
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bitmap includes the MED organizationally defined set of LLDP
TLVs whose transmission is possible on the LLDP agent of the remote
device connected to this port. Each bit in the bitmap corresponds
to an LLDP-MED subtype associated with a specific TIA TR41.4 MED
optional TLV. If the bit is set, the agent currently supports the
corresponding TLV."
REFERENCE
"ANSI/TIA-1057, Sections 10.2.2.1"
::= { lldpXMedRemCapabilitiesEntry 2 }
lldpXMedRemDeviceClass OBJECT-TYPE
SYNTAX LldpXMedDeviceClass
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device Class as advertised by the device remotely connected to the
port."
REFERENCE
" ANSI/TIA-1057, Section 10.2.2.2"
::= { lldpXMedRemCapabilitiesEntry 3 }
---
---
--- lldpXMedRemMediaPolicyTable: Media Policy Table
---
---
lldpXMedRemMediaPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemMediaPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains media policy information as advertised
by the remote system.
This table may be sparsely populated. Entries in this table are
relevant only if the networkPolicy(0) bits in the
lldpXMedRemCapSupported and lldpXMedRemCapCurrent objects of the
corresponding ports are set."
::= { lldpXMedRemoteData 2 }
lldpXMedRemMediaPolicyEntry OBJECT-TYPE
SYNTAX LldpXMedRemMediaPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the per port per policy type policy
information for a particular physical network connection."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex,
lldpXMedRemMediaPolicyAppType }
::= { lldpXMedRemMediaPolicyTable 1 }
LldpXMedRemMediaPolicyEntry ::= SEQUENCE {
lldpXMedRemMediaPolicyAppType PolicyAppType,
lldpXMedRemMediaPolicyVlanID Integer32,
lldpXMedRemMediaPolicyPriority Integer32,
lldpXMedRemMediaPolicyDscp Dscp,
lldpXMedRemMediaPolicyUnknown TruthValue,
lldpXMedRemMediaPolicyTagged TruthValue
}
lldpXMedRemMediaPolicyAppType OBJECT-TYPE
SYNTAX PolicyAppType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The media type that defines the primary function of the
application for the policy advertised by the endpoint connected
remotely to this port."
REFERENCE
"ANSI/TIA-1057, Section 10.2.3.1"
::= { lldpXMedRemMediaPolicyEntry 1 }
lldpXMedRemMediaPolicyVlanID OBJECT-TYPE
SYNTAX Integer32 (0|1..4094|4095)
MAX-ACCESS read-only
STATUS current