summaryrefslogtreecommitdiff
path: root/MIBS/transition/TN-LLDP-MIB
blob: 68ef48c2766db081b9213927716ceb05c010fc3a (plain)
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
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
-- *****************************************************************
-- TN-LLDP-MIB.mib : TN LLPD private MIB
--
-- Copyright (c) 2015 by Transition Networks, Inc.
-- All rights reserved.
--
-- *****************************************************************

TN-LLDP-MIB DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-COMPLIANCE, OBJECT-GROUP
        FROM SNMPv2-CONF
    MODULE-IDENTITY, OBJECT-TYPE
        FROM SNMPv2-SMI
    TEXTUAL-CONVENTION
        FROM SNMPv2-TC
    tnProducts
        FROM TRANSITION-SMI
    Integer32 FROM SNMPv2-SMI
    Unsigned32 FROM SNMPv2-SMI
    TruthValue FROM SNMPv2-TC
    TNDisplayString FROM TN-TC
    TNInteger64 FROM TN-TC
    TNInterfaceIndex FROM TN-TC
    TNRowEditorState FROM TN-TC
    TNUnsigned16 FROM TN-TC
    TNUnsigned64 FROM TN-TC
    TNUnsigned8 FROM TN-TC
    ;

tnLldpMib MODULE-IDENTITY
    LAST-UPDATED "201506080000Z"
    ORGANIZATION "Transition Networks, Inc."
    CONTACT-INFO
        "Transition Networks
        Technical Support

        10900 Red Circle Drive
        Minnetonka, MN 55343 USA
        Tel: +1-800-526-9267

            E-mail: techsupport@transition.com"
    DESCRIPTION
        "This is a private version of the LLDP MIB"    
    REVISION    "201506080000Z"
    DESCRIPTION
        "Initial version"
    ::= { tnProducts 151 }

TNlldpAdminState ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the admin state."
    SYNTAX      INTEGER { disabled(0), txAndRx(1), txOnly(2), rxOnly(3) }

TNlldpmedAltitudeType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the altitude type."
    SYNTAX      INTEGER { meters(1), floors(2) }

TNlldpmedCivicAddressType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the civic address type."
    SYNTAX      INTEGER { state(1), county(2), city(3), district(4), block(5), street(6), leadingStreetDirection(16), trailingStreetSuffix(17), streetSuffix(18), houseNo(19), houseNoSuffix(20), landmark(21), additionalInformation(22), name(23), zipCode(24), building(25), apartment(26), floor(27), roomNumber(28), placeType(29), postalCommunityName(30), poBox(31), additionalCode(32) }

TNlldpmedDatumType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the datum (geodetic system)."
    SYNTAX      INTEGER { wgs84(1), nad83navd88(2), nad83mllw(3) }

TNlldpmedDeviceType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the device type that the device shall operate as."
    SYNTAX      INTEGER { connectivity(0), endpoint(1) }

TNlldpmedRemoteDeviceType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the remote neighbor's device type."
    SYNTAX      INTEGER { notDefined(0), endpointClassI(1), endpointClassII(2), endpointClassIII(3), networkConnectivity(4), reserved(5) }

TNlldpmedRemoteNetworkPolicyApplicationType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION
        "This enumerations the remote neighbor's network policy's application
         type."
    SYNTAX      INTEGER { voice(1), voiceSignaling(2), guestVoice(3), guestVoiceSignaling(4), softphoneVoice(5), videoConferencing(6), streamingVideo(7), videoSignaling(8) }

tnLldpMibObjects OBJECT IDENTIFIER
    ::= { tnLldpMib 1 }

tnLldpConfig OBJECT IDENTIFIER
    ::= { tnLldpMibObjects 2 }

tnLldpConfigGlobal OBJECT IDENTIFIER
    ::= { tnLldpConfig 1 }

tnLldpConfigGlobalReInitDelay OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set the LLDP tx reinitialization delay in seconds. Valid range 1-10.
         
         When a port is disabled, LLDP is disabled or the switch is rebooted, a
         LLDP shutdown frame is transmitted to the neighboring units, signaling
         that the LLDP information isn't valid anymore.
         
         Tx reinitialization delay controls the amount of seconds between the
         shutdown frame and a new LLDP initialization.
         
         
         
         Note: Must be less than 0.25 times the Tx interval."
    ::= { tnLldpConfigGlobal 1 }

tnLldpConfigGlobalMsgTxHold OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set the LLDP tx hold times . Valid range 2-10.
         
         Each LLDP frame contains information about how long time the
         information in the LLDP frame shall be considered valid. The LLDP
         information valid period is set to tx hold times multiplied by tx
         interval seconds."
    ::= { tnLldpConfigGlobal 2 }

tnLldpConfigGlobalMsgTxInterval OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set the LLDP tx interval in seconds.
         
         The switch periodically transmits LLDP frames to its neighbors for
         having the network discovery information up-to-date. The interval
         between each LLDP frame is determined by the tx Interval value.
         
         
         
         Valid range 5-32768 seconds."
    ::= { tnLldpConfigGlobal 3 }

tnLldpConfigGlobalTxDelay OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set the LLDP tx delay in seconds. Valid range 1-8192.
         
         If some configuration is changed (e.g. the IP address) a new LLDP frame
         is transmitted, but the time between the LLDP frames will always be at
         least the value of tx delay seconds.
         
         Note: tx Delay cannot be larger than 1/4 of the tx interval."
    ::= { tnLldpConfigGlobal 4 }

tnLldpConfigTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to configure LLDP configurations for a specific
         interface."
    ::= { tnLldpConfig 2 }

tnLldpConfigEntry OBJECT-TYPE
    SYNTAX      TNLldpConfigEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of control parameters"
    INDEX       { tnLldpConfigIfIndex }
    ::= { tnLldpConfigTable 1 }

TNLldpConfigEntry ::= SEQUENCE {
    tnLldpConfigIfIndex   TNInterfaceIndex,
    tnLldpConfigAdminState    TNlldpAdminState,
    tnLldpConfigCdpAware      TruthValue,
    tnLldpConfigOptionalTlvs      TNUnsigned8
}

tnLldpConfigIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpConfigEntry 1 }

tnLldpConfigAdminState OBJECT-TYPE
    SYNTAX      TNlldpAdminState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Sets the LLDP admin state for the interface."
    ::= { tnLldpConfigEntry 3 }

