summaryrefslogtreecommitdiff
path: root/MIBS/infinera/LUM-REG
blob: 680505e268e99e33d4c1081977a63b23960ef858 (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
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
LUM-REG DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-IDENTITY, enterprises
        FROM SNMPv2-SMI;

lumRegModule MODULE-IDENTITY
    LAST-UPDATED
        "201908300000Z" -- August 30th 2019
    ORGANIZATION
        "Infinera Corporation"
    CONTACT-INFO
        "techsupport@infinera.com"
    DESCRIPTION
        "The Transmode global OID registrations.

"
    REVISION
        "201908300000Z" -- August 30th 2019
    DESCRIPTION
        "Changes made for release r33.1:
        - Add CO2xOTDR filter
        - Add CO-D4 filter series"
    REVISION
        "201906280000Z" -- June 28th 2019
    DESCRIPTION
         "Changes made for release r33.0:
         - Added oa1x21dBmVgEC board.
         - Added oa2x21dBmVgEC board."
    REVISION
        "201806290000Z" -- June 29th 2018
    DESCRIPTION
         "Changes made for release r31.0:
         - Added otdr8p board.
         - Added LUM-IFOTDR-MIB."
    REVISION
        "201709010000Z" -- September 1st 2017
    DESCRIPTION
        "Changes made for release r30.0:
         - Added emxp440 board.
         - Added oaraed20lg board.
         - Added ad1c2fotdr board."
    REVISION
        "201706150000Z" -- June 15th 2017
    DESCRIPTION
        "Changes made for release r29.0:
         - Changed ORGANIZATION and CONTACT-INFO"
    REVISION
        "201611300000Z" -- November 30th 2016
    DESCRIPTION
        "Changes made for release r28:
        - Added tp100gotnii board."
    REVISION
        "201601140000Z" -- January 14th 2016
    DESCRIPTION
        "Changes made for release r27:
        - Added fhau1 board
        - Added fha1u1 board
        - Added LUM-LLDPV2-MIB
        - Added oa1x20dBmVg2 board
        - Added oa2x20dBmVg2 board"
    REVISION
       "201509300000Z" -- September 30th 2015
    DESCRIPTION
        "Changes made for release r26:
        - Added fpu board.
        - Added oaraed21hghyb board
        - Added dcDk652km100 board
        - Added dcDk652km120 board
        - Added dcP652km20 board"
    REVISION
       "201509150000Z" -- September 15th 2015
    DESCRIPTION
        "Changes made for release r25.1:
        - Added tpmrHL16GUni board."
    REVISION
        "201501130000Z" -- January 13th 2015
    DESCRIPTION
        "Changes made for release r25:
        - Added emxp240iie board.
        - Added IFIWDM Mib."
    REVISION
        "201409300000Z" -- September 30th 2014
    DESCRIPTION
        "Changes made for release r23.1:
        - Added mxp100gotn board."
    REVISION
        "201405160000Z" -- May 16th 2014
    DESCRIPTION
        "Changes made for release r23:
        - Added emxp220iie board.
        - Added tpmrHL16G board.
        - Changed board name from tp10gotn to tphex10gotn."
    REVISION
        "201311150000Z" -- November 15th 2013
    DESCRIPTION
        "Changes made for release r22:
        - Added tp10gotn board.
        - Added tp100gotn board.
        - Added SoamPmMib."

    REVISION
        "201305010000Z" -- May 1st 2013
    DESCRIPTION
        "Changes made for release r21:
        - Added tpq10gfeci board.
        - Added tpq10gfecregi board."
    REVISION
        "201212200000Z" -- Dec 20th 2012
    DESCRIPTION
        "Changes made for r20
         - Added msTp40G.
         - Added msMxp40G.
         - Added mxp10gotn.
         - Added ocudq.
         - Added ocuseed2p.
         - Added emxp62Giie.
         - Added emxp120Giie.
         - Added IFPERF MIB."

    REVISION
        "201212100000Z" -- Dec 10th 2012
    DESCRIPTION
        "Added IFBASIC, IFPHYSICAL and IFOPTICAL MIB."
    REVISION
        "201201200000Z" -- Jan 20th 2012
    DESCRIPTION
        "Changes made for r19
         - Added PSR MIB.
         - Added MPLS OAM MIB."
    REVISION
        "201112200000Z" --  December 20th 2011
    DESCRIPTION
        "Changes made for release r18:
        - Added MPLS MIB.
        - Added PW MIB.
        - Added SITE MIB."
    REVISION
        "201110120000Z" -- October 12th 2011
    DESCRIPTION
        "Added TM4700 and TM4011."
    REVISION
        "201104130000Z" -- April 13th 2011
    DESCRIPTION
        "Added passive subracks."
    REVISION
        "200704160000Z" -- April 16th 2007
    DESCRIPTION
        "Added ROADM MIB."
    REVISION
        "200612150000Z" -- Dec 15th 2006
    DESCRIPTION
        "Added circuit MIB."
    REVISION
        "200211260000Z" -- Nov 26th 2002
    DESCRIPTION
        "Added MEM MIB"
    REVISION
        "200211150000Z" -- Nov 15th 2002
    DESCRIPTION
        "Added DCN MIB"
    REVISION
        "200211110000Z" -- Nov 11th 2002
    DESCRIPTION
        "TP Light -> TP Lite"
    REVISION
        "200211080000Z" -- Nov 8th 2002
    DESCRIPTION
        "Added the TP Light."
    REVISION
        "200210210000Z" -- Oct 21st 2002
    DESCRIPTION
        "Added the 10 G transponder."
    REVISION
        "200205300000Z" -- May 30th 2002
    DESCRIPTION
        "Added snmp MIB."
    REVISION
        "200205160000Z" -- May 16th 2002
    DESCRIPTION
        "Added sync MIB."
    REVISION
        "200204050000Z" -- April 5th 2002
    DESCRIPTION
        "Updated the names of the boards.
        Removed the separate traffic slot definitions."
    REVISION
        "200203080000Z" -- March 8th 2002
    DESCRIPTION
        "Added 4 channel AD boards and the dual gigabit ethernet board.
        Fixed the name of the multi-rate transponder board."
    REVISION
        "200111200000Z" -- November 20th 2001
    DESCRIPTION
        "Added the IP-mib."
    REVISION
        "200110100000Z" -- October 10th 2001
    DESCRIPTION
        "Deprecated the LAMBDA- and the TRANSPONDER-mib.
        Added the EQUIPMENT- and the MULTIRATE-mib."
    REVISION
        "200109050000Z" -- September 5th 2001
    DESCRIPTION
        "Updated the product definitions with the proper product names."
    REVISION
        "200108090000Z" -- August 9th 2001
    DESCRIPTION
        "Added lambda, wdm, transponder and topology modules."
    REVISION
        "200108010000Z" -- August 1st 2001
    DESCRIPTION
        "Added backup module."
    REVISION
        "200104260000Z" -- April 26th 2001
    DESCRIPTION
        "Changed name of the entity MIB to inventory MIB.
        Assigned dummy product names. Added system and WDM
        MIB."
    REVISION
        "200103120000Z" -- March 12th 2001
    DESCRIPTION
        "Changed naming convention from 'lumemtis' to 'lum'."
    REVISION
        "200103090000Z" -- March 9th 2001
    DESCRIPTION
        "Assigned the proper enterprise OID."
    REVISION
        "200103010000Z" -- March 1st 2001
    DESCRIPTION
        "The initial revision of this module."
    ::= { lumModules 1 }


-- ----------------------------------------------------
-- Object definitions
-- ----------------------------------------------------

lumentis OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The root of the OID sub-tree assigned to Lumentis
         by IANA."
    ::= { enterprises 8708 }

lumReg OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for registrations."
    ::= { lumentis 1 }

lumModules OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for module registrations."
    ::= { lumReg 1 }

-- MIB module overview:

-- LUM-REG              lumRegModule :: = { lumModules 1 }
--                                      Common OID definitions

-- LUM-TC               lumTcModule :: = { lumModules 2 }
--                                      Common textual conventions

-- LUM-ALARM-MIB        lumAlarmMIBModule :: = { lumModules 3 }
--                                      Alarm list and log.

-- LUM-SYSTEM-MIB       lumSystemMIBModule :: = { lumModules 4 }
--                                      Node and operating system configuration.

-- LUM-INVENTORY-MIB    lumInventoryMIBModule ::= { lumModules 5 }
--                                      Physical inventory

-- LUM-WDM-MIB          lumWdmMIBModule ::= { lumModules 6 }
--                                      WDM interfaces and protection configuration
--      wdmGeneral
--      wdmtIfEntry                     WDM trunk i/f
--      wdmProtEntry                    Protection definitions
--      wdmPassiveIfEntry               Passive WDM i/f (filters etc.)

-- LUM-BACKUP-MIB       lumBackupMIBModule ::= { lumModules 7 }
--                                      Configuration file handling
--      backupGeneral
--      backupFileEntry
--      backupCommand

-- LUM-LAMBDA-MIB       lumLambdaMIBModule ::= { lumModules 8 }
--                                      Replaced by LUM-EQUIPMENT-MIB.

-- LUM-TRANSPONDER-MIB  lumTransponderMIBModule ::= { lumModules 9 }
--                                      Replaced by LUM-MULTIRATE-MIB.

-- LUM-TOPOLOGY-MIB     lumTopologyMIBModule ::= { lumModules 10 }
--                                      Topology configuration
--      topoGeneral
--      topoInternalEntry               Connections within the network element
--      topoPeerEntry                   Connections between network elements
--      topoClientEntry                 Connections between the network element and a client

-- LUM-OXC-MIB          lumOxcMIBModule ::= { lumModules 11 }
--                                      Optical cross-connect configuration
--      oxcGeneral
--      oxcIfEntry                      Cross-connection i/f
--      oxcConfEntry                    Cross-connection definitions

-- LUM-EQUIPMENT-MIB    lumEquipmentMIBModule ::= { lumModules 12 }
--                                      Equipment configuration
--      equipmentGeneral
--      equpmentSubrackEntry            Subrack information
--      equipmentBoardEntry             Board definitions
--      equipmentFanEntry               Fan information
--      equipmentPowerEntry             Power information
--      equipmentSlotEntry              Slot information
--      EquipmentCageEntry              Cage information

-- LUM-MULTIRATE-MIB    lumMultirateMIBModule ::= { lumModules 13 }
--                                      Multi-bit rate configuration
--      mrtGeneral
--      mrtIfEntry                      Multi bit rate client interfaces

-- LUM-MUX-MIB          lumMuxMIBModule ::= { lumModules 14 }
--                                      Muxed SDH/Sonet trunk configuration
--      muxGeneral
--      muxIfEntry                      Mux trunk interfaces
--      muxAu4Entry                     AU4 in STM16

-- LUM-IP-MIB           lumIpMIBModule ::= { lumModules 15 }
--                                      IP networking related configuration.
--      ipGeneral                       MIB general and mgmt interface parameters.
--      ipIfEntry                       IP interface configuration
--      ospf                            OSPF general parameters
--      ospfIfEntry                     Enabled/disable OSPF per interface

-- LUM-PM-MIB           lumPmMIBModule ::= { lumModules 16 }
--                                      Performance measurement.
--      pmGeneral                       tbd
--      tbd

-- LUM-SYNC-MIB         lumSyncMIBModule ::= { lumModules 17 }
--                                      Sync control.
--      tbd

-- LUM-SNMP-MIB         lumSnmpMIBModule ::= { lumModules 18 }
--                                      SNMP parameters.
--      tbd

-- LUM-ETH-MIB          lumEthMIBModule ::= { lumModules 19 }
--                                      tbd description
--      tbd

-- LUM-OA-MIB           lumOaMIBModule ::= { lumModules 20 }
--                                      tbd description
--      tbd

-- LUM-DCN-MIB          lumDcnMIBModule ::= { lumModules 21 }
--                                      tbd description
--      tbd

-- LUM-MEM-MIB          lumMemMIBModule ::= { lumModules 22 }
--                                      tbd description
--      tbd

-- LUM-FC-MIB           lumFcMIBModule ::= { lumModules 23 }
--                                      tbd description
--      tbd

-- LUM-SWU-MIB          lumSwuMIBModule ::= { lumModules 24 }
--                                      tbd description
--      tbd

-- LUM-GMPLS-MIB        lumGmplsMIBModule ::= { lumModules 25 }
--                                      tbd description
--      tbd

-- LUM-CONN-MIB lumConnectionMIBModule ::= { lumModules 26 }
--                                      tbd description
--      tbd

-- LUM-CLIENT-MIB       lumClientMIBModule ::= { lumModules 27 }
--                                      tbd description
--      tbd

-- LUM-SOFTWARE-MIB     lumSoftwareMIBModule ::= { lumModules 28 }
--                                      tbd description
--      tbd

-- LUM-AUX-MIB  lumAuxMIBModule ::= { lumModules 29 }
--                                      tbd description
--      tbd

-- LUM-CIRCUIT-MIB        lumCirctuitMIBModule ::= { lumModules 30 }
--                                      tbd description
--      tbd

-- LUM-ROADM-MIB        lumRoadmMIBModule ::= { lumModules 31 }
--                                      tbd description
--      tbd

-- LUM-MES-MIB        lumMesMIBModule ::= { lumModules 32 }
--                                      tbd description
--      tbd

-- LUM-OCM-MIB        lumOcmMIBModule ::= { lumModules 33 }
--                                      tbd description
--      tbd

-- LUM-OTN-MIB        lumOtnMIBModule ::= { lumModules 34 }
--                                      tbd description
--      otnGeneral
--      otnSmTcmPmEntry                 OTN interfaces

-- LUM-SDHPDH-MIB     lumSdhpdhMIBModule ::= { lumModules 35 }
--                                      tbd description
--      tbd

-- LUM-SATELLITE-MIB  lumSatelliteMIBModule ::= { lumModules 36 }
--                                      tbd description
--      tbd

-- LUM-MULTICAST-MIB  lumMulticastMIBModule ::= { lumModules 37 }
--                                      tbd description
--      tbd

-- LUM-TRAIL-MIB lumTrailMIBModule ::= { lumModules 38 }
--                                  tbd description
--      tbd

-- LUM-NC-MIB lumNcMIBModule ::= { lumModules 39 }
--                            tbd description
--      tbd

-- LUM-MPLS-MIB  lumMplsMIBModule ::= { lumModules 40 }
--                                      tbd description
--      tbd

-- LUM-PW-MIB  lumPwMIBModule ::= { lumModules 41 }
--                                      tbd description
--      tbd

-- LUM-SITE-MIB  lumSiteMIBModule ::= { lumModules 42 }
--                                    tbd description
--      tbd

-- LUM-PSR-MIB  lumPsrMIBModule ::= { lumModules 43 }
--                                    tbd description
--      tbd

-- LUM-MPLSOAM-MIB  lumMplsOamMIBModule ::= { lumModules 44 }
--                                    tbd description
--      tbd

-- LUM-LINKLOSS-MIB lumLinkLossMIBModule ::= { lumModules 45 }
--                                  tbd description
--      tbd

-- LUM-IFBASIC-MIB  lumIfBasicMIBModule ::= { lumModules 46 }
--                                            tbd description
--      tbd

-- LUM-IFPHYSICAL-MIB  lumIfPhysicalMIBModule ::= { lumModules 47 }
--                                                  tbd description
--      tbd

-- LUM-IFOPTICAL-MIB  lumIfOpticalMIBModule ::= { lumModules 48 }
--                                                tbd description
--      tbd

-- LUM-PMSERVER-MIB lumPmServerMIBModule ::= { lumModules 49 }
--                                  tbd description
--      tbd

-- LUM-IFOTN-MIB  lumIfOtnMIBModule ::= { lumModules 50 }
--                                        tbd description
--      tbd

-- LUM-IFXC-MIB  lumIfXcMIBModule ::= { lumModules 51 }
--                                      tbd description
--      tbd

-- LUM-IFSDH-MIB  lumIfSdhMIBModule ::= { lumModules 52 }
--                                        tbd description
--      tbd

-- LUM-IFSONET-MIB  lumIfSonetMIBModule ::= { lumModules 53 }
--                                            tbd description
--      tbd

-- LUM-IFETH-MIB  lumIfEthMIBModule ::= { lumModules 54 }
--                                        tbd description
--      tbd

-- LUM-IFOTNMON-MIB  lumIfOtnMonMIBModule ::= { lumModules 55 }
--                                          tbd description
--      tbd

-- LUM-IFPERF-MIB  lumIfPerfMIBModule ::= { lumModules 56 }
--                                          tbd description
--      tbd

-- LUM-PORTDEVICE-MIB  lumPortdeviceMIBModule ::= { lumModules 57 }
--                                    tbd description
--      tbd

-- LUM-PORTDEVICEIF-MIB  lumPortdeviceIfMIBModule ::= { lumModules 58 }
--                                    tbd description
--      tbd

-- LUM-IFFC-MIB  lumIfFcMIBModule ::= { lumModules 59 }
--                                    tbd description
--      tbd

-- LUM-SOAM-PM-MIB  lumSoamPmMIBModule ::= { lumModules 60 }
--                                          tbd description
--      tbd

-- LUM-ICCP-MIB  lumIccpMIBModule ::= { lumModules 61 }
--                                          tbd description
--      tbd

-- LUM-MCLAG-MIB  lumMclagMIBModule ::= { lumModules 62 }
--                                          tbd description
--      tbd

-- LUM-IFIWDM-MIB  lumIfIwdmMIBModule ::= { lumModules 63 }
--                                          tbd description
--      tbd

-- LUM-IFMC-MIB  lumIfMcMIBModule ::= { lumModules 64 }
--                                          tbd description
--      tbd

-- LUM-IFAMPLIFIER-MIB  lumIfAmplifierMIBModule ::= { lumModules 65 }
--                                          tbd description
--      tbd

-- LUM-FPU-MIB  lumFpuMIBModule ::= { lumModules 66 }
--                                          tbd description
--      tbd

-- LUM-LLDP-V2-MIB  lumLldpV2MIBModule ::= { lumModules 67 }
--                                          tbd description
--      tbd

-- LUM-IFFH-MIB  lumIfFhMIBModule ::= { lumModules 68 }
--                                      tbd description
--      tbd

-- LUM-OPENFLOW-MIB  lumOpenflowMIBModule ::= { lumModules 69 }
--                                              tbd description
--      tbd

-- LUM-IFXCFLEX-MIB  lumIfXcFlexMIBModule ::= { lumModules 70 }
--                                              tbd description
--      tbd
-- LUM-SYSINFO-MIB  lumSysinfoMIBModule ::= { lumModules 71 }
--                                              tbd description
--      tbd

-- LUM-IFOTDR-MIB  lumIfOtdrMIBModule ::= { lumModules 72 }

-- LUM-CRYPTO-MIB  lumCryptoMIBModule ::= { lumModules 73 }
--                                          tbd description
--      tbd

-- LUM-COMMLINK-MIB  lumCommlinkMIBModule ::= { lumModules 74 }
--                                          tbd description
--      tbd


lumGeneric OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for common object and event definitions."
    ::= { lumentis 2 }


-- ----------------------------------------------------
-- MIB root oids
-- ----------------------------------------------------
lumAlarmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The alarm MIB."
    ::= { lumGeneric 1 }

lumSystemMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The system MIB."
    ::= { lumGeneric 2 }

lumInventoryMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The inventory MIB."
    ::= { lumGeneric 3 }

lumWdmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The WDM trunk MIB."
    ::= { lumGeneric 4 }

lumBackupMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The backup MIB."
    ::= { lumGeneric 5 }

lumLambdaMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The common WDM MIB.

        Was Replaced by LUM-EQUIPMENT-MIB.
        Now resused for other purposes"
    ::= { lumGeneric 6 }

lumTransponderMIB OBJECT-IDENTITY
    STATUS      deprecated
    DESCRIPTION
        "The multi-bit-rate client MIB.

        Replaced by LUM-MULTIRATE-MIB."
    ::= { lumGeneric 7 }

lumTopologyMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The topology information MIB."
    ::= { lumGeneric 8 }

lumPowerMIB OBJECT-IDENTITY
    STATUS      deprecated
    DESCRIPTION
        "The power and fans information MIB.
        Included in the LUM-EQUIPMENT-MIB."
    ::= { lumGeneric 9 }

lumOxcMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The OXC MIB."
    ::= { lumGeneric 10 }

lumEquipmentMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The equipment MIB."
    ::= { lumGeneric 11 }

lumMultirateMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The multirate client MIB."
    ::= { lumGeneric 12 }

lumMuxMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The muxponder trunk MIB."
    ::= { lumGeneric 13 }

lumIpMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The IP networking MIB."
    ::= { lumGeneric 14 }

lumPmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The performance measurement MIB."
    ::= { lumGeneric 15 }

lumSyncMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The sync control MIB."
    ::= { lumGeneric 16 }

lumSnmpMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The SNMP configuration MIB."
    ::= { lumGeneric 17 }

lumEthMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The Ethernet interface MIB."
    ::= { lumGeneric 18 }

lumOaMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The optical amplifier interface MIB."
    ::= { lumGeneric 19 }

lumDcnMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The DCN MIB."
    ::= { lumGeneric 20 }

lumMemMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The MEM MIB."
    ::= { lumGeneric 21 }

lumFcMIB OBJECT-IDENTITY
    STATUS      obsolete
    DESCRIPTION
        "The FC MIB."
    ::= { lumGeneric 22 }

lumSwuMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The SWU MIB."
    ::= { lumGeneric 23 }

lumGmplsMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The GMPLS MIB."
    ::= { lumGeneric 24 }

lumGmplsStdMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The GMPLS STD MIB."
    ::= { lumGeneric 25 }

lumConnMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The Connection MIB."
    ::= { lumGeneric 26 }

lumClientMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for client interfaces."
    ::= { lumGeneric 27 }

lumSoftwareMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for software information."
    ::= { lumGeneric 28 }

lumAuxMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for aux equipment."
    ::= { lumGeneric 29 }

lumCircuitMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for circuit information."
    ::= { lumGeneric 30 }

lumRoadmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for ROADM equipment."
    ::= { lumGeneric 31 }

lumMesMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for Metro Ethernet Services information."
    ::= { lumGeneric 32 }

 lumOcmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for Optical Control Manager."
    ::= { lumGeneric 33 }

 lumOtnMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for OTN."
    ::= { lumGeneric 34 }

 lumSdhpdhMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for E1/T1 objects."
    ::= { lumGeneric 35 }

 lumSatelliteMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for satellite objects."
    ::= { lumGeneric 36 }

 lumMulticastMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for multicast objects."
    ::= { lumGeneric 37 }

lumTrailMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for trail information."
    ::= { lumGeneric 38 }

lumNcMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for network connection information"
    ::= { lumGeneric 39 }

lumMplsMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for mpls objects."
    ::= { lumGeneric 40 }

lumPwMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for pseudowire objects."
    ::= { lumGeneric 41 }

lumSiteMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for customer site information"
    ::= { lumGeneric 42 }

lumPsrMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for customer site information"
    ::= { lumGeneric 43 }

lumMplsOamMIB OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "The generic MIB for MPLS OAM objects"
    ::= { lumGeneric 44 }

lumLinkLossMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for link loss information."
    ::= { lumGeneric 45 }

lumIfBasicMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for basic port information"
    ::= { lumGeneric 46 }

lumIfPhysicalMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for physical port information"
    ::= { lumGeneric 47 }

lumIfOpticalMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for optical port information"
    ::= { lumGeneric 48 }

lumPmServerMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for PM server information."
    ::= { lumGeneric 49 }

lumIfOtnMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for otn G.709 information"
    ::= { lumGeneric 50 }

lumIfXcMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for cross-connect (XC) information"
    ::= { lumGeneric 51 }

lumIfSdhMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for SDH information"
    ::= { lumGeneric 52 }

lumIfSonetMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for SONET information"
    ::= { lumGeneric 53 }

lumIfEthMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for ethernet information"
    ::= { lumGeneric 54 }

lumIfOtnMonMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for OTN Monitor obejcts
    (SM, TCM, PM)"
    ::= { lumGeneric 55 }

lumIfPerfMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for Performance objects"
    ::= { lumGeneric 56 }

lumPortdeviceMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for port device information"
    ::= { lumGeneric 57 }

lumPortdeviceIfMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for port device interface information"
    ::= { lumGeneric 58 }

lumIfFcMIB OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "The generic MIB for FC (Fiber Channel) information"
    ::= { lumGeneric 59 }

lumSoamPmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "This MIB module contains the management objects for the
            management of Ethernet Services Operations, Administration
            and Maintenance for Performance Monitoring."
    ::= { lumGeneric 60 }

lumIccpMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "Emxp ICCP"
    ::= { lumGeneric 61 }

lumMclagMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "Emxp MC-LAG"
    ::= { lumGeneric 62 }

lumIfIwdmMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "Iwdm MIB"
    ::= { lumGeneric 63 }

lumIfMcMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "The MIB module for management of multi-fiber connection objects."
    ::= { lumGeneric 64 }

lumIfAmplifierMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "The MIB module for management of amplifier objects."
    ::= { lumGeneric 65 }

lumFpuMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "The MIB module for management of fpu objects."
    ::= { lumGeneric 66 }

lumLldpV2MIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "The MIB module for management of LLDP V2 objects."
    ::= { lumGeneric 67 }

lumIfFhMIB OBJECT-IDENTITY
    STATUS  current
    DESCRIPTION
        "The generic MIB for fh protocol"
    ::= { lumGeneric 68 }

lumOpenflowMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
            "The MIB module for management and configuration of OpenFlow switches."
    ::= { lumGeneric 69 }

lumIfXcFlexMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The generic MIB for flexible cross-connect (XC) information"
    ::= { lumGeneric 70 }

lumSysinfoMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The MIB containing information about cpu and memory usage"
    ::= { lumGeneric 71 }

lumIfOtdrMIB OBJECT-IDENTITY
    STATUS	current
    DESCRIPTION
        "The MIB module for OTDR information"
    ::= { lumGeneric 72 }

lumCryptoMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for encryption information"
    ::= { lumGeneric 73 }

lumCommlinkMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The generic MIB for communication link information"
    ::= { lumGeneric 74 }

lumAcfMIB OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The MIB module for ACF"
    ::= { lumGeneric 75 }

-- ----------------------------------------------------
-- Product definitions
-- ----------------------------------------------------

lumProducts OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for product specific object
        and event definitions."
    ::= { lumentis 3 }

lumProductsGeneric OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Generic definitions."
    ::= { lumProducts 1 }


-- Generic product definitions
-- ===========================

mentis OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "A stack of mentis network elements.
        Also the top oid for the generic product registrations."
    ::= { lumProductsGeneric 1 }

mentisControlSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Control board slot."
    ::= { mentis 1 }

mentisTrafficSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Traffic board slot."
    ::= { mentis 2 }

-- Note: mentis 3 and mentis 4 are free for use.

mentisControlUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The control board."
    ::= { mentis 5 }

mentisMultirate2500TransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The multi bit-rate 2500 transponder board."
    ::= { mentis 6 }

mentisMuxponder028Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 STM-4/OC-12 and 8 STM-1/OC-3 muxponder board."
    ::= { mentis 7 }

mentisOpticalCrossConnect8Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 port optical cross-connect board."
    ::= { mentis 8 }

mentisOpticalCrossConnect16Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "16 port optical cross-connect board."
    ::= { mentis 9 }

mentisSingleAddDropABUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1 channel add/drop filter type A/B board."
    ::= { mentis 10 }

mentisSingleAddDropBAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1 channel add/drop filter type B/A board."
    ::= { mentis 11 }

mentisDualAddDropABUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 channel add/drop filter type A/B board."
    ::= { mentis 12 }

mentisDualAddDropBAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 channel add/drop filter type B/A board."
    ::= { mentis 13 }

mentisDualOpticalCirculationUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical coupler 2x(1:2) board."
    ::= { mentis 14 }

mentis4ChAddDropABUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel add/drop filter type A/B board."
    ::= { mentis 15 }

mentis4ChAddDropBAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel add/drop filter type B/A board."
    ::= { mentis 16 }

mentisDualGbETransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual gigabit Ethernet transponder board."
    ::= { mentis 17 }

mentisOpticalAmplifierUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical amplifier board."
    ::= { mentis 18 }

mentis8chMuxDemuxExtensionUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel mux/demux board, extension type."
    ::= { mentis 19 }

mentis8chMuxDemuxTerminalUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel mux/demux board, terminal type."
    ::= { mentis 20 }

mentisQuadOpticalCouplerUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad optical coupler 4x(1:2) board."
    ::= { mentis 21 }

mentisMuxponder004Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 STM-1/OC-3 muxponder board"
    ::= { mentis 22 }

mentis2chOpticalAmplifierAddDropABUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 channel add-drop board, type A/B, for use with optical amplifier"
    ::= { mentis 23 }

mentis2chOpticalAmplifierAddDropBAUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 channel add-drop board, type B/A, for use with optical amplifier"
    ::= { mentis 24 }

mentisDualOpticalAmplifierUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual Optical amplifier board."
    ::= { mentis 25 }

mentisCwdmAddDropUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1 channel add/drop filter board, for use with OSC."
    ::= { mentis 26 }

mentisSingleSpurAddDropUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1 channel add/drop filter board."
    ::= { mentis 27 }

mentis10GTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G transponder board."
    ::= { mentis 28 }

mentisLiteMr2500TransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 'lite' multirate 2500 transponder board."
    ::= { mentis 29 }

mentisControlOscUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The control board with one OSC i/f."
    ::= { mentis 30 }

mentisControlDualOscUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The control board with two OSC i/fs."
    ::= { mentis 31 }

mentisOpticalBandUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The optical band unit."
    ::= { mentis 32 }

mentisSync2MHzUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 2 MHz synchronization unit."
    ::= { mentis 33 }

mentisMxp8Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 8 tributary muxponder unit."
    ::= { mentis 34 }

mentisMxp16Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 16 tributary muxponder unit."
    ::= { mentis 35 }

mentisDualGbEDwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual giga-bit ethernet unit for DWDM."
    ::= { mentis 36 }

mentisDualGbECwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual giga-bit ethernet unit for CWDM."
    ::= { mentis 37 }

mentisDualFiberChannelDwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual fiber channel unit for DWDM."
    ::= { mentis 38 }

mentisDualFiberChannelCwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual fiber channel unit for CWDM."
    ::= { mentis 39 }

mentisFiberChannelGbEDwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The fiber channel and giga-bit ethernet unit for DWDM ."
    ::= { mentis 40 }

mentisFiberChannelGbECwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The fiber channel and giga-bit ethernet unit for CWDM ."
    ::= { mentis 41 }

mentisTrippleFiberChannelDwdmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The tripple fiber channel unit for Dwdm."
    ::= { mentis 42 }

mentisQuadMultirateTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The quad multirate transponder unit."
    ::= { mentis 43 }

mentis4chMuxDemuxTerminalABUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel mux/demux board, terminal, type A/B."
    ::= { mentis 44 }

mentis4chMuxDemuxTerminalBAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel mux/demux board, terminal, type B/A."
    ::= { mentis 45 }

mentisSingleCwdmAddDropUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1 channel add/drop filter board, for use with CWDM."
    ::= { mentis 46 }

mentisDualCwdmAddDropUnit OBJECT-IDENTITY
    STATUS     current
    DESCRIPTION
        "2 channel add/drop filter board, for use with CWDM."
    ::= { mentis 47 }

mentis10GLANTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G LAN transponder board."
    ::= { mentis 48 }

mentis10GRCTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G rate conserving transponder board."
    ::= { mentis 49 }

mentisEsconMxp8Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 8 channel ESCON muxponder unit."
    ::= { mentis 50 }

mentisOpticalAmplifier15dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical amplifier board with 15 dBm output power."
    ::= { mentis 51 }

mentisDualOpticalAmplifier15dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical amplifier board with 15 dBm output power."
    ::= { mentis 52 }

mentisGxpD2500Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10 x Any DWDM unit."
    ::= { mentis 53 }

mentisGxpC2500Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10 x Any CWDM unit."
    ::= { mentis 54 }

mentisGxpD10GUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10 x Any 10 Gb DWDM unit."
    ::= { mentis 55 }

mentisDualGbEDwdmV2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual giga-bit ethernet unit for DWDM V2."
    ::= { mentis 56 }

mentisDualGbECwdmV2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual giga-bit ethernet unit for CWDM V2."
    ::= { mentis 57 }

mentisDualFiberChannelDwdmV2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual fiber channel unit for DWDM V2."
    ::= { mentis 58 }

mentisDualFiberChannelCwdmV2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The dual fiber channel unit for CWDM V2."
    ::= { mentis 59 }

mentis2xSingleCwdmAddDropUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2 x 1 channel add/drop filter board, for use with CWDM."
    ::= { mentis 60 }

mentis2xDualCwdmAddDropUnit OBJECT-IDENTITY
    STATUS     current
    DESCRIPTION
        "2 x 2 channel add/drop filter board, for use with CWDM."
    ::= { mentis 61 }

mentis8chMuxDemuxTerminal2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Type 2, 8 channel mux/demux board, terminal type.
         Different set of lambdas compared to the other type."
    ::= { mentis 62 }

mentisDoubleDualGbETransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Double Dual gigabit Ethernet transponder board."
    ::= { mentis 63 }

mentisFpuOas2824Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "External fiber protection unit: OAS 2824."
    ::= { mentis 64 }

mentis2Fiber8chCwdmMuxUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel CWDM mux for 2 fiber solution"
    ::= { mentis 65 }

mentis2Fiber8chCwdmDemuxUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel CWDM demux for 2 fiber solution"
    ::= { mentis 66 }

mentisDouble10GLiteTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Double 10G Lite transponder."
    ::= { mentis 67 }

mentis10GBuTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G transponder board with XFP on client and line"
    ::= { mentis 68 }

mentis10GLANBuTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G LAN transponder board with XFP on client and line"
    ::= { mentis 69 }

mentis10GClBuTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G transponder board with XFP on client side"
    ::= { mentis 70 }

mentis10GLANClBuTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 10 G LAN transponder board with XFP on client side"
    ::= { mentis 71 }

mentis8chMuxDemuxEvenExtensionUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel mux/demux board for even channels, extension type."
    ::= { mentis 72 }

mentis8chMuxDemuxEvenTerminalUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 channel mux/demux board for even channels, terminal type."
    ::= { mentis 73 }

mentisOpticalPreAmplifier17dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical pre-amplifier board with 17 dBm output power."
    ::= { mentis 74 }

mentisDualOpticalAmplifier17dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical line amplifier board with 17 dBm output power."
    ::= { mentis 75 }

mentisOpticalInterleaverUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical interleaver unit, 100/200 GHz."
    ::= { mentis 76 }

mentisOpticalPowAmplifier17dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical power amplifier board with 17 dBm output power."
    ::= { mentis 77 }

mentisSingleOpticalAmplifier17dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single optical line amplifier board with 17 dBm output power."
    ::= { mentis 78 }

mentis9xGbEMuxponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "9xGbE/10Gb MuxPonder"
    ::= { mentis 79 }

mentis1chAddDropDwdm2FiberUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1ch/2 fiber DWDM add/drop"
    ::= { mentis 80 }

mentis1chAddDropCwdm2FiberUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1ch/2 fiber CWDM add/drop"
    ::= { mentis 81 }

mentisMdu4chExtendable2FiberUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4ch CWDM Mux, 2 fiber, extendable"
    ::= { mentis 82 }

mentisMdu4chTerminal2FiberUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4ch CWDM Mux, 2 fiber, terminal"
    ::= { mentis 83 }

mentis8chVoltageControlledAttenuatorUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8ch Voltage controlled attenuator unit"
    ::= { mentis 84 }

mentisSingleOpticalAmplifier20dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single optical line amplifier board with 20 dBm output power."
    ::= { mentis 85 }

mentisDualOpticalAmplifier20dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical line amplifier board with 20 dBm output power."
    ::= { mentis 86 }

mentisFpuYm235Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "External fiber protection unit: YM 235."
    ::= { mentis 87 }

mentis4chAddDropDwdm2FiberUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 ch/2 fiber DWDM add/drop"
    ::= { mentis 88 }

mentisQuadMultirateTransponder2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The quad multirate transponder unit version 2."
    ::= { mentis 89 }

mentisRamanOar450CUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical RAMAN amplifier 450."
    ::= { mentis 90 }

mentisControlSfpUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The control board with two SFP ports."
    ::= { mentis 91 }

mentisMultirate2500TransponderV2Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The multi bit-rate 2500 transponder board version 2."
    ::= { mentis 92 }

mentisDouble10GbeUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The double 10GbE Transponder basic unit."
    ::= { mentis 93 }

mentis4chMuxDemuxExtensionABUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel mux/demux board, extension, type A/B."
    ::= { mentis 94 }

mentis4chMuxDemuxExtensionBAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4 channel mux/demux board, extension, type B/A."
    ::= { mentis 95 }

mentisOpticalInterleaver50100Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical interleaver unit, 50/100 GHz."
    ::= { mentis 96 }

mentisReconfigurableOpticalAddDropUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Reconfigurable optical add/drop multiplexer unit."
    ::= { mentis 97 }

mentis6pGbeEthernetDemarcationUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "6 port GbE Ethernet Demarcation Unit."
    ::= { mentis 98 }

mentis10GClTcTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10Gb/s C-band Tunable Transponder, Client XFP."
    ::= { mentis 99 }

mentis4xSTM16MuxponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4x2,5G/10Gb muxponder"
    ::= { mentis 100 }

mentisMroadm1p800Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Reconfigurable optical add/drop multiplexer"
    ::= { mentis 101 }

mentisSingleOpticalLowGainAmplifier20dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single optical line amplifier board with 20 dBm output power."
    ::= { mentis 102 }

mentisDualOpticalLowGainAmplifier20dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical line amplifier board with 20 dBm output power."
    ::= { mentis 103 }

mentisSingleOpticalFlatGainAmplifier10dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single optical flat gain line amplifier board with 10 dBm output power."
    ::= { mentis 104 }

mentisDualOpticalFlatGainAmplifier10dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual optical flat gain line amplifier board with 10 dBm output power."
    ::= { mentis 105 }

mentis10GOtnTcTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10Gb/s C-band Tunable OTN Transponder."
    ::= { mentis 106 }

mentis40channelMuxDemuxEven50GHzDWDMUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "40 channel mux demux unit, even 50 GHz."
    ::= { mentis 107 }

mentis40channelMuxDemuxOdd50GHzDWDMUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "40 channel mux demux unit, odd 50 GHz."
    ::= { mentis 108 }

mentis8channelMuxDemuxExtEvenUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "8 channel 50 GHz mux demux unit, extention, even, 100 GHz spacing."
    ::= { mentis 109 }

mentis8channelMuxDemuxExtOddUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "8 channel 50 GHz mux demux unit, extention, odd, 100 GHz spacing."
    ::= { mentis 110 }

mentis2portOpticalChannelMonitor OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "2 port optical channel monitor."
    ::= { mentis 111 }

mentisMultiServiceMuxPonder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MultiService MuxPonder."
    ::= { mentis 112 }

mentis8chVariableOpticalAttenuatorII OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "8ch Variable Optical Attenuator - II"
    ::= { mentis 113 }

mentisMultiServiceDoubleQuadGbEMuxPonder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "Double Quad MuxPonder."
    ::= { mentis 114 }

mentis10GTcErTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10Gb/s C-band Tunable Ext Reach Transponder."
    ::= {mentis 115 }

mentis10xEthernetMuxPonder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "10xGbE/10GbE Ethernet MuxPonder."
    ::= { mentis 116 }

mentis12pGbeEthernetDemarcationUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "12 port GbE Ethernet Demarcation Unit."
    ::= { mentis 117 }

mentisGbeMxp10GFecUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "10xGbE/10G with FEC MuxPonder."
    ::= { mentis 118 }

mentisRoadm1x4G100Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4-port reconfigurable optical add/drop multiplexer"
    ::= { mentis 119 }

mentisQuadMultiServiceTransponder OBJECT-IDENTITY
    STATUS     current
    DESCRIPTION
    "MultiService Transponder"
    ::= { mentis 120 }

mentis22xEthernetMuxPonder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "22xGbE/10GbE Ethernet MuxPonder."
    ::= { mentis 121 }

mentisPEOa1x26dBmUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical Power Extender amplifier."
    ::= { mentis 122 }

mentis2PortProtectionControlUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical Power Extender amplifier."
    ::= { mentis 123 }

mentis2chVariableOpticalAttenuator OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "2ch Variable Optical Attenuator"
    ::= { mentis 124 }

mentisMultiServiceMuxPonder10GTCEr OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MultiService MuxPonder Tunable 10G Er."
    ::= { mentis 125 }

mentisMultiServiceMuxPonder10G OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MultiService MuxPonder Tunable 10G."
    ::= { mentis 126 }

mentisMultiServiceQuad2G5Transponder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MultiService Transponder 2.5G."
    ::= { mentis 127 }

mentis4x2G510GOcMuxponder OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "4x2.5G/10Gb Muxponder in SONET mode."
    ::= { mentis 128 }

mentis22xEthernetMuxPonderII OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "22xGbE/10GbE Ethernet MuxPonder Next Generation."
    ::= { mentis 129 }

mentisBandSplitterUnit1x5Even OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "1x5 Band Splitter Unit Even 50 GhZ"
    ::= { mentis 130 }

mentisBandSplitterUnit1x5Odd OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "1x5 Band Splitter Unit Odd 50 GhZ"
    ::= { mentis 131 }

mentis10xEthernetMuxPonderII OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "10xGbE/10GbE Ethernet MuxPonder Next Generation."
    ::= { mentis 132 }

mentisMSAccessCollector8xE1T1-2xEth OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MS Access Collector 8xE1/T1+2xEth."
    ::= { mentis 133 }

mentisMSAccessCollector16xE1T1-4xEth OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MS Access Collector 16xE1/T1+4xEth."
    ::= { mentis 134 }

mentisMSAccessHub4xSTM-1-16xEth  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MS Access Hub 4xSTM-1+16xEth."
    ::= { mentis 135 }

mentisMSAccessHub4xOC-3-16xEth OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MS Access Hub 4xOC-3+16xEth."
    ::= { mentis 136 }

mentisRoadm1x8G50Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8-port reconfigurable optical add/drop multiplexer"
    ::= { mentis 137 }

mentis4ChAddDropDwdmEven50G OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4-port optical DWDM add/drop Even 50Ghz"
    ::= { mentis 138 }

mentis4ChAddDropDwdmOdd50G OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4-port optical DWDM add/drop Odd 50GHz"
    ::= { mentis 139 }

mentis8x10EthernetMuxPonderII OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "8x10GbE Ethernet MuxPonder Next Generation."
    ::= { mentis 140 }

mentisMxp8iiSdhUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 8 tributary muxponder ii unit, SDH mode."
    ::= { mentis 141 }

mentisMxp8iiSonetUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The 8 tributary muxponder ii unit, Sonet mode."
    ::= { mentis 142 }

mentisMSAccessCollector16xE1T1-4xEthTempHardend OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "MS Access Collector 16xE1/T1+4xEth. Temp hardend"
    ::= { mentis 143 }

mentisMdu40EvenL OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "40ch MDU-Lite, even 50GHz DWDM"
    ::= { mentis 144 }

mentisMdu40OddL OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "40ch MDU-Lite, odd 50GHz DWDM"
    ::= { mentis 145 }

mentisOa1x20dBmVg OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Variable Gain Opt Ampl 20dBm C-band"
    ::= { mentis 146 }

mentisOa2x20dBmVg OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual Var Gain Opt Ampl 20dBm C-band"
    ::= { mentis 147 }

mentisRoadm1x2G100 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1x2 ROADM 100GHz"
    ::= { mentis 148 }

mentisRoadm1x2G50 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1x2 ROADM 50GHz"
    ::= { mentis 149 }

mentisTpq10GfecUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad MultiService 10G FEC Transponder"
    ::= { mentis 150 }

mentisControlSfpiiUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The control board with four SFP ports."
    ::= { mentis 151 }

mentisCoD40evUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 40 even channels, 50GHz spacing."
    ::= { mentis 152 }

mentisCoD40eveUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter with 1310 port, 40 even channels, 50 GHz spacing."
    ::= { mentis 153 }

mentisCoD40odUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 40 odd channels, 50GHz spacing."
    ::= { mentis 154 }

mentisCoD40odeUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter with 1310 port, 40 odd channels, 50 GHz spacing."
    ::= { mentis 155 }

mentisDcDk652km20Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 20 km."
    ::= { mentis 156 }

mentisDcDk652km40Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 40 km."
    ::= { mentis 157 }

mentisDcDk652km60Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 60 km."
    ::= { mentis 158 }

mentisDcDk652km80Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 80 km."
    ::= { mentis 159 }

mentisDcP652km40Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 40 km."
    ::= { mentis 160 }

mentisDcP652km60Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 60 km."
    ::= { mentis 161 }

mentisDcP652km80Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 80 km."
    ::= { mentis 162 }

mentisDcP652km100Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 100 km."
    ::= { mentis 163 }

mentisDcP652km120Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 120 km."
    ::= { mentis 164 }

mentisEmxp40GiiUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "4x10GbE Ethernet MuxPonder-II"
    ::= { mentis 165 }

mentisQuadMultiProtocolTransponderUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad MultiProtocol Transponder"
    ::= { mentis 166 }

mentisTpq10GfecRegUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad MultiService 10G FEC Regenerator"
    ::= { mentis 167 }

mentisColorlessMuxDemuxUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Colorless Mux/Demux Unit"
    ::= { mentis 168 }

mentis8chSfpBasedVoaUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8ch SFP-based VOA unit"
    ::= { mentis 169 }

mentisMsTp40GUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "MultiService Transponder 40G"
    ::= { mentis 170 }

mentisMsMxp40GUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "MultiService Muxponder 40G"
    ::= { mentis 171 }

mentisMXP10GOTN OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "10 Gb/s OTN Muxponder"
    ::= { mentis 172 }

mentisOpticalCouplerUnitDualQuad OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical coupler unit, Dual Quad 2x(1:4) board."
    ::= { mentis 173 }

mentisTm4700Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "TM2000 Shelf Controller"
    ::= { mentis 174 }

mentisTm4011Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "TM2000 40Gb/s Muxponder"
    ::= { mentis 175 }

mentisTm100MxpUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "TM2000 100Gb/s Muxponder"
    ::= { mentis 176 }

mentisTm100TpUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "TM2000 100Gb/s Transponder"
    ::= { mentis 177 }

mentisTm100RegUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "TM2000 100Gb/s Regenerator"
    ::= { mentis 178 }

mentis2PSeedLightCouplerUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2-Port Seed Light coupler Unit board."
    ::= { mentis 179 }

mentisDual21dBmSeedLightUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual 21 dBm Seed Light unit with 21 dBm output power."
    ::= { mentis 180 }

mentisEmxp62GiieUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "22xGbE/4x10GbE Ethernet MuxPonder-IIe."
    ::= { mentis 181 }

mentisEmxp120GiieUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "12x10GbE Ethernet MuxPonder-IIe."
    ::= { mentis 182 }

mentisOYPatchCordUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical Y-patch cord"
    ::= { mentis 183 }

mentisTpq10gfeciUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad 10G FEC Transponder 1-slot"
    ::= { mentis 184 }

mentisTpq10gfecregiUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Quad MultiService 10G FEC Regenerator  1-slot"
    ::= { mentis 185 }

mentisTphex10gotn OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "Hex 10 Gb/s OTN Transponder"
    ::= { mentis 186 }

mentisEmxp48GiieUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8xGbE/4x10GbE Ethernet MuxPonder-IIe."
    ::= { mentis 187 }

mentisTp100gotn OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "100 Gb/s OTN Transponder"
    ::= { mentis 188 }

mentisEmxp220GiieUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1x100GbE Ethernet MuxPonder-IIe."
    ::= { mentis 189 }

mentisTpmrHL16GUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Hex MultiRate 16G Lite Transponder."
    ::= { mentis 190 }

mentisFronthaulMuxPonder10G OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "Fronthaul MuxPonder 10G."
    ::= { mentis 191 }

mentisMxp100gotn OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
    "100 Gb/s OTN Muxponder"
    ::= { mentis 192 }

mentisEmxp240GiieUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "24x10GbE Ethernet MuxPonder-IIe."
    ::= { mentis 193 }

mentisEmxp3Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8x100GbE Ethernet MuxPonder-III."
    ::= { mentis 194 }

mentisBoardTypeAUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Board (A) used for testing 'the board' concept."
    ::= { mentis 195 }

mentisBoardTypeBUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Board (B) used for testing 'the board' concept."
    ::= { mentis 196 }

mentisFpu1Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Fiber Protection Unit."
    ::= { mentis 197 }

mentisOaraed21hghybUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Raman Edfa 21Hg OA board"
    ::= { mentis 198 }

mentisTpmrHL16GUniUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Hex MultiRate 16G Lite Transponder - Unidirectional."
    ::= { mentis 199 }

mentisDcDk652km100Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 100 km."
    ::= { mentis 200 }

mentisDcDk652km120Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 120 km."
    ::= { mentis 201 }

mentisDcP652km20Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dispersion Compensation Module 20 km."
    ::= { mentis 202 }

mentisFhau1Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Fronthaul Access Unit FHAU/1."
    ::= { mentis 203 }

mentisFha1u1Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Hardened Fronthaul Access Unit."
    ::= { mentis 204 }

mentisOa1x20dBmVg2Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Variable Gain EDFA 20dBm v2"
    ::= { mentis 205 }

mentisOa2x20dBmVg2Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual Variable Gain EDFA 20dBm v2"
    ::= { mentis 206 }

mentisPtio10GUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "PT-Fabric I/O Unit 10G."
    ::= { mentis 207 }

mentisFxp400gotnUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "400G OTN Flexponder."
    ::= { mentis 208 }

mentisCompo24Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "CO_MPO24 Cassette"
    ::= { mentis 209 }

mentisTp100gotnii OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "100 Gb/s OTN Transponder-II"
    ::= { mentis 210 }

mentisPtio100GUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "PT-Fabric I/O Unit 100G."
    ::= { mentis 211 }

mentisRfu1Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Remote Fronthaul Unit."
    ::= { mentis 212 }

mentisCoD919926Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels, 100GHz spacing"
    ::= { mentis 213 }

mentisCoD927934Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels, 100GHz spacing"
    ::= { mentis 214 }

mentisCoD935942Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels, 100GHz spacing"
    ::= { mentis 215 }

mentisCoD943950Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels, 100GHz spacing"
    ::= { mentis 216 }

mentisCoD951958Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels, 100GHz spacing"
    ::= { mentis 217 }

mentisCoD919926eUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels with ext port, 100GHz spacing"
    ::= { mentis 218 }

mentisCoD927934eUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels with ext port, 100GHz spacing"
    ::= { mentis 219 }

mentisCoD935942eUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels with ext port, 100GHz spacing"
    ::= { mentis 220 }

mentisCoD943950eUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels with ext port, 100GHz spacing"
    ::= { mentis 221 }

mentisCoD951958eUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 8 channels with ext port, 100GHz spacing"
    ::= { mentis 222 }

mentisCo4Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber CWDM Mux/Demux filter, 8 channels"
    ::= { mentis 223 }

mentisCo5Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber CWDM Mux/Demux filter, 8 channels"
    ::= { mentis 224 }

mentisCodsf20evaUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter, even channels, a-side"
    ::= { mentis 225 }

mentisCodsf20evbUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter, even channels, b-side"
    ::= { mentis 226 }

mentisCodsf4919Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 227 }

    mentisCodsf4926Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 228 }

    mentisCodsf4927Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 229 }

    mentisCodsf4934Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 230 }

    mentisCodsf4935Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 231 }

    mentisCodsf4942Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 232 }

    mentisCodsf4943Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 233 }

    mentisCodsf4950Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 234 }

    mentisCodsf4951Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 235 }

    mentisCodsf4958Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 236 }

    mentisCodsf2919Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 237 }

    mentisCodsf2922Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 238 }

    mentisCodsf2923Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 239 }

    mentisCodsf2926Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 240 }

    mentisCodsf2927Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 241 }

    mentisCodsf2930Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 242 }

    mentisCodsf2931Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 243 }

    mentisCodsf2934Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 244 }

    mentisCodsf2935Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 245 }

    mentisCodsf2938Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 246 }

    mentisCodsf2939Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 247 }

    mentisCodsf2942Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 248 }

    mentisCodsf2943Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 249 }

    mentisCodsf2946Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 250 }

    mentisCodsf2947Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 251 }

    mentisCodsf2950Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 252 }

    mentisCodsf2951Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 253 }

    mentisCodsf2954Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 254 }

    mentisCodsf2955Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 255 }

    mentisCodsf2958Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 256 }

