summaryrefslogtreecommitdiff
path: root/MIBS/adva/ADVA-MIB
blob: f42877a99adb5ada4f30faf309958ddfc529ed97 (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
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
ADVA-MIB DEFINITIONS ::= BEGIN

IMPORTS



    MODULE-IDENTITY,
    OBJECT-IDENTITY,
    OBJECT-TYPE,
    NOTIFICATION-TYPE,
    enterprises,
    Integer32,
    Unsigned32,
    IpAddress,
    Counter32,
    Counter64,
    Gauge32,
    TimeTicks,
    mib-2,
    snmpModules
                FROM SNMPv2-SMI


    ifIndex
                FROM IF-MIB


    entPhysicalIndex
                FROM ENTITY-MIB


    DisplayString,
    RowStatus,
    TEXTUAL-CONVENTION,
    DateAndTime,
    TestAndIncr,
    TimeStamp,
    MacAddress
                FROM SNMPv2-TC


    SnmpAdminString
                FROM SNMP-FRAMEWORK-MIB


    MODULE-COMPLIANCE,
    NOTIFICATION-GROUP,
    OBJECT-GROUP
                FROM SNMPv2-CONF;

advaMIB MODULE-IDENTITY
    LAST-UPDATED "201812140000Z"  -- December 14, 2018
    ORGANIZATION "ADVA AG Optical Networking"
    CONTACT-INFO
        "ADVA AG Optical Networking
        Justus-von-Liebig-Str. 7
        12489 Berlin, Germany

        Support Europe:
        Phone:  +49 89 89 0665 848
        Fax:    +49 89 89 0665 22848
        e-mail: support@advaoptical.com

        Support USA:
        Phone:  +1 201 995 0080
        Fax:    +1 201 995 0081
        e-mail: support-usa@advaoptical.com

        Support Asia:
        Phone:  +81 3 5408 5891
        Fax:    +81 3 5408 5899
        e-mail: support-asia@advaoptical.com"
    DESCRIPTION   "The ADVA Optical Networking base MIB."

    REVISION    "201812140000Z"  -- December 14, 2018
    DESCRIPTION   "Revised ADVA Common MIB version 2.10."

    REVISION    "201712070000Z"  -- December 7, 2017
    DESCRIPTION   "Revised ADVA Common MIB version 2.9."

    REVISION    "201703230000Z"  -- March 23, 2017
    DESCRIPTION   "Revised ADVA Common MIB version 2.8."

    REVISION    "201604010000Z"  -- April 1, 2016
    DESCRIPTION   "Revised ADVA Common MIB version 2.7."

    REVISION    "201512100000Z"  -- December 10, 2015
    DESCRIPTION   "Revised ADVA Common MIB version 2.6."

    REVISION    "201509030000Z"  -- September 3, 2015
    DESCRIPTION   "Revised ADVA Common MIB version 2.5."

    REVISION    "201503200000Z"  -- March 3, 2015
    DESCRIPTION   "Revised ADVA Common MIB version 2.4."

    REVISION    "201409290000Z"  -- September 29, 2014
    DESCRIPTION   "Revised ADVA Common MIB version 2.3."

    REVISION    "201202070000Z"  -- February 7, 2012
    DESCRIPTION   "Revised ADVA Common MIB version 2.1."

    REVISION    "200802210000Z"  -- February 21, 2008
    DESCRIPTION   "Revised ADVA Common MIB version 2.0."

    REVISION    "200412140000Z"  -- December 14, 2004
    DESCRIPTION   "The ADVA Common MIB version 1.7."

    REVISION    "200402200000Z" -- February 20, 2004
    DESCRIPTION   "The ADVA Common MIB version 1.6."

    REVISION    "200312120000Z" -- December 12, 2003
    DESCRIPTION   "The ADVA Common MIB version 1.5."

    REVISION    "200310070000Z" -- October 07, 2003
    DESCRIPTION   "The ADVA Common MIB version 1.4."

    REVISION    "200306270000Z" -- June 27, 2003
    DESCRIPTION   "The ADVA Common MIB version 1.3"

    REVISION    "200207220000Z" -- July 22, 2002
    DESCRIPTION   "The ADVA MIB version 1.3."
        ::= { enterprises 2544 }

products        OBJECT IDENTIFIER ::= { advaMIB 1 }
common          OBJECT IDENTIFIER ::= { advaMIB 2 }


-- **************************************************************************
-- **************************  ADVA Products  *******************************
-- **************************************************************************

fsp3000         OBJECT IDENTIFIER ::= { products 4 }
fsp1000         OBJECT IDENTIFIER ::= { products 6 }
fsp2000         OBJECT IDENTIFIER ::= { products 7 }
fsp1000adm      OBJECT IDENTIFIER ::= { products 8 }
fsp1500         OBJECT IDENTIFIER ::= { products 9 }
fsp150          OBJECT IDENTIFIER ::= { products 10 }
fspR7           OBJECT IDENTIFIER ::= { products 11 }
fsp150cm        OBJECT IDENTIFIER ::= { products 12 }
fspNm           OBJECT IDENTIFIER ::= { products 13 }
fsp3000alm      OBJECT IDENTIFIER ::= { products 14 }
fsp3000c        OBJECT IDENTIFIER ::= { products 15 }
aos             OBJECT IDENTIFIER ::= { products 20 }
aosCommon       OBJECT IDENTIFIER ::= { aos 1 }
aosProducts     OBJECT IDENTIFIER ::= { aos 2 }


-- **************************************************************************
-- ***********************  The ADVA Common MIB  ****************************
-- **************************************************************************

neInfo          OBJECT IDENTIFIER ::= { common 1 }
admin           OBJECT IDENTIFIER ::= { common 2 }
events          OBJECT IDENTIFIER ::= { common 3 }
software        OBJECT IDENTIFIER ::= { common 4 }
config          OBJECT IDENTIFIER ::= { common 5 }

transportStandards 		 	OBJECT IDENTIFIER ::= { config 4 }
inventoryMib   					OBJECT IDENTIFIER ::= { config 5 }
updateBackupRestoreMib 	OBJECT IDENTIFIER ::= { config 6 }
snmpAgent               OBJECT IDENTIFIER ::= { config 7 }

sonet   				OBJECT IDENTIFIER ::= { transportStandards 1 }
otn   					OBJECT IDENTIFIER ::= { transportStandards 2 }
sonetConfig			OBJECT IDENTIFIER ::= { sonet 1 }
otuConfig   		OBJECT IDENTIFIER ::= { otn 1 }
oduConfig   		OBJECT IDENTIFIER ::= { otn 2 }

swAdmin					OBJECT IDENTIFIER ::= { updateBackupRestoreMib 1 }
dbAdmin   			OBJECT IDENTIFIER ::= { updateBackupRestoreMib 2 }

-- **************************************************************************
-- ***********************  Textual Conventions  ****************************
-- **************************************************************************

OnOff ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Variable for representing a state and is for general use."
    SYNTAX      INTEGER {
        on (1),
        off (2)
    }

AvailState ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Variable for representing availability state and is for
        general use."
    SYNTAX      INTEGER {
        available (1),
        notAvailable (2)
    }

EnableState ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Describes whether a feature is enabled or disabled."
    SYNTAX      INTEGER {
        stateNotApplicable (0),
        stateEnabled (1),
        stateDisabled (2)
    }

ArcState ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Variable for representing the Alarm Report Control (ARC)
        state for an entity."
    SYNTAX      INTEGER {
        alm (1),        -- Reporting turned on (i.e., alarm traps sent).
                        -- Alarms are present in current alarm table
                        -- with own severity.
                        -- Transition nalm->alm: active alarm traps
                        -- sent with own severity.
        nalm (2)        -- Reporting turned off (i.e., no alarm traps).
                        -- Alarms are present in current alarm table
                        -- with severity 'notReported'.
                        -- Transition alm->nalm: active alarms are
                        -- 'cleared' by sending alarm clear traps with
                        -- severity 'notReported'.
        -- nalmTI (3),   - reporting turned off for time interval
        -- nalmQI (4),   - reporting turned off for qualified interval
        -- nalmQICD (5)  - substate of nalmQI with countdown interval
    }

TrapAlarmSeverity ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "This object identifies the severity of an alarm. The state
        'cleared' is not a severity, but is used for reporting that
        an alarm condition is no longer present. The state
        'notReported' is used for current alarms which are not
        reported because of ARC.
        The state 'indeterminate' is used when the severity value
        cannot be determined due to an internal error."
    SYNTAX      INTEGER {
        indeterminate (1),
        critical (2),
        major (3),
        minor (4),
        warning (5),
        cleared (6),
        notReported (7)
    }

ServiceImpairment ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "This object identifies the potential service impairment of
        an alarm."
    SYNTAX      INTEGER {
        serviceAffecting (1),
        nonServiceAffecting (2),
        serviceAffectingInstall (3),
        serviceAffectingActivate (4)
    }

TrapCounter ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "The sequence number of sent notifications (traps)."
    SYNTAX      Counter32

Counter64String ::= TEXTUAL-CONVENTION
    DISPLAY-HINT "20a"
    STATUS      current
    DESCRIPTION   "A string representation of a 64 bit counter.
        This TC is provided solely for SNMPv1 compliance."
    SYNTAX      OCTET STRING (SIZE (1..20))

KBytes ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "A memory size, expressed in units of 1024 bytes."
    SYNTAX      Gauge32

IdentityTranslation ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Translation of an index (entPhysicalIndex, ifIndex etc.)
        to a string.
            Slot/Module/Port location (product specific notation)
            Service/Bundle Name

        If no index available a string with:
            IP address (for neTrapsinkTable etc.)

        If nothing appropriate available
            zero length string

        Further info in product documentation."
    SYNTAX      OCTET STRING (SIZE (0..255))

NeSwUpgradeStatusType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "The status of a NE software upgrade command. The states 2 - 7 and 15, 18-29  are only used
         when the NE is used as FTP client. States from 30 to 36 are used for reporting the
         installation failure in case of revised F7 upgrade procedure, 37-28 are introduce for F7
         schedule backup."
    SYNTAX      INTEGER {
        none (1),
        downloading (2),
        downloadLoginFailed (3),
        downloadFileNotFound (4),
        downloadFileNoAccess (5),
        downloadFailure (6),
        downloadReadyForInstallation (7),
        installingSoftware (8),
        installationFailed (9),
        softwareReadyForActivation (10),
        activatingSoftware (11),
        activationFailed (12),
        softwareActivated (13),
        rebooting (14),
        downloadServerUnreachable (15),
        noSpaceLeft (16),       -- applicable for download and activate
        internalError (17),
        downloadFileProtocolFailed (18),
        downloadFileCheckFailed (19),
        downloadSSHHostkeyFailed(20),
        uploading(21),
        uploadLoginFailed(22),
        uploadFileNotFound(23),
        uploadFileNoAccess(24),
        uploadFailure(25),
        uploadServerUnreachable(26),
        uploadFileProtocolFailed(27),
        uploadFileCheckFailed(28),
        uploadSSHHostkeyFailed(29),
        installationFailedDeny(30),
        installationFailedWrongCrc(31),
        installationFailedVersionMismatch(32),
        installationFailedStbyInWrongState(33),
        installationFailedDamagedConfFile(34),
        installationFailedFsckFailed(35),
        installationFailedNotExist(36),
        downloadFileFailedProtocolDisabled(37),
        uploadFileFailedProtocolDisabled(38),
        backupFailedGeneration(39)
    }

NeSwInstallStatusType ::= TEXTUAL-CONVENTION
    STATUS      current
    DESCRIPTION   "Software installation status."
    SYNTAX      INTEGER
                {
                  undefined(0),
                  idle(1),
                  downloadingCon(2),
                  installingCon(3),
                  downloadingNcu(4),
                  installingNcu(5),
                  downloadingFwp(6),
                  installingFwp(7),
                  downloadingPgm(8),
                  installingPgm(9)
                }

FileTransferProtocol ::= TEXTUAL-CONVENTION
STATUS      current
DESCRIPTION
    "The protocol used for a file transfer."
SYNTAX      INTEGER {
    -- tftp (1),
    ftp (2),
    scp (3),
    http (4),
    sftp (5)
}

SourceIpAddress ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "IP address used as source IP address in FTP Client session"
  SYNTAX        INTEGER
                {
                  undefined(0),
                  sysIp(1),
                  defaultIp(2)
                }

F7FileTimeStamp ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "Add Timestamp to File Name"
  SYNTAX        INTEGER
                {
                  undefined(0),
                  add(1),
                  omit(2)
                }

F7AutoBackupInterval ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "Scheduled Database Backup Interval"
  SYNTAX        INTEGER
                {
                  undefined(0),
                  none(1),
                  every1Day(2),
                  every2Day(3),
                  every3Day(4),
                  every4Day(5),
                  every5Day(6),
                  every6Day(7),
                  every1Week(8),
                  every2Week(9),
                  every3Week(10),
                  every1Month(11),
                  every2Month(12),
                  every3Month(13)
                }


F7AutoBackupRunState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         ""
  SYNTAX        INTEGER
                {
                  undefined(0),
                  no(1),
                  yes(2)
                }


PartitionStatus ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
         "Partition State"
  SYNTAX        INTEGER
                {
                  undefined(0),
                  empty(1),
                  configFileInstalled(2),
                  ncuFileInstalled(3),
                  softwareReadyForActivation(4),
                  fwpsInstalled(5)
                }


FspDate ::= TEXTUAL-CONVENTION
  DISPLAY-HINT "2d-1d-1d"
  STATUS        current
  DESCRIPTION
         "A date specification.
         field octets contents range
         ----- ------ -------- -----
         1 1-2 year* 0..65536
         2 3 month 1..12
         3 4 day 1..31
         * Notes: - the value of year is in network-byte order
         For example, Tuesday May 26, 1992 would be
         displayed as:
         1992-5-26"
  SYNTAX        OCTET STRING (SIZE(4..4))


FspTime ::= TEXTUAL-CONVENTION
  DISPLAY-HINT "1d-1d-1d"
  STATUS        current
  DESCRIPTION
         "A time specification.
         field octets contents range
         ----- ------ -------- -----
         1 1 hour 0..23
         2 2 minutes 0..59
         3 3 seconds 0..60
         (use 60 for leap-second)
         For example: 13-10-26"
  SYNTAX        OCTET STRING (SIZE(3..3))


ApsDirection ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Bi-Directional | Unidirectional setup used in protection setup: Not to be used by others"
  SYNTAX    INTEGER
        {
            undefined(0),
            bidirectional(1), --bidirectional
            unidirectional(2) --unidirectional
        }

ApsDirectionCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Bi-Directional | Unidirectional setup used in protection setup: Not to be used by others"
  SYNTAX    BITS
        {
            capUndefined(0),
            capBidirectional(1),
            capUnidirectional(2)
        }

ApsHoldoffTime ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Soak period before switch after trigger."
  SYNTAX    INTEGER
        {
            undefined(0),
            none(1),
            e20ms(2),
            e100ms(3),
            e200ms(4),
            e300ms(5),
            e400ms(6),
            e500ms(7),
            e600ms(8),
            e700ms(9),
            e800ms(10),
            e900ms(11),
            e1000ms(12),
            e1100ms(13),
            e1200ms(14),
            e1300ms(15),
            e1400ms(16),
            e1500ms(17),
            e1600ms(18),
            e1700ms(19),
            e1800ms(20),
            e1900ms(21),
            e2000ms(22),
            e2100ms(23),
            e2200ms(24),
            e2300ms(25),
            e2400ms(26),
            e2500ms(27),
            e2600ms(28),
            e2700ms(29),
            e2800ms(30),
            e2900ms(31),
            e3000ms(32),
            e3100ms(33),
            e3200ms(34),
            e3300ms(35),
            e3400ms(36),
            e3500ms(37),
            e3600ms(38),
            e3700ms(39),
            e3800ms(40),
            e3900ms(41),
            e4000ms(42),
            e4100ms(43),
            e4200ms(44),
            e4300ms(45),
            e4400ms(46),
            e4500ms(47),
            e4600ms(48),
            e4700ms(49),
            e4800ms(50),
            e4900ms(51),
            e5000ms(52),
            e5100ms(53),
            e5200ms(54),
            e5300ms(55),
            e5400ms(56),
            e5500ms(57),
            e5600ms(58),
            e5700ms(59),
            e5800ms(60),
            e5900ms(61),
            e6000ms(62),
            e6100ms(63),
            e6200ms(64),
            e6300ms(65),
            e6400ms(66),
            e6500ms(67),
            e6600ms(68),
            e6700ms(69),
            e6800ms(70),
            e6900ms(71),
            e7000ms(72),
            e7100ms(73),
            e7200ms(74),
            e7300ms(75),
            e7400ms(76),
            e7500ms(77),
            e7600ms(78),
            e7700ms(79),
            e7800ms(80),
            e7900ms(81),
            e8000ms(82),
            e8100ms(83),
            e8200ms(84),
            e8300ms(85),
            e8400ms(86),
            e8500ms(87),
            e8600ms(88),
            e8700ms(89),
            e8800ms(90),
            e8900ms(91),
            e9000ms(92),
            e9100ms(93),
            e9200ms(94),
            e9300ms(95),
            e9400ms(96),
            e9500ms(97),
            e9600ms(98),
            e9700ms(99),
            e9800ms(100),
            e9900ms(101),
            e10000ms(102)
        }

ApsHoldoffTimeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Soak period before switch after trigger."
  SYNTAX    BITS
        {
            capUndefined(0),
            capNone(1),
            capE20ms(2),
            capE100ms(3),
            capE200ms(4),
            capE300ms(5),
            capE400ms(6),
            capE500ms(7),
            capE600ms(8),
            capE700ms(9),
            capE800ms(10),
            capE900ms(11),
            capE1000ms(12),
            capE1100ms(13),
            capE1200ms(14),
            capE1300ms(15),
            capE1400ms(16),
            capE1500ms(17),
            capE1600ms(18),
            capE1700ms(19),
            capE1800ms(20),
            capE1900ms(21),
            capE2000ms(22),
            capE2100ms(23),
            capE2200ms(24),
            capE2300ms(25),
            capE2400ms(26),
            capE2500ms(27),
            capE2600ms(28),
            capE2700ms(29),
            capE2800ms(30),
            capE2900ms(31),
            capE3000ms(32),
            capE3100ms(33),
            capE3200ms(34),
            capE3300ms(35),
            capE3400ms(36),
            capE3500ms(37),
            capE3600ms(38),
            capE3700ms(39),
            capE3800ms(40),
            capE3900ms(41),
            capE4000ms(42),
            capE4100ms(43),
            capE4200ms(44),
            capE4300ms(45),
            capE4400ms(46),
            capE4500ms(47),
            capE4600ms(48),
            capE4700ms(49),
            capE4800ms(50),
            capE4900ms(51),
            capE5000ms(52),
            capE5100ms(53),
            capE5200ms(54),
            capE5300ms(55),
            capE5400ms(56),
            capE5500ms(57),
            capE5600ms(58),
            capE5700ms(59),
            capE5800ms(60),
            capE5900ms(61),
            capE6000ms(62),
            capE6100ms(63),
            capE6200ms(64),
            capE6300ms(65),
            capE6400ms(66),
            capE6500ms(67),
            capE6600ms(68),
            capE6700ms(69),
            capE6800ms(70),
            capE6900ms(71),
            capE7000ms(72),
            capE7100ms(73),
            capE7200ms(74),
            capE7300ms(75),
            capE7400ms(76),
            capE7500ms(77),
            capE7600ms(78),
            capE7700ms(79),
            capE7800ms(80),
            capE7900ms(81),
            capE8000ms(82),
            capE8100ms(83),
            capE8200ms(84),
            capE8300ms(85),
            capE8400ms(86),
            capE8500ms(87),
            capE8600ms(88),
            capE8700ms(89),
            capE8800ms(90),
            capE8900ms(91),
            capE9000ms(92),
            capE9100ms(93),
            capE9200ms(94),
            capE9300ms(95),
            capE9400ms(96),
            capE9500ms(97),
            capE9600ms(98),
            capE9700ms(99),
            capE9800ms(100),
            capE9900ms(101),
            capE10000ms(102)
        }

AssignmentState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Assignment State. Describes an entity' state."
  SYNTAX    INTEGER
        {
            undefined(0),
            assigned(1), --Entity is provisioned
            unassigned(2), --Entity is not provisioned
            notassignable(3) --Entity cannot be provisioned due to some dependencies
        }

BootState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Boot State. Every state change (excluding IDLE) does generate a corresponding transient condition."
  SYNTAX    INTEGER
        {
            undefined(0),
            complete(1), --Booting has been completed successfully
            started(2), --Booting has just started
            failed(3), --Fail occurred during the booting operation
            reject(4), --Booting operation has been rejected
            install(5), --Installation has just started
            installFail(6), --Fail occurred during the installation operation
            installComplete(7), --Installation has been completed
            activate(8), --Activation has just started
            activateFail(9), --Fail occurred during the activation operation
            activateReject(10), --Activation has been rejected
            activateComplete(11) --Activation has been completed
        }

CommandEqpt ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Update, Install and Reboot commands."
  SYNTAX    INTEGER
        {
            undefined(0),
            none(1),
            install(2), --New FWPREV will become STBY-FWPREV.
            reboot(3), --EQPT Reboot.
            activate(4), --STBY-FWPREV will become active FWPREV.
            update(5), --New FWPREV will become active FWPREV.
            installFromStby(6), --New FWPREV-SYS-STBY will become active FWPREV-STBY.
            forceInstall(7) --New FWPREV will become STBY-FWPREV. This is forced operation so will be executed for all modules specified by AIDE and TYPE__EQPT no matter what is an active running FWPREV.
        }

CpWdmEntityClass ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Control Plane WDM Entity Class"
  SYNTAX    INTEGER
        {
            undefined(0),
            cp(1),
            tunnel(2),
            connection(3),
            path(4),
            pathElement(5),
            logicalInterface(6),
            remoteAlarm(7),
            portBinding(8),
            reservation(9),
            diversity(10)
        }

EnableStateCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Usage of 3rd Party Plugs"
  SYNTAX    BITS
        {
            capUndefined(0),
            capStateEnabled(1),
            capStateDisabled(2)
        }

EntityClass ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Entity Class"
  SYNTAX    INTEGER
        {
            undefined(0),
            other(1),
            unknown(2),
            chassis(3),
            backplane(4),
            container(5),
            powerSupply(6),
            fan(7),
            sensor(8),
            module(9),
            plug(10),
            stack(11),
            group(12),
            clientPort(13),
            networkPort(14),
            virtualChannel(15),
            connection(16),
            vc4Container(17),
            vc3sts1Container(18),
            vc12vt15Container(19),
            dcnChannel(20),
            routerConfig(21),
            environmentPort(22),
            internalPort(23),
            upgradePort(24),
            midstagePort(25),
            serialPort(26),
            pppIpInterface(27),
            lanIp(28),
            vs1Container(29),
            sts3cContainer(30),
            payloadChannel(31),
            passiveShelf(32),
            sts24cContainer(33),
            sts48cContainer(34),
            vs2cContainer(35),
            vs4cContainer(36),
            tifInputPort(37),
            tifOutputPort(38),
            opticalLink(39),
            virtualOpticalChannel(40),
            logicalInterface(41),
            physicalTerminationPoint(42),
            ethClient(43),
            ethNetwork(44),
            veth(45),
            flow(47),
            ctrans(48),
            policerOnFlow(50),
            queueOnPort(51),
            queueOnFlow(52),
            farEndPlug(53),
            farEndChannel(54),
            vc4c8Container(55),
            vc4c16Container(56),
            vs0Container(57),
            virtualSubChannel(58),
            bridge(59),
            queueOnBridge(60),
            backwardVirtualOptMux(61),
            forwardVirtualOptMux(62),
            optChannelTransportLane(63),
            virtualChannelN(64),
            externalChannel(65),
            virtualTerminationPoint(66),
            virtualConnection(67),
            virtualOptMux(68),
            optTransportLaneGroup(69),
            optWaveLengthGroup(70),
            crossConnectionChannel(71),
            crossOpticalLineChannel(72),
            versatilePort(73),
            system(74),
            crossConnectionDcn(75),
            protectionFfp(76),
            protectionCable(77),
            unidirectionalChannel(78),
            filterCable(79),
            groupTerminationPoint(80),
            externalOm(81),
            externalVch(82),
            virtualModule(83),
            virtualMap(84),
            lldp(85),
            managementPort(86),
            licenseManager(87),
            license(88)
        }

EntityIndex ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The index of an entity. EntityIndex is used to index the following:
        Entities which are provisioned but unequipped (existing in the database but
        not physically present),
        Entities which are equipped but non-provisioned (physically present but not in
        the database),
        Entities which are both provisioned and equipped (existing in the database and
        physically present),
        Entities which are non-provisioned and unequipped (not existing in the database
        and not physically present).
        These will have an entry in the entityTable, but their EntityType will
        be undefined.
        The EntityIndex is used similarly to how the entPhysicalIndex in
        RFC2737 (Entity MIB) is used to address entities and containers of entities."
  SYNTAX    Integer32(0..2147483647)

EntityType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Identifies the entity type. Each NE may have their own use of
        this INTEGER value, which will defined in the conformance document
        for each individual NE MIB."
    SYNTAX    Integer32

EquipmentState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        ""
    SYNTAX    INTEGER
        {
            undefined(0),
            equipped(1),
            unequipped(2)
        }

EthDuplexMode ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Duplex Mode (provision), available when Auto Negoiation is Disable (AUTONEG=DISABLE)"
  SYNTAX    INTEGER
        {
            undefined(0),
            ethHalfDuplex(1), --Half Duplex mode
            ethFullDuplex(2) --Full Duplex mode
        }

EthDuplexModeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Duplex Mode (provision), available when Auto Negoiation is Disable (AUTONEG=DISABLE)"
  SYNTAX    BITS
        {
            capUndefined(0),
            capEthHalfDuplex(1),
            capEthFullDuplex(2)
        }

FileArea ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Type of Area"
  SYNTAX    INTEGER
        {
            undefined(0),
            activeArea(1), --Partition on a disk which is currently in use.
            standbyArea(2), --Partition on a disk which is currently not active.
            rDisk(3), --Partition on a disk, which is used in software download/upload procedure.
            backupDisk(4), --Disk/partition where backup files are stored.
            alpDisk(5), --Disk/partition where alarm profile files are stored.
            pDisk(6), --Disk/partition where external channel interface and module profile files are stored.
            cfDisk(7), --Partition on CF disk, which is used in software download/upload procedure.
            paDisk(8) --Disk/partition where Path Analazyer files are stored.
        }

FileType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Type of File"
  SYNTAX    INTEGER
        {
            undefined(0),
            pgm(1), --Portable Gray Map image file (file containing a system image)
            dbs(2), --Database file type
            unknown(3), --Unknown file type
            alp(4), --Alarm profile file type
            ncu(5), --PGM image file with NCU-SW
            fwps(6), --PGM image file with FWPS
            con(7), --Configuration file
            prf(8), --Profile (ECH or MOD) file
            paf(9), --Path Analyzer File
            dbx(10), --Encrypted Database
            alm(11), --ALM Database
            pak(12), --Firmware PAK file
            map(13) --Master Profile
        }

FspR7AdminStateSnmpProxy ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Administrative State is displayed in the GUI and Craft. Transition to Unassigend requires the entity to be deleted."
  SYNTAX    INTEGER
        {
            undefined(0),
            is(2),
            dsbld(6)
        }

FspR7AdminStateSnmpProxyCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Administrative State is displayed in the GUI and Craft. Transition to Unassigend requires the entity to be deleted."
  SYNTAX    BITS
        {
            capUndefined(0),
            capIs(2),
            capDsbld(6)
        }

FspR7Date ::= TEXTUAL-CONVENTION
  DISPLAY-HINT        "2d-1d-1d"
  STATUS        current
  DESCRIPTION
        "A date specification.
        field  octets  contents                  range
        -----  ------  --------                  -----
        1      1-2   year*                     0..65536
        2       3    month                     1..12
        3       4    day                       1..31
        * Notes:             - the value of year is in network-byte order
        For example, Tuesday May 26, 1992 would be
        displayed as:
        1992-5-26"
  SYNTAX    OCTET STRING (SIZE(4..4))

FspR7EnableDisable ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enable/Disable variable."
  SYNTAX    INTEGER
        {
            undefined(0),
            enable(1),
            disable(2)
        }

FspR7EquipmentType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The TYPE of Equipment and the MODE setting determine uniquely
        the number and allowed TYPE's of the provisionable dependent
        entities (plugs, interfaces, modules)"
  SYNTAX    INTEGER
        {
            undefined(0),
            eqpSh1hu(1),
            eqpSh1huDc(2),
            eqpSh3hu(3), --deprecated
            eqpSh7hu(4),
            eqpF2kSh5hu(5), --deprecated
            eqpF2kSh6hu(6), --deprecated
            eqpDcm(7),
            eqpSh9hu(8),
            eqpUnknown(19),
            eqpNcu(20),
            eqpNcutif(21), --deprecated
            eqpScu(22),
            eqpScue(23), --Never released
            eqpR6cu(24), --deprecated
            eqpPsu1huac(25),
            eqpPsu7huac(26),
            eqpPsu7hudc(27),
            eqpFcu7hu(28),
            eqp2clsmd(29),
            eqp2absmc(30),
            eqp2bsmd(31),
            eqp1Gsmud(32),
            eqp4gsmd(33),
            eqp8gsmd(34),
            eqp1csmuc(35),
            eqp1csmuewc(36),
            eqp4csmd(37),
            eqp4csmud(38),
            eqp4csmc(39),
            eqpOsfm(40),
            eqp1pm(41),
            eqp2pm(42),
            eqp40csmd(43),
            eqpDcf(44),
            eqpEdfas(45),
            eqpEdfasgc(46),
            eqpEdfadgc(47),
            eqpRaman(48),
            eqp4tcc2g5(49),
            eqp4tcc2g5d(50),
            eqp4tcc10gd(51),
            eqp4tcc10gc(52),
            eqpWcc10gd(53),
            eqpWcc10gc(54),
            eqpWcc2g71N(55),
            eqpWcc2g7d(56),
            eqp2tcm2g5(57),
            eqp2tca2g5(58),
            eqp8tca10gd(59),
            eqp8tca10gc(60),
            eqpWca10gd(61),
            eqpWca10gc(62),
            eqp4tca4gd(63),
            eqp4tca4gc(64),
            eqpwca2g5(65),
            eqp4tca1g3d(66),
            eqp4tca1g3c(67),
            eqp8tce2g5d(68),
            eqp8tce2g5c(69),
            eqpWcelsd(70),
            eqpWcelsc(71),
            eqpVsm(72),
            eqpRsmolm(73),
            eqpRsmsf(74),
            eqpOscm(75),
            eqp2oscm(76),
            eqpDrm(77), --deprecated
            eqpXfpG(78),
            eqpsfpd(79),
            eqpSfpc(80),
            eqpSfpg(81),
            eqpSfpe(82),
            eqpSh1hudcm(83),
            eqpCustomc(84),
            eqpCustomd(85),
            eqpPsu1hudc(86),
            eqpWcc2g7c(87),
            eqp1csmuEwD(88),
            eqp1csmuG(89),
            eqp3BsmC(90),
            eqp2Tca2g5s(91),
            eqp8Csmuc(92),
            eqpEdfaDgcb(93), --deprecated
            eqpOscmPn(94),
            eqp4Tcc10gtd(95),
            eqp4Tca4g(96),
            eqpDcg(97),
            eqp2Tcm2g5d(98),
            eqp2Tcm2g5c(99),
            eqpWcm2g5d(100),
            eqpWcm2g5c(101),
            eqpEdfmSgc(102), --deprecated
            eqpF2kDemiV2(103), --deprecated
            eqpPsm(104),
            eqpNcu2e(105),
            eqp8TceGl2g5d(106),
            eqp8TceGl2g5c(107),
            eqpDcf1hu(108),
            eqp10tcc10gtd(109),
            eqp10tcc10gd(110),
            eqp10tcc10gc(111),
            eqp16csmSfd(112),
            eqpOsfmSf(113),
            eqp2clsmSfd(114),
            eqp3bsmEwc(115),
            eqpEdfaSgcb(116),
            eqpEdfaDgcv(117),
            eqpWcc10gtd(118),
            eqp2csmuEwc(119),
            eqpEroadmDc(120),
            eqpScuS(122),
            eqp4opcm(123),
            eqpUtm(124),
            eqpPscu(125),
            eqp40Csm2hu(126),
            eqp2Twcc2g7(127),
            eqp2Wca10g(130),
            eqpNcuHp(131), --Never released. Used in ADVA labs.
            eqpNcu20085hu(132), --deprecated
            eqp20Pca10G(133),
            eqpXfpC(137),
            eqpXfpD(138),
            eqpWcc40gtd(140),
            eqpIlm(141),
            eqpNcuII(142),
            eqpCem9hu(143),
            eqp8roadmC40(148),
            eqp4Tcc40gtd(149),
            eqp2pca10g(150),
            eqp10pca10g(151),
            eqp1csmuD(152),
            eqpSfpOsC(153), --Never released
            eqpSfpOdC(154),
            eqpSfpOsG(155), --Never released
            eqpSfpOdG(156),
            eqpRoadmC80(157),
            eqpccm8(158),
            eqpPsu9hudc(159),
            eqp4tca4gus(160),
            eqp40Csm3huD(161), --Never released
            eqp5psm(162),
            eqpFan9hu(163),
            eqp5tce10gtd(164),
            eqp10tccs10gtd(165),
            eqp40Csm3hudcD(166), --Never released
            eqp40Csm3hudcDi(167), --Never released
            eqp5gsmD(169),
            eqp8csmD(170),
            eqp2otfm(171),
            eqp8otdr3hu(172),
            eqpXfptD(173),
            eqp40Csm3huDi(174), --Never released
            eqp8CcmC80(175),
            eqpEdfaD27(176),
            eqp2Wcc10g(177),
            eqp8RoadmC80(178),
            eqp2Wcc10gAes(180), --deprecated
            eqp5tce10gtaesd(182),
            eqpSh1hupf(183),
            eqpFan1hu(185),
            eqp10tcc10g(186),
            eqpXfpOtnD(187),
            eqpNcu2p(188),
            eqpPsu9huac(190),
            eqp2Raman(192),
            eqpEdfaS26(193),
            eqp5tces10gtd(194),
            eqpScuII(195),
            eqp11RoadmC96(196), --Never released
            eqp8AdmC96(197), --Never released
            eqp8CxmC96(198), --Never released
            eqp8Shm(199), --Never released
            eqpAmpShgcv(200),
            eqpAmpSlgcv(201),
            eqp2RamanC15(202),
            eqpWcc100gtD(203),
            eqpCfp4g(204),
            eqpCfp10g(205),
            eqpXfpTlnD(213),
            eqp5tces10gtaesd(214),
            eqp10tce100g(215),
            eqp96Csm4HuD(216),
            eqp4CfptD(217),
            eqp2psm(218),
            eqpWce100G(219),
            eqp10Wxc10g(220),
            eqpShx9hu(221),
            eqpFanXhu(222),
            eqp10tcc100gtbD(223),
            eqp9RoadmC96(224),
            eqp4Wce16g(225),
            eqpSfpBG(226),
            eqpSfpCdrG(227),
            eqp10tce100gGf(228),
            eqpSfpCdrC(229),
            eqp5tce10gaes(234),
            eqp5tce10g(235),
            eqp5tces10gaes(236),
            eqp5tces10g(237),
            eqp4roadmC96(239),
            eqpWcc100gtbD(240),
            eqpEdfaS20(241),
            eqp10tccSdi10g(242),
            eqp4roadmEC96(243),
            eqpSfptD(245),
            eqpSfp2TxG(246),
            eqpSfp2RxG(247),
            eqpSfp2Txe(248),
            eqpSfp2Rxe(249),
            eqp2EdfaS20S10(250),
            eqp10Tce100Gb(251),
            eqp10Tce100gAes(252),
            eqpSfpCdrD(253),
            eqpSh1huDcEtemp(254),
            eqp8psm(255),
            eqp9ccmC96(256),
            eqpWce100GB(257),
            eqp16tcc10G(258),
            eqp4Wcc10g(259),
            eqp5wca16G(260),
            eqpCfptCd(261),
            eqpWccPcn100g(264),
            eqpOppm(267),
            eqp4cfpd(268),
            eqpNcuS(269),
            eqp10csmuD(270),
            eqpUtmS(272),
            eqpSfpBC(273),
            eqp10Tce100gAesBsi(274),
            eqpWccPcn100gAes(280),
            eqpSfpRxTxG(282),
            eqpSfpTlnD(283),
            eqpCfpTfCd(284),
            eqpXfpBG(285),
            eqpFd128D(286),
            eqpSfpBCdrG(289),
            eqpMroadmC96(290),
            eqpPsm40Mroadm(291),
            eqpOsfma(292),
            eqp10tcc100g(293),
            eqpCfpTgCd(294),
            eqpPsm80Mroadm(295),
            eqp10Tce100gbAes(297),
            eqpL3CmSina(298),
            eqp9Tce10gAesG(300),
            eqp9RoadmRs(303),
            eqp16psm4(304),
            eqp96Csm2HuD(305),
            eqp9Tce10gAesF(307),
            eqp10Tce100gAesF(308),
            eqpMtpOscC(309),
            eqpWcc100gAesF(311),
            eqpCfpTrCd(312),
            eqpWcc100gAesB(314),
            eqpMapOscC(317),
            eqpMtpbOscC(318),
            eqpMapbOscC(319),
            eqpWccPcn100gB(320),
            eqp4psmS(321),
            eqpWcc100gAesG(323),
            eqpHdScm(324),
            eqpCfp2tgCd(450), --CFP2, DWDM C-Band Tunable Coherent with up to 224Gbit/s Datarate supporting QPSK (31GBd), 8QAM (43GBd) 16QAM (31GBd) with Filter
            eqpMaB2C3LtA(453),
            eqpMaB5Lt(454),
            eqpCfp2tCd(455), --CFP2, DWDM C-Band Tunable Coherent with up to 224Gbit/s Datarate supporting QPSK (31GBd), 8QAM (43GBd) 16QAM (31GBd)
            eqpMp2B4CtS(456), --QuadFlex Single Fiber (F8 Product)
            eqpPsmdc3(457), --PSM-DC3 (F8 Product)
            eqpQSfpNotApproved(458), --QSFP Not Approved Plug
            eqpQSfp10g(459),
            eqpMa2C2C3LtA(461), --CryptoMux (F8 Product)
            eqpQSfpDacCr(462),
            eqpCem3(463), --CEM-3 (F8 Product)
            eqpFtm3(464), --FTM-3 (F8 Product)
            eqpPsmac3(465), --PSM-AC3 (F8 Product)
            eqpSh1R(466), --SH1R (F8 shelf)
            eqpEcm3(467), --ECM-3 (F8 Product)
            eqp4QsfpG(468),
            eqpScm2(472), --SCM-2 (F8 Product)
            eqpMa2C5Lt(473), --OpenFab400 (F8 Product)
            eqpPsmac6(474), --PSM-AC6 (F8 Product)
            eqpQSfpDac(475),
            eqpQSfpAoc(476),
            eqpPsmdc4(478), --PSM-DC4 (F8 Product)
            eqpPsmac5(479), --PSM-AC5 (F8 Product)
            eqpFtm4(480), --FTM-4 (F8 Product)
            eqpFtm2(481), --FTM-2 (F8 Product)
            eqpPsmac4(482), --PSM-AC4 (F8 Product)
            eqpPsmdc(483), --PSM-DC12 (F8 Product)
            eqpCem2(485), --CEM-2 (F8 Product)
            eqpCem4(486), --CEM-4 (F8 Product)
            eqpEcm2(487), --ECM-2 (F8 Product)
            eqpQSfp4g(488),
            eqpMp2B4Ct(489), --QuadFlex (F8 Product)
            eqpSh12(490), --SH12 (F8 Product)
            eqpSh4R(491), --SH4R (F8 Product)
            eqpPtp(499)
        }

FspR7EquipmentTypeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The TYPE of Equipment and the MODE setting determine uniquely
        the number and allowed TYPE's of the provisionable dependent
        entities (plugs, interfaces, modules)"
  SYNTAX    BITS
        {
            capUndefined(0),
            capEqpSh1hu(1),
            capEqpSh1huDc(2),
            capEqpSh3hu(3),
            capEqpSh7hu(4),
            capEqpF2kSh5hu(5),
            capEqpF2kSh6hu(6),
            capEqpDcm(7),
            capEqpSh9hu(8),
            capEqpUnknown(19),
            capEqpNcu(20),
            capEqpNcutif(21),
            capEqpScu(22),
            capEqpScue(23),
            capEqpR6cu(24),
            capEqpPsu1huac(25),
            capEqpPsu7huac(26),
            capEqpPsu7hudc(27),
            capEqpFcu7hu(28),
            capEqp2clsmd(29),
            capEqp2absmc(30),
            capEqp2bsmd(31),
            capEqp1Gsmud(32),
            capEqp4gsmd(33),
            capEqp8gsmd(34),
            capEqp1csmuc(35),
            capEqp1csmuewc(36),
            capEqp4csmd(37),
            capEqp4csmud(38),
            capEqp4csmc(39),
            capEqpOsfm(40),
            capEqp1pm(41),
            capEqp2pm(42),
            capEqp40csmd(43),
            capEqpDcf(44),
            capEqpEdfas(45),
            capEqpEdfasgc(46),
            capEqpEdfadgc(47),
            capEqpRaman(48),
            capEqp4tcc2g5(49),
            capEqp4tcc2g5d(50),
            capEqp4tcc10gd(51),
            capEqp4tcc10gc(52),
            capEqpWcc10gd(53),
            capEqpWcc10gc(54),
            capEqpWcc2g71N(55),
            capEqpWcc2g7d(56),
            capEqp2tcm2g5(57),
            capEqp2tca2g5(58),
            capEqp8tca10gd(59),
            capEqp8tca10gc(60),
            capEqpWca10gd(61),
            capEqpWca10gc(62),
            capEqp4tca4gd(63),
            capEqp4tca4gc(64),
            capEqpwca2g5(65),
            capEqp4tca1g3d(66),
            capEqp4tca1g3c(67),
            capEqp8tce2g5d(68),
            capEqp8tce2g5c(69),
            capEqpWcelsd(70),
            capEqpWcelsc(71),
            capEqpVsm(72),
            capEqpRsmolm(73),
            capEqpRsmsf(74),
            capEqpOscm(75),
            capEqp2oscm(76),
            capEqpDrm(77),
            capEqpXfpG(78),
            capEqpsfpd(79),
            capEqpSfpc(80),
            capEqpSfpg(81),
            capEqpSfpe(82),
            capEqpSh1hudcm(83),
            capEqpCustomc(84),
            capEqpCustomd(85),
            capEqpPsu1hudc(86),
            capEqpWcc2g7c(87),
            capEqp1csmuEwD(88),
            capEqp1csmuG(89),
            capEqp3BsmC(90),
            capEqp2Tca2g5s(91),
            capEqp8Csmuc(92),
            capEqpEdfaDgcb(93),
            capEqpOscmPn(94),
            capEqp4Tcc10gtd(95),
            capEqp4Tca4g(96),
            capEqpDcg(97),
            capEqp2Tcm2g5d(98),
            capEqp2Tcm2g5c(99),
            capEqpWcm2g5d(100),
            capEqpWcm2g5c(101),
            capEqpEdfmSgc(102),
            capEqpF2kDemiV2(103),
            capEqpPsm(104),
            capEqpNcu2e(105),
            capEqp8TceGl2g5d(106),
            capEqp8TceGl2g5c(107),
            capEqpDcf1hu(108),
            capEqp10tcc10gtd(109),
            capEqp10tcc10gd(110),
            capEqp10tcc10gc(111),
            capEqp16csmSfd(112),
            capEqpOsfmSf(113),
            capEqp2clsmSfd(114),
            capEqp3bsmEwc(115),
            capEqpEdfaSgcb(116),
            capEqpEdfaDgcv(117),
            capEqpWcc10gtd(118),
            capEqp2csmuEwc(119),
            capEqpEroadmDc(120),
            capEqpScuS(122),
            capEqp4opcm(123),
            capEqpUtm(124),
            capEqpPscu(125),
            capEqp40Csm2hu(126),
            capEqp2Twcc2g7(127),
            capEqp2Wca10g(130),
            capEqpNcuHp(131),
            capEqpNcu20085hu(132),
            capEqp20Pca10G(133),
            capEqpXfpC(137),
            capEqpXfpD(138),
            capEqpWcc40gtd(140),
            capEqpIlm(141),
            capEqpNcuII(142),
            capEqpCem9hu(143),
            capEqp8roadmC40(148),
            capEqp4Tcc40gtd(149),
            capEqp2pca10g(150),
            capEqp10pca10g(151),
            capEqp1csmuD(152),
            capEqpSfpOsC(153),
            capEqpSfpOdC(154),
            capEqpSfpOsG(155),
            capEqpSfpOdG(156),
            capEqpRoadmC80(157),
            capEqpccm8(158),
            capEqpPsu9hudc(159),
            capEqp4tca4gus(160),
            capEqp40Csm3huD(161),
            capEqp5psm(162),
            capEqpFan9hu(163),
            capEqp5tce10gtd(164),
            capEqp10tccs10gtd(165),
            capEqp40Csm3hudcD(166),
            capEqp40Csm3hudcDi(167),
            capEqp5gsmD(169),
            capEqp8csmD(170),
            capEqp2otfm(171),
            capEqp8otdr3hu(172),
            capEqpXfptD(173),
            capEqp40Csm3huDi(174),
            capEqp8CcmC80(175),
            capEqpEdfaD27(176),
            capEqp2Wcc10g(177),
            capEqp8RoadmC80(178),
            capEqp2Wcc10gAes(180),
            capEqp5tce10gtaesd(182),
            capEqpSh1hupf(183),
            capEqpFan1hu(185),
            capEqp10tcc10g(186),
            capEqpXfpOtnD(187),
            capEqpNcu2p(188),
            capEqpPsu9huac(190),
            capEqp2Raman(192),
            capEqpEdfaS26(193),
            capEqp5tces10gtd(194),
            capEqpScuII(195),
            capEqp11RoadmC96(196),
            capEqp8AdmC96(197),
            capEqp8CxmC96(198),
            capEqp8Shm(199),
            capEqpAmpShgcv(200),
            capEqpAmpSlgcv(201),
            capEqp2RamanC15(202),
            capEqpWcc100gtD(203),
            capEqpCfp4g(204),
            capEqpCfp10g(205),
            capEqpXfpTlnD(213),
            capEqp5tces10gtaesd(214),
            capEqp10tce100g(215),
            capEqp96Csm4HuD(216),
            capEqp4CfptD(217),
            capEqp2psm(218),
            capEqpWce100G(219),
            capEqp10Wxc10g(220),
            capEqpShx9hu(221),
            capEqpFanXhu(222),
            capEqp10tcc100gtbD(223),
            capEqp9RoadmC96(224),
            capEqp4Wce16g(225),
            capEqpSfpBG(226),
            capEqpSfpCdrG(227),
            capEqp10tce100gGf(228),
            capEqpSfpCdrC(229),
            capEqp5tce10gaes(234),
            capEqp5tce10g(235),
            capEqp5tces10gaes(236),
            capEqp5tces10g(237),
            capEqp4roadmC96(239),
            capEqpWcc100gtbD(240),
            capEqpEdfaS20(241),
            capEqp10tccSdi10g(242),
            capEqp4roadmEC96(243),
            capEqpSfptD(245),
            capEqpSfp2TxG(246),
            capEqpSfp2RxG(247),
            capEqpSfp2Txe(248),
            capEqpSfp2Rxe(249),
            capEqp2EdfaS20S10(250),
            capEqp10Tce100Gb(251),
            capEqp10Tce100gAes(252),
            capEqpSfpCdrD(253),
            capEqpSh1huDcEtemp(254),
            capEqp8psm(255),
            capEqp9ccmC96(256),
            capEqpWce100GB(257),
            capEqp16tcc10G(258),
            capEqp4Wcc10g(259),
            capEqp5wca16G(260),
            capEqpCfptCd(261),
            capEqpWccPcn100g(264),
            capEqpOppm(267),
            capEqp4cfpd(268),
            capEqpNcuS(269),
            capEqp10csmuD(270),
            capEqpUtmS(272),
            capEqpSfpBC(273),
            capEqp10Tce100gAesBsi(274),
            capEqpWccPcn100gAes(280),
            capEqpSfpRxTxG(282),
            capEqpSfpTlnD(283),
            capEqpCfpTfCd(284),
            capEqpXfpBG(285),
            capEqpFd128D(286),
            capEqpSfpBCdrG(289),
            capEqpMroadmC96(290),
            capEqpPsm40Mroadm(291),
            capEqpOsfma(292),
            capEqp10tcc100g(293),
            capEqpCfpTgCd(294),
            capEqpPsm80Mroadm(295),
            capEqp10Tce100gbAes(297),
            capEqpL3CmSina(298),
            capEqp9Tce10gAesG(300),
            capEqp9RoadmRs(303),
            capEqp16psm4(304),
            capEqp96Csm2HuD(305),
            capEqp9Tce10gAesF(307),
            capEqp10Tce100gAesF(308),
            capEqpMtpOscC(309),
            capEqpWcc100gAesF(311),
            capEqpCfpTrCd(312),
            capEqpWcc100gAesB(314),
            capEqpMapOscC(317),
            capEqpMtpbOscC(318),
            capEqpMapbOscC(319),
            capEqpWccPcn100gB(320),
            capEqp4psmS(321),
            capEqpWcc100gAesG(323),
            capEqpHdScm(324),
            capEqpCfp2tgCd(450),
            capEqpMaB2C3LtA(453),
            capEqpMaB5Lt(454),
            capEqpCfp2tCd(455),
            capEqpMp2B4CtS(456),
            capEqpPsmdc3(457),
            capEqpQSfpNotApproved(458),
            capEqpQSfp10g(459),
            capEqpMa2C2C3LtA(461),
            capEqpQSfpDacCr(462),
            capEqpCem3(463),
            capEqpFtm3(464),
            capEqpPsmac3(465),
            capEqpSh1R(466),
            capEqpEcm3(467),
            capEqp4QsfpG(468),
            capEqpScm2(472),
            capEqpMa2C5Lt(473),
            capEqpPsmac6(474),
            capEqpQSfpDac(475),
            capEqpQSfpAoc(476),
            capEqpPsmdc4(478),
            capEqpPsmac5(479),
            capEqpFtm4(480),
            capEqpFtm2(481),
            capEqpPsmac4(482),
            capEqpPsmdc(483),
            capEqpCem2(485),
            capEqpCem4(486),
            capEqpEcm2(487),
            capEqpQSfp4g(488),
            capEqpMp2B4Ct(489),
            capEqpSh12(490),
            capEqpSh4R(491),
            capEqpPtp(499)
        }

FspR7FalseTrue ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "False True variable."
  SYNTAX    INTEGER
        {
            undefined(0),
            false(1),
            true(2)
        }

FspR7Time ::= TEXTUAL-CONVENTION
  DISPLAY-HINT        "1d-1d-1d"
  STATUS        current
  DESCRIPTION
        "A time specification.
        field  octets  contents  range
        -----  ------  --------  -----
        1      1       hour    0..23
        2      2     minutes   0..59
        3      3     seconds   0..60
        (use 60 for leap-second)
        For example: 13-10-26"
  SYNTAX    OCTET STRING (SIZE(3..3))

FspR7YesNo ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "YesNo variable."
  SYNTAX    INTEGER
        {
            undefined(0),
            yes(1),
            no(2)
        }

FspR7UsersDb ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Specifies how user accounts are handled for database operations"
  SYNTAX    INTEGER
        {
            undefined(0),
            yes(1),
            no(2),
            keepCurrent(3)
        }

Grade ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Used to distinguish between NCU capabilities (range of supported services or applications)"
  SYNTAX    INTEGER
        {
            undefined(0),
            gradeA(1), --Supports: CWDM / WCA* and xTCA* (access type) modules
            gradeB(2), --Supports: same as Grade A and additionally DWDM /  WCE* and xTCE* (enterprise type) modules / WCC* and xTCC* (core type) modules / FC facilities
            gradeGdps(3), --Supports: same as Grade B and additionally GDPS
            gradeC(4)
        }

LoopConfig ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "External or Facility Loopback"
  SYNTAX    INTEGER
        {
            undefined(0),
            noLoop(1), --Loopback is not configured
            lineLoop(2), --Line loopback
            inwardLoop(3) --Inward loopback
        }

LoopConfigCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "External or Facility Loopback"
  SYNTAX    BITS
        {
            capUndefined(0),
            capNoLoop(1),
            capLineLoop(2),
            capInwardLoop(3)
        }

DestinationNodeOrAgentState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        ""
  SYNTAX    INTEGER
        {
            undefined(0),
            inactive(1)
        }

NcuAutoActivation ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enable scheduled activation of the standby PGM partition."
  SYNTAX    INTEGER
        {
            undefined(0),
            no(1),
            yes(2)
        }

NoYesNA ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enumerator values no(1), yes(2), notApplicable(3)."
  SYNTAX    INTEGER
        {
            undefined(0),
            no(1),
            yes(2),
            notApplicable(3)
        }

OhTerminationLevel ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Highest signal level hardware removes then generates for transmission."
  SYNTAX    INTEGER
        {
            undefined(0),
            phys(1),
            otnOtu(2),
            otnOdu(3),
            otnOpu(4),
            sonetSection(5),
            sonetLine(6),
            sonetPath(7),
            none(8), --This is used in virtual interfaces
            pcs(9),
            if10GbE(10)
        }

OhTerminationLevelCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Highest signal level hardware removes then generates for transmission."
  SYNTAX    BITS
        {
            capUndefined(0),
            capPhys(1),
            capOtnOtu(2),
            capOtnOdu(3),
            capOtnOpu(4),
            capSonetSection(5),
            capSonetLine(6),
            capSonetPath(7),
            capNone(8),
            capPcs(9),
            capIf10GbE(10)
        }

OtnPayloadType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The PAYLOAD defines the transport service type of the payload"
  SYNTAX    INTEGER
        {
            undefined(0),
            ifType10GbE(3), --Ethernet 10G LAN: Line Rate 10.3125 Gbps; supports full protocol
            ifTypeOc192(4), --SONET OC-192: Line Rate 9.953 Gbps; supports full protocol
            ifTypeOc48(5), --SONET OC-48: Line Rate 2.488 Gbps; supports full protocol
            ifTypeStm16(6), --SDH STM-16: Line Rate 2.488 Gbps; supports full protocol
            ifTypeStm64(7), --SDH STM-16: Line Rate 9.953 Gbps; supports full protocol
            ifType10GFC(8), --Fibre Channel 10G: Line Rate 10.518 Gbps; supports full protocol
            ifType1GFC(12), --Fibre Channel 1G: Line Rate 1.0625 Gbps; supports full protocol
            ifTypeF9953(15), --Fixed Rate 9.953 Gbps; supports transport of STM-64, OC-192 or 10G Ethernet WAN
            ifTypeF10312(16), --Fixed Rate 10.312 Gbps; supports transport of Ethernet 10G LAN
            ifTypeF10518(17), --Fixed Rate 10.518 Gbps; supports transport of Fibre Channel 10G
            ifTypeF2488(18), --Fixed Rate 2.488 Gbps; supports transport of STM-16 or OC-48
            ifType2GFC(39), --Fibre Channel 2G: Line Rate 2.125 Gbps; supports full protocol
            ifType1GbE(41), --Ethernet 1G: Line Rate 1.03125 Gbps; supports full protocol
            ifTypeF4250(52), --Fixed Rate 4.250 Gbps; supports transport of Fibre Channel 4G
            ifTypeF10709(54), --Fixed Rate 10.709 Gbps; supports transport of OTU2
            ifTypeF11095(55), --Fixed Rate 11.095 Gbps; supports transport of OTU2e (OTU2 carrying Ethernet 10G LAN with stuffing)
            ifTypeF11318(56), --Fixed Rate 11.318 Gbps; supports transport of OTU2f (OTU2 carrying Fibre Channel 10G with stuffing)
            ifTypeStm1(85), --SDH STM-1: Line Rate 155.52 Mbps; supports full protocol
            ifTypeStm4(86), --SDH STM-4: Line Rate 622.08 Mbps; supports full protocol
            ifTypeOc3(87), --SONET OC-3: Line Rate 155.52 Mbps; supports full protocol
            ifTypeOc12(88), --SONET OC-12: Line Rate 622.08 Mbps; supports full protocol
            ifTypeF8500(110), --Fixed datarate 8500 Mbps; supports transport of 8G Fibre Channel
            ifTypeF10000(129), --Fixed Rate 10000 Mbps; supports transport of InifinBand 10G
            ifTypeF5000(150), --Fixed Rate 5.000 Gbps; supports transport of InfiniBand 5G
            ifTypeF14025(178), --Fixed Rate 14.025 Gbps; supports transport of Fibre Channel 16G 
            ifType40GbE(192), --Ethernet 40G: Line Rate 41.250; supports full protocol
            ifTypeF41250(194), --Fixed Rate 41.250 Gbps; supports transport of Ethernet 40G (40 GbE)
            ifTypeF103125(195), --Fixed Rate 103.125 Gbps; supports transport of Ethernet 100G (100 GbE)
            ifTypeF2457(200), --Fixed Rate 2.457 Gbps; supports transport of 4xCPRI
            ifTypeFe(206), --Fast Ethernet 125 Mbps (Optical)
            ifTypeE10to1000t(212), --Ethernet 10/100/1000Base-T:10/100/1000 Mbps on electrical physical layer
            ifType4GFC(58), --Fibre Channel 4G: Line Rate 4.250 Gbps; supports full protocol
            ifType8GFC(127), --Fibre Channel 8G: Line Rate 8.5 Gbps; supports full protocol
            ifType16GFC(196), --Fibre Channel 16G: Line Rate 14.025 Gbps; supports full protocol
            ifTypeE10or100bt(36), --Ethernet 10/100Base-T: Ethernet 10 or 100 Mbps on electrical physical layer
            ifType25GbE(214), --Ethernet 25G LAN
            ifType32GFC(215), --Fibre Channel 32G: Line Rate 28.05 Gbps
            ifTypeNotDefined(499)
        }

OtnPayloadTypeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The PAYLOAD defines the transport service type of the payload"
  SYNTAX    BITS
        {
            capUndefined(0),
            capIfType10GbE(3),
            capIfTypeOc192(4),
            capIfTypeOc48(5),
            capIfTypeStm16(6),
            capIfTypeStm64(7),
            capIfType10GFC(8),
            capIfType1GFC(12),
            capIfTypeF9953(15),
            capIfTypeF10312(16),
            capIfTypeF10518(17),
            capIfTypeF2488(18),
            capIfType2GFC(39),
            capIfType1GbE(41),
            capIfTypeF4250(52),
            capIfTypeF10709(54),
            capIfTypeF11095(55),
            capIfTypeF11318(56),
            capIfTypeStm1(85),
            capIfTypeStm4(86),
            capIfTypeOc3(87),
            capIfTypeOc12(88),
            capIfTypeF8500(110),
            capIfTypeF10000(129),
            capIfTypeF5000(150),
            capIfTypeF14025(178),
            capIfType40GbE(192),
            capIfTypeF41250(194),
            capIfTypeF103125(195),
            capIfTypeF2457(200),
            capIfTypeFe(206),
            capIfTypeE10to1000t(212),
            capIfType4GFC(58),
            capIfType8GFC(127),
            capIfType16GFC(196),
            capIfTypeE10or100bt(36),
            capIfType25GbE(214),
            capIfType32GFC(215),
            capIfTypeNotDefined(499)
        }

OtnTcmLevel ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Activation of Tandem Connection Monitoring Instance A. 6 Tandem Connection Monitoring levels are available."
  SYNTAX    INTEGER
        {
            undefined(0),
            tcm1(1),
            tcm2(2),
            tcm3(3),
            tcm4(4),
            tcm5(5),
            tcm6(6),
            disabled(7)
        }

OtnTcmLevelCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Activation of Tandem Connection Monitoring Instance A. 6 Tandem Connection Monitoring levels are available."
  SYNTAX    BITS
        {
            capUndefined(0),
            capTcm1(1),
            capTcm2(2),
            capTcm3(3),
            capTcm4(4),
            capTcm5(5),
            capTcm6(6),
            capDisabled(7)
        }

PgmType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Program Type"
  SYNTAX    INTEGER
        {
            undefined(0),
            null(1),
            ncu(2),
            ncuHp(3),
            fwps(4),
            legacy(5),
            nscuS(6),
            fwpe(7)
        }

ProtectionMech ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Port Based refers to HST Cards and Switches: Card Based refers to additional equipment protection"
  SYNTAX    INTEGER
        {
            undefined(0),
            pathProtection(1), --Path protection
            channelCardProtection(2), --Channel card protection
            channelProtection(3), --Channel protection
            versatileSwitchedProtection(4),
            flowProtection(5), --ELINE Flow (EVC) protection 
            clientCardProtection(6),
            controller(7),
            none(8)
        }

ProtectionMechCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Port Based refers to HST Cards and Switches: Card Based refers to additional equipment protection"
  SYNTAX    BITS
        {
            capUndefined(0),
            capPathProtection(1),
            capChannelCardProtection(2),
            capChannelProtection(3),
            capVersatileSwitchedProtection(4),
            capFlowProtection(5),
            capClientCardProtection(6),
            capController(7),
            capNone(8)
        }

RestoreActivation ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Shows whether the last activation was(will be) a database restore or a new software activation"
  SYNTAX    INTEGER
        {
            undefined(0),
            notRestore(1), --ACT-DBS will not be affected.
            restoreFromStdBy(2), --STBY-DBS will become ACT-DBS and vice versa (ACT-DBS will become STBY-DBS).
            restoreToFactory(3), --Reset to factory default.
            restoreFromEqpt(4), --7.0.2 - see DBINIT
            acceptDatabase(5) --upon ACTIVATE or REBOOT as command (TL1 INIT-SYS) ACCEPT will cause the physical SERNO of SHELF-1 to override the SERNO of SHELF1 in the database oan activate the database in ACT
        }

RestoreActivationCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Shows whether the last activation was(will be) a database restore or a new software activation"
  SYNTAX    BITS
        {
            capUndefined(0),
            capNotRestore(1),
            capRestoreFromStdBy(2),
            capRestoreToFactory(3),
            capRestoreFromEqpt(4),
            capAcceptDatabase(5)
        }

ServiceAffecting ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Service Affecting Change during FWP upgrade and Restart operation"
  SYNTAX    INTEGER
        {
            undefined(0),
            nsa(1), --Change is not service affecting
            sa(2), --Change is service affecting
            saActivate(3), --Activation (reboot) is service affecting
            saInstall(4), --Installation is service affecting
            none(5) --Update is not needed
        }

ServiceAffectingCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Service Affecting Change during FWP upgrade and Restart operation"
  SYNTAX    BITS
        {
            capUndefined(0),
            capNsa(1),
            capSa(2),
            capSaActivate(3),
            capSaInstall(4),
            capNone(5)
        }

StandbyServiceAffecting ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Service Affecting Change during FWP upgrade after activation of STBY PGM partition."
  SYNTAX    INTEGER
        {
            undefined(0),
            nsa(1), --Change is not service affecting
            sa(2), --Change is service affecting
            saActivate(3), --Activation (reboot) is service affecting
            saInstall(4), --Installation is service affecting
            none(5) --Update is not needed
        }

SnmpProxySynchronizationState ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "This parameter is used to synchronize proxy table on GNE with destination NE's
        availability."
  SYNTAX    INTEGER
        {
            undefined(0),
            inactive(1),
            active(2)
        }

SnmpProxySynchronizationStage ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "This parameter is used to indicate stage of synchronization process."
  SYNTAX    INTEGER
        {
            undefined(0),
            started(1),
            finished(2)
        }

SonetSectSigDegThres ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The SONET signal degrade threshold as a bit error rate."
  SYNTAX    INTEGER
        {
            undefined(0),
            ber10exp5(1), --Bit error rate given in 10^5 form
            ber10exp6(2), --Bit error rate given in 10^6 form
            ber10exp7(3), --Bit error rate given in 10^7 form
            ber10exp8(4), --Bit error rate given in 10^8 form
            ber10exp9(5) --Bit error rate given in 10^9 form
        }

SonetSectSigDegThresCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "The SONET signal degrade threshold as a bit error rate."
  SYNTAX    INTEGER
        {
            undefined(0),
            capBer10exp5(1),
            capBer10exp6(2),
            capBer10exp7(3),
            capBer10exp8(4),
            capBer10exp9(5)
        }

SonetTimingSource ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Interface Timing Source Selection"
  SYNTAX    INTEGER
        {
            undefined(0),
            loopTiming(1), --Loop source
            internal(2) --Internal source
        }

SonetTimingSourceCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Interface Timing Source Selection"
  SYNTAX    BITS
        {
            capUndefined(0),
            capLoopTiming(1),
            capInternal(2)
        }

SonetTraceForm ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Byte-Length of Trace Compared to Expected"
  SYNTAX    INTEGER
        {
            undefined(0),
            form64CRLF(1), --note: only 62 byte available for user
            form16CRC7(2), --note: only 15 byte available for user
            form1Byte(3) --note: [000...255] consits of 3 strings of decimal numbers 
        }

SonetTraceFormCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Byte-Length of Trace Compared to Expected"
  SYNTAX    BITS
        {
            capUndefined(0),
            capForm64CRLF(1),
            capForm16CRC7(2),
            capForm1Byte(3)
        }

SonetVcBundleAllocation ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Each byte represents one sequence position in the VC bundle, always assigned
        consecutively. The sequence identifies the order in which the individual VCs are combined
        within the VC-4-Xv/VC-3-Xv. Each VC has a fixed unique sequence number in the range of 0
        to (X-1): byte 0: VC4/VC3 transporting the first container of the VC-4-Xv/VC-3-Xv is
        assigned sequence number 0, byte 1: VC4/VC3 transporting the second container of the
        VC-4-Xv/VC-3-Xv is assigned sequence number 1, etc. byte (X-1): VC4/VC3 transporting
        container X of the VC-4-Xv/VC-3-Xv is assigned sequence number (X-1)."
  SYNTAX    OCTET STRING (SIZE(0..64))

SonetVcBundleAllocationCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Each bit set in the bitmask represents the number
        of a free VC. Bit 0 = VC #1, and so on."
  SYNTAX    BITS
        {
            vc1(0),
            vc2(1),
            vc3(2),
            vc4(3),
            vc5(4),
            vc6(5),
            vc7(6),
            vc8(7),
            vc9(8),
            vc10(9),
            vc11(10),
            vc12(11),
            vc13(12),
            vc14(13),
            vc15(14),
            vc16(15),
            vc17(16),
            vc18(17),
            vc19(18),
            vc20(19),
            vc21(20),
            vc22(21),
            vc23(22),
            vc24(23),
            vc25(24),
            vc26(25),
            vc27(26),
            vc28(27),
            vc29(28),
            vc30(29),
            vc31(30),
            vc32(31),
            vc33(32),
            vc34(33),
            vc35(34),
            vc36(35),
            vc37(36),
            vc38(37),
            vc39(38),
            vc40(39),
            vc41(40),
            vc42(41),
            vc43(42),
            vc44(43),
            vc45(44),
            vc46(45),
            vc47(46),
            vc48(47),
            vc49(48),
            vc50(49),
            vc51(50),
            vc52(51),
            vc53(52),
            vc54(53),
            vc55(54),
            vc56(55),
            vc57(56),
            vc58(57),
            vc59(58),
            vc60(59),
            vc61(60),
            vc62(61),
            vc63(62),
            vc64(63)
        }

TimMode ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "OTU Trace Identifier Mismatch (TIM) detection/action for TIM defect."
  SYNTAX    INTEGER
        {
            undefined(0),
            disabled(1),
            enableAisDisabled(2),
            enableAisEnabled(3)
        }

TimModeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "OTU Trace Identifier Mismatch (TIM) detection/action for TIM defect."
  SYNTAX    BITS
        {
            capUndefined(0),
            capDisabled(1),
            capEnableAisDisabled(2),
            capEnableAisEnabled(3)
        }

FspR7TrapsinkLifetime ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Lifetime of Trapsink"
  SYNTAX    INTEGER
        {
            undefined(0),
            duration1hour(1),
            duration1day(2),
            duration3days(3),
            duration1week(4),
            duration1month(5),
            unlimited(6)
        }

VirtualContainerType ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Virtual Container Group Type"
  SYNTAX    INTEGER
        {
            undefined(0),
            vc4Type(1), --Virtual Container-4; 149.76 Mbit bit rate
            vc3Au4Type(2), --Virtual Container-3; 48.384 Mbit bit rate
            sts1(3), --Synchronous Transport Signal-1; 48.384 Mbit bit rate
            sts3c(4), --Synchronous Transport Signal-3, concatenated; 149.79 Mbit bit rate
            vs1(5), --1 Gbit rate
            vs2c(6), --2 Gbit rate
            sts24c(7),
            sts48c(8),
            vs4c(9),
            vc4c8(10),
            vc4c16(11),
            vs0(12),
            vs3c(13),
            vs5c(14),
            vs8c(15),
            vs6c(16),
            odu0(17),
            odu1(18),
            oduFlex(19),
            vs7c(20)
        }

VirtualContainerTypeCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Virtual Container Group Type"
  SYNTAX    BITS
        {
            capUndefined(0),
            capVc4Type(1),
            capVc3Au4Type(2),
            capSts1(3),
            capSts3c(4),
            capVs1(5),
            capVs2c(6),
            capSts24c(7),
            capSts48c(8),
            capVs4c(9),
            capVc4c8(10),
            capVc4c16(11),
            capVs0(12),
            capVs3c(13),
            capVs5c(14),
            capVs8c(15),
            capVs6c(16),
            capOdu0(17),
            capOdu1(18),
            capOduFlex(19),
            capVs7c(20)
        }

YesNoNA ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Enumerator values yes(1), no(2), notApplicable(3)."
  SYNTAX    INTEGER
        {
            undefined(0),
            yes(1),
            no(2),
            notApplicable(3)
        }

LogicalIfTransport ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        ""
  SYNTAX    OCTET STRING (SIZE(1..64))

LogicalIfTransportCaps ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        ""
  SYNTAX    BITS
        {
            lif1(0),
            lif2(1),
            lif3(2),
            lif4(3),
            lif5(4),
            lif6(5),
            lif7(6),
            lif8(7),
            lif9(8),
            lif10(9),
            lif11(10),
            lif12(11),
            lif13(12),
            lif14(13),
            lif15(14),
            lif16(15)
        }

ModuleForm ::= TEXTUAL-CONVENTION
  STATUS        current
  DESCRIPTION
        "Form of module"
  SYNTAX    INTEGER
        {
            undefined(0),
            native(1),
            legacy(2),
            compatible(3),
            cloudConnect(4)
        }

-- **************************************************************************
-- *************************  NE Information  *******************************
-- **************************************************************************

neMibVariant OBJECT-TYPE
    SYNTAX      Integer32 (0..9999)
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The variant of the SNMP enterprise MIB. This object will
        together with sysObjectID [RFC1213] uniquely identify the
        revision and variant of the enterprise MIB used by the NE."
    ::= { neInfo 1 }

neManufacturer OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Manufacturer of the system. This value is used to present
        in clear text the manufacturer of the system."
    ::= { neInfo 2 }

neDateAndTime OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Reports the current local time on the Network Element.
        It also allows to set the local time. However, SET
        requests may not be supported by all products."
    ::= { neInfo 3 }

neMemorySizeTotal OBJECT-TYPE
    SYNTAX      KBytes
    UNITS       "kBytes"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The total amount of physical main memory contained in
        the NEMI."
    ::= { neInfo 4 }

neMemorySizeFree OBJECT-TYPE
    SYNTAX      KBytes
    UNITS       "kBytes"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The amount of unused physical main memory contained in
        the NEMI."
    ::= { neInfo 5 }

neStorageTable OBJECT-TYPE
    SYNTAX SEQUENCE OF NeStorageEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "The table of long-term storage partitions contained in
        the NE."
    ::= { neInfo 6 }

neStorageEntry OBJECT-TYPE
    SYNTAX      NeStorageEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "An entry for one long-term storage partition contained in
        the NE."
    INDEX { neStorageIndex }
    ::= { neStorageTable 1 }

NeStorageEntry ::= SEQUENCE {
    neStorageIndex      Unsigned32,
    neStorageDescr      SnmpAdminString,
    neStorageCapacity   KBytes,
    neStorageAvailable  KBytes
    }

neStorageIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "The index of the NE storage partition."
    ::= { neStorageEntry 1 }

neStorageDescr OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The product specific description of the NE storage
        partition."
    ::= { neStorageEntry 2 }

neStorageCapacity OBJECT-TYPE
    SYNTAX      KBytes
    UNITS       "kBytes"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The total capacity of the NE storage partition."
    ::= { neStorageEntry 3 }

neStorageAvailable OBJECT-TYPE
    SYNTAX      KBytes
    UNITS       "kBytes"
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The free space on the NE storage partition."
    ::= { neStorageEntry 4 }

neAlarmStatus OBJECT-TYPE
    SYNTAX      TrapAlarmSeverity
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The highest severity of all currently active alarms on the
        NE. Alarms that are not reported because of Alarm Report
        Control (ARC) or any other administrative state are not
        considered active. The values indeterminate(1) and
        notReported(7) are not applicable for this object. The value
        cleared(6) indicates that the NE reports no alarm
        (i.e. Alarm LED(s) off)."
    ::= { neInfo 7 }

-- **************************************************************************
-- ********************  Administration & Security **************************
-- **************************************************************************

snmpWriteAccessRestriction OBJECT-TYPE
    SYNTAX      EnableState
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "This value is used in combination with the
        snmpWriteAccessTable for additional security for SNMP set
        requests. When the status is Disabled, SNMP set requests
        from any NMS (using the correct write community) are
        accepted (ie, the snmpWriteAccessTable entries do not
        apply).
        When the status is Enabled, however, only SNMP set requests
        from NMSs (using the correct write community) which are
        listed in the snmpWriteAccessTable are accepted.
        This object is read-only, meaning that it cannot be updated
        via the SNMP interface. The operator must configure SNMP
        write access permissions via a non-SNMP interface."
    ::= { admin 1 }


snmpWriteAccessTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF SnmpWriteAccessEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Table of authorized NMSs (identified by IP address) for
        SNMP set requests.
        This table is not relevant if snmpWriteAccessRestriction is
        set to Disabled.
        The entries of this table are read-only. This means
        that the SNMP write access permissions cannot be updated via
        the SNMP interface. The operator must configure them via a
        non-SNMP interface."
    ::= { admin 2 }

snmpWriteAccessEntry OBJECT-TYPE
    SYNTAX      SnmpWriteAccessEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the SNMP Write Access Table.
        The maximum of rows in this table is product specific,
        typically 10."
    INDEX { snmpWriteAccessNmsAddress }
    ::= { snmpWriteAccessTable 1 }

SnmpWriteAccessEntry ::= SEQUENCE {
    snmpWriteAccessNmsAddress   IpAddress,
    snmpWriteAccessNmsName      SnmpAdminString
    }

snmpWriteAccessNmsAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "IP Address of the NMS which has SNMP write permission."
    ::= { snmpWriteAccessEntry 1 }

snmpWriteAccessNmsName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Name of the NMS."
    ::= { snmpWriteAccessEntry 2 }


-- **************************************************************************
-- *************************  Event Handling  *******************************
-- **************************************************************************

neEventsLogged OBJECT-TYPE
    SYNTAX      TrapCounter
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "This value is the sum of all notified events (trap counter).
        It is also the event number of the most recent event
        (neEventLogIndex) found in the neEventLog tables. It can,
        for example, be used to check if a notification (trap) is
        lost.
        The value is reset to 0 after a cold start. The counter is
        increased even if no trap sinks are specified."
    ::= { events 1 }


-- **************************************************************************
-- *************************   neEventLog Table   ***************************
-- **************************************************************************
-- All enterprise-specific events are logged in the log table, even if a
-- trap was not sent to any trapsinks.
-- The events are indexed by the neEventLogIndex (used as a trap counter)
-- and include a timestamp indicating when the event occurred.
-- The corresponding neEventLogTimeStamp is included in each trap, thus
-- allowing the possibility of tracking (and detecting lost messages by
-- comparing to neEventsLogged) traps at a management station.
-- The neEventLogIdentityTranslation is also included in each trap.
-- This table is a simplified version of the nlmLogTable in [RFC3014].
--
-- Note: since this table can be very large, the management systems
-- should use caution when requesting information from this table
-- to reduce the load on the network (ie, always use getnext with the
-- last received trap counter as index).
--
-- The number of available records is product specific.
-- **************************************************************************

neEventLogTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NeEventLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Table of events issued by the NE's SNMP agent. The eventLog
        entries are read-only."
    ::= { events 2 }

neEventLogEntry OBJECT-TYPE
    SYNTAX      NeEventLogEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the neEventLog Table. Enterprise traps are
        always logged; logging of Generic traps is product specific."
    INDEX { neEventLogIndex }
    ::= { neEventLogTable 1 }

NeEventLogEntry ::= SEQUENCE {
    neEventLogIndex                 TrapCounter,
    neEventLogTimeStamp             DateAndTime,
    neEventLogNotificationOID       OBJECT IDENTIFIER,
    neEventLogIdentityTranslation   IdentityTranslation
    }

neEventLogIndex OBJECT-TYPE
    SYNTAX      TrapCounter
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "The associated neEventsLogged counter for the logged
        event (trap)."
    ::= { neEventLogEntry 1 }

neEventLogTimeStamp OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The NE Date and Time when the event (trap) occurred. This
        object is used in the trap varbind."
    ::= { neEventLogEntry 2 }

neEventLogNotificationOID OBJECT-TYPE
    SYNTAX      OBJECT IDENTIFIER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The NOTIFICATION-TYPE object identifier of the event that
        occurred. The last part of the OID corresponds to the
        specific trap type value in the trap PDU."
    ::= { neEventLogEntry 3 }

neEventLogIdentityTranslation OBJECT-TYPE
    SYNTAX      IdentityTranslation
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Translation of entPhysicalIndex/ifIndex or other identifier
        to a string used in the trap varbind following the timestamp
        varbind."
    ::= { neEventLogEntry 4 }


-- **************************************************************************
-- ************************   neEventLogVar Table   *************************
-- **************************************************************************
-- The variables of an entry in the neEventLogTable are logged in this table.
-- Note: the OctetString syntax is also used to represent DataAndTime
-- SnmpAdminString and DisplayString objects. Integer32 is also used to
-- represent INTEGER. This table is a simplified version of
-- nlmLogVariableTable in [RFC3014].
-- **************************************************************************

neEventLogVarTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NeEventLogVarEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Table of variables corresponding to events logged in the
        neEventLog."
    ::= { events 3 }

neEventLogVarEntry OBJECT-TYPE
    SYNTAX      NeEventLogVarEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the neEventLogVar Table. An entry appears in
        this table for each variable in the varbind list of an entry
        in the neEventLogTable. For an event having no variables,
        no entries are found in this table."
    INDEX { neEventLogIndex, neEventLogVarIndex }
    ::= { neEventLogVarTable 1 }

NeEventLogVarEntry ::= SEQUENCE {
    neEventLogVarIndex          Unsigned32,
    neEventLogVarId             OBJECT IDENTIFIER,
    neEventLogVarType           INTEGER,
    neEventLogVarInteger32Val   Integer32,
    neEventLogVarIpAddressVal   IpAddress,
    neEventLogVarOctetStringVal OCTET STRING,
    neEventLogVarOidVal         OBJECT IDENTIFIER,
    neEventLogVarCounter64Val   Counter64,
    neEventLogVarUnsigned32Val  Unsigned32
}

neEventLogVarIndex OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "A monotonically increasing integer, starting at 1 for a
        given neEventLogIndex, for indexing a variable contained in
        the varbind list of a logged event."
    ::= { neEventLogVarEntry 1 }

neEventLogVarId OBJECT-TYPE
    SYNTAX      OBJECT IDENTIFIER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The object identifier of the variable in the varbind list."
    ::= { neEventLogVarEntry 2 }

neEventLogVarType OBJECT-TYPE
    SYNTAX      INTEGER {
        integer32 (1),
        ipAddress (2),
        octetString (3),
        objectId (4),
        counter64 (5),
        -- counter32,
        unsigned32 (7)
        -- timeTicks,
        -- opaque
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The type of variable. One and only one of the value objects
        that follow must be instantiated, based on this type. The
        used types depend on the enterprise traps defined for the
        specific product."
    ::= { neEventLogVarEntry 3 }

neEventLogVarInteger32Val OBJECT-TYPE
    SYNTAX      Integer32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'integer32'. Integer32
        is also used to represent INTEGER types.
        Otherwise, 0 is returned."
    ::= { neEventLogVarEntry 4 }

neEventLogVarIpAddressVal OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'ipAddress'.
        Otherwise, an empty address is returned."
    ::= { neEventLogVarEntry 5 }

neEventLogVarOctetStringVal OBJECT-TYPE
    SYNTAX      OCTET STRING (SIZE (0..255))
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'octetString'.
        OctetString is used for all string types, including
        DisplayString, SnmpAdminString and DateAndTime.
        Otherwise, an empty string is returned."
    ::= { neEventLogVarEntry 6 }

neEventLogVarOidVal OBJECT-TYPE
    SYNTAX      OBJECT IDENTIFIER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'objectId'.
        Otherwise, an objectId { 0.0 } is returned."
    ::= { neEventLogVarEntry 7 }

neEventLogVarCounter64Val OBJECT-TYPE
    SYNTAX      Counter64
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'counter64'."
    ::= { neEventLogVarEntry 8 }

neEventLogVarUnsigned32Val OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The value when neEventLogVarType is 'unsigned32'."
    ::= { neEventLogVarEntry 10 }

-- Trap Sink Table

neTrapsinkTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NeTrapsinkEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Table of Trapsinks. A neTrapsinkTable entry can be created,
        deleted or modified via the SNMP interface for a specific
        address and port."
    ::= { events 4 }

neTrapsinkEntry OBJECT-TYPE
    SYNTAX      NeTrapsinkEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the Trapsink Table. Entries are created and
        deleted using the neTrapsinkRowStatus object. The maximum of
        rows in this table is product specific."
    INDEX { neTrapsinkAddress, neTrapsinkPort }
    ::= { neTrapsinkTable 1 }

NeTrapsinkEntry ::= SEQUENCE {
    neTrapsinkAddress       IpAddress,
    neTrapsinkPort          Integer32,
    neTrapsinkCommunity     DisplayString,
    neTrapsinkRowStatus     RowStatus,
    neTrapsinkVersion       Unsigned32,
    neTrapsinkUserName      DisplayString,
    neTrapsinkType          FspR7TrapsinkLifetime
    }

neTrapsinkAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  accessible-for-notify
    STATUS      current
    DESCRIPTION   "IP Address of the Management System which should receive
        SNMP Traps."
    ::= { neTrapsinkEntry 1 }

neTrapsinkPort OBJECT-TYPE
    SYNTAX      Integer32 (0..65535)
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "The port number where the specified trap sink will receive
        SNMP traps."
    ::= { neTrapsinkEntry 2 }

neTrapsinkCommunity OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(0..128))
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Community String which is sent with an SNMP Trap to the
        Management Station. If no community is specified, the
        default (public) is used."
    ::= { neTrapsinkEntry 3 }

neTrapsinkRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The status of this conceptual row. To create a row in this
        table, set this object to createAndGo(4). To remove a row,
        set this object to destroy(6)."
    ::= { neTrapsinkEntry 4 }

neTrapsinkVersion OBJECT-TYPE
    SYNTAX      Unsigned32
    UNITS       ""
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   ""
    ::=  { neTrapsinkEntry 5 }

neTrapsinkUserName OBJECT-TYPE
    SYNTAX      DisplayString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "A human readable string representing the name of the user."
    ::=  { neTrapsinkEntry 6 }

neTrapsinkType OBJECT-TYPE
    SYNTAX      FspR7TrapsinkLifetime
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Lifetime of Trapsink."
    ::= { neTrapsinkEntry 7 }


-- **************************************************************************
-- *************************  System Software  ******************************
-- **************************************************************************

swVersionTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF SwVersionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Software version information table for units/modules which
        run a management Operating System. This includes the
        Application software and Operating System software."
    ::= { software 1 }

swVersionEntry OBJECT-TYPE
    SYNTAX      SwVersionEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the swVersion Table."
    INDEX { entPhysicalIndex }
    ::= { swVersionTable 1 }

SwVersionEntry ::= SEQUENCE {
    swVersionActiveApplSw           SnmpAdminString,
    swVersionInactiveApplSw         SnmpAdminString,
    swVersionActiveOperatingSw      SnmpAdminString,
    swVersionInactiveOperatingSw    SnmpAdminString,
    swVersionNextBoot               INTEGER
    }

swVersionActiveApplSw OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Reports the active Application software version on the
        unit/module."
    ::= { swVersionEntry 1 }

swVersionInactiveApplSw OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Reports the inactive Application software version available
        on the unit/module."
    ::= { swVersionEntry 2 }

swVersionActiveOperatingSw OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Reports the active Operating System software version on the
        unit/module."
    ::= { swVersionEntry 3 }

swVersionInactiveOperatingSw OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Reports the inactive Operating System software version
        available on the unit/module."
    ::= { swVersionEntry 4 }

swVersionNextBoot OBJECT-TYPE
    SYNTAX      INTEGER {
        activeVersion (1),
        inactiveVersion (2)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Reports which software will be run at next
        boot, either the currently active one again
        or the alternative (currently inactive) one."
    ::= { swVersionEntry 5 }

neSoftwareUpgrade OBJECT IDENTIFIER ::= { software 2 }

neSwUpgradeRequest OBJECT-TYPE
    SYNTAX      INTEGER {
        none (1),                          -- none
        download (2),                      -- download new software
        install (3),                       -- install new software
        activate (4),                      -- enable installed software for next reboot
        revertToPrevious (5),              -- activate previously installed software
        reboot (6),                        -- run activated software
        downloadInstallActivateReboot(7),  -- shortcut (NE is FTP client)
        installActivateReboot (8),         -- shortcut (NE is FTP server)
        revertToPreviousReboot (9),        -- shortcut (revert to previous)
        activateAlp (10),                  -- activate alarm profile severities
        activateDefaultAlp (11),           -- activate default alarm profile severities
        upload (12),                       -- upload file from NE to remote location
        autoDownloadInstall (13),          -- auto download and install from remote location
        autoInstall (14),                  -- auto install from RDISK
        fwpInstall (15),                   -- save module  FWP to the NCU Active Area
        fwpDownloadInstall (16),           -- download and save module FWP to the NCU Active Area
        downloadCf (17),                   -- download file from remote location to CF Disk
        uploadCf (18),                     -- upload file from CF Disk to remote location
        installCf (19),                    -- install new software from CF Disk
        autoInstallCf (20),                -- auto install from CF Disk
        uploadPa (21),                     -- upload file to PA Disk
        activateWithFwp (22),              -- activate with firmware
        forceReboot(23),                   -- force run activated software
        stbyFwpInstall(24)                 -- save module FWP to the NCU Standby Area
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The request to the software upgrade function.
        Request 2..6 are single step requests while requests 7..9
        are batch commands for common upgrade scenarios. Requests 13,14
        are defined for automatic install process for F7 platform.

        If the NE is the FTP server, the file must then have been
        downloaded to the neSwUpgradeNeDirectory on the NE using the
        'netadmin' account."
    ::= { neSoftwareUpgrade 1 }

neSwUpgradeState OBJECT-TYPE
    SYNTAX      NeSwUpgradeStatusType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The current status of the SW upgrade process.
        NOTE: All failures that are caused by malfunctioning
              hardware are reported as internalError(17)."
    ::= { neSoftwareUpgrade 2 }

neSwUpgradeServerAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The IP address of the external FTP server."
    ::= { neSoftwareUpgrade 3 }

neSwUpgradeServerLogin OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The login name on the external FTP server."
    ::= { neSoftwareUpgrade 4 }

neSwUpgradeServerPasswd OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The password on the external FTP server. Read requests on
        this object will return a zero-length string."
    ::= { neSoftwareUpgrade 5 }

neSwUpgradeServerDirectory OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The SW file location (path) on the external FTP server."
   ::= { neSoftwareUpgrade 6 }

neSwUpgradeFileName OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The SW file name (without path) on the external FTP server
        or the name of the file which has been downloaded to the NE."
    ::= { neSoftwareUpgrade 7 }

neSwUpgradeNeDirectory OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The SW file location (path) on the NE."
    ::= { neSoftwareUpgrade 8 }

neSwUpgradeTransferProtocol OBJECT-TYPE
    SYNTAX      FileTransferProtocol
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The transfer protocol to be used."
    ::= { neSoftwareUpgrade 9 }

sourceIpAddress OBJECT-TYPE
    SYNTAX      SourceIpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "IP address used as source IP address in FTP Client session"
    ::=  { neSoftwareUpgrade 10 }

neSwInstallState OBJECT-TYPE
    SYNTAX      NeSwInstallStatusType
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Software installation state."
    ::=  { neSoftwareUpgrade 11 }

neSwUpgradeType OBJECT-TYPE
    SYNTAX      INTEGER
                {
                  undefined(0),
                  legacy(1),
                  revised(2)
                }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Required procedure type to be used for software download. legacy(1) is the default value.
         This parameter MUST be set before any other parameters will be set for software upgrade
         procedure (for example IP address, user name, password etc.). revised(2) value corresponds
         to Revised Upgrade Procedure which uses new PGM format. This parameter is NOT stored in the
         database and will be reset to default after SNMP Agent restart.
        "
    ::=  { neSoftwareUpgrade 12 }

neSwDownloadProgress OBJECT-TYPE
    SYNTAX      Integer32 (0..100 | -2147483648)
    UNITS       "%"
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Operational progress in % i.e. file transfer"
    ::=  { neSoftwareUpgrade 13 }

neSwUpgradeCommonIpSrv OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "IPv4/v6 Server Address"
    ::=  { neSoftwareUpgrade 14 }

-- **************************************************************************
-- **************************  Configuration  *******************************
-- **************************************************************************

provContainerTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF ProvContainerEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "This table defines the objects that support provisioning of
        'container' class physical entities.  Provisioning sets up a
        'container' to hold a specified physical entity.  This allows
        a management client to configure the specified physical entity,
        including all of its subordinates physical entities, before
        installation.

        Provisioning allows the network manager to 'create' the
        physical entities that represent the new modules. In
        essence, the device simulates the installation of the new
        modules into the system.  This has the effect of creating all
        conceptual rows in all the necessary tables that support the
        physical entity and all its subordinate physical entities (e.g.,
        entPhysicalTable, and ifTable).

        The table extends some entries in the entPhysicalTable
        (see ENTITY-MIB for further details). A entry appears in
        this table for a physical entity matching the following
        criteria:

        1)  Its entPhysicalClass object has a value of 'container';

        2)  It can contain one (but not multiple) physical entity;
            and,

        3)  It supports provisioning.


        The following states cause an alarm to be raised at the level
        of the containing module:

        IF  provAssignmentState = assigned(1)
              AND
            provEquipmentState = unequipped(2)
        THEN  'eqMissing' alarm

        IF    provEquipmentState = invalid(3)
        THEN  'eqNotAccepted' alarm
        "