tnLldpConfigCdpAware OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Enables/disables CDP awareness for the interface.
         
         CDP is Cisco's equivalent to LLDP.
         
         
         
         The CDP operation is restricted to decoding incoming CDP frames (The
         switch doesn't transmit CDP frames). CDP frames are only decoded if
         LLDP on the port is enabled.
         
         
         
         Only CDP TLVs that can be mapped to a corresponding field in the LLDP
         neighbors' table are decoded. All other TLVs are discarded
         (Unrecognized CDP TLVs and discarded CDP frames are not shown in the
         LLDP statistics.).
         
         CDP TLVs are mapped onto LLDP neighbors' table as shown below.
         
         CDP TLV 'Device ID' is mapped to the LLDP 'Chassis ID' field.
         
         CDP TLV 'Address' is mapped to the LLDP 'Management Address' field. The
         CDP address TLV can contain multiple addresses, but only the first
         address is shown in the LLDP neighbors table.
         
         CDP TLV 'Port ID' is mapped to the LLDP 'Port ID' field.
         
         CDP TLV 'Version and Platform' is mapped to the LLDP 'System
         Description' field.
         
         Both the CDP and LLDP support 'system capabilities', but the CDP
         capabilities cover capabilities that are not part of the LLDP. These
         capabilities are shown as 'others' in the LLDP neighbors' table.
         
         
         
         If all ports have CDP awareness disabled the switch forwards CDP frames
         received from neighbor devices. If at least one port has CDP awareness
         enabled all CDP frames are terminated by the switch.
         
         
         
         Note: When CDP awareness on a port is disabled the CDP information
         isn't removed immediately, but gets removed when the hold time is
         exceeded."
    ::= { tnLldpConfigEntry 4 }

tnLldpConfigOptionalTlvs OBJECT-TYPE
    SYNTAX      TNUnsigned8
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Enables/Disables the LLDP optional TLVs. Bit mask, where setting the
         bit to 1 means enable transmission of the corresponding TLV.
         
         Bit 0 represents Port Description TLV.
         
         Bit 1 represents System Name TLV.
         
         Bit 2 represents System Description.
         
         Bit 3 represents System Capabilities TLV.
         
         Bit 4 represents Management Address TLV."
    ::= { tnLldpConfigEntry 5 }

tnLldpConfigMed OBJECT IDENTIFIER
    ::= { tnLldpConfig 3 }

tnLldpConfigMedTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpConfigMedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to configure LLDP MEDIA configurations for a specific
         interface."
    ::= { tnLldpConfigMed 1 }

tnLldpConfigMedEntry OBJECT-TYPE
    SYNTAX      TNLldpConfigMedEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of control parameters"
    INDEX       { tnLldpConfigMedIfIndex }
    ::= { tnLldpConfigMedTable 1 }

TNLldpConfigMedEntry ::= SEQUENCE {
    tnLldpConfigMedIfIndex    TNInterfaceIndex,
    tnLldpConfigMedOptionalTlvs   TNUnsigned8,
    tnLldpConfigMedDeviceType     TNlldpmedDeviceType
}

tnLldpConfigMedIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpConfigMedEntry 1 }

tnLldpConfigMedOptionalTlvs OBJECT-TYPE
    SYNTAX      TNUnsigned8
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Enables/Disables the LLDP optional TLVs. Bit mask, where setting the
         bit to 1 means
         
         enable transmission of the corresponding optional TLV.
         
         Bit 0 represents the capabilities TLV.
         
         Bit 1 represents the network Policy TLV.
         
         Bit 2 represents the location TLV.
         
         Bit 3 represents the PoE TLV."
    ::= { tnLldpConfigMedEntry 3 }

tnLldpConfigMedDeviceType OBJECT-TYPE
    SYNTAX      TNlldpmedDeviceType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Setting device type to configure the mode the device shall operate as."
    ::= { tnLldpConfigMedEntry 4 }

tnLldpConfigMedPolicyTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpConfigMedPolicyEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to configure LLDP MED Policies for the device."
    ::= { tnLldpConfigMed 2 }

tnLldpConfigMedPolicyEntry OBJECT-TYPE
    SYNTAX      TNLldpConfigMedPolicyEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Network Policy Discovery enables the efficient discovery and diagnosis
         of mismatch issues with the VLAN configuration, along with the
         associated Layer 2 and Layer 3 attributes, which apply for a set of
         specific protocol applications on that port. Improper network policy
         configurations are a very significant issue in VoIP environments that
         frequently result in voice quality degradation or loss of service.
         Policies are only intended for use with applications that have specific
         'real-time' network policy requirements, such as interactive voice
         and/or video services."
    INDEX       { tnLldpConfigMedPolicyLldpmedPolicy }
    ::= { tnLldpConfigMedPolicyTable 1 }

TNLldpConfigMedPolicyEntry ::= SEQUENCE {
    tnLldpConfigMedPolicyLldpmedPolicy    Integer32,
    tnLldpConfigMedPolicyApplicationType      TNlldpmedRemoteNetworkPolicyApplicationType,
    tnLldpConfigMedPolicyTagged   TruthValue,
    tnLldpConfigMedPolicyVlanId   TNUnsigned16,
    tnLldpConfigMedPolicyL2Priority   TNUnsigned8,
    tnLldpConfigMedPolicyDscp     TNUnsigned8,
    tnLldpConfigMedPolicyAction   TNRowEditorState
}

tnLldpConfigMedPolicyLldpmedPolicy OBJECT-TYPE
    SYNTAX      Integer32 (0..31)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Policy index."
    ::= { tnLldpConfigMedPolicyEntry 1 }

tnLldpConfigMedPolicyApplicationType OBJECT-TYPE
    SYNTAX      TNlldpmedRemoteNetworkPolicyApplicationType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy application type."
    ::= { tnLldpConfigMedPolicyEntry 3 }

tnLldpConfigMedPolicyTagged OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy tagged flag. Defines if LLDP policy uses tagged VLAN."
    ::= { tnLldpConfigMedPolicyEntry 4 }

tnLldpConfigMedPolicyVlanId OBJECT-TYPE
    SYNTAX      TNUnsigned16 (1..4095)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy VLAN ID. Only valid when policy 'Tagged' is TRUE"
    ::= { tnLldpConfigMedPolicyEntry 5 }

tnLldpConfigMedPolicyL2Priority OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..7)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy L2 priority."
    ::= { tnLldpConfigMedPolicyEntry 6 }

tnLldpConfigMedPolicyDscp OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..63)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy DSCP."
    ::= { tnLldpConfigMedPolicyEntry 7 }

tnLldpConfigMedPolicyAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnLldpConfigMedPolicyEntry 100 }

tnLldpConfigMedPolicyListTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpConfigMedPolicyListEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface can be mapped to multiple policies. Set to TRUE in order
         to enable the corresponding policy to be transmitted at the interface.
         It is a requirement that the policy is defined."
    ::= { tnLldpConfigMed 3 }

tnLldpConfigMedPolicyListEntry OBJECT-TYPE
    SYNTAX      TNLldpConfigMedPolicyListEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each location information has a control parameter"
    INDEX       { tnLldpConfigMedPolicyListIfIndex, tnLldpConfigMedPolicyListLldpmedPolicy }
    ::= { tnLldpConfigMedPolicyListTable 1 }

TNLldpConfigMedPolicyListEntry ::= SEQUENCE {
    tnLldpConfigMedPolicyListIfIndex      TNInterfaceIndex,
    tnLldpConfigMedPolicyListLldpmedPolicy    Integer32,
    tnLldpConfigMedPolicyListLldpmedPoliciesList      TruthValue
}

tnLldpConfigMedPolicyListIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpConfigMedPolicyListEntry 1 }

tnLldpConfigMedPolicyListLldpmedPolicy OBJECT-TYPE
    SYNTAX      Integer32 (0..31)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Policy index."
    ::= { tnLldpConfigMedPolicyListEntry 3 }

tnLldpConfigMedPolicyListLldpmedPoliciesList OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set to TRUE assign the corresponding policy index to the interface."
    ::= { tnLldpConfigMedPolicyListEntry 4 }

tnLldpConfigMedGlobal OBJECT IDENTIFIER
    ::= { tnLldpConfigMed 4 }