mentisOadm2chUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "2ch DWDM OADM"
    ::= { mentis 257 }

mentisMxp200gotnUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "200G OTN Muxponder."
    ::= { mentis 258 }

mentisEmxp440Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8x10GbE, 2x100GbE, MPO Ethernet MuxPonder-III."
    ::= { mentis 259 }

mentisOaraed20lghybUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Raman Edfa 20Lg OA board"
    ::= { mentis 260 }

mentisAd1c2fotdrUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "1ch CWDM add/drop filter with 1610nm OTDR"
    ::= { mentis 261 }

mentisCodsf243xMPOUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Single fiber DWDM Mux/Demux filter"
    ::= { mentis 262 }

mentisOtdr8pUnit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "8 Port Optical Time Domain Reflectometer"
    ::= { mentis 263 }

mentisOa1x21dBmVgEC OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Variable Gain Opt Ampl 21dBm Extended C-band"
    ::= { mentis 264 }

mentisOa2x21dBmVgEC OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual Variable Gain Opt Ampl 21dBm Extended C-band"
    ::= { mentis 265 }

mentisCo10Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber CWDM Mux/Demux filter, 4 channels"
    ::= { mentis 266 }

mentisCoD48evUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 48ch MDU DWDM 50GHz Even"
    ::= { mentis 267 }