::= { config 1 }

provContainerEntry OBJECT-TYPE
    SYNTAX      ProvContainerEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entries in the provContainer Table."
    INDEX { entPhysicalIndex }
    ::= { provContainerTable 1 }

ProvContainerEntry ::= SEQUENCE {
    provAssignmentState   INTEGER,
    provEquipmentState    INTEGER
    }

provAssignmentState OBJECT-TYPE
    SYNTAX      INTEGER {
        assigned (1),     -- a module type has been assigned to the container
        unassigned (2)    -- the container is unassigned (not provisioned)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "This status indicates the assignment (provisioning) of a
        module type to the container."
    ::= { provContainerEntry 1 }

provEquipmentState OBJECT-TYPE
    SYNTAX      INTEGER {
        equipped (1),
        unequipped (2),
        invalid (3)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "This status indicates how the container is equipped:

        'equipped'      The container holds a module that fits to the
                        container.

        'unequipped'    The container does not hold any hardware.

        'invalid'       The container holds a recognized module that
                        the container is not capable of supporting,
                        or the container holds an unrecognized
                        module.
        "
    ::= { provContainerEntry 2 }

neBackupRestore OBJECT IDENTIFIER ::= { config 2 }

neBackupRestoreRequest OBJECT-TYPE
    SYNTAX      INTEGER {
        none (1),          -- no operation,
        runBackup (2),     -- backup database file to RDISK,
        runRestore (3),    -- restore database from file,
        dBdownload (4),    -- download database file to RDISK from remote location,
        dBupload (5),      -- upload database file to remote location,
        dbDownloadScu (6), -- download database file to SCU from remote location,
        dbUploadScu (7),   -- upload database file from SCU to remote location,
        alpDownload (8),   -- download alarm severities from alarm profile,
        alpUpload (9),     -- upload alarm severities from alarm profile,
        runBackupScu (10)  -- backup database file to SCU
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Run network element configuration Backup/Restore operation:

        - none(1):       No action (read only)

        - runBackup(2):  Save the network element configuration to
                         a file (write only)

        - runRestore(3): Restore the network element configuration
                         from a file (write only)

        The Restore operation does not overwrite settings which are
        required to reestablish contact to the NE via SNMP and
        Telnet."
    ::= { neBackupRestore 1 }

neBackupRestoreState OBJECT-TYPE
    SYNTAX      INTEGER {
        noBackupAvailable (1),
        backupInProgress (2),
        backupAvailable (3),
        restoreInProgress (4),

        backupRestoreFail (5),
        backupRestoreIdle (6),
        backupRestoreCompleted (7),
        dbActivationFailed (8),
        dbActivationInProgress (9)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The status of the current NE configuration backup/restore
        operation activated by 'neBackupRestoreRequest'."
    ::= { neBackupRestore 2 }

neBackupRestoreFile OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The full local path of the network element configuration
        backup file.
        This file is generated during the Backup operation and is
        also used for the Restore operation."
    ::= { neBackupRestore 3 }

neRestoreFileBackupDate OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "The backup time of the current file to be used for Restore.
        If no backup is available, this object reports 8 zero-octets."
    ::= { neBackupRestore 4 }

-- The MIB part 'neF7AutomaticRemoteBackup' and 'neF7AutomaticBackup' provides access to regular
-- F7 network element configuration backup.

neF7AutomaticRemoteBackupSrvIp OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Remote server IP as a backup destination address."
    ::=  { neBackupRestore 5 }

neF7AutomaticRemoteBackupSrvDir OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Remote server directory."
    ::=  { neBackupRestore 6 }

neF7AutomaticRemoteBackupSrvLogin OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Remote user login."
    ::=  { neBackupRestore 7 }

neF7AutomaticRemoteBackupSrvPass OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Remote user password."
    ::=  { neBackupRestore 8 }

neF7AutomaticRemoteBackupProtocol OBJECT-TYPE
    SYNTAX      FileTransferProtocol
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Connection protocol to be used for remote backup."
    ::=  { neBackupRestore 10 }

neF7AutomaticRemoteBackupSrcIp OBJECT-TYPE
    SYNTAX      SourceIpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Source IP address to be used for remote backup."
    ::=  { neBackupRestore 11 }

neF7AutomaticRemoteBackupTimeStamp OBJECT-TYPE
    SYNTAX      F7FileTimeStamp
    MAX-ACCESS  read-write
    STATUS      deprecated
    DESCRIPTION   "Add or omit the time stamp in the backuped filename."
    ::=  { neBackupRestore 12 }

neF7AutomaticRemoteBackupCommonIpSrv OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Remote server IPv4/IPv6 as a backup destination address."
    ::=  { neBackupRestore 13 }

neF7AutomaticBackupTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NeF7AutomaticBackupEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Table releated to SCU/Remote backup."
    ::=  { neBackupRestore 20 }

neF7AutomaticBackupEntry OBJECT-TYPE
    SYNTAX      NeF7AutomaticBackupEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Entry releated to SCU/Remote backup."
    INDEX       { neF7AutomaticBackupIndex }
    ::=  { neF7AutomaticBackupTable 1 }

NeF7AutomaticBackupEntry ::=  SEQUENCE
  { neF7AutomaticBackupIndex EntityIndex,
    neF7AutomaticBackupInterval F7AutoBackupInterval,
    neF7AutomaticBackupStartDate FspDate,
    neF7AutomaticBackupStartTime FspTime,
    neF7AutomaticBackupNextDate FspDate,
    neF7AutomaticBackupRunState F7AutoBackupRunState,
    neF7AutomaticBackupTimeStamp F7FileTimeStamp }

neF7AutomaticBackupIndex OBJECT-TYPE
    SYNTAX      EntityIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION   "Index of the backup entity. May be the Backup SCU
         entity index or Backup Remote entity index."
    ::=  { neF7AutomaticBackupEntry 1 }

neF7AutomaticBackupInterval OBJECT-TYPE
    SYNTAX      F7AutoBackupInterval
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Schedule database backup interval."
    ::=  { neF7AutomaticBackupEntry 2 }

neF7AutomaticBackupStartDate OBJECT-TYPE
    SYNTAX      FspDate
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Schedule database backup start date."
    ::=  { neF7AutomaticBackupEntry 3 }

neF7AutomaticBackupStartTime OBJECT-TYPE
    SYNTAX      FspTime
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Schedule database backup start time."
    ::=  { neF7AutomaticBackupEntry 4 }

neF7AutomaticBackupNextDate OBJECT-TYPE
    SYNTAX      FspDate
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION   "Next schedule database backup date."
    ::=  { neF7AutomaticBackupEntry 5 }

neF7AutomaticBackupRunState OBJECT-TYPE
    SYNTAX      F7AutoBackupRunState
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Automatic Backup running state."
    ::=  { neF7AutomaticBackupEntry 6 }

neF7AutomaticBackupTimeStamp OBJECT-TYPE
    SYNTAX      F7FileTimeStamp
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "Add or omit the time stamp in the backuped filename."
    ::=  { neF7AutomaticBackupEntry 7 }

-- The MIB part 'neAutoBackup' provides access to regular network element
-- configuration backup.

neAutoBackup    OBJECT IDENTIFIER ::= { config 3 }

neAutoBackupConfig OBJECT-TYPE
    SYNTAX      INTEGER {
        disabled (1),
        autoBackup (2),
        autoBackupAndUpload
     (3)
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The configuration of the regular network element
        configuration Backup/Restore:

        - disabled(1):            No regular backup

        - autoBackup(2):          Regular backup to a local file
                                  is active

        - autoBackupAndUpload(3): Regular backup and upload to
                                  external FTP server is active

        The default is autoBackup(2).

        If this object is not disabled(1) all other auto-backup
        objects are read-only. I.e., all neAutoBackupServerXxx
        objects must be set before changing this object to
        autoBackupAndUpload(3)."
    ::= { neAutoBackup 1 }

neAutoBackupInterval OBJECT-TYPE
    SYNTAX      Unsigned32
    UNITS       "hours"
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The interval between two subsequent backup actions in
        hours (default: 24 hours)."
    ::= { neAutoBackup 2 }

neAutoBackupNextActionAt OBJECT-TYPE
    SYNTAX      DateAndTime
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The sliding time of the next backup action (default:
        midnight local NE time)."
    ::= { neAutoBackup 3 }

neAutoBackupServerAddress OBJECT-TYPE
    SYNTAX      IpAddress
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The IP address of the external FTP server for backup files."
    ::= { neAutoBackup 4 }

neAutoBackupServerLogin OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The login name on the external FTP server for backup files."
    ::= { neAutoBackup 5 }

neAutoBackupServerPasswd OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The password on the external FTP server for backup files.
        Read requests on this object will return a zero-length
        string."
    ::= { neAutoBackup 6 }

neAutoBackupServerDirectory OBJECT-TYPE
    SYNTAX      SnmpAdminString
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION   "The directory on the external FTP server to which the
        backup files will be uploaded. The file name will be
        generated automatically (containing NE IP addres and backup
        time)."
    ::= { neAutoBackup 7 }

sonetSectionConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SonetSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of SONET interfaces.  In the naming of
        parameters, only sonet (and not sdh) is used for simplification.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { sonetConfig 1 }

sonetSectionConfigEntry OBJECT-TYPE
    SYNTAX        SonetSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "SDH/SONET interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { sonetSectionConfigTable 1 }

SonetSectionConfigEntry ::= SEQUENCE
  {    sonetSectionConfigTimingSource SonetTimingSource,
    sonetSectionConfigSignalDegradeThreshhold Unsigned32,
    sonetSectionConfigSignalDegradePeriod Unsigned32,
    sonetSectionConfigTraceForm SonetTraceForm,
    sonetSectionConfigTraceExpected OCTET STRING,
    sonetSectionConfigTraceTransmit OCTET STRING,
    sonetSectionConfigTimMode TimMode }

sonetSectionConfigTimingSource OBJECT-TYPE
    SYNTAX        SonetTimingSource
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The SDH/SONET timing source for this interface.
        - internal: used in stand-alone, point-to-point topologies
        stand-alone (dedicated fiber operation)
        - loopTiming: used in point-to-point via SDH network and
        feeder topologies. The default is internal(1)."
    ::= { sonetSectionConfigEntry 1 }

sonetSectionConfigSignalDegradeThreshhold OBJECT-TYPE
    SYNTAX        Unsigned32 (1..100 | 4294967295)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Block-Error-Based Degradation Definition for SDH (standard integration period).
        Defined as percentage Background Block Errors (30% default) evaluated
        over a defined period (SDPER-RS)."
    ::= { sonetSectionConfigEntry 2 }

sonetSectionConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The measurement period in seconds used together with
        the sonetSectionConfigSignalDegradeThreshold based on the
        block error counting method.
        The valid range is 2..10, The default being 7."
    ::= { sonetSectionConfigEntry 3 }

sonetSectionConfigTraceForm OBJECT-TYPE
    SYNTAX        SonetTraceForm
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Byte-Length of Trace Compared to Expected"
    ::= { sonetSectionConfigEntry 4 }

sonetSectionConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..62))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected Sec/RS trace. NULL TRACE implies that no trace comparison is made."
    ::= { sonetSectionConfigEntry 5 }

sonetSectionConfigTraceTransmit OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..62))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Sec/RS Trace to be Transmitted"
    ::= { sonetSectionConfigEntry 6 }

sonetSectionConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "SONET Section  Trace Identifier Mismatch (TIM) detection/action for TIM defect."
    ::= { sonetSectionConfigEntry 7 }

sonetSectionDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SonetSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of SONET interfaces.  In the naming of
        parameters, only sonet (and not sdh) is used for simplification.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { sonetConfig 3 }

sonetSectionDataEntry OBJECT-TYPE
    SYNTAX        SonetSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "SDH/SONET interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { sonetSectionDataTable 1 }

SonetSectionDataEntry ::= SEQUENCE
  {    sonetSectionDataTraceReceived OCTET STRING }

sonetSectionDataTraceReceived OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..62))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Sec/RS Trace"
    ::= { sonetSectionDataEntry 1 }

otuSectionConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OtuSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of OTU interfaces.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { otuConfig 1 }

otuSectionConfigEntry OBJECT-TYPE
    SYNTAX        OtuSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "OTU interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { otuSectionConfigTable 1 }

OtuSectionConfigEntry ::= SEQUENCE
  {    otuSectionConfigSignalDegradeThreshold Integer32,
    otuSectionConfigSignalDegradePeriod Unsigned32,
    otuSectionConfigPayload OtnPayloadType,
    otuSectionConfigStuffing EnableState,
    otuSectionConfigTraceExpected OCTET STRING,
    otuSectionConfigTraceTransmitSapi OCTET STRING,
    otuSectionConfigTraceTransmitDapi OCTET STRING,
    otuSectionConfigTraceTransmitOpsp OCTET STRING,
    otuSectionConfigTimMode TimMode }

otuSectionConfigSignalDegradeThreshold OBJECT-TYPE
    SYNTAX        Integer32 (1..100 | -2147483648)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Threshold for OTU SM-SD alarm (threshold level 0..100%, default value 15 %).
        Ref. table 24/G.7710."
    ::= { otuSectionConfigEntry 1 }

otuSectionConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Measuring period for OTU SM-SD alarm: 2..10 sec) (bursty)
        Ref. table 24/G.7710.  Default value: 7."
    ::= { otuSectionConfigEntry 2 }