tnLldpConfigMedGlobalFastRepeatCount OBJECT-TYPE
    SYNTAX      TNUnsigned8 (1..10)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Number of times to repeat LLDP frame transmission at fast start
         
         Rapid startup and Emergency Call Service Location Identification
         Discovery of endpoints is a critically important aspect of VoIP systems
         in general. In addition, it is best to advertise only those pieces of
         information which are specifically relevant to particular endpoint
         types (for example only advertise the voice network policy to permitted
         voice-capable devices), both in order to conserve the limited LLDPU
         space and to reduce security and system integrity issues that can come
         with inappropriate knowledge of the network policy.
         
         With this in mind LLDP-MED defines an LLDP-MED Fast Start interaction
         between the protocol and the application layers on top of the protocol,
         in order to achieve these related properties. Initially, a Network
         Connectivity Device will only transmit LLDP TLVs in an LLDPDU. Only
         after an LLDP-MED Endpoint Device is detected, will an LLDP-MED capable
         Network Connectivity Device start to advertise LLDP-MED TLVs in
         outgoing LLDPDUs on the associated port. The LLDP-MED application will
         temporarily speed up the transmission of the LLDPDU to start within a
         second, when a new LLDP-MED neighbor has been detected in order share
         LLDP-MED information as fast as possible to new neighbors.
         
         Because there is a risk of an LLDP frame being lost during transmission
         between neighbors, it is recommended to repeat the fast start
         transmission multiple times to increase the possibility of the
         neighbors receiving the LLDP frame. With fast start repeat count it is
         possible to specify the number of times the fast start transmission
         would be repeated. The recommended value is 4 times, given that 4 LLDP
         frames with a 1 second interval will be transmitted, when an LLDP frame
         with new information is received.
         
         It should be noted that LLDP-MED and the LLDP-MED Fast Start mechanism
         is only intended to run on links between LLDP-MED Network Connectivity
         Devices and Endpoint Devices, and as such does not apply to links
         between LAN infrastructure elements, including Network Connectivity
         Devices, or other types of links."
    ::= { tnLldpConfigMedGlobal 1 }

tnLldpConfigMedGlobalLatitude OBJECT-TYPE
    SYNTAX      TNInteger64
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Latitude degrees in 2s-complement as specified in RFC 3825. Positive
         numbers are north of the equator and negative numbers are south of the
         equator."
    ::= { tnLldpConfigMedGlobal 2 }

tnLldpConfigMedGlobalLongitude OBJECT-TYPE
    SYNTAX      TNInteger64
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Longitude degrees in 2s-complement as specified in RFC 3825. Positive
         values are East of the prime meridian and negative numbers are West of
         the prime meridian."
    ::= { tnLldpConfigMedGlobal 3 }

tnLldpConfigMedGlobalAltitudeType OBJECT-TYPE
    SYNTAX      TNlldpmedAltitudeType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Setting altitude type
         
         Possible to select between two altitude types (floors or meters).
         Meters are representing meters of altitude defined by the vertical
         datum specified. Floors are representing altitude in a form more
         relevant in buildings which have different floor-to-floor dimensions.
         An altitude = 0.0 is meaningful even outside a building, and represents
         ground level at the given latitude and longitude. Inside a building,
         0.0 represents the floor level associated with ground level at the main
         entrance."
    ::= { tnLldpConfigMedGlobal 4 }

tnLldpConfigMedGlobalAltitude OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Altitude value in 2s-complement as specified in RFC 3825"
    ::= { tnLldpConfigMedGlobal 5 }

tnLldpConfigMedGlobalElinAddr OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..25))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Emergency Call Service ELIN identifier data format is defined to carry
         the ELIN identifier as used during emergency call setup to a
         traditional CAMA or ISDN trunk-based PSAP. This format consists of a
         numerical digit string, corresponding to the ELIN to be used for
         emergency calling. Maximum number of octets are 25."
    ::= { tnLldpConfigMedGlobal 6 }

tnLldpConfigMedGlobalDatum OBJECT-TYPE
    SYNTAX      TNlldpmedDatumType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Setting datum to configure the datum (geodetic system) to use.
         
         The Map Datum is used for the coordinates given in these options:
         
         WGS84: (Geographical 3D) - World Geodesic System 1984, CRS Code 4327,
         Prime Meridian Name: Greenwich.
         
         NAD83/NAVD88: North American Datum 1983, CRS Code 4269, Prime Meridian
         Name: Greenwich;The associated vertical datum is the North American
         Vertical Datum of 1988 (NAVD88).This datum pair is to be used when
         referencing locations on land, not near tidal water(which would use
         Datum = NAD83/MLLW).
         
         NAD83/MLLW: North American Datum 1983, CRS Code 4269, Prime Meridian
         Name: Greenwich; The associated vertical datum is Mean Lower Low Water
         (MLLW). This datum pair is to be used when referencing locations on
         water/sea/ocean."
    ::= { tnLldpConfigMedGlobal 7 }

tnLldpConfigMedGlobalCountryCode OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..2))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The two-letter ISO 3166 country code in capital ASCII letters -
         Example: DK, DE or US."
    ::= { tnLldpConfigMedGlobal 8 }

tnLldpConfigMedLocationInformationTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpConfigMedLocationInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "The civic address location information. Each civic address can contain
         up to 250 characters, but the total amount of characters for the
         combined civic address locations must not exceed 250 bytes. Note: If an
         civic address location is non-empty it uses the amount of characters
         plus addition two characters. This is described in TIA1057, Section
         10.2.4.3.2."
    ::= { tnLldpConfigMed 5 }

tnLldpConfigMedLocationInformationEntry OBJECT-TYPE
    SYNTAX      TNLldpConfigMedLocationInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each civic address type as defined in TIA1057, Section 3.4 in Annex B"
    INDEX       { tnLldpConfigMedLocationInformationLldpmedIndex }
    ::= { tnLldpConfigMedLocationInformationTable 1 }

TNLldpConfigMedLocationInformationEntry ::= SEQUENCE {
    tnLldpConfigMedLocationInformationLldpmedIndex    TNlldpmedCivicAddressType,
    tnLldpConfigMedLocationInformationCivicAddress    TNDisplayString
}

tnLldpConfigMedLocationInformationLldpmedIndex OBJECT-TYPE
    SYNTAX      TNlldpmedCivicAddressType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Civic address type.
         
         1 - State/National subdivisions
         
         2 - County, parish, gun (JP), district (IN)
         
         3 - City, township
         
         4 - City division, borough, city district, ward, chou (JP)
         
         5 - Neighborhood, block
         
         6 - Street
         
         16 - Leading street direction
         
         17 - Trailing street direction
         
         18 - Street suffix
         
         19 - House number
         
         20 - House number suffix
         
         21 - Landmark or vanity address
         
         22 - Additional location information
         
         23 - Name
         
         24 - Postal/zip code
         
         25 - Building
         
         26 - Unit
         
         27 - Floor
         
         28 - Room
         
         29 - Place type
         
         30 - Postal
         
         31 - Post office
         
         32 - Additional code"
    ::= { tnLldpConfigMedLocationInformationEntry 2 }

tnLldpConfigMedLocationInformationCivicAddress OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Civic address"
    ::= { tnLldpConfigMedLocationInformationEntry 3 }

tnLldpConfigMedPolicyRowEditor OBJECT IDENTIFIER
    ::= { tnLldpConfigMed 6 }

tnLldpConfigMedPolicyRowEditorLldpmedPolicy OBJECT-TYPE
    SYNTAX      Integer32 (0..31)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Policy index."
    ::= { tnLldpConfigMedPolicyRowEditor 1 }

tnLldpConfigMedPolicyRowEditorApplicationType OBJECT-TYPE
    SYNTAX      TNlldpmedRemoteNetworkPolicyApplicationType
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy application type."
    ::= { tnLldpConfigMedPolicyRowEditor 3 }

tnLldpConfigMedPolicyRowEditorTagged OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy tagged flag. Defines if LLDP policy uses tagged VLAN."
    ::= { tnLldpConfigMedPolicyRowEditor 4 }

tnLldpConfigMedPolicyRowEditorVlanId OBJECT-TYPE
    SYNTAX      TNUnsigned16 (1..4095)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy VLAN ID. Only valid when policy 'Tagged' is TRUE"
    ::= { tnLldpConfigMedPolicyRowEditor 5 }

tnLldpConfigMedPolicyRowEditorL2Priority OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..7)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy L2 priority."
    ::= { tnLldpConfigMedPolicyRowEditor 6 }

tnLldpConfigMedPolicyRowEditorDscp OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..63)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "The LLDP policy DSCP."
    ::= { tnLldpConfigMedPolicyRowEditor 7 }