entisCoD48odUnit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM Mux/Demux filter, 48ch MDU DWDM 50GHz Odd"
    ::= { mentis 268 }

entisCoOcuD4x4Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical Coupler Unit Dual 4:4"
    ::= { mentis 269 }

entisCoocuD4x8Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical Coupler Unit Dual 4:8"
    ::= { mentis 270 }

mentisCoOiu50100Unit OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Optical interleaver unit, 50/100 GHz."
    ::= { mentis 271 }

mentisCo2xOTDR1611Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual OTDR filter 1611nm"
    ::= { mentis 272 }

mentisCoD4919Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 273 }

mentisCoD4923Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 274 }

mentisCoD4927Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 275 }

mentisCoD4931Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 276 }

mentisCoD4935Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 277 }

mentisCoD4939Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 278 }

mentisCoD4943Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 279 }

mentisCoD4947Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 280 }

mentisCoD4951Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 281 }

mentisCoD4955Unit  OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Dual fiber DWDM add/drop filter, 4 channels"
    ::= { mentis 282 }

-- Mentis 300 specific product definitions
-- =======================================

mentis300 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box chassis."
    ::= { lumProducts 2 }

mentis300Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box backplane."
    ::= { mentis300 1 }

mentis300PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply slot."
    ::= { mentis300 2 }

mentis300FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan slot."
    ::= { mentis300 3 }