otuSectionConfigPayload OBJECT-TYPE
    SYNTAX        OtnPayloadType
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The payload of the interface (inside a transport overhead).
        Relevant e. g. for OTN cards which wrap a payload into an OTU1/2 wrapper."
    ::= { otuSectionConfigEntry 3 }

otuSectionConfigStuffing OBJECT-TYPE
    SYNTAX        EnableState
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Indicates if bit/byte stuffing is used in the transport signal."
    ::= { otuSectionConfigEntry 4 }

otuSectionConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected SAPI part of the OTU trace (15 character). NULL TRACE implies that no trace comparison is made."
    ::= { otuSectionConfigEntry 5 }

otuSectionConfigTraceTransmitSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted SAPI part of the OTU trace (15 character)"
    ::= { otuSectionConfigEntry 6 }

otuSectionConfigTraceTransmitDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted DAPI part of the OTU trace (15 character)"
    ::= { otuSectionConfigEntry 7 }

otuSectionConfigTraceTransmitOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted Operator Specific part of the OTU trace (32 character)"
    ::= { otuSectionConfigEntry 8 }

otuSectionConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "OTU Trace Identifier Mismatch (TIM) detection/action for TIM defect."
    ::= { otuSectionConfigEntry 9 }

otuSectionDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OtuSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of OTU interfaces.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { otuConfig 2 }