tnLldpConfigMedPolicyRowEditorAction OBJECT-TYPE
    SYNTAX      TNRowEditorState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Action"
    ::= { tnLldpConfigMedPolicyRowEditor 100 }

tnLldpStatus OBJECT IDENTIFIER
    ::= { tnLldpMibObjects 3 }

tnLldpStatusStatistics OBJECT IDENTIFIER
    ::= { tnLldpStatus 1 }

tnLldpStatusStatisticsGlobalCounters OBJECT IDENTIFIER
    ::= { tnLldpStatusStatistics 1 }

tnLldpStatusStatisticsGlobalCountersTableInserts OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of new entries added since switch reboot."
    ::= { tnLldpStatusStatisticsGlobalCounters 1 }

tnLldpStatusStatisticsGlobalCountersTableDeletes OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of new entries deleted since switch reboot."
    ::= { tnLldpStatusStatisticsGlobalCounters 2 }

tnLldpStatusStatisticsGlobalCountersTableDrops OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of LLDP frames dropped due to the entry table being
         full."
    ::= { tnLldpStatusStatisticsGlobalCounters 3 }

tnLldpStatusStatisticsGlobalCountersTableAgeOuts OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of entries deleted due to Time-To-Live expiring."
    ::= { tnLldpStatusStatisticsGlobalCounters 4 }

tnLldpStatusStatisticsGlobalCountersLastChangeTime OBJECT-TYPE
    SYNTAX      TNUnsigned64
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the time when the last entry was last deleted or added. It also
         shows the time elapsed since the last change was detected."
    ::= { tnLldpStatusStatisticsGlobalCounters 5 }

tnLldpStatusStatisticsTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This table represents the LLDP interface counters"
    ::= { tnLldpStatusStatistics 2 }

tnLldpStatusStatisticsEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusStatisticsEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each port interface has a set of statistics counters"
    INDEX       { tnLldpStatusStatisticsIfIndex }
    ::= { tnLldpStatusStatisticsTable 1 }

TNLldpStatusStatisticsEntry ::= SEQUENCE {
    tnLldpStatusStatisticsIfIndex     TNInterfaceIndex,
    tnLldpStatusStatisticsTxTotal     Unsigned32,
    tnLldpStatusStatisticsRxTotal     Unsigned32,
    tnLldpStatusStatisticsRxError     Unsigned32,
    tnLldpStatusStatisticsRxDiscarded     Unsigned32,
    tnLldpStatusStatisticsTLVsDiscarded   Unsigned32,
    tnLldpStatusStatisticsTLVsUnrecognized    Unsigned32,
    tnLldpStatusStatisticsTLVsOrgDiscarded    Unsigned32,
    tnLldpStatusStatisticsAgeOuts     Unsigned32
}

tnLldpStatusStatisticsIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusStatisticsEntry 1 }

tnLldpStatusStatisticsTxTotal OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of LLDP frames transmitted."
    ::= { tnLldpStatusStatisticsEntry 2 }

tnLldpStatusStatisticsRxTotal OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of LLDP frames received."
    ::= { tnLldpStatusStatisticsEntry 3 }

tnLldpStatusStatisticsRxError OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of received LLDP frames containing some kind of error."
    ::= { tnLldpStatusStatisticsEntry 4 }

tnLldpStatusStatisticsRxDiscarded OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Show the number of LLDP frames discarded. If a LLDP frame is received
         at an interface, and the switch's internal table has run full, the LLDP
         frame is counted and discarded. This situation is known as 'Too Many
         Neighbors' in the LLDP standard. LLDP frames require a new entry in the
         table when the Chassis ID or Remote Port ID is not already contained
         within the table. Entries are removed from the table when a given
         interface's link is down, an LLDP shutdown frame is received, or when
         the entry ages out."
    ::= { tnLldpStatusStatisticsEntry 5 }

tnLldpStatusStatisticsTLVsDiscarded OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of TLVs discarded. Each LLDP frame can contain
         multiple pieces of information, known as TLVs (TLV is short for 'Type
         Length Value'). If a TLV is malformed, it is counted and discarded."
    ::= { tnLldpStatusStatisticsEntry 6 }

tnLldpStatusStatisticsTLVsUnrecognized OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of well-formed TLVs, but with an unknown type value."
    ::= { tnLldpStatusStatisticsEntry 7 }

tnLldpStatusStatisticsTLVsOrgDiscarded OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the number of well-formed TLVs, but with an organizationally TLV
         which is not supported."
    ::= { tnLldpStatusStatisticsEntry 8 }

tnLldpStatusStatisticsAgeOuts OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Show the number of age-outs. Each frame contains information about how
         long time the LLDP information is valid (age-out time). If no new LLDP
         frame is received within the age out time, the information is removed,
         and the counter is incremented."
    ::= { tnLldpStatusStatisticsEntry 9 }

tnLldpStatusNeighborsInformationTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusNeighborsInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to show the LLDP neighbors information for a specific
         interface."
    ::= { tnLldpStatus 2 }

tnLldpStatusNeighborsInformationEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusNeighborsInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of neighbors information"
    INDEX       { tnLldpStatusNeighborsInformationIfIndex, tnLldpStatusNeighborsInformationLldpmedIndex }
    ::= { tnLldpStatusNeighborsInformationTable 1 }

TNLldpStatusNeighborsInformationEntry ::= SEQUENCE {
    tnLldpStatusNeighborsInformationIfIndex   TNInterfaceIndex,
    tnLldpStatusNeighborsInformationLldpmedIndex      Integer32,
    tnLldpStatusNeighborsInformationChassisId     TNDisplayString,
    tnLldpStatusNeighborsInformationPortId    TNDisplayString,
    tnLldpStatusNeighborsInformationPortDescription   TNDisplayString,
    tnLldpStatusNeighborsInformationSystemName    TNDisplayString,
    tnLldpStatusNeighborsInformationSystemDescription     TNDisplayString,
    tnLldpStatusNeighborsInformationSystemCapabilities    TNUnsigned16,
    tnLldpStatusNeighborsInformationSystemCapabilitiesEnable      TNUnsigned16
}

tnLldpStatusNeighborsInformationIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusNeighborsInformationEntry 1 }

tnLldpStatusNeighborsInformationLldpmedIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..192)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor information table entry index."
    ::= { tnLldpStatusNeighborsInformationEntry 2 }

tnLldpStatusNeighborsInformationChassisId OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..254))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's chassis Id."
    ::= { tnLldpStatusNeighborsInformationEntry 4 }

tnLldpStatusNeighborsInformationPortId OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..254))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's port id."
    ::= { tnLldpStatusNeighborsInformationEntry 5 }

tnLldpStatusNeighborsInformationPortDescription OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..254))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's port description."
    ::= { tnLldpStatusNeighborsInformationEntry 6 }

tnLldpStatusNeighborsInformationSystemName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..254))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's system name."
    ::= { tnLldpStatusNeighborsInformationEntry 7 }

tnLldpStatusNeighborsInformationSystemDescription OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..254))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's system description."
    ::= { tnLldpStatusNeighborsInformationEntry 8 }

tnLldpStatusNeighborsInformationSystemCapabilities OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's system capabilities as bit mask.
         
         If the bit is set, it means that the functionality is supported by the
         neighbor system.
         
         Bit 0 represents Other.
         
         Bit 1 represents Repeater.
         
         Bit 2 represents Bridge.
         
         Bit 3 represents WLAN Access Point.
         
         Bit 4 represents Router.
         
         Bit 5 represents Telephone.
         
         Bit 6 represents DOCSIS cable device.
         
         Bit 7 represents Station Only.
         
         Bit 8 represents Reserved."
    ::= { tnLldpStatusNeighborsInformationEntry 9 }