mentis300PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply."
    ::= { mentis300 4 }

mentis300Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan."
    ::= { mentis300 5 }


-- Mentis 3000 specific product definitions
-- ========================================

mentis3000 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box chassis (sub-rack)."
    ::= { lumProducts 3 }

mentis3000Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box backplane."
    ::= { mentis3000 1 }

mentis3000PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box power supply slot."
    ::= { mentis3000 2 }

mentis3000FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box fan slot."
    ::= { mentis3000 3 }

mentis3000PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box power supply."
    ::= { mentis3000 4 }

mentis3000Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box fan."
    ::= { mentis3000 5 }


-- Mentis 301 specific product definitions
-- =======================================

mentis301 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box chassis."
    ::= { lumProducts 4 }

mentis301Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box backplane."
    ::= { mentis301 1 }

mentis301PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply slot."
    ::= { mentis301 2 }

mentis301FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan slot."
    ::= { mentis301 3 }

mentis301PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply."
    ::= { mentis301 4 }

mentis301Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan."
    ::= { mentis301 5 }

-- Mentis 101 specific product definitions
-- =======================================

mentis101 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box chassis."
    ::= { lumProducts 5 }

mentis101Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box backplane."
    ::= { mentis101 1 }

mentis101PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply slot."
    ::= { mentis101 2 }