otuSectionDataEntry OBJECT-TYPE
    SYNTAX        OtuSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "OTU interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { otuSectionDataTable 1 }

OtuSectionDataEntry ::= SEQUENCE
  {    otuSectionDataResultingTotalBitrate Unsigned32,
    otuSectionDataTraceReceivedSapi OCTET STRING,
    otuSectionDataTraceReceivedDapi OCTET STRING,
    otuSectionDataTraceReceivedOpsp OCTET STRING }

otuSectionDataResultingTotalBitrate OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "Mbps"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "This interface bitrate is dependent on the type and the payload of the interface.
        Relevant e. g. for OTN cards which wrap a payload into an OTU1/2 wrapper."
    ::= { otuSectionDataEntry 1 }

otuSectionDataTraceReceivedSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received SAPI part of the OTU trace (15 character)"
    ::= { otuSectionDataEntry 2 }

otuSectionDataTraceReceivedDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received DAPI part of the OTU trace (15 character)"
    ::= { otuSectionDataEntry 3 }

otuSectionDataTraceReceivedOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Operator Specific part of the OTU trace (32 character)"
    ::= { otuSectionDataEntry 4 }

oduSectionConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of ODU interfaces.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { oduConfig 1 }

oduSectionConfigEntry OBJECT-TYPE
    SYNTAX        OduSectionConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduSectionConfigTable 1 }

