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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
|
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
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: tr41@tiacomm.org
Contact: Chair, TIA TR-41
Postal: Telecommunications Industry Association
2500 Wilson Blvd., Suite 300
Arlington, VA 22201 USA
Tel: (703) 907-7700
E-mail: tr41@tiacomm.org"
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."
::= { lldpExtensions 1 }
------------------------------------------------------------------------------
------------------------------------------------------------------------------
--
-- 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)
}
------------------------------------------------------------------------------
-- 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 { ''H }
::= { 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
DESCRIPTION
"An extension of the VLAN Identifier for the remote system
connected to this 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"
::= { lldpXMedRemMediaPolicyEntry 2 }
lldpXMedRemMediaPolicyPriority 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 remote system connected at
given port."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.6"
::= { lldpXMedRemMediaPolicyEntry 3 }
lldpXMedRemMediaPolicyDscp 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 remote system connected at the port."
REFERENCE
" ANSI/TIA-1057, Section 10.2.3.7"
::= { lldpXMedRemMediaPolicyEntry 4 }
lldpXMedRemMediaPolicyUnknown 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"
::= { lldpXMedRemMediaPolicyEntry 5 }
lldpXMedRemMediaPolicyTagged 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"
::= { lldpXMedRemMediaPolicyEntry 6 }
--- lldpXMedRemInventoryTable - Remote Inventory Information
---
lldpXMedRemInventoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemInventoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains inventory information as advertised
by the remote system.
This table may be sparsely populated. Entries in this table are
relevant only if the inventory(2) bits in the
lldpXMedRemCapSupported and lldpXMedRemCapCurrent objects of the
corresponding ports are set "
::= { lldpXMedRemoteData 3 }
lldpXMedRemInventoryEntry OBJECT-TYPE
SYNTAX LldpXMedRemInventoryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about inventory information for the remote devices
connected to the ports."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex }
::= { lldpXMedRemInventoryTable 1 }
LldpXMedRemInventoryEntry ::= SEQUENCE {
lldpXMedRemHardwareRev SnmpAdminString,
lldpXMedRemFirmwareRev SnmpAdminString,
lldpXMedRemSoftwareRev SnmpAdminString,
lldpXMedRemSerialNum SnmpAdminString,
lldpXMedRemMfgName SnmpAdminString,
lldpXMedRemModelName SnmpAdminString,
lldpXMedRemAssetID SnmpAdminString
}
lldpXMedRemHardwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific hardware revision string
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.1"
::= { lldpXMedRemInventoryEntry 1 }
lldpXMedRemFirmwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific firmware revision string
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.2"
::= { lldpXMedRemInventoryEntry 2 }
lldpXMedRemSoftwareRev OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific software revision string
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.3"
::= { lldpXMedRemInventoryEntry 3 }
lldpXMedRemSerialNum OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific serial number
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.4"
::= { lldpXMedRemInventoryEntry 4 }
lldpXMedRemMfgName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific manufacturer name
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.5"
::= { lldpXMedRemInventoryEntry 5 }
lldpXMedRemModelName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific model name
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.6"
::= { lldpXMedRemInventoryEntry 6 }
lldpXMedRemAssetID OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor-specific asset tracking identifier
as advertised by the remote endpoint."
REFERENCE
" ANSI/TIA-1057, Section 10.2.6.7"
::= { lldpXMedRemInventoryEntry 7 }
--- lldpXMedRemLocationTable - Remote Location Information
---
lldpXMedRemLocationTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemLocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Location information as advertised
by the remote system.
This table may be sparsely populated. Entries in this table are
relevant only if the Location(3) bits in the
lldpXMedRemCapSupported and lldpXMedRemCapCurrent objects of the
corresponding ports are set "
::= { lldpXMedRemoteData 4 }
lldpXMedRemLocationEntry OBJECT-TYPE
SYNTAX LldpXMedRemLocationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about Location information for the remote devices
connected to the ports."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex,
lldpXMedRemLocationSubtype}
::= { lldpXMedRemLocationTable 1 }
LldpXMedRemLocationEntry ::= SEQUENCE {
lldpXMedRemLocationSubtype LocationSubtype,
lldpXMedRemLocationInfo OCTET STRING
}
lldpXMedRemLocationSubtype OBJECT-TYPE
SYNTAX LocationSubtype
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The location subtype advertised by the remote endpoint."
REFERENCE
"ANSI/TIA-1057, Section 10.2.4.2 "
::= { lldpXMedRemLocationEntry 1 }
lldpXMedRemLocationInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location information advertised by the remote endpoint.
Parsing of this information is dependent upon the location
subtype, as defined by the value of the corresponding
lldpXMedRemLocationSubType object. "
REFERENCE
"ANSI/TIA-1057, Section 10.2.4.3 "
::= { lldpXMedRemLocationEntry 2 }
--- lldpXMedRemXPoETable - Information about Remote PoE Device Type
---
lldpXMedRemXPoETable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemXPoEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information about the PoE device type
as advertised by the remote system.
This table is densely populated."
::= { lldpXMedRemoteData 5 }
lldpXMedRemXPoEEntry OBJECT-TYPE
SYNTAX LldpXMedRemXPoEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about PoE type of the remote devices
connected to the ports."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex }
::= { lldpXMedRemXPoETable 1 }
LldpXMedRemXPoEEntry ::= SEQUENCE {
lldpXMedRemXPoEDeviceType INTEGER
}
lldpXMedRemXPoEDeviceType 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 remote 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 none(4) indicates that the device does not support PoE."
REFERENCE
"ANSI/TIA-1057, Section 10.2.5.1"
::= { lldpXMedRemXPoEEntry 1 }
--- lldpXMedRemXPoEPDTable - Extended PoE PSE Information from the remote device
---
lldpXMedRemXPoEPSETable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemXPoEPSEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains extended PoE information as advertised
by the remote devices of PSE type.
This table may be sparsely populated. Entries in this table are
relevant only if the extendedPSE(4) bits in the
lldpXMedRemCapSupported and lldpXMedRemCapCurrent objects of the
corresponding ports are set "
::= { lldpXMedRemoteData 6 }
lldpXMedRemXPoEPSEEntry OBJECT-TYPE
SYNTAX LldpXMedRemXPoEPSEEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about Extended PoE PSE information for
the remote devices connected to the ports."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex }
::= { lldpXMedRemXPoEPSETable 1 }
LldpXMedRemXPoEPSEEntry ::= SEQUENCE {
lldpXMedRemXPoEPSEPowerAv Gauge32,
lldpXMedRemXPoEPSEPowerSource INTEGER,
lldpXMedRemXPoEPSEPowerPriority INTEGER
}
lldpXMedRemXPoEPSEPowerAv 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 on the remote
device."
REFERENCE
" ANSI/TIA-1057, Section 10.2.5.4"
::= { lldpXMedRemXPoEPSEEntry 1 }
lldpXMedRemXPoEPSEPowerSource 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 remote 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"
::= { lldpXMedRemXPoEPSEEntry 2 }
lldpXMedRemXPoEPSEPowerPriority OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
critical(2),
high(3),
low(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the value of the PSE power priority
advertised by the remote device.
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"
::= { lldpXMedRemXPoEPSEEntry 3 }
--- lldpXMedRemXPoEPDTable - Extended PoE PD Information from the remote device
---
lldpXMedRemXPoEPDTable OBJECT-TYPE
SYNTAX SEQUENCE OF LldpXMedRemXPoEPDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains extended PoE information as advertised
by the remote devices of PD type.
This table may be sparsely populated. Entries in this table are
relevant only if the extendedPD(5) bits in the
lldpXMedRemCapSupported and lldpXMedRemCapCurrent objects of the
corresponding ports are set "
::= { lldpXMedRemoteData 7 }
lldpXMedRemXPoEPDEntry OBJECT-TYPE
SYNTAX LldpXMedRemXPoEPDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about XPoEPD information for the remote devices
connected to the ports."
INDEX { lldpRemTimeMark,
lldpRemLocalPortNum,
lldpRemIndex }
::= { lldpXMedRemXPoEPDTable 1 }
LldpXMedRemXPoEPDEntry ::= SEQUENCE {
lldpXMedRemXPoEPDPowerReq Gauge32,
lldpXMedRemXPoEPDPowerSource INTEGER,
lldpXMedRemXPoEPDPowerPriority INTEGER
}
lldpXMedRemXPoEPDPowerReq 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 connected remotely to the port
expressed in units of 0.1 watts."
REFERENCE
" ANSI/TIA-1057, Section 10.2.5.4 "
::= { lldpXMedRemXPoEPDEntry 1 }
lldpXMedRemXPoEPDPowerSource 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 device connected remotely to the port.
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"
::= { lldpXMedRemXPoEPDEntry 2 }
lldpXMedRemXPoEPDPowerPriority 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 the PD
connected remotely to the port.
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"
::= { lldpXMedRemXPoEPDEntry 3 }
---
-- conformance information
lldpXMedConformance OBJECT IDENTIFIER ::= { lldpXMedMIB 2 }
lldpXMedCompliances OBJECT IDENTIFIER ::= { lldpXMedConformance 1 }
lldpXMedGroups OBJECT IDENTIFIER ::= { lldpXMedConformance 2 }
-- compliance statements
lldpXMedCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP entities which implement
the LLDP MED extension MIB."
MODULE -- this module
MANDATORY-GROUPS { lldpXMedConfigGroup,
lldpXMedRemSysGroup,
lldpXMedNotificationsGroup
}
GROUP lldpXMedOptMediaPolicyGroup
DESCRIPTION
"This group represents the information associated with
the LLDP-MED optional Media Policy TLVs,
therefore the agent may not implement them."
GROUP lldpXMedOptInventoryGroup
DESCRIPTION
"This group represents the information associated with
the LLDP-MED optional inventory TLVs,
therefore the agent may not implement them."
GROUP lldpXMedOptLocationGroup
DESCRIPTION
"This group represents the information associated with
the LLDP-MED optional Location TLVs,
therefore the agent may not implement them."
GROUP lldpXMedOptPoEPSEGroup
DESCRIPTION
"This group represents the information associated with
the LLDP-MED optional extended PoE PolicyTLVs, carrying
PSE information, therefore the agent may
not implement them."
GROUP lldpXMedOptPoEPDGroup
DESCRIPTION
" This group represents the information associated with
the LLDP-MED optional extended PoE Policy TLVs, carrying
PD information, therefore the agent may
not implement them."
::= { lldpXMedCompliances 1 }
-- MIB groupings
lldpXMedConfigGroup OBJECT-GROUP
OBJECTS {
lldpXMedPortCapSupported,
lldpXMedPortConfigTLVsTxEnable,
lldpXMedPortConfigNotifEnable,
lldpXMedFastStartRepeatCount,
lldpXMedLocXPoEDeviceType,
lldpXMedLocDeviceClass
}
STATUS current
DESCRIPTION
"The collection of objects which are used to configure or
describe the configuration or behavior of the LLDP-MED
organizational extension implementation."
::= { lldpXMedGroups 1 }
lldpXMedOptMediaPolicyGroup OBJECT-GROUP
OBJECTS {
lldpXMedLocMediaPolicyVlanID,
lldpXMedLocMediaPolicyPriority,
lldpXMedLocMediaPolicyDscp,
lldpXMedLocMediaPolicyUnknown,
lldpXMedLocMediaPolicyTagged
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP
MED organizational extensions for Media Policy Information."
::= { lldpXMedGroups 2 }
lldpXMedOptInventoryGroup OBJECT-GROUP
OBJECTS {
lldpXMedLocHardwareRev,
lldpXMedLocFirmwareRev,
lldpXMedLocSoftwareRev,
lldpXMedLocSerialNum,
lldpXMedLocMfgName,
lldpXMedLocModelName,
lldpXMedLocAssetID
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP
MED organizational extension for inventory Information."
::= { lldpXMedGroups 3 }
lldpXMedOptLocationGroup OBJECT-GROUP
OBJECTS {
lldpXMedLocLocationInfo
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP
MED organizational extension for Location Information."
::= { lldpXMedGroups 4 }
lldpXMedOptPoEPSEGroup OBJECT-GROUP
OBJECTS {
lldpXMedLocXPoEPSEPortPowerAv,
lldpXMedLocXPoEPSEPortPDPriority,
lldpXMedLocXPoEPSEPowerSource
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP
MED organizational extensions for PoE PSE Information."
::= { lldpXMedGroups 5 }
lldpXMedOptPoEPDGroup OBJECT-GROUP
OBJECTS {
lldpXMedLocXPoEPDPowerReq,
lldpXMedLocXPoEPDPowerSource,
lldpXMedLocXPoEPDPowerPriority
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP
MED organizational extensions for PoE PD Information."
::= { lldpXMedGroups 6 }
lldpXMedRemSysGroup OBJECT-GROUP
OBJECTS {
lldpXMedRemCapSupported,
lldpXMedRemCapCurrent,
lldpXMedRemDeviceClass,
lldpXMedRemMediaPolicyVlanID,
lldpXMedRemMediaPolicyPriority,
lldpXMedRemMediaPolicyDscp,
lldpXMedRemMediaPolicyUnknown,
lldpXMedRemMediaPolicyTagged,
lldpXMedRemHardwareRev,
lldpXMedRemFirmwareRev,
lldpXMedRemSoftwareRev,
lldpXMedRemSerialNum,
lldpXMedRemMfgName,
lldpXMedRemModelName,
lldpXMedRemAssetID,
lldpXMedRemLocationInfo,
lldpXMedRemXPoEDeviceType,
lldpXMedRemXPoEPSEPowerAv,
lldpXMedRemXPoEPSEPowerSource,
lldpXMedRemXPoEPSEPowerPriority,
lldpXMedRemXPoEPDPowerReq,
lldpXMedRemXPoEPDPowerSource,
lldpXMedRemXPoEPDPowerPriority
}
STATUS current
DESCRIPTION
"The collection of objects which are used to represent LLDP-
MED organizational extension Remote Device Information."
::= { lldpXMedGroups 7 }
lldpXMedNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { lldpXMedTopologyChangeDetected }
STATUS current
DESCRIPTION
"Notifications sent by an LLDP-MED agent."
::= { lldpXMedGroups 8 }
END
|