mentis101FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan slot."
    ::= { mentis101 3 }

mentis101PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply."
    ::= { mentis101 4 }

mentis101Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan."
    ::= { mentis101 5 }

-- Subrack Aux specific product definitions
-- =======================================

mentisAux OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for external eqiupment."
    ::= { lumProducts 6 }

mentisAuxBackplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual backplane."
    ::= { mentisAux 1 }

-- Transmode Network Manager
-- =========================

transmodeNetworkManager OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Transmode Network Manager."
    ::= { lumProducts 7 }

-- Mentis 102 specific product definitions
-- =======================================

mentis102 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box chassis."
    ::= { lumProducts 8 }

mentis102Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box backplane."
    ::= { mentis102 1 }

mentis102PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply slot."
    ::= { mentis102 2 }

mentis102FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan slot."
    ::= { mentis102 3 }

mentis102PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box power supply."
    ::= { mentis102 4 }

mentis102Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The small box fan."
    ::= { mentis102 5 }

-- Mentis MAB1 specific product definitions
-- =======================================
mentisMba1 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Monolith for mobile access."
    ::= { lumProducts 9 }

-- Mentis MAB2 specific product definitions
-- =======================================
mentisMba2 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Monolith for mobile access."
    ::= { lumProducts 10 }

-- Mentis MAB2E specific product definitions
-- =======================================
mentisMba2E OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Monolith for mobile access temp hardened."
    ::= { lumProducts 11 }