OduSectionConfigEntry ::= SEQUENCE
  {    oduSectionConfigSignalDegradeThres Integer32,
    oduSectionConfigSignalDegradePeriod Unsigned32,
    oduSectionConfigTraceExpected OCTET STRING,
    oduSectionConfigTraceTransmitSapi OCTET STRING,
    oduSectionConfigTraceTransmitDapi OCTET STRING,
    oduSectionConfigTraceTransmitOpsp OCTET STRING,
    oduSectionConfigTimMode TimMode }

oduSectionConfigSignalDegradeThres OBJECT-TYPE
    SYNTAX        Integer32 (1..100 | -2147483648)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Threshold for ODU SM-SD alarm (threshold level 0..100%,
        default value 15 %. Ref. table 24/G.7710."
    ::= { oduSectionConfigEntry 1 }

oduSectionConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Measuring period for ODU SM-SD alarm: 2..10 sec) (bursty)
        Ref. table 24/G.7710.  Default value: 7."
    ::= { oduSectionConfigEntry 2 }

oduSectionConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected SAPI part of the ODU trace (15 character). NULL TRACE implies that no trace comparison is made."
    ::= { oduSectionConfigEntry 3 }

oduSectionConfigTraceTransmitSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted SAPI part of the ODU trace (15 character)"
    ::= { oduSectionConfigEntry 4 }

oduSectionConfigTraceTransmitDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted DAPI part of the ODU trace (15 character)"
    ::= { oduSectionConfigEntry 5 }

oduSectionConfigTraceTransmitOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted Operator Specific part of the ODU trace (32 character)"
    ::= { oduSectionConfigEntry 6 }

oduSectionConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Detection of TIM-ODU Condition can be configured"
    ::= { oduSectionConfigEntry 7 }

oduSectionDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of ODU interfaces.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { oduConfig 2 }

oduSectionDataEntry OBJECT-TYPE
    SYNTAX        OduSectionDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry
        in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduSectionDataTable 1 }

OduSectionDataEntry ::= SEQUENCE
  {    oduSectionDataTraceReceivedSapi OCTET STRING,
    oduSectionDataTraceReceivedDapi OCTET STRING,
    oduSectionDataTraceReceivedOpsp OCTET STRING }

oduSectionDataTraceReceivedSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received SAPI part of the ODU trace (15 character)"
    ::= { oduSectionDataEntry 1 }

oduSectionDataTraceReceivedDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received DAPI part of the ODU trace (15 character)"
    ::= { oduSectionDataEntry 2 }

oduSectionDataTraceReceivedOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Operator Specific part of the ODU trace (32 character)"
    ::= { oduSectionDataEntry 3 }

oduTcmAConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmAConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of ODU interfaces.
        This table extends the entries in
        the ifTable (RFC 2863)."
    ::= { oduConfig 3 }

oduTcmAConfigEntry OBJECT-TYPE
    SYNTAX        OduTcmAConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmAConfigTable 1 }

OduTcmAConfigEntry ::= SEQUENCE
  {    oduTcmAConfigSignalDegradeThreshold Integer32,
    oduTcmAConfigSignalDegradePeriod Unsigned32,
    oduTcmAConfigTcmLevel OtnTcmLevel,
    oduTcmAConfigTraceExpected OCTET STRING,
    oduTcmAConfigTraceTransmitSapi OCTET STRING,
    oduTcmAConfigTraceTransmitDapi OCTET STRING,
    oduTcmAConfigTraceTransmitOpsp OCTET STRING,
    oduTcmAConfigTimMode TimMode }

oduTcmAConfigSignalDegradeThreshold OBJECT-TYPE
    SYNTAX        Integer32 (1..100 | -2147483648)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Threshold for ODU SM-SD alarm (threshold level 0..100%, default value 15 %).
        Ref. table 24/G.7710."
    ::= { oduTcmAConfigEntry 1 }

oduTcmAConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Measuring period for ODU SM-SD alarm: 2..10 sec) (bursty)
        Ref. table 24/G.7710.  Default value: 7."
    ::= { oduTcmAConfigEntry 2 }

oduTcmAConfigTcmLevel OBJECT-TYPE
    SYNTAX        OtnTcmLevel
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation of Tandem Connection Monitoring Instance A"
    ::= { oduTcmAConfigEntry 3 }

oduTcmAConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected SAPI part of the TCMA trace (15 character). NULL TRACE-TCM implies that no trace comparison is made."
    ::= { oduTcmAConfigEntry 4 }

oduTcmAConfigTraceTransmitSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted SAPI part of the TCMA trace (15 character)"
    ::= { oduTcmAConfigEntry 5 }

oduTcmAConfigTraceTransmitDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted DAPI part of the TCMA trace (15 character)"
    ::= { oduTcmAConfigEntry 6 }

oduTcmAConfigTraceTransmitOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted Operator Specific part of the TCMA trace (32 character)"
    ::= { oduTcmAConfigEntry 7 }

oduTcmAConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "TCM_A Trace Identifier Mismatch (TIM) detection/action for TIM defect."
    ::= { oduTcmAConfigEntry 8 }

oduTcmBConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmBConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of ODU interfaces.
        This table extends the entries in the ifTable (RFC 2863)."
    ::= { oduConfig 4 }

oduTcmBConfigEntry OBJECT-TYPE
    SYNTAX        OduTcmBConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmBConfigTable 1 }

OduTcmBConfigEntry ::= SEQUENCE
  {    oduTcmBConfigSignalDegradeThreshold Integer32,
    oduTcmBConfigSignalDegradePeriod Unsigned32,
    oduTcmBConfigTcmLevel OtnTcmLevel,
    oduTcmBConfigTraceExpected OCTET STRING,
    oduTcmBConfigTraceTransmitSapi OCTET STRING,
    oduTcmBConfigTraceTransmitDapi OCTET STRING,
    oduTcmBConfigTraceTransmitOpsp OCTET STRING,
    oduTcmBConfigTimMode TimMode }

oduTcmBConfigSignalDegradeThreshold OBJECT-TYPE
    SYNTAX        Integer32 (1..100 | -2147483648)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Threshold for ODU SM-SD alarm (threshold level 0..100%, default value 15 %).
        Ref. table 24/G.7710."
    ::= { oduTcmBConfigEntry 1 }

oduTcmBConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Measuring period for ODU SM-SD alarm: 2..10 sec) (bursty)
        Ref. table 24/G.7710.  Default value: 7."
    ::= { oduTcmBConfigEntry 2 }

oduTcmBConfigTcmLevel OBJECT-TYPE
    SYNTAX        OtnTcmLevel
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation of Tandem Connection Monitoring Instance B"
    ::= { oduTcmBConfigEntry 3 }

oduTcmBConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected SAPI part of the TCMB trace (15 character). NULL TRACE-TCM implies that no trace comparison is made."
    ::= { oduTcmBConfigEntry 4 }

oduTcmBConfigTraceTransmitSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted SAPI part of the TCMB trace (15 character)"
    ::= { oduTcmBConfigEntry 5 }

oduTcmBConfigTraceTransmitDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted DAPI part of the TCMB trace (15 character)"
    ::= { oduTcmBConfigEntry 6 }

oduTcmBConfigTraceTransmitOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted Operator Specific part of the TCMB trace (32 character)"
    ::= { oduTcmBConfigEntry 7 }

oduTcmBConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "TCM_B Trace Identifier Mismatch (TIM) detection/action for TIM defect."
    ::= { oduTcmBConfigEntry 8 }

oduTcmCConfigTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmCConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the configuration of ODU interfaces.
        This table extends the entries in the ifTable (RFC 2863)."
    ::= { oduConfig 5 }

oduTcmCConfigEntry OBJECT-TYPE
    SYNTAX        OduTcmCConfigEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmCConfigTable 1 }

OduTcmCConfigEntry ::= SEQUENCE
  {    oduTcmCConfigSignalDegradeThreshold Integer32,
    oduTcmCConfigSignalDegradePeriod Unsigned32,
    oduTcmCConfigTcmLevel OtnTcmLevel,
    oduTcmCConfigTraceExpected OCTET STRING,
    oduTcmCConfigTraceTransmitSapi OCTET STRING,
    oduTcmCConfigTraceTransmitDapi OCTET STRING,
    oduTcmCConfigTraceTransmitOpsp OCTET STRING,
    oduTcmCConfigTimMode TimMode }

oduTcmCConfigSignalDegradeThreshold OBJECT-TYPE
    SYNTAX        Integer32 (1..100 | -2147483648)
    UNITS         "%"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Threshold for ODU SM-SD alarm (threshold level 0..100%, default value 15 %).
        Ref. table 24/G.7710."
    ::= { oduTcmCConfigEntry 1 }

oduTcmCConfigSignalDegradePeriod OBJECT-TYPE
    SYNTAX        Unsigned32 (2..10 | 4294967295)
    UNITS         "s"
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Measuring period for ODU SM-SD alarm: 2..10 sec) (bursty)
        Ref. table 24/G.7710.  Default value: 7."
    ::= { oduTcmCConfigEntry 2 }

oduTcmCConfigTcmLevel OBJECT-TYPE
    SYNTAX        OtnTcmLevel
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation of Tandem Connection Monitoring Instance C"
    ::= { oduTcmCConfigEntry 3 }

oduTcmCConfigTraceExpected OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Expected SAPI part of the TCMC trace (15 character). NULL TRACE-TCM implies that no trace comparison is made."
    ::= { oduTcmCConfigEntry 4 }

oduTcmCConfigTraceTransmitSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted SAPI part of the TCMC trace (15 character)"
    ::= { oduTcmCConfigEntry 5 }

oduTcmCConfigTraceTransmitDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted DAPI part of the TCMC trace (15 character)"
    ::= { oduTcmCConfigEntry 6 }

oduTcmCConfigTraceTransmitOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The transmitted Operator Specific part of the TCMC trace (32 character)"
    ::= { oduTcmCConfigEntry 7 }

oduTcmCConfigTimMode OBJECT-TYPE
    SYNTAX        TimMode
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "TCM_C Trace Identifier Mismatch (TIM) detection/action for TIM defect."
    ::= { oduTcmCConfigEntry 8 }

oduTcmADataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmADataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of ODU interfaces.
        This table extends the entries in the ifTable (RFC 2863)."
    ::= { oduConfig 6 }

oduTcmADataEntry OBJECT-TYPE
    SYNTAX        OduTcmADataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmADataTable 1 }

OduTcmADataEntry ::= SEQUENCE
  {    oduTcmADataTraceReceivedSapi OCTET STRING,
    oduTcmADataTraceReceivedDapi OCTET STRING,
    oduTcmADataTraceReceivedOpsp OCTET STRING }

oduTcmADataTraceReceivedSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received SAPI part of the TCMA trace (15 character)"
    ::= { oduTcmADataEntry 1 }

oduTcmADataTraceReceivedDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received DAPI part of the TCMA trace (15 character)"
    ::= { oduTcmADataEntry 2 }

oduTcmADataTraceReceivedOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Operator Specific part of the TCMA trace (32 character)"
    ::= { oduTcmADataEntry 3 }

oduTcmBDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmBDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of ODU interfaces.
        This table extends the entries in the ifTable (RFC 2863)."
    ::= { oduConfig 7 }

oduTcmBDataEntry OBJECT-TYPE
    SYNTAX        OduTcmBDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmBDataTable 1 }

OduTcmBDataEntry ::= SEQUENCE
  {    oduTcmBDataTraceReceivedSapi OCTET STRING,
    oduTcmBDataTraceReceivedDapi OCTET STRING,
    oduTcmBDataTraceReceivedOpsp OCTET STRING }

oduTcmBDataTraceReceivedSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received SAPI part of the TCMB trace (15 character)"
    ::= { oduTcmBDataEntry 1 }

oduTcmBDataTraceReceivedDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received DAPI part of the TCMB trace (15 character)"
    ::= { oduTcmBDataEntry 2 }

oduTcmBDataTraceReceivedOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Operator Specific part of the TCMB trace (32 character)"
    ::= { oduTcmBDataEntry 3 }

oduTcmCDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF OduTcmCDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Contains entries for the status of ODU interfaces.
        This table extends the entries in the ifTable (RFC 2863)."
    ::= { oduConfig 8 }

oduTcmCDataEntry OBJECT-TYPE
    SYNTAX        OduTcmCDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "ODU interfaces will have an entry in this table."
    INDEX       {
                  entityIndex
                }
    ::= { oduTcmCDataTable 1 }

OduTcmCDataEntry ::= SEQUENCE
  {    oduTcmCDataTraceReceivedSapi OCTET STRING,
    oduTcmCDataTraceReceivedDapi OCTET STRING,
    oduTcmCDataTraceReceivedOpsp OCTET STRING }

oduTcmCDataTraceReceivedSapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received SAPI part of the TCMC trace (15 character)"
    ::= { oduTcmCDataEntry 1 }

oduTcmCDataTraceReceivedDapi OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..15))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received DAPI part of the TCMC trace (15 character)"
    ::= { oduTcmCDataEntry 2 }

oduTcmCDataTraceReceivedOpsp OBJECT-TYPE
    SYNTAX        OCTET STRING (SIZE(0..32))
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The received Operator Specific part of the TCMC trace (32 character)"
    ::= { oduTcmCDataEntry 3 }

inventoryTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF InventoryEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "This table lists all physically present (equipped) equipment in the NE"
    ::= { inventoryMib 1 }

inventoryEntry OBJECT-TYPE
    SYNTAX        InventoryEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  entityIndex
                }
    ::= { inventoryTable 1 }

InventoryEntry ::= SEQUENCE
  {    inventoryUnitName SnmpAdminString,
    inventoryFirmwarePackageRev SnmpAdminString,
    inventoryHardwareRev SnmpAdminString,
    inventorySoftwareRev SnmpAdminString,
    inventoryFpgaRev SnmpAdminString,
    inventorySerialNum SnmpAdminString,
    inventoryPartnumber SnmpAdminString,
    inventoryCleiCode SnmpAdminString,
    inventoryVendorId SnmpAdminString,
    inventoryType EntityType,
    inventoryUniversalSerialIdent SnmpAdminString,
    inventoryMacAddress MacAddress,
    inventoryGradeInventory Grade,
    inventoryCfSerialNum SnmpAdminString,
    inventoryCfModel SnmpAdminString }

inventoryUnitName OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "ADVA Official Equipment Name"
    ::= { inventoryEntry 1 }

inventoryFirmwarePackageRev OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware Package Revision Number"
    ::= { inventoryEntry 2 }

inventoryHardwareRev OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Equipment Revision Number"
    ::= { inventoryEntry 3 }

inventorySoftwareRev OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The active Application software version on the unit/module."
    ::= { inventoryEntry 4 }

inventoryFpgaRev OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The active FPGA version on the unit/module."
    ::= { inventoryEntry 5 }

inventorySerialNum OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Equipment Serial Number"
    ::= { inventoryEntry 6 }

inventoryPartnumber OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "ADVA Part Number"
    ::= { inventoryEntry 7 }

inventoryCleiCode OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Common Language Equipment Identifier"
    ::= { inventoryEntry 8 }

inventoryVendorId OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "OEM Vendor Code"
    ::= { inventoryEntry 9 }

inventoryType OBJECT-TYPE
    SYNTAX        EntityType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Type of a physical entity: shelf/module/plug"
    ::= { inventoryEntry 10 }

inventoryUniversalSerialIdent OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Unique Serial Identifier"
    ::= { inventoryEntry 11 }

inventoryMacAddress OBJECT-TYPE
    SYNTAX        MacAddress
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Ethernet MAC address"
    ::= { inventoryEntry 12 }

inventoryGradeInventory OBJECT-TYPE
    SYNTAX        Grade
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Used to distinguish between NCU capabilities (range of supported services or applications)"
    ::= { inventoryEntry 13 }

inventoryCfSerialNum OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Compact Flash Serial Number"
    ::= { inventoryEntry 14 }

inventoryCfModel OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Compact Flash Model Number"
    ::= { inventoryEntry 15 }

entityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF EntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 2 }

entityEntry OBJECT-TYPE
    SYNTAX        EntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Entry for all existing addresses."
    INDEX       {
                  entityIndex
                }
    ::= { entityTable 1 }

EntityEntry ::= SEQUENCE
  {    entityIndex EntityIndex,
    entityContainedIn EntityIndex,
    entityClass EntityClass,
    entityClassInstanceNumber Integer32,
    entityIndexAid SnmpAdminString,
    entityType EntityType,
    entityAssignmentState AssignmentState,
    entityEquipmentState EquipmentState }

entityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { entityEntry 1 }

entityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { entityEntry 2 }

entityClass OBJECT-TYPE
    SYNTAX        EntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { entityEntry 3 }

entityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { entityEntry 4 }

entityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { entityEntry 5 }

entityType OBJECT-TYPE
    SYNTAX        EntityType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The type of FspR7 entity.  Please refer to EntityType for further deails."
    ::= { entityEntry 6 }

entityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { entityEntry 7 }

entityEquipmentState OBJECT-TYPE
    SYNTAX        EquipmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EquipmentState."
    ::= { entityEntry 8 }

containsTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Gives the index of the subtending
        entity in the containment."
    ::= { inventoryMib 3 }

containsEntry OBJECT-TYPE
    SYNTAX        ContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  entityIndex,
                  containsIndex
                }
    ::= { containsTable 1 }

ContainsEntry ::= SEQUENCE
  {    containsIndex EntityIndex }

containsIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { containsEntry 1 }

controlPlaneWdmEntityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneWdmEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 4 }

controlPlaneWdmEntityEntry OBJECT-TYPE
    SYNTAX        ControlPlaneWdmEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Entry for all existing addresses."
    INDEX       {
                  controlPlaneWdmEntityIndex
                }
    ::= { controlPlaneWdmEntityTable 1 }

ControlPlaneWdmEntityEntry ::= SEQUENCE
  {    controlPlaneWdmEntityIndex EntityIndex,
    controlPlaneWdmEntityContainedIn EntityIndex,
    controlPlaneWdmEntityClass CpWdmEntityClass,
    controlPlaneWdmEntityClassInstanceNumber Integer32,
    controlPlaneWdmEntityIndexAid SnmpAdminString,
    controlPlaneWdmEntityAssignmentState AssignmentState }

controlPlaneWdmEntityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { controlPlaneWdmEntityEntry 1 }

controlPlaneWdmEntityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { controlPlaneWdmEntityEntry 2 }

controlPlaneWdmEntityClass OBJECT-TYPE
    SYNTAX        CpWdmEntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { controlPlaneWdmEntityEntry 3 }

controlPlaneWdmEntityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { controlPlaneWdmEntityEntry 4 }

controlPlaneWdmEntityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { controlPlaneWdmEntityEntry 5 }

controlPlaneWdmEntityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { controlPlaneWdmEntityEntry 6 }

controlPlaneWdmContainsTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneWdmContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Gives the index of the subtending
        entity in the containment."
    ::= { inventoryMib 5 }

controlPlaneWdmContainsEntry OBJECT-TYPE
    SYNTAX        ControlPlaneWdmContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  controlPlaneWdmEntityIndex,
                  controlPlaneWdmContainsIndex
                }
    ::= { controlPlaneWdmContainsTable 1 }

ControlPlaneWdmContainsEntry ::= SEQUENCE
  {    controlPlaneWdmContainsIndex EntityIndex }

controlPlaneWdmContainsIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { controlPlaneWdmContainsEntry 1 }

controlPlaneEthEntityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneEthEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 6 }

controlPlaneEthEntityEntry OBJECT-TYPE
    SYNTAX        ControlPlaneEthEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Entry for all existing addresses."
    INDEX       {
                  controlPlaneEthEntityIndex
                }
    ::= { controlPlaneEthEntityTable 1 }

ControlPlaneEthEntityEntry ::= SEQUENCE
  {    controlPlaneEthEntityIndex EntityIndex,
    controlPlaneEthEntityContainedIn EntityIndex,
    controlPlaneEthEntityClass CpWdmEntityClass,
    controlPlaneEthEntityClassInstanceNumber Integer32,
    controlPlaneEthEntityIndexAid SnmpAdminString,
    controlPlaneEthEntityAssignmentState AssignmentState }

controlPlaneEthEntityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { controlPlaneEthEntityEntry 1 }

controlPlaneEthEntityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { controlPlaneEthEntityEntry 2 }

controlPlaneEthEntityClass OBJECT-TYPE
    SYNTAX        CpWdmEntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { controlPlaneEthEntityEntry 3 }

controlPlaneEthEntityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { controlPlaneEthEntityEntry 4 }

controlPlaneEthEntityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { controlPlaneEthEntityEntry 5 }

controlPlaneEthEntityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { controlPlaneEthEntityEntry 6 }

controlPlaneEthContainsTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneEthContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Gives the index of the subtending
        entity in the containment."
    ::= { inventoryMib 7 }

controlPlaneEthContainsEntry OBJECT-TYPE
    SYNTAX        ControlPlaneEthContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  controlPlaneEthEntityIndex,
                  controlPlaneEthContainsIndex
                }
    ::= { controlPlaneEthContainsTable 1 }

ControlPlaneEthContainsEntry ::= SEQUENCE
  {    controlPlaneEthContainsIndex EntityIndex }

controlPlaneEthContainsIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { controlPlaneEthContainsEntry 1 }

ptpEntityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF PtpEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for PTP existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 10 }

ptpEntityEntry OBJECT-TYPE
    SYNTAX        PtpEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  ptpEntityIndex
                }
    ::= { ptpEntityTable 1 }

PtpEntityEntry ::= SEQUENCE
  {    ptpEntityIndex EntityIndex,
    ptpEntityContainedIn EntityIndex,
    ptpEntityClass EntityClass,
    ptpEntityClassInstanceNumber Integer32,
    ptpEntityIndexAid SnmpAdminString,
    ptpEntityType EntityType,
    ptpEntityAssignmentState AssignmentState,
    ptpEntityEquipmentState EquipmentState,
    ptpEntityReferencedTo EntityIndex }

ptpEntityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { ptpEntityEntry 1 }

ptpEntityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { ptpEntityEntry 2 }

ptpEntityClass OBJECT-TYPE
    SYNTAX        EntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { ptpEntityEntry 3 }

ptpEntityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { ptpEntityEntry 4 }

ptpEntityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { ptpEntityEntry 5 }

ptpEntityType OBJECT-TYPE
    SYNTAX        EntityType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The type of FspR7 entity.  Please refer to EntityType for further deails."
    ::= { ptpEntityEntry 6 }

ptpEntityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { ptpEntityEntry 7 }

ptpEntityEquipmentState OBJECT-TYPE
    SYNTAX        EquipmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EquipmentState."
    ::= { ptpEntityEntry 8 }

ptpEntityReferencedTo OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { ptpEntityEntry 9 }

vtpEntityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF VtpEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for VTP existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 11 }

vtpEntityEntry OBJECT-TYPE
    SYNTAX        VtpEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  vtpEntityIndex
                }
    ::= { vtpEntityTable 1 }

VtpEntityEntry ::= SEQUENCE
  {    vtpEntityIndex EntityIndex,
    vtpEntityContainedIn EntityIndex,
    vtpEntityClass EntityClass,
    vtpEntityClassInstanceNumber Integer32,
    vtpEntityIndexAid SnmpAdminString,
    vtpEntityType EntityType,
    vtpEntityAssignmentState AssignmentState,
    vtpEntityEquipmentState EquipmentState,
    vtpEntityReferencedTo EntityIndex }

vtpEntityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { vtpEntityEntry 1 }

vtpEntityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { vtpEntityEntry 2 }

vtpEntityClass OBJECT-TYPE
    SYNTAX        EntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { vtpEntityEntry 3 }

vtpEntityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { vtpEntityEntry 4 }

vtpEntityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { vtpEntityEntry 5 }

vtpEntityType OBJECT-TYPE
    SYNTAX        EntityType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The type of FspR7 entity.  Please refer to EntityType for further deails."
    ::= { vtpEntityEntry 6 }

vtpEntityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { vtpEntityEntry 7 }

vtpEntityEquipmentState OBJECT-TYPE
    SYNTAX        EquipmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EquipmentState."
    ::= { vtpEntityEntry 8 }

vtpEntityReferencedTo OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { vtpEntityEntry 9 }

controlPlaneOtnEntityTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneOtnEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Entities in this table are either
        provisioned, equipped, both of these or neither of these. Containers
        are always present in the table as long as their supporting entity
        is provisioned or equipped."
    ::= { inventoryMib 12 }

controlPlaneOtnEntityEntry OBJECT-TYPE
    SYNTAX        ControlPlaneOtnEntityEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Entry for all existing addresses."
    INDEX       {
                  controlPlaneOtnEntityIndex
                }
    ::= { controlPlaneOtnEntityTable 1 }

ControlPlaneOtnEntityEntry ::= SEQUENCE
  {    controlPlaneOtnEntityIndex EntityIndex,
    controlPlaneOtnEntityContainedIn EntityIndex,
    controlPlaneOtnEntityClass CpWdmEntityClass,
    controlPlaneOtnEntityClassInstanceNumber Integer32,
    controlPlaneOtnEntityIndexAid SnmpAdminString,
    controlPlaneOtnEntityAssignmentState AssignmentState }

controlPlaneOtnEntityIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "Existing adress index"
    ::= { controlPlaneOtnEntityEntry 1 }

controlPlaneOtnEntityContainedIn OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Contained in"
    ::= { controlPlaneOtnEntityEntry 2 }

controlPlaneOtnEntityClass OBJECT-TYPE
    SYNTAX        CpWdmEntityClass
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See EntityClass"
    ::= { controlPlaneOtnEntityEntry 3 }

controlPlaneOtnEntityClassInstanceNumber OBJECT-TYPE
    SYNTAX        Integer32 (1..32000 | -2147483648)
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The class instance number of this entity within the module(card)"
    ::= { controlPlaneOtnEntityEntry 4 }

controlPlaneOtnEntityIndexAid OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Name"
    ::= { controlPlaneOtnEntityEntry 5 }

controlPlaneOtnEntityAssignmentState OBJECT-TYPE
    SYNTAX        AssignmentState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "See AssignmentState."
    ::= { controlPlaneOtnEntityEntry 6 }

controlPlaneOtnContainsTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ControlPlaneOtnContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Table for all existing addresses. Gives the index of the subtending
        entity in the containment."
    ::= { inventoryMib 13 }

controlPlaneOtnContainsEntry OBJECT-TYPE
    SYNTAX        ControlPlaneOtnContainsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  controlPlaneOtnEntityIndex,
                  controlPlaneOtnContainsIndex
                }
    ::= { controlPlaneOtnContainsTable 1 }

ControlPlaneOtnContainsEntry ::= SEQUENCE
  {    controlPlaneOtnContainsIndex EntityIndex }

controlPlaneOtnContainsIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   ""
    ::= { controlPlaneOtnContainsEntry 1 }

swDbFileTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SwDbFileEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { swAdmin 1 }

swDbFileEntry OBJECT-TYPE
    SYNTAX        SwDbFileEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  swDbFileIndex
                }
    ::= { swDbFileTable 1 }

SwDbFileEntry ::= SEQUENCE
  {    swDbFileIndex EntityIndex,
    swDbFileArea FileArea,
    swDbFileType FileType,
    swDbFileSize Unsigned32,
    swDbFileCreationTime DateAndTime,
    swDbFileVersion SnmpAdminString,
    swDbFileGrade Grade,
    swDbFileComment SnmpAdminString,
    swDbFileFileName SnmpAdminString,
    swDbFileRowStatus RowStatus,
    swDbFilePgmType PgmType }

swDbFileIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Index"
    ::= { swDbFileEntry 1 }

swDbFileArea OBJECT-TYPE
    SYNTAX        FileArea
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Type of Area"
    ::= { swDbFileEntry 2 }

swDbFileType OBJECT-TYPE
    SYNTAX        FileType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Type of File"
    ::= { swDbFileEntry 3 }

swDbFileSize OBJECT-TYPE
    SYNTAX        Unsigned32
    UNITS         "Byte"
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Size of Memory = USED + AVAILABLE"
    ::= { swDbFileEntry 4 }

swDbFileCreationTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Creation Time"
    ::= { swDbFileEntry 5 }

swDbFileVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "General Release Issue Number of software in the ACT or STBY memory location. Format: XX-YY-Z"
    ::= { swDbFileEntry 6 }

swDbFileGrade OBJECT-TYPE
    SYNTAX        Grade
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Used to distinguish between NCU capabilities (range of supported services or applications)"
    ::= { swDbFileEntry 7 }

swDbFileComment OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Comment of PGM or DBS files."
    ::= { swDbFileEntry 8 }

swDbFileFileName OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "File Name"
    ::= { swDbFileEntry 9 }

swDbFileRowStatus OBJECT-TYPE
    SYNTAX        RowStatus
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "RowStatus"
    ::= { swDbFileEntry 10 }