tnLldpStatusNeighborsInformationSystemCapabilitiesEnable OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's system capabilities which is enabled.
         
         If the bit is set, it means that the functionality is currently enabled
         at the neighbor system.
         
         Bit 0 represents Other.
         
         Bit 1 represents Repeater.
         
         Bit 2 represents Bridge.
         
         Bit 3 represents WLAN Access Point.
         
         Bit 4 represents Router.
         
         Bit 5 represents Telephone.
         
         Bit 6 represents DOCSIS cable device.
         
         Bit 7 represents Station Only.
         
         Bit 8 represents Reserved."
    ::= { tnLldpStatusNeighborsInformationEntry 10 }

tnLldpStatusNeighborsMgmtInformationTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusNeighborsMgmtInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to show the LLDP neighbors information for a specific
         interface."
    ::= { tnLldpStatus 3 }

tnLldpStatusNeighborsMgmtInformationEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusNeighborsMgmtInformationEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of neighbors information"
    INDEX       { tnLldpStatusNeighborsMgmtInformationIfIndex, tnLldpStatusNeighborsMgmtInformationLldpmedIndex, tnLldpStatusNeighborsMgmtInformationLldpManagement }
    ::= { tnLldpStatusNeighborsMgmtInformationTable 1 }

TNLldpStatusNeighborsMgmtInformationEntry ::= SEQUENCE {
    tnLldpStatusNeighborsMgmtInformationIfIndex   TNInterfaceIndex,
    tnLldpStatusNeighborsMgmtInformationLldpmedIndex      Integer32,
    tnLldpStatusNeighborsMgmtInformationLldpManagement    Integer32,
    tnLldpStatusNeighborsMgmtInformationSystemMgmAddressSubtype   TNUnsigned8,
    tnLldpStatusNeighborsMgmtInformationSystemMgmtAddress     TNDisplayString,
    tnLldpStatusNeighborsMgmtInformationSystemMgmtInterfaceSubtype    Integer32,
    tnLldpStatusNeighborsMgmtInformationSystemMgmtInterface   Integer32,
    tnLldpStatusNeighborsMgmtInformationSystemMgmtOid     OBJECT IDENTIFIER
}

tnLldpStatusNeighborsMgmtInformationIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 1 }

tnLldpStatusNeighborsMgmtInformationLldpmedIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..192)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor information table entry index."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 2 }

tnLldpStatusNeighborsMgmtInformationLldpManagement OBJECT-TYPE
    SYNTAX      Integer32 (0..1)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor management information table entry index."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 4 }

tnLldpStatusNeighborsMgmtInformationSystemMgmAddressSubtype OBJECT-TYPE
    SYNTAX      TNUnsigned8
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "LLDP neighbor's management address subtype , section 9.5.9.3
         IEEE802.1AB-2005."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 5 }

tnLldpStatusNeighborsMgmtInformationSystemMgmtAddress OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "LLDP neighbor's management address string, section 9.5.9.4
         IEEE802.1AB-2005."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 6 }

tnLldpStatusNeighborsMgmtInformationSystemMgmtInterfaceSubtype OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Interface numbering subtype, section 9.5.9.5 IEEE802.1AB-2005."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 7 }

tnLldpStatusNeighborsMgmtInformationSystemMgmtInterface OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Interface number, section 9.5.9.6 IEEE802.1AB-2005."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 8 }

tnLldpStatusNeighborsMgmtInformationSystemMgmtOid OBJECT-TYPE
    SYNTAX      OBJECT IDENTIFIER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Object identifier, section 9.5.9.8 IEEE802.1AB-2005."
    ::= { tnLldpStatusNeighborsMgmtInformationEntry 9 }

tnLldpStatusMed OBJECT IDENTIFIER
    ::= { tnLldpStatus 4 }

tnLldpStatusMedRemoteDeviceInfoTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusMedRemoteDeviceInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to show the LLDP neighbors information for a specific
         interface."
    ::= { tnLldpStatusMed 1 }

tnLldpStatusMedRemoteDeviceInfoEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusMedRemoteDeviceInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of neighbors information"
    INDEX       { tnLldpStatusMedRemoteDeviceInfoIfIndex, tnLldpStatusMedRemoteDeviceInfoLldpmedIndex }
    ::= { tnLldpStatusMedRemoteDeviceInfoTable 1 }

TNLldpStatusMedRemoteDeviceInfoEntry ::= SEQUENCE {
    tnLldpStatusMedRemoteDeviceInfoIfIndex    TNInterfaceIndex,
    tnLldpStatusMedRemoteDeviceInfoLldpmedIndex   Integer32,
    tnLldpStatusMedRemoteDeviceInfoCapabilities   TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoCapabilitiesEnabled    TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoLatitude   TNInteger64,
    tnLldpStatusMedRemoteDeviceInfoLongitude      TNInteger64,
    tnLldpStatusMedRemoteDeviceInfoAltitudeType   TNlldpmedAltitudeType,
    tnLldpStatusMedRemoteDeviceInfoAltitude   Integer32,
    tnLldpStatusMedRemoteDeviceInfoDatum      TNlldpmedDatumType,
    tnLldpStatusMedRemoteDeviceInfoElinaddr   TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoDeviceType     TNlldpmedRemoteDeviceType,
    tnLldpStatusMedRemoteDeviceInfoHwRev      TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoFwRev      TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoSwRev      TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoSerialNo   TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoManufacturerName   TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoModelName      TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoAssetId    TNDisplayString,
    tnLldpStatusMedRemoteDeviceInfoEeeRxTwSys     TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoEeeTxTwSys     TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoEeeFbTwSys     TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoEeeTxTwSysEcho     TNUnsigned16,
    tnLldpStatusMedRemoteDeviceInfoEeeRxTwSysEcho     TNUnsigned16
}

tnLldpStatusMedRemoteDeviceInfoIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 1 }

tnLldpStatusMedRemoteDeviceInfoLldpmedIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..192)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor information table entry index."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 2 }

tnLldpStatusMedRemoteDeviceInfoCapabilities OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "LLDP neighbor's capabilities bit mask.
         
         Bit 0 represents LLDP-MED capabilities.
         
         Bit 1 represents Network Policy.
         
         Bit 2 represents Location Identification.
         
         Bit 3 represents Extended Power via MDI - PSE.
         
         Bit 4 represents Extended Power via MDI - PD
         
         Bit 5 represents Inventory
         
         "
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 4 }

tnLldpStatusMedRemoteDeviceInfoCapabilitiesEnabled OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "LLDP neighbor's capabilities bit mask for the capabilities which are
         currently enabled.
         
         Bit 0 represents LLDP-MED capabilities.
         
         Bit 1 represents Network Policy.
         
         Bit 2 represents Location Identification.
         
         Bit 3 represents Extended Power via MDI - PSE.
         
         Bit 4 represents Extended Power via MDI - PD
         
         Bit 5 represents Inventory
         
         "
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 5 }

tnLldpStatusMedRemoteDeviceInfoLatitude OBJECT-TYPE
    SYNTAX      TNInteger64
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Latitude degrees in 2s-complement as specified in RFC 3825. Positive
         numbers are north of the equator and negative numbers are south of the
         equator."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 6 }

tnLldpStatusMedRemoteDeviceInfoLongitude OBJECT-TYPE
    SYNTAX      TNInteger64
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Longitude degrees in 2s-complement as specified in RFC 3825. Positive
         values are East of the prime meridian and negative numbers are West of
         the prime meridian."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 7 }

tnLldpStatusMedRemoteDeviceInfoAltitudeType OBJECT-TYPE
    SYNTAX      TNlldpmedAltitudeType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Altitude type as either floors or meters. Meters are representing
         meters of altitude defined by the vertical datum specified. Floors are
         representing altitude in a form more relevant in buildings which have
         different floor-to-floor dimensions. An altitude = 0.0 is meaningful
         even outside a building, and represents ground level at the given
         latitude and longitude. Inside a building, 0.0 represents the floor
         level associated with ground level at the main entrance."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 8 }