-- Subrack 102Pas3 specific product definitions
-- =======================================
mentis102Pas3 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for 102pas3 equipment."
    ::= { lumProducts 12 }

mentis102Pas3Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual backplane."
    ::= { mentis102Pas3 1 }

-- Subrack 102Pas specific product definitions
-- =======================================
mentis102Pas OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for 102pas equipment."
    ::= { lumProducts 13 }

mentis102PasBackplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual backplane."
    ::= { mentis102Pas 1 }

-- Subrack 101P specific product definitions
-- =======================================
mentis101P OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for tm101p equipment."
    ::= { lumProducts 14 }


-- Mentis 2000 specific product definitions
-- ========================================

mentis2000 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box chassis (sub-rack)."
    ::= { lumProducts 15 }

mentis2000Backplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box backplane."
    ::= { mentis2000 1 }

mentis2000PowerSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box power supply slot."
    ::= { mentis2000 2 }

mentis2000FanSlot OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box fan slot."
    ::= { mentis2000 3 }

mentis2000PowerSupply OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box power supply."
    ::= { mentis2000 4 }

mentis2000Fan OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "The big box fan."
    ::= { mentis2000 5 }


mentis101PBackplane OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual backplane."
    ::= { mentis101P 1 }

-- Subrack fha1u specific product definitions
-- =======================================
mentisFha1u OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for fha1u equipment."
    ::= { lumProducts 16 }

-- Subrack rfuac1 specific product definitions
-- =======================================
mentisRfuAc1 OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Virtual subrack for rfuac1 equipment."
    ::= { lumProducts 17 }

-- ----------------------------------------------------
-- Sub-tree for capabilities and conformance and
-- experimental definitions
-- ----------------------------------------------------

lumCaps OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for agent profiles."
    ::= { lumentis 4 }

lumReqs OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for management applications requirements."
    ::= { lumentis 5 }

lumExpr OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
        "Sub-tree for experimental definitions."
    ::= { lumentis  6 }

END