swDbFilePgmType OBJECT-TYPE
    SYNTAX        PgmType
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Program Type"
    ::= { swDbFileEntry 11 }

fwDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF FwDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { swAdmin 2 }

fwDataEntry OBJECT-TYPE
    SYNTAX        FwDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  entityIndex
                }
    ::= { fwDataTable 1 }

FwDataEntry ::= SEQUENCE
  {    fwDataNewVersion SnmpAdminString,
    fwDataStandbyVersion SnmpAdminString,
    fwDataServiceImpairment ServiceAffecting,
    fwDataBootStatus BootState,
    fwDataFirmwarePackageRev SnmpAdminString,
    fwDataStandbyServiceImpairment StandbyServiceAffecting,
    fwDataFirmwareAvailable NoYesNA,
    fwDataFirmwareApproved NoYesNA,
    fwDataFirmwarePackageRevBackup SnmpAdminString,
    fwDataReadyForActivation YesNoNA,
    fwDataActivationReadyOnStandby YesNoNA,
    fwDataProtectionPart FspR7YesNo,
    fwDataForm ModuleForm,
    fwDataStandbyFirmwareAvailable NoYesNA }

fwDataNewVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "New Firmware Package Revision Number of file which resides on ACT PGM partition."
    ::= { fwDataEntry 1 }

fwDataStandbyVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "New Firmware Package Revision Number of file which resides on STBY PGM partition."
    ::= { fwDataEntry 2 }

fwDataServiceImpairment OBJECT-TYPE
    SYNTAX        ServiceAffecting
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Service Affecting Change during FWP upgrade and Restart operation"
    ::= { fwDataEntry 3 }

fwDataBootStatus OBJECT-TYPE
    SYNTAX        BootState
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Boot State. Every state change (excluding IDLE) does generate a corresponding transient condition."
    ::= { fwDataEntry 4 }

fwDataFirmwarePackageRev OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Active Firmware Package Revision Number of module software."
    ::= { fwDataEntry 5 }

fwDataStandbyServiceImpairment OBJECT-TYPE
    SYNTAX        StandbyServiceAffecting
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Service Affecting Change during FWP upgrade after activation of STBY PGM partition."
    ::= { fwDataEntry 6 }

fwDataFirmwareAvailable OBJECT-TYPE
    SYNTAX        NoYesNA
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware package for module available for ACT-PGM"
    ::= { fwDataEntry 7 }

fwDataFirmwareApproved OBJECT-TYPE
    SYNTAX        NoYesNA
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware package update for Encryption module is approved by Crypto Officer"
    ::= { fwDataEntry 8 }

fwDataFirmwarePackageRevBackup OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Standby Firmware Package Revision Number, Format XX.YY.ZZ (X,Y,Z are decimal characters, leading 0 are omitted)."
    ::= { fwDataEntry 9 }

fwDataReadyForActivation OBJECT-TYPE
    SYNTAX        YesNoNA
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "FWPREV-STBY == FWPREV-SYS-ACT"
    ::= { fwDataEntry 10 }

fwDataActivationReadyOnStandby OBJECT-TYPE
    SYNTAX        YesNoNA
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "FWPREV-STBY == FWPREV-SYS-STBY"
    ::= { fwDataEntry 11 }

fwDataProtectionPart OBJECT-TYPE
    SYNTAX        FspR7YesNo
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Module is active part of Channel Card Protection Group."
    ::= { fwDataEntry 12 }

fwDataForm OBJECT-TYPE
    SYNTAX        ModuleForm
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Form of module"
    ::= { fwDataEntry 13 }

fwDataStandbyFirmwareAvailable OBJECT-TYPE
    SYNTAX        NoYesNA
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware package for module available for STBY-PGM"
    ::= { fwDataEntry 14 }

coldRestartCapTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF ColdRestartCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { swAdmin 3 }

coldRestartCapEntry OBJECT-TYPE
    SYNTAX        ColdRestartCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  entityIndex
                }
    ::= { coldRestartCapTable 1 }

ColdRestartCapEntry ::= SEQUENCE
  {    coldRestartCapServiceAffectingCap ServiceAffectingCaps }

coldRestartCapServiceAffectingCap OBJECT-TYPE
    SYNTAX        ServiceAffectingCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Service Affecting Change during FWP upgrade and Restart operation"
    ::= { coldRestartCapEntry 1 }

eqpFwUpgradeRequest OBJECT-TYPE
    SYNTAX        CommandEqpt
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Update, Install and Reboot commands."
    ::= { swAdmin 10 }

eqpFwServiceImpairment OBJECT-TYPE
    SYNTAX        ServiceAffecting
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Service Affecting Change during FWP upgrade and Restart operation"
    ::= { swAdmin 11 }

eqpFwNextEqpForUpdate OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The valid address of physically available Equipment part."
    ::= { swAdmin 12 }

eqpFwEqpType OBJECT-TYPE
    SYNTAX        FspR7EquipmentType
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The TYPE of Equipment and the MODE setting determine uniquely the number and allowed TYPE's of the provisionable dependent entities (plugs, interfaces, modules)"
    ::= { swAdmin 13 }

eqpFwNcuServerBusy OBJECT-TYPE
    SYNTAX        FspR7FalseTrue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "NCU SW download busy"
    ::= { swAdmin 14 }

eqpFwEqpServerBusy OBJECT-TYPE
    SYNTAX        FspR7FalseTrue
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware package download busy"
    ::= { swAdmin 15 }

updateEqpt OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of equipment which have to be updated"
    ::= { swAdmin 16 }

installedEqpt OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of equipment is already installed"
    ::= { swAdmin 17 }

selectedFile OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "File Name"
    ::= { swAdmin 18 }

ncuActivationDate OBJECT-TYPE
    SYNTAX        FspR7Date
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation Date in local time. Format: YY-MM-DD"
    ::= { swAdmin 19 }

ncuActivationTime OBJECT-TYPE
    SYNTAX        FspR7Time
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation Time in local time. Format HH-MM-SS"
    ::= { swAdmin 20 }

ncuScheduledActivation OBJECT-TYPE
    SYNTAX        NcuAutoActivation
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Enable scheduled activation of the standby PGM partition."
    ::= { swAdmin 21 }

ncuScheduledDbRestore OBJECT-TYPE
    SYNTAX        RestoreActivation
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Shows whether scheduled activtion will be a database restore or a new software activation"
    ::= { swAdmin 22 }

encryptionFwpFile OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The name FWP for encryption capable modules."
    ::= { swAdmin 23 }

clearRdiskRequest OBJECT-TYPE
    SYNTAX            INTEGER
        {
            undefined(0),
            active(1),
            inactive(2)
        }

    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "This object initiate RDISK clearance."
    ::= { swAdmin 24 }

ncuActivationDateUtc OBJECT-TYPE
    SYNTAX        FspR7Date
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation Date Format: YY-MM-DD"
    ::= { swAdmin 25 }

ncuActivationTimeUtc OBJECT-TYPE
    SYNTAX        FspR7Time
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Activation Time Format: HH-MM-SS"
    ::= { swAdmin 26 }

neBackupEncryption OBJECT-TYPE
    SYNTAX        EnableState
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Allows the database backup file to be encrypted with a user specified password."
    ::= { swAdmin 38 }

neBackupPassword OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Secret, case-sensitive password to for encryption"
    ::= { swAdmin 39 }

neF7AutomaticRemoteBackupEncryption OBJECT-TYPE
    SYNTAX        EnableState
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Allows the database backup file to be encrypted with a user specified password."
    ::= { swAdmin 40 }

neF7AutomaticRemoteBackupPassword OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Secret, case-sensitive password to for encryption"
    ::= { swAdmin 41 }

neBackupUsers OBJECT-TYPE
    SYNTAX        FspR7UsersDb
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Specifies how user accounts are handled for database operations"
    ::= { swAdmin 42 }

neInitialConnectionMode OBJECT-TYPE
    SYNTAX        FspR7EnableDisable
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "NCU C1 Auto Connect/DHCP Mode will offer DHCP leases to the user's device."
    ::= { swAdmin 43 }

neF7AutomaticRemoteBackupUsers OBJECT-TYPE
    SYNTAX        FspR7UsersDb
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Specifies how user accounts are handled for database operations"
    ::= { swAdmin 44 }

neRestoreConfig OBJECT-TYPE
    SYNTAX        RestoreActivation
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Shows whether the last activation was(will be) a database restore or a new software activation"
    ::= { dbAdmin 1 }

swDbDataTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SwDbDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { dbAdmin 2 }

swDbDataEntry OBJECT-TYPE
    SYNTAX        SwDbDataEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  swDbDataIndex
                }
    ::= { swDbDataTable 1 }

SwDbDataEntry ::= SEQUENCE
  {    swDbDataIndex EntityIndex,
    swDbDataArea FileArea,
    swDbDataProgramVersion SnmpAdminString,
    swDbDataDatabaseVersion SnmpAdminString,
    swDbDataActivationTime DateAndTime,
    swDbDataRestoreConfig RestoreActivation,
    swDbDataFirmwareSetVersion SnmpAdminString,
    swDbDataNcuSoftwareVersion SnmpAdminString,
    swDbDataStandbyPartitionStatus PartitionStatus,
    swDbDataNumEqpt Unsigned32,
    swDbDataNumLegacyEqpt Unsigned32,
    swDbDataNumNativeSaUpdate Unsigned32,
    swDbDataNumNativeNsaUpdate Unsigned32,
    swDbDataNumLegacyUpdate Unsigned32,
    swDbDataNumSaNotReady Unsigned32,
    swDbDataNumNsaNotReady Unsigned32 }

swDbDataIndex OBJECT-TYPE
    SYNTAX        EntityIndex
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Index"
    ::= { swDbDataEntry 1 }

swDbDataArea OBJECT-TYPE
    SYNTAX        FileArea
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Type of Area"
    ::= { swDbDataEntry 2 }

swDbDataProgramVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "General Release Issue Number of software in the ACT or STBY memory location. Format: XX-YY-Z"
    ::= { swDbDataEntry 3 }

swDbDataDatabaseVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "General Release Issue Number of Database in the ACT or STBY memory location. Typically this will be the same as the GISSUE."
    ::= { swDbDataEntry 4 }

swDbDataActivationTime OBJECT-TYPE
    SYNTAX        DateAndTime
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Activation Time"
    ::= { swDbDataEntry 5 }

swDbDataRestoreConfig OBJECT-TYPE
    SYNTAX        RestoreActivation
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Shows whether the last activation was(will be) a database restore or a new software activation"
    ::= { swDbDataEntry 6 }

swDbDataFirmwareSetVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Firmware Package Set Version"
    ::= { swDbDataEntry 7 }

swDbDataNcuSoftwareVersion OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "NCU Software Version ACT or STBY memory location. Format: XX-YY-Z"
    ::= { swDbDataEntry 8 }

swDbDataStandbyPartitionStatus OBJECT-TYPE
    SYNTAX        PartitionStatus
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Partition State"
    ::= { swDbDataEntry 9 }

swDbDataNumEqpt OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of all provisioned and equipped equipment in system"
    ::= { swDbDataEntry 10 }

swDbDataNumLegacyEqpt OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of all legacy provisioned and equipped modules in system,"
    ::= { swDbDataEntry 11 }

swDbDataNumNativeSaUpdate OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of all native modules which have to be updated (SA), both with already properly installed pak on standby image and those which need installation."
    ::= { swDbDataEntry 12 }

swDbDataNumNativeNsaUpdate OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of all modules which have to be updated (NSA),both with already properly installed pak on standby image and those which need installation."
    ::= { swDbDataEntry 13 }

swDbDataNumLegacyUpdate OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of all legacy modules which have to be updated."
    ::= { swDbDataEntry 14 }

swDbDataNumSaNotReady OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of modules which can be updated with a service affecting (SA) firmware package."
    ::= { swDbDataEntry 15 }

swDbDataNumNsaNotReady OBJECT-TYPE
    SYNTAX        Unsigned32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Number of modules which can be updated with a non-service affecting (NSA) firmware package."
    ::= { swDbDataEntry 16 }

swDbDataCapTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SwDbDataCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { dbAdmin 3 }

swDbDataCapEntry OBJECT-TYPE
    SYNTAX        SwDbDataCapEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  swDbDataCapUpgradeRequest
                }
    ::= { swDbDataCapTable 1 }

SwDbDataCapEntry ::= SEQUENCE
  {    swDbDataCapUpgradeRequest INTEGER,
    swDbDataCapRestoreConfig RestoreActivationCaps }

swDbDataCapUpgradeRequest OBJECT-TYPE
    SYNTAX            INTEGER
        {
            undefined(0),
            none(1),
            download(2),
            install(3),
            activate(4),
            revertToPrevious(5),
            reboot(6),
            downloadInstallActivateReboot(7),
            installActivateReboot(8),
            revertToPreviousReboot(9),
            activateAlp(10),
            activateDefaultAlp(11),
            upload(12),
            autoDownloadInstall(13),
            autoInstall(14),
            fwpInstall(15),
            fwpDownloadInstall(16),
            downloadCf(17),
            uploadCf(18),
            installCf(19),
            autoInstallCf(20),
            uploadPa(21),
            activateWithFwp(22),
            forceReboot(23),
            stbyFwpInstall(24)
        }

    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Index value is a requested upgrade type from neSwUpgradeRequest object,
        where following values are applicable:
        - install(3)
        - activate(4)
        - reboot(6)
        - activateAlp(10)
        - activateDefaultAlp(11)"
    ::= { swDbDataCapEntry 1 }

swDbDataCapRestoreConfig OBJECT-TYPE
    SYNTAX        RestoreActivationCaps
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Shows whether the last activation was(will be) a database restore or a new software activation"
    ::= { swDbDataCapEntry 2 }

swDbDataDefaultsTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SwDbDataDefaultsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { dbAdmin 4 }

swDbDataDefaultsEntry OBJECT-TYPE
    SYNTAX        SwDbDataDefaultsEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  swDbDataDefaultsUpgradeRequest
                }
    ::= { swDbDataDefaultsTable 1 }

SwDbDataDefaultsEntry ::= SEQUENCE
  {    swDbDataDefaultsUpgradeRequest INTEGER,
    swDbDataDefaultsRestoreConfig RestoreActivation }

swDbDataDefaultsUpgradeRequest OBJECT-TYPE
    SYNTAX            INTEGER
        {
            undefined(0),
            none(1),
            download(2),
            install(3),
            activate(4),
            revertToPrevious(5),
            reboot(6),
            downloadInstallActivateReboot(7),
            installActivateReboot(8),
            revertToPreviousReboot(9),
            activateAlp(10),
            activateDefaultAlp(11),
            upload(12),
            autoDownloadInstall(13),
            autoInstall(14),
            fwpInstall(15),
            fwpDownloadInstall(16),
            downloadCf(17),
            uploadCf(18),
            installCf(19),
            autoInstallCf(20),
            uploadPa(21),
            activateWithFwp(22),
            forceReboot(23),
            stbyFwpInstall(24)
        }

    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "Index value is a requested upgrade type from neSwUpgradeRequest object,
        where following values are applicable:
        - install(3)
        - activate(4)
        - reboot(6)
        - activateAlp(10)
        - activateDefaultAlp(11)"
    ::= { swDbDataDefaultsEntry 1 }

swDbDataDefaultsRestoreConfig OBJECT-TYPE
    SYNTAX        RestoreActivation
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "Shows whether the last activation was(will be) a database restore or a new software activation"
    ::= { swDbDataDefaultsEntry 2 }

snmpServerPort OBJECT-TYPE
    SYNTAX        Integer32
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The TCP or UDP port on which a server is listening"
    ::= { snmpAgent 2 }

snmpProxyServerAdminState OBJECT-TYPE
    SYNTAX        FspR7AdminStateSnmpProxy
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Administrative State is displayed in the GUI and Craft. Transition to Unassigend requires the entity to be deleted."
    ::= { snmpAgent 3 }

snmpProxyServerPort OBJECT-TYPE
    SYNTAX        Integer32
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The TCP or UDP port on which a server is listening"
    ::= { snmpAgent 4 }

snmpProxyServerSynchroState OBJECT-TYPE
    SYNTAX        SnmpProxySynchronizationState
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "This parameter is used to synchronize proxy table on GNE with destination NE's
        availability."
    ::= { snmpAgent 5 }

snmpProxyServerSynchroStage OBJECT-TYPE
    SYNTAX        SnmpProxySynchronizationStage
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   "This parameter is used to indicate stage of synchronization process."
    ::= { snmpAgent 6 }

snmpProxyEntrySingleTargetOutTable OBJECT-TYPE
    SYNTAX        SEQUENCE OF SnmpProxyEntrySingleTargetOutEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    ::= { snmpAgent 10 }

snmpProxyEntrySingleTargetOutEntry OBJECT-TYPE
    SYNTAX        SnmpProxyEntrySingleTargetOutEntry
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   ""
    INDEX       {
                  snmpProxyEntrySingleTargetOutAddress,
                  snmpProxyEntrySingleTargetOutPort
                }
    ::= { snmpProxyEntrySingleTargetOutTable 1 }

SnmpProxyEntrySingleTargetOutEntry ::= SEQUENCE
  {    snmpProxyEntrySingleTargetOutAddress IpAddress,
    snmpProxyEntrySingleTargetOutPort Unsigned32,
    snmpProxyEntrySingleTargetOutNodeAgentStatus DestinationNodeOrAgentState,
    snmpProxyEntrySingleTargetOutContext SnmpAdminString,
    snmpProxyEntrySingleTargetOutRowStatus RowStatus,
    snmpProxyEntrySingleTargetOutAdminState FspR7AdminStateSnmpProxy,
    snmpProxyEntrySingleTargetOutUserName SnmpAdminString }

snmpProxyEntrySingleTargetOutAddress OBJECT-TYPE
    SYNTAX        IpAddress
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "IP Address assigned to LAN IP Interface"
    ::= { snmpProxyEntrySingleTargetOutEntry 1 }

snmpProxyEntrySingleTargetOutPort OBJECT-TYPE
    SYNTAX        Unsigned32 (1..65535)
    MAX-ACCESS    not-accessible
    STATUS        current
    DESCRIPTION   "The destination port"
    ::= { snmpProxyEntrySingleTargetOutEntry 2 }

snmpProxyEntrySingleTargetOutNodeAgentStatus OBJECT-TYPE
    SYNTAX        DestinationNodeOrAgentState
    MAX-ACCESS    accessible-for-notify
    STATUS        current
    DESCRIPTION   ""
    ::= { snmpProxyEntrySingleTargetOutEntry 3 }

snmpProxyEntrySingleTargetOutContext OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-only
    STATUS        current
    DESCRIPTION   "The contextName used in SNMP messages to an SNMP Proxy Forwarder to indicate for which SNMP Proxy Client the SNMP messages is meant"
    ::= { snmpProxyEntrySingleTargetOutEntry 4 }

snmpProxyEntrySingleTargetOutRowStatus OBJECT-TYPE
    SYNTAX        RowStatus
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "RowStatus"
    ::= { snmpProxyEntrySingleTargetOutEntry 5 }

snmpProxyEntrySingleTargetOutAdminState OBJECT-TYPE
    SYNTAX        FspR7AdminStateSnmpProxy
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "Administrative State is displayed in the GUI and Craft. Transition to Unassigend requires the entity to be deleted."
    ::= { snmpProxyEntrySingleTargetOutEntry 6 }

snmpProxyEntrySingleTargetOutUserName OBJECT-TYPE
    SYNTAX        SnmpAdminString
    MAX-ACCESS    read-write
    STATUS        current
    DESCRIPTION   "The name string for user authentication purposes"
    ::= { snmpProxyEntrySingleTargetOutEntry 7 }


END