tnLldpStatusMedRemoteDeviceInfoAltitude OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Altitude value in 2s-complement as specified in RFC 3825"
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 9 }

tnLldpStatusMedRemoteDeviceInfoDatum OBJECT-TYPE
    SYNTAX      TNlldpmedDatumType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Datum (geodetic system) .
         
         The Map Datum is used for the coordinates given in these options:
         
         WGS84: (Geographical 3D) - World Geodesic System 1984, CRS Code 4327,
         Prime Meridian Name: Greenwich.
         
         NAD83/NAVD88: North American Datum 1983, CRS Code 4269, Prime Meridian
         Name: Greenwich; The associated vertical datum is the North American
         Vertical Datum of 1988 (NAVD88). This datum pair is to be used when
         referencing locations on land, not near tidal water(which would use
         Datum = NAD83/MLLW).
         
         NAD83/MLLW: North American Datum 1983, CRS Code 4269, Prime Meridian
         Name: Greenwich; The associated vertical datum is Mean Lower Low Water
         (MLLW). This datum pair is to be used when referencing locations on
         water/sea/ocean."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 10 }

tnLldpStatusMedRemoteDeviceInfoElinaddr OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..25))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Emergency Call Service ELIN identifier data format is defined to carry
         the ELIN identifier as used during emergency call setup to a
         traditional CAMA or ISDN trunk-based PSAP. This format consists of a
         numerical digit string, corresponding to the ELIN to be used for
         emergency calling. Maximum number of octets are 25."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 11 }

tnLldpStatusMedRemoteDeviceInfoDeviceType OBJECT-TYPE
    SYNTAX      TNlldpmedRemoteDeviceType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's device type."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 12 }

tnLldpStatusMedRemoteDeviceInfoHwRev OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's hardware revision."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 13 }

tnLldpStatusMedRemoteDeviceInfoFwRev OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's firmware revision."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 14 }

tnLldpStatusMedRemoteDeviceInfoSwRev OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's software revision."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 15 }

tnLldpStatusMedRemoteDeviceInfoSerialNo OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's serial number."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 16 }

tnLldpStatusMedRemoteDeviceInfoManufacturerName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's manufacturer name."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 17 }

tnLldpStatusMedRemoteDeviceInfoModelName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's model name."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 18 }

tnLldpStatusMedRemoteDeviceInfoAssetId OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..31))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's asset id."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 19 }

tnLldpStatusMedRemoteDeviceInfoEeeRxTwSys OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's Receive tw_sys_rx . Tw_sys_rx is defined as
         the time (expressed in microseconds) that the transmitting link partner
         will wait before it starts transmitting data after leaving the Low
         Power Idle (LPI) mode. Section 79.3.5.2, IEEE802.3az."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 20 }

tnLldpStatusMedRemoteDeviceInfoEeeTxTwSys OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's Transmit Tw_sys_tx . Tw_sys_tx is defined as
         the time (expressed in microseconds) that the receiving link partner is
         requesting the transmitting link partner to wait before starting the
         transmission data following the Low Power Idle (LPI) mode. Section
         79.3.5.1, IEEE802.3az."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 21 }

tnLldpStatusMedRemoteDeviceInfoEeeFbTwSys OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's Fallback tw_sys_tx. A receiving link partner
         may inform the transmitter of an alternate desired Tw_sys_tx. Since a
         receiving link partner is likely to have discrete levels for savings,
         this provides the transmitter with additional information that it may
         use for a more efficient allocation. Section 79.3.5.3, IEEE802.3az."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 22 }

tnLldpStatusMedRemoteDeviceInfoEeeTxTwSysEcho OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's echo transmit Tw. The respective echo values
         shall be defined as the local link partners reflection (echo) of the
         remote link partners respective values. When a local link partner
         receives its echoed values from the remote link partner it can
         determine whether or not the remote link partner has received,
         registered, and processed its most recent values. Section 79.3.5.4,
         IEEE802.3az."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 23 }

tnLldpStatusMedRemoteDeviceInfoEeeRxTwSysEcho OBJECT-TYPE
    SYNTAX      TNUnsigned16
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's echo receive Tw. The respective echo values
         shall be defined as the local link partners reflection (echo) of the
         remote link partners respective values. When a local link partner
         receives its echoed values from the remote link partner it can
         determine whether or not the remote link partner has received,
         registered, and processed its most recent values. Section 79.3.5.4,
         IEEE802.3az."
    ::= { tnLldpStatusMedRemoteDeviceInfoEntry 24 }

tnLldpStatusMedRemoteDeviceLocInfoTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusMedRemoteDeviceLocInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to show the LLDP-MED remote device (neighbor) civic
         location information for a specific interface."
    ::= { tnLldpStatusMed 2 }

tnLldpStatusMedRemoteDeviceLocInfoEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusMedRemoteDeviceLocInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of neighbors information"
    INDEX       { tnLldpStatusMedRemoteDeviceLocInfoIfIndex, tnLldpStatusMedRemoteDeviceLocInfoLldpmedIndex }
    ::= { tnLldpStatusMedRemoteDeviceLocInfoTable 1 }

TNLldpStatusMedRemoteDeviceLocInfoEntry ::= SEQUENCE {
    tnLldpStatusMedRemoteDeviceLocInfoIfIndex     TNInterfaceIndex,
    tnLldpStatusMedRemoteDeviceLocInfoLldpmedIndex    Integer32,
    tnLldpStatusMedRemoteDeviceLocInfoState   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoCounty      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoCity    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoDistrict    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoBlock   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoStreet      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoLeadingStreetDirection      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoTrailingStreetSuffix    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoStreetSuffix    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoHouseNo     TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoHouseNoSuffix   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoLandmark    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoAdditionalInfo      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoName    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoZipCode     TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoBuilding    TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoApartment   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoFloor   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoRoomNumber      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoPlaceType   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoPostalCommunityName     TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoPoBox   TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoAdditionalCode      TNDisplayString,
    tnLldpStatusMedRemoteDeviceLocInfoCountryCode     TNDisplayString
}

tnLldpStatusMedRemoteDeviceLocInfoIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 1 }

tnLldpStatusMedRemoteDeviceLocInfoLldpmedIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..192)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor information table entry index."
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 2 }

tnLldpStatusMedRemoteDeviceLocInfoState OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "National subdivision"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 5 }

tnLldpStatusMedRemoteDeviceLocInfoCounty OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "County"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 6 }

tnLldpStatusMedRemoteDeviceLocInfoCity OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "City"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 7 }

tnLldpStatusMedRemoteDeviceLocInfoDistrict OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "City district"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 8 }

tnLldpStatusMedRemoteDeviceLocInfoBlock OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Block (Neighborhood)"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 9 }

tnLldpStatusMedRemoteDeviceLocInfoStreet OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Street"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 10 }

tnLldpStatusMedRemoteDeviceLocInfoLeadingStreetDirection OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Street Direction"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 11 }

tnLldpStatusMedRemoteDeviceLocInfoTrailingStreetSuffix OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Trailing Street Suffix"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 12 }

tnLldpStatusMedRemoteDeviceLocInfoStreetSuffix OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Street Suffix"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 13 }

tnLldpStatusMedRemoteDeviceLocInfoHouseNo OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "House No."
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 14 }

tnLldpStatusMedRemoteDeviceLocInfoHouseNoSuffix OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "House No. Suffix"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 15 }

tnLldpStatusMedRemoteDeviceLocInfoLandmark OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Landmark"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 16 }

tnLldpStatusMedRemoteDeviceLocInfoAdditionalInfo OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Additional Location Info"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 17 }

tnLldpStatusMedRemoteDeviceLocInfoName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Name"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 18 }

tnLldpStatusMedRemoteDeviceLocInfoZipCode OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Zip code"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 19 }

tnLldpStatusMedRemoteDeviceLocInfoBuilding OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Building"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 20 }

tnLldpStatusMedRemoteDeviceLocInfoApartment OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Apartment/unit"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 21 }

tnLldpStatusMedRemoteDeviceLocInfoFloor OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Floor"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 22 }

tnLldpStatusMedRemoteDeviceLocInfoRoomNumber OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Room Number"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 23 }

tnLldpStatusMedRemoteDeviceLocInfoPlaceType OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Place type"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 24 }

tnLldpStatusMedRemoteDeviceLocInfoPostalCommunityName OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Postal Community Name"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 25 }

tnLldpStatusMedRemoteDeviceLocInfoPoBox OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Post Office Box"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 26 }

tnLldpStatusMedRemoteDeviceLocInfoAdditionalCode OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..250))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Addination Code"
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 27 }

tnLldpStatusMedRemoteDeviceLocInfoCountryCode OBJECT-TYPE
    SYNTAX      TNDisplayString (SIZE(0..2))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The two-letter ISO 3166 country code in capital ASCII letters -
         Example: DK, DE or US."
    ::= { tnLldpStatusMedRemoteDeviceLocInfoEntry 28 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to show the LLDP-MED remote device (neighbor) network
         policies information for a specific interface."
    ::= { tnLldpStatusMed 3 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry OBJECT-TYPE
    SYNTAX      TNLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of neighbors information"
    INDEX       { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoIfIndex, tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedIndex, tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedPolicy }
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoTable 1 }

TNLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry ::= SEQUENCE {
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoIfIndex   TNInterfaceIndex,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedIndex      Integer32,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedPolicy     Integer32,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoApplicationType   TNlldpmedRemoteNetworkPolicyApplicationType,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoUnknownPolicy     TruthValue,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoTagged    TruthValue,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoVlanId    TNUnsigned16,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoL2Priority    TNUnsigned8,
    tnLldpStatusMedRemoteDeviceNetworkPolicyInfoDscp      TNUnsigned8
}

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 1 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedIndex OBJECT-TYPE
    SYNTAX      Integer32 (0..192)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Neighbor information table entry index."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 2 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoLldpmedPolicy OBJECT-TYPE
    SYNTAX      Integer32 (0..31)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Policy index."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 3 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoApplicationType OBJECT-TYPE
    SYNTAX      TNlldpmedRemoteNetworkPolicyApplicationType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The LLDP policy application type."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 5 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoUnknownPolicy OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Policy indicates that an Endpoint Device wants to explicitly advertise
         that the policy is required by the device. Can be either Defined or
         Unknown
         
         Unknown: The network policy for the specified application type is
         currently unknown.
         
         Defined: The network policy is defined (known)."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 6 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoTagged OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Defines if LLDP policy uses tagged VLAN."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 7 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoVlanId OBJECT-TYPE
    SYNTAX      TNUnsigned16 (1..4095)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "The policy VLAN ID. Only valid when policy 'Tagged' is TRUE"
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 8 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoL2Priority OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..7)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "Shows the LLDP neighbor's policy L2 priority."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 9 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoDscp OBJECT-TYPE
    SYNTAX      TNUnsigned8 (0..63)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION 
        "LLDP policy DSCP."
    ::= { tnLldpStatusMedRemoteDeviceNetworkPolicyInfoEntry 10 }

tnLldpControl OBJECT IDENTIFIER
    ::= { tnLldpMibObjects 4 }

tnLldpControlStatisticsClear OBJECT IDENTIFIER
    ::= { tnLldpControl 1 }

tnLldpControlStatisticsClearTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF TNLldpControlStatisticsClearEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "This is a table to clear LLDP statistics for a specific interface."
    ::= { tnLldpControlStatisticsClear 1 }

tnLldpControlStatisticsClearEntry OBJECT-TYPE
    SYNTAX      TNLldpControlStatisticsClearEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Each interface has a set of statistics counters"
    INDEX       { tnLldpControlStatisticsClearIfIndex }
    ::= { tnLldpControlStatisticsClearTable 1 }

TNLldpControlStatisticsClearEntry ::= SEQUENCE {
    tnLldpControlStatisticsClearIfIndex   TNInterfaceIndex,
    tnLldpControlStatisticsClearStatisticsClear   TruthValue
}

tnLldpControlStatisticsClearIfIndex OBJECT-TYPE
    SYNTAX      TNInterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION 
        "Logical interface number index."
    ::= { tnLldpControlStatisticsClearEntry 1 }

tnLldpControlStatisticsClearStatisticsClear OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Set to TRUE to clear the LLDP statistics of an interface."
    ::= { tnLldpControlStatisticsClearEntry 2 }

tnLldpControlStatisticsClearGlobal OBJECT IDENTIFIER
    ::= { tnLldpControlStatisticsClear 2 }

tnLldpControlStatisticsClearGlobalClear OBJECT-TYPE
    SYNTAX      TNUnsigned8
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
        "Clear LLDP global counters."
    ::= { tnLldpControlStatisticsClearGlobal 1 }

tnLldpMibConformance OBJECT IDENTIFIER
    ::= { tnLldpMib 2 }

tnLldpMibCompliances OBJECT IDENTIFIER
    ::= { tnLldpMibConformance 1 }

tnLldpMibGroups OBJECT IDENTIFIER
    ::= { tnLldpMibConformance 2 }

tnLldpConfigGlobalInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigGlobalReInitDelay, tnLldpConfigGlobalMsgTxHold, 
                  tnLldpConfigGlobalMsgTxInterval, tnLldpConfigGlobalTxDelay }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 1 }

tnLldpConfigInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigAdminState, tnLldpConfigCdpAware, 
                  tnLldpConfigOptionalTlvs }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 2 }

tnLldpConfigMedInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedOptionalTlvs, tnLldpConfigMedDeviceType }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 3 }

tnLldpConfigMedPolicyInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedPolicyApplicationType, 
                  tnLldpConfigMedPolicyTagged, tnLldpConfigMedPolicyVlanId, 
                  tnLldpConfigMedPolicyL2Priority, tnLldpConfigMedPolicyDscp, 
                  tnLldpConfigMedPolicyAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 4 }

tnLldpConfigMedPolicyListInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedPolicyListLldpmedPoliciesList }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 5 }

tnLldpConfigMedGlobalInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedGlobalFastRepeatCount, 
                  tnLldpConfigMedGlobalLatitude, 
                  tnLldpConfigMedGlobalLongitude, 
                  tnLldpConfigMedGlobalAltitudeType, 
                  tnLldpConfigMedGlobalAltitude, 
                  tnLldpConfigMedGlobalElinAddr, tnLldpConfigMedGlobalDatum, 
                  tnLldpConfigMedGlobalCountryCode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 6 }

tnLldpConfigMedLocationInformationInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedLocationInformationCivicAddress }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 7 }

tnLldpConfigMedPolicyRowEditorInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpConfigMedPolicyRowEditorLldpmedPolicy, 
                  tnLldpConfigMedPolicyRowEditorApplicationType, 
                  tnLldpConfigMedPolicyRowEditorTagged, 
                  tnLldpConfigMedPolicyRowEditorVlanId, 
                  tnLldpConfigMedPolicyRowEditorL2Priority, 
                  tnLldpConfigMedPolicyRowEditorDscp, 
                  tnLldpConfigMedPolicyRowEditorAction }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 8 }

tnLldpStatusStatisticsGlobalCountersInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpStatusStatisticsGlobalCountersTableInserts, 
                  tnLldpStatusStatisticsGlobalCountersTableDeletes, 
                  tnLldpStatusStatisticsGlobalCountersTableDrops, 
                  tnLldpStatusStatisticsGlobalCountersTableAgeOuts, 
                  tnLldpStatusStatisticsGlobalCountersLastChangeTime }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 9 }

tnLldpStatusStatisticsTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpStatusStatisticsTxTotal, 
                  tnLldpStatusStatisticsRxTotal, 
                  tnLldpStatusStatisticsRxError, 
                  tnLldpStatusStatisticsRxDiscarded, 
                  tnLldpStatusStatisticsTLVsDiscarded, 
                  tnLldpStatusStatisticsTLVsUnrecognized, 
                  tnLldpStatusStatisticsTLVsOrgDiscarded, 
                  tnLldpStatusStatisticsAgeOuts }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 10 }

tnLldpStatusNeighborsInformationInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpStatusNeighborsInformationChassisId, 
                  tnLldpStatusNeighborsInformationPortId, 
                  tnLldpStatusNeighborsInformationPortDescription, 
                  tnLldpStatusNeighborsInformationSystemName, 
                  tnLldpStatusNeighborsInformationSystemDescription, 
                  tnLldpStatusNeighborsInformationSystemCapabilities, 
                  tnLldpStatusNeighborsInformationSystemCapabilitiesEnable }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 11 }

tnLldpStatusNeighborsMgmtInformationInfoGroup OBJECT-GROUP
    OBJECTS     { 
                  tnLldpStatusNeighborsMgmtInformationSystemMgmAddressSubtype, 
                  tnLldpStatusNeighborsMgmtInformationSystemMgmtAddress, 
                  tnLldpStatusNeighborsMgmtInformationSystemMgmtInterfaceSubtype, 
                  tnLldpStatusNeighborsMgmtInformationSystemMgmtInterface, 
                  tnLldpStatusNeighborsMgmtInformationSystemMgmtOid }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 12 }

tnLldpStatusMedRemoteDeviceInfoInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpStatusMedRemoteDeviceInfoCapabilities, 
                  tnLldpStatusMedRemoteDeviceInfoCapabilitiesEnabled, 
                  tnLldpStatusMedRemoteDeviceInfoLatitude, 
                  tnLldpStatusMedRemoteDeviceInfoLongitude, 
                  tnLldpStatusMedRemoteDeviceInfoAltitudeType, 
                  tnLldpStatusMedRemoteDeviceInfoAltitude, 
                  tnLldpStatusMedRemoteDeviceInfoDatum, 
                  tnLldpStatusMedRemoteDeviceInfoElinaddr, 
                  tnLldpStatusMedRemoteDeviceInfoDeviceType, 
                  tnLldpStatusMedRemoteDeviceInfoHwRev, 
                  tnLldpStatusMedRemoteDeviceInfoFwRev, 
                  tnLldpStatusMedRemoteDeviceInfoSwRev, 
                  tnLldpStatusMedRemoteDeviceInfoSerialNo, 
                  tnLldpStatusMedRemoteDeviceInfoManufacturerName, 
                  tnLldpStatusMedRemoteDeviceInfoModelName, 
                  tnLldpStatusMedRemoteDeviceInfoAssetId, 
                  tnLldpStatusMedRemoteDeviceInfoEeeRxTwSys, 
                  tnLldpStatusMedRemoteDeviceInfoEeeTxTwSys, 
                  tnLldpStatusMedRemoteDeviceInfoEeeFbTwSys, 
                  tnLldpStatusMedRemoteDeviceInfoEeeTxTwSysEcho, 
                  tnLldpStatusMedRemoteDeviceInfoEeeRxTwSysEcho }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 13 }

tnLldpStatusMedRemoteDeviceLocInfoInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpStatusMedRemoteDeviceLocInfoState, 
                  tnLldpStatusMedRemoteDeviceLocInfoCounty, 
                  tnLldpStatusMedRemoteDeviceLocInfoCity, 
                  tnLldpStatusMedRemoteDeviceLocInfoDistrict, 
                  tnLldpStatusMedRemoteDeviceLocInfoBlock, 
                  tnLldpStatusMedRemoteDeviceLocInfoStreet, 
                  tnLldpStatusMedRemoteDeviceLocInfoLeadingStreetDirection, 
                  tnLldpStatusMedRemoteDeviceLocInfoTrailingStreetSuffix, 
                  tnLldpStatusMedRemoteDeviceLocInfoStreetSuffix, 
                  tnLldpStatusMedRemoteDeviceLocInfoHouseNo, 
                  tnLldpStatusMedRemoteDeviceLocInfoHouseNoSuffix, 
                  tnLldpStatusMedRemoteDeviceLocInfoLandmark, 
                  tnLldpStatusMedRemoteDeviceLocInfoAdditionalInfo, 
                  tnLldpStatusMedRemoteDeviceLocInfoName, 
                  tnLldpStatusMedRemoteDeviceLocInfoZipCode, 
                  tnLldpStatusMedRemoteDeviceLocInfoBuilding, 
                  tnLldpStatusMedRemoteDeviceLocInfoApartment, 
                  tnLldpStatusMedRemoteDeviceLocInfoFloor, 
                  tnLldpStatusMedRemoteDeviceLocInfoRoomNumber, 
                  tnLldpStatusMedRemoteDeviceLocInfoPlaceType, 
                  tnLldpStatusMedRemoteDeviceLocInfoPostalCommunityName, 
                  tnLldpStatusMedRemoteDeviceLocInfoPoBox, 
                  tnLldpStatusMedRemoteDeviceLocInfoAdditionalCode, 
                  tnLldpStatusMedRemoteDeviceLocInfoCountryCode }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 14 }

tnLldpStatusMedRemoteDeviceNetworkPolicyInfoInfoGroup OBJECT-GROUP
    OBJECTS     { 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoApplicationType, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoUnknownPolicy, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoTagged, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoVlanId, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoL2Priority, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoDscp }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 15 }

tnLldpControlStatisticsClearTableInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpControlStatisticsClearStatisticsClear }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 16 }

tnLldpControlStatisticsClearGlobalInfoGroup OBJECT-GROUP
    OBJECTS     { tnLldpControlStatisticsClearGlobalClear }
    STATUS      current
    DESCRIPTION
        "A collection of objects suitable for bulk operations."
    ::= { tnLldpMibGroups 17 }

tnLldpMibCompliance MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for the implementation."

    MODULE      -- this module

        MANDATORY-GROUPS        { tnLldpConfigGlobalInfoGroup, 
                  tnLldpConfigInfoGroup, tnLldpConfigMedInfoGroup, 
                  tnLldpConfigMedPolicyInfoGroup, 
                  tnLldpConfigMedPolicyListInfoGroup, 
                  tnLldpConfigMedGlobalInfoGroup, 
                  tnLldpConfigMedLocationInformationInfoGroup, 
                  tnLldpConfigMedPolicyRowEditorInfoGroup, 
                  tnLldpStatusStatisticsGlobalCountersInfoGroup, 
                  tnLldpStatusStatisticsTableInfoGroup, 
                  tnLldpStatusNeighborsInformationInfoGroup, 
                  tnLldpStatusNeighborsMgmtInformationInfoGroup, 
                  tnLldpStatusMedRemoteDeviceInfoInfoGroup, 
                  tnLldpStatusMedRemoteDeviceLocInfoInfoGroup, 
                  tnLldpStatusMedRemoteDeviceNetworkPolicyInfoInfoGroup, 
                  tnLldpControlStatisticsClearTableInfoGroup, 
                  tnLldpControlStatisticsClearGlobalInfoGroup }

    ::= { tnLldpMibCompliances 1 }

END