summaryrefslogtreecommitdiff
path: root/MIBS/siae/SIAE-RADIO-SYSTEM-MIB
blob: 543785ee30fa45bb64fedea0b2de7d1b1c718092 (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
-- ----------------------------------------------------------------------------
--
--  SIAE MICROELETTRONICA s.p.a.
--                 
--  Via Michelangelo Buonarroti, 21
--  20093 - Cologno Monzese
--  Milano 
--  ITALY
--
-- ----------------------------------------------------------------------------
-- ----------------------------------------------------------------------------

SIAE-RADIO-SYSTEM-MIB
        DEFINITIONS ::= BEGIN

        IMPORTS
             MODULE-IDENTITY, OBJECT-TYPE,
             NOTIFICATION-TYPE,
             Integer32, Counter32
        FROM SNMPv2-SMI
             InterfaceIndexOrZero
        FROM IF-MIB
             TEXTUAL-CONVENTION,
             DisplayString, RowStatus, StorageType
        FROM SNMPv2-TC
             siaeMib
        FROM SIAE-TREE-MIB
             AlarmStatus, AlarmSeverityCode, alarmTrap
        FROM SIAE-ALARM-MIB
             equipIpSnmpAgentAddress
        FROM SIAE-EQUIP-MIB;

    radioSystem MODULE-IDENTITY
        LAST-UPDATED "201607140000Z"
        ORGANIZATION "SIAE MICROELETTRONICA spa"
        CONTACT-INFO
            "SIAE MICROELETTONICA s.p.a.
             Via Michelangelo Buonarroti, 21
             20093 - Cologno Monzese
             Milano - ITALY
             Phone :  +39-02-27325-1
             E-mail: help@siaemic.com
            "
        DESCRIPTION
            "Radio System MIB.
            "
        REVISION "201607140000Z"
        DESCRIPTION
            "MIB version 01.00.05
             - added radioXpd in radioStatusTable
             - deprecated linkXpd in linkStatusTable
            "
        REVISION "201602290000Z"
        DESCRIPTION
            "MIB version 01.00.04
             - Added linkXpd to linkStatusTable
             - changed MAX-ACCESS clause of linkChRadioSettingsIdx from
               read-only to read-create 
             - Fixed DESCRIPTION of linkSettingsTable
            "
        REVISION "201509150000Z"
        DESCRIPTION
            "Fixed DESCRIPTION of radioTxChannelSpacing
            "
        REVISION "201506180000Z"
        DESCRIPTION
            "MIB version 01.00.03
             - Added linkConfigurationInProgress and 
               linkConfigurationInProgressTrapNotification
             - Added radio radioRxBerThresholdTable
             - Added fadeMarginMeasure
             - Deprecated linkFadeMarginMeasure
             - Added table radioLoopCapabilityTable
             - Added table sspTable
             - Added table stm1BulkSettingsTable
             - Added table linkE1vsSTM1CapacityTable
             - Deprecated linkAcmMaxTDMCapacity
             - Deprecated linkTfcTable, linkProTable and linkProMaintTable.
             - Added linkTfcV2Table, linkProV2Table and linkProMaintV2Table
               in order to replace deprecated tables.
             - Added channelSpacingSelection
            "
        REVISION "201503230000Z"
        DESCRIPTION
            "Removed alarmTrapNumber from TRAPs and IMPORTS.
            "
        REVISION "201411050000Z"
        DESCRIPTION 
            "MIB version 01.00.02
             Changes for support of modulation 4096QAM:
             - DESCRIPTION of linkBandwidthAndModulation
             - ModulationMap TEXTUAL-CONVENTION
             - BitsPerSymbol TEXTUAL-CONVENTION
             Changes for support of channel spacing 60MHz and 80MHz:
             - DESCRIPTION of linkBandwidthAndModulation
             - ChannelSpacing TEXTUAL-CONVENTION
            "
        REVISION "201409160000Z"
        DESCRIPTION 
            "MIB version 01.00.01
             - Added combinedRadioCapabilitiesTable, combinedRadioFrequencyTable,
               combinedRadioDuplexFrequencyTable and combinedRadioPowerScalingTable
             - Declared deprecated linkCapabilitiesTable, linkFrequencyTable,
               linkDuplexFrequencyTable, linkAcmPowerScaling,
               linkAcmAtpcRxPowerScaling and linkAcmPowerRange.
             - Added linkNotMatchingRadiosAlarm and
               linkNotMatchingRadiosAlarmSeverityCode
            "
        REVISION "201404010000Z"
        DESCRIPTION 
            "Initial version 01.00.00.
            "
      ::= { siaeMib 80 }

----------------------------------------------------------------------------------
--  Textual Conventions
----------------------------------------------------------------------------------

    ChannelSpacing ::= TEXTUAL-CONVENTION
       STATUS       current
       DESCRIPTION
         "This TC describes a data type which identifies a RF channel spacing.
         "
       SYNTAX INTEGER {
              -- ETSI
              bw3M5Hz   (0),
              bw7Mhz    (1),
              bw14MHz   (2),
              bw28MHz   (3),
              bw40MHz   (5),
              bw56MHz   (4),
              bw112MHz  (6),
              bw250Mhz  (7),
              bw500Mhz  (8),
              bw750Mhz  (9),
              bw1000Mhz (10),
              -- FCC
              bw10Mhz   (11),
              bw20Mhz   (12),
              bw30Mhz   (13),
              bw50Mhz   (14),
              bw60Mhz   (15),
              bw80Mhz   (16)
         }


     ModulationMap ::= TEXTUAL-CONVENTION
       STATUS       current
       DESCRIPTION
         "This data type is used as the syntax of the radioBranchModulationMap
          and radioBranchRefModulationMap objects.
         "
       SYNTAX BITS {
              modBPSK    (0),
              mod4QAM    (1),
              mod8PSK    (2),
              mod16QAM   (3),
              mod32QAM   (4),
              mod64QAM   (5),
              mod128QAM  (6),
              mod256QAM  (7),
              mod512QAM  (8),
              mod1024QAM (9),
              mod2048QAM (10),
              mod4096QAM (11)
         }

 
     ConfigMismatchReason ::= TEXTUAL-CONVENTION
       STATUS       current
       DESCRIPTION
         "This data type is used to specify the cause of Config Mismatch Alarm,
          that is the mismatch between the radio link capability and the current
          local and remote configuration.
            - securityMismatch(0)
                Copyright violation
            - frequencyFailMismatch(1)
                Configured frequency is out of  Filter-Bandwidth
            - frequencyAlertMismatch(2)
                  Configured frequency across Filter-Bandwidth
            - ptxMismatch(3) 
                  Tx power configured incongruent with RF Tx power limits
            - channelSpacingAndModulationMismatch(4)
                  Bandwidth and/or modulation configured is invalid
                  (RF doesn't support it) 
            - remoteConfigurationMismatch(5)
                  Incongruence between the couple of Terminal Radio Unit (TRU)
                  in the link:
                  - Frequency Incongruent (Freq)
                  - Reference Bandwidth and Modulation incongruent
                  - Acm-Tx map in congruent with remote Acm-Rx map
            - acmMismatch(6) 
                  Obsolete (no longer used)
            - profileSetMismatch(7)
                  The selected profile set is not supported by the TRU
         "
       SYNTAX BITS {
              securityMismatch(0),
              frequencyFailMismatch(1),
              frequencyAlertMismatch(2),
              ptxMismatch(3),
              channelSpacingAndModulationMismatch(4),
              remoteConfigurationMismatch(5),
              acmMismatch(6),
              profileSetMismatch(7)
         }

     RadioCapability ::= TEXTUAL-CONVENTION
       STATUS       current
       DESCRIPTION
         "This data type is used as the syntax of the radioBranchKeyFeatures
          objects.
         "
       SYNTAX BITS {
              reserved         (0),
              trafficSquelch   (1),
              baseBandLoop     (2),
              maxPower         (3),
              carrierOnly      (4),
              iQLoop           (5),
              rfLoopGivenMod   (6),  -- only at a given modulation
              rfLoopAnyMod     (7)   -- at any modulation
         }

    BitsPerSymbol ::= TEXTUAL-CONVENTION
       STATUS       current
       DESCRIPTION
         "his TC describes a data type which identifies a RF channel spacing.
         "
       SYNTAX INTEGER {
            bpsBPSK    (1),
            bps4QAM    (2),
            bps8PSK    (3),
            bps16QAM   (4),
            bps32QAM   (5),
            bps64QAM   (6),
            bps128QAM  (7),
            bps256QAM  (8),
            bps512QAM  (9),
            bps1024QAM (10),
            bps2048QAM (11),
            bps4096QAM (12)
         }

    Stm1IndexOrZero ::= TEXTUAL-CONVENTION
       DISPLAY-HINT "d"
       STATUS       current
       DESCRIPTION
         "This textual convention permits the
          additional value of zero to an stm1Index in stm1Table.
          The value zero is object-specific and must therefore be 
          defined as part of the description of any object which
          uses this syntax.  Examples of the usage of zero might
          include situations where stm-1 was unknown, or when none
          or all stm-1s need to be referenced."
       SYNTAX  Integer32 (0..2147483647)

----------------------------------------------------------------------------------
--  radioSystem GROUP
----------------------------------------------------------------------------------
--
--  This group contains all the objects that are specific of the radio system  
--
----------------------------------------------------------------------------------

------ Beginning --------------------------------------------------------------

    radioSystemMibVersion  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Numerical version of this module.
             The string version of this MIB have the following format:
                XX.YY.ZZ
             so, for example, the value 1 should be interpreted as 00.00.01
             and the value 10001 should be interpreted as 01.00.01."
    ::= {radioSystem 1}

-------  Begin of radioTable
--
    radioTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF RadioEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of radio interface entries. This table is useful 
             to show the manager all the available radio interfaces 
             on the equipment. Moreover it is a reference for 
             Performance Monitoring (PWR and G828).
            "
    ::= {radioSystem 2}

    radioEntry OBJECT-TYPE
        SYNTAX      RadioEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             particular radio interface.
            "
        INDEX       {radioIndex}
    ::= {radioTable 1}

    RadioEntry  ::=
        SEQUENCE  {
            radioIndex                  Integer32,
            radioLabel                  DisplayString,
            radioType                   INTEGER,
            radioIfIndex                InterfaceIndexOrZero,
            radioStorageType            StorageType
            }

    radioIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A unique value, greater than zero, for each radio 
            interface.  It is recommended that values are assigned
            contiguously starting from 1.
            "
    ::= {radioEntry 1}
    
    radioLabel OBJECT-TYPE
        SYNTAX      DisplayString   (SIZE(0..32))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A textual string containing information about the radio
            interface.  This string should include the name of the
            manufacturer, the product name and the version of the
            interface hardware/software.
            "
    ::= {radioEntry 2}
    
    radioType OBJECT-TYPE
        SYNTAX      INTEGER  {
                              other(1),
                              analogRadio(2),   -- analogic radio --    
                              digitalRadio(3),  -- digital radio --
                              xpicRadio(4)      -- xpic radio  --                        
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The type of interface.
            "
    ::= {radioEntry 3}
    
    radioIfIndex OBJECT-TYPE
        SYNTAX      InterfaceIndexOrZero
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
           "This object defines a greater than zero value 
            to identify an interface in ifTable or a zero 
            value if ifTable is not supported.           
           "
    ::= {radioEntry 4}
    
    radioStorageType OBJECT-TYPE
       SYNTAX      StorageType
       MAX-ACCESS  read-only
       STATUS      current
       DESCRIPTION
           "The storage type of this conceptual row. Conceptual 
            rows having the value 'permanent' need not allow 
            write-access to any columnar objects in the row.
           "
    ::= {radioEntry 5}
            
--
-------  End of radioTable

-------  Begin of xpicTable
--
    xpicTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF XpicEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of xpic radio interface entries. If a manager 
             wants to make an xpic link, it should only add a 
             particular xpic radio interface to an xpic link.
            "
    ::= {radioSystem 3}

    xpicEntry OBJECT-TYPE
        SYNTAX      XpicEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             particular xpic radio interface.
            "
        INDEX       {xpicIndex}
    ::= {xpicTable 1}

    XpicEntry  ::=
        SEQUENCE  {
            xpicIndex                   Integer32,
            xpicRadioIdx                Integer32,
            xpicRowstatus               RowStatus
            }

    xpicIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A unique value, greater than zero, for each xpic radio 
            interface.  It is recommended that values are assigned
            contiguously starting from 1.
            "
    ::= {xpicEntry 1}
    
     xpicRadioIdx OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Index of xpic radio interface, corresponding 
             to an available xpic radio interface in radioTable.
            "
    ::= {xpicEntry 2}
           
    xpicRowstatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this conceptual row in xpicTable.
            "
    ::= {xpicEntry 3}
        
--
-------  End of xpicTable

-------  Begin of xpicChTable
--
    xpicChTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF XpicChEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of xpic channel entries. This table maps
             each xpic radio in respective xpic radio interface.
            "
    ::= {radioSystem 4}

    xpicChEntry OBJECT-TYPE
        SYNTAX      XpicChEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             particular xpic channel. It defines radio interface and 
             polarization for a given xpic channel.
            "
        INDEX       {xpicIndex,
                     xpicChPolIndex}
    ::= {xpicChTable 1}

    XpicChEntry  ::=
        SEQUENCE  {
            xpicChPolIndex                Integer32,
            xpicChRadioIdx                Integer32,
            xpicChRowstatus               RowStatus
            }
      
    xpicChPolIndex OBJECT-TYPE
        SYNTAX      Integer32 (1..2)
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object identifies the xpic radio polarization.
            "         
    ::= {xpicChEntry 1}
    
    xpicChRadioIdx OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Xpic radio interface, corresponding to a radio interface 
             in radioTable, used to make up the given xpic radio interface.
            "           
    ::= {xpicChEntry 2}
          
    xpicChRowstatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this conceptual row in xpicChTable.
            "
    ::= {xpicChEntry 3}
        
--
-------  End of xpicChTable

     linkAvailableIndex     OBJECT-TYPE
         SYNTAX             Integer32
         MAX-ACCESS         read-only
         STATUS             current
         DESCRIPTION
            "Shows an index which is available for creation of a new link
             in the system. It shows the smallest available index.
             Any attempt to create a link with a different index results
             in a failure.
            "
     ::= {radioSystem 5}

-------  Begin of linkTable
--
    linkTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF LinkEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of link entries. 
            "
    ::= {radioSystem 6}

    linkEntry OBJECT-TYPE
        SYNTAX      LinkEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             particular link.
            "
        INDEX       {linkIndex}
    ::= {linkTable 1}

    LinkEntry  ::=
        SEQUENCE  {
            linkIndex                   Integer32,
            linkType                    INTEGER,
            linkLabel                   DisplayString,
            linkIfIndex                 InterfaceIndexOrZero,
            linkRowstatus               RowStatus
            }

    linkIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A unique value, greater than zero, for each link.
             Manager must use the first available index, 
             suggested by linkAvailableIndex.
            "
    ::= {linkEntry 1}
    
    linkType OBJECT-TYPE
        SYNTAX      INTEGER   {
                              radio1p0(1),         -- 1+0
                              radio1p1HS(2),       -- 1+1 Hot Standby
                              radio1p1FD(3),       -- 1+1 Frequency Diversity
                              radio2p0Xpic(4),     -- 2+0 XPIC
                              radio2p2XpicHS(5),   -- 2+2 XPIC Hot Standby
                              radio2p2XpicFD(6),   -- 2+2 XPIC Frequency Diversity
                              radioNp1(7)          -- N+1
                              }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object identifies link type. Supported link types are:
             single link, 1+1 Hot Standby, 1+1 Frequency Diversity, 2+0 XPIC,
             2+2 XPIC Hot Standby, 2+2 XPIC Frequency Diversity and N+1.
            "
        DEFVAL  {radio1p0}    
    ::= {linkEntry 2}

    linkLabel OBJECT-TYPE
        SYNTAX      DisplayString   (SIZE(0..32))
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "A textual string containing information about the link.
             This string should give more details about link specific
             parameters.
            "
        DEFVAL  {""}
    ::= {linkEntry 3}
    
    linkIfIndex OBJECT-TYPE
        SYNTAX      InterfaceIndexOrZero
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object defines a greater than zero value 
             to identify a link in ifTable or a zero 
             value if ifTable is not supported.           
            "
        DEFVAL  {0}
     ::= {linkEntry 4}
        
     linkRowstatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this row of linkTable. This object is used to manage the
             creation and deletion of conceptual rows in linkTable.
             To create a row in this table, a manager should set rowstatus to 
             createAndWait(5) and choose a link type. Respective entries in 
             linkSettingsTable, linkStatusTable and tdmSettingsTable will be 
             created by agent.In case of protection links proper entries in 
             linkProtectionTable will be also created. 
             Until instances of all corresponding columns are appropriately 
             configured, the value of the corresponding instance of rowstatus
             is notReady(3).
             When there is sufficient information to (attempt to) make the 
             conceptual row available for use by the managed device, 
             then the rowstatus column turns into notInService(2); manager 
             must set rowstatus to active(1) to make the conceptual row
             active.
             The contents of linkSettingsTable and radioSettingsTable can be
             changed only if this object is notInService(2).
            "
     ::= {linkEntry 5}
        
--
-------  End of linkTable

-------  Begin of linkChTable
--
    linkChTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF LinkChEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of link channel entries.
            "
    ::= {radioSystem 7}
    
     linkChEntry OBJECT-TYPE
        SYNTAX      LinkChEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             particular link channel. 
            "           
        INDEX       {linkIndex,
                     linkChIndex}
    ::= {linkChTable 1}

    LinkChEntry  ::=
        SEQUENCE  {
            linkChIndex               Integer32,
            linkChRadioIdx            Integer32,
            linkChRadioSettingsIdx    Integer32,
            linkChRowstatus           RowStatus
            }
     
     linkChIndex    OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Link Channel Index.
            "
    ::= {linkChEntry 1}
    
    linkChRadioIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Radio channel index that corresponds to an
             available radio interface in radioTable.
            "
    ::= {linkChEntry 2}
    
     linkChRadioSettingsIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Radio Settings Index. This object is a foreign
             key for a corresponding radioSettingsTable entry, 
             which is automatically created by agent.
            "
       DEFVAL  {0}
    ::= {linkChEntry 3}
     
     linkChRowstatus   OBJECT-TYPE
        SYNTAX         RowStatus
        MAX-ACCESS     read-create
        STATUS         current
        DESCRIPTION
             "Status of this row of linkChTable. This object is used 
             to manage the creation and deletion of conceptual rows in 
             linkChTable.
             To create a row in this table, a manager should set rowstatus to 
             createAndWait(5). Until instances of all corresponding columns 
             are appropriately configured, the value of the corresponding 
             instance of rowstatus is notReady(3).
             When there is sufficient information to (attempt to) make the 
             conceptual row available for use by the managed device, 
             then the rowstatus column turns into notInService(2); manager 
             must set rowstatus to active(1) to make the conceptual row
             active.
             The content of radioSettingsTable can be changed only if this
             object is notInService(2).
             "
     ::= {linkChEntry 4}
--
-------  End of linkChTable

-------  Begin of linkSettingsTable
--
    linkSettingsTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with link settings entries. This table contains all
             parameters of a radio frequency link. The content of this
             table can be changed by a manager if linkRowStatus is 
             notInService(2)."
    ::= {radioSystem 8}

    linkSettingsEntry OBJECT-TYPE
        SYNTAX      LinkSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio link entry"
        INDEX       {linkIndex}
    ::= {linkSettingsTable 1}

    LinkSettingsEntry  ::=
        SEQUENCE {
            linkBandwidthAndModulation     Integer32,
            linkAcmEngineEnable            INTEGER,
            linkTxUpperProfile             INTEGER,
            linkTxLowerProfile             INTEGER,
            linkId                         INTEGER,
            linkTxPwrThresh                INTEGER,
            linkRxPwrThresh                INTEGER,
            linkSynchSetupProtocolEnable   INTEGER,
            linkProfilesSetSelection       INTEGER,
            linkXpicControlProcedure       INTEGER
        }

    linkBandwidthAndModulation OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
             "Link Modulation and Bandwidth (channel spacing).
              The value of this object value is computed by:
                 65536*modulation+bandwidth
               where bandwidth selection is:
                 0 = 3.5Mhz
                 1 = 7MHz
                 2 = 14MHz
                 3 = 28MHz
                 4 = 56MHz
                 5 = 10MHz
                 6 = 20MHz
                 7 = 30MHz
                 8 = 40MHz
                 9 = 50MHz
                10 = 112Mhz
                11 = 250Mhz
                12 = 500Mhz
                13 = 750Mhz
                14 = 1Ghz
                15 = 60MHz
                16 = 80MHz
               and modulation is in bit-per-symbol:
                 1 = BPSK
                 2 = 4QAM
                 3 = 8PSK
                 4 = 16QAM
                 5 = 32QAM
                 6 = 64QAM
                 7 = 128QAM
                 8 = 256QAM
                 9 = 512QAM
                10 = 1024QAM
                11 = 2048QAM.
                12 = 4096QAM.

               Examples:
               250Mhz-4QAM  (131083),
               500Mhz-4QAM  (131084),
               250Mhz-16QAM (262155),
               500Mhz-64QAM (393228).

               Note: 0 bit-per-symbol is not possible,
               so value 0 is used for
               BandwidthAndModulation unassigned."
    ::= {linkSettingsEntry 1}

    linkAcmEngineEnable OBJECT-TYPE
        SYNTAX      INTEGER  {
                              disable (1),
                              enable  (2)
                             }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object is used to enable/disable the ACM engine"
        DEFVAL  { disable }
    ::=  {linkSettingsEntry 2}

    linkTxUpperProfile OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
             "The object (and linkTxLowerProfile object) is used to 
              restrict the TX profile range when ACM is enabled."
    ::= {linkSettingsEntry 3}

    linkTxLowerProfile OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
             "The object (and linkTxUpperProfile object) is used to
              restrict the TX profile range when ACM is enabled."
    ::= {linkSettingsEntry 4}

    linkId OBJECT-TYPE
        SYNTAX      INTEGER       (0..255)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Link Identification (value 0..255)"
        DEFVAL {0}
    ::= {linkSettingsEntry 5}

    linkTxPwrThresh OBJECT-TYPE
        SYNTAX      INTEGER     (3..15)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
           "Threshold (value +3 , +15 dB) relative to nominal value of the TX power
            below wich the related alarm is set."
        DEFVAL {3}
    ::= {linkSettingsEntry 6}

    linkRxPwrThresh OBJECT-TYPE
        SYNTAX      INTEGER     (-99..-40)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
           "Threshold (value -40 , -99 dBm) for RX power below wich the related
            alarm is set."
        DEFVAL {-70}
    ::= {linkSettingsEntry 7}

    linkSynchSetupProtocolEnable OBJECT-TYPE
        SYNTAX      INTEGER   {
                               disable (1),
                               enable  (2)
                              }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Synchronization Setup Protocol (SSP) control"
        DEFVAL {disable}
    ::= {linkSettingsEntry 8}

    linkProfilesSetSelection OBJECT-TYPE
        SYNTAX      INTEGER  {
                              highThroughput (1),
                              highGain       (2)
                             }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Selection of the working profile set between high gain
             (max robustness) profile set and high throughput (max
             capacity) profile set. The set of profiles high gain
             features a greater robustness against to the set of
             profiles high throughput.
             For radio systems that do not have more sets of profiles,
             this object becomes read only and its reading shows the 
             only one set of profiles supported.
            "
        DEFVAL {highThroughput}
    ::= {linkSettingsEntry 9}

    linkXpicControlProcedure  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable       (1),
                             enable        (2)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Set by manager to enable\disable XPIC alarm control procedure.
             Only for XPIC configurations."
        DEFVAL  { enable }
    ::= {linkSettingsEntry 10}

--
-------  End of linkSettingsTable

-------  Begin of radioSettingsTable
--
    radioSettingsTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  RadioSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with radio settings entries. This table contains all
             parameters of a radio terminal. The content of this table
             can be changed only linkRowStatus is notInService(2)"
    ::= {radioSystem 9}

    radioSettingsEntry OBJECT-TYPE
        SYNTAX      RadioSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio terminal entry"
        INDEX       {radioSettingsIndex}
    ::= {radioSettingsTable 1}

    RadioSettingsEntry  ::=
        SEQUENCE {
          radioSettingsIndex          Integer32,
          radioSettingsRowStatus      RowStatus,
          radioSettingsLabel          DisplayString,
          radioTxFrequency            INTEGER,
          radioDuplexFrequency        INTEGER,
          radioTxAttenuation          INTEGER,
          radioAtpcManual             INTEGER,
          radioAtpcPwrHigh            Integer32,
          radioAtpcPwrLow             Integer32,
          radioAtpcRange              Integer32,
          radioFreqTableSelection     ChannelSpacing
        }

    radioSettingsIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Radio settings index.
            "
    ::= {radioSettingsEntry 1}

    radioSettingsRowStatus OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this row.
            "
    ::= {radioSettingsEntry 2}
    
    radioSettingsLabel OBJECT-TYPE
        SYNTAX      DisplayString   (SIZE(0..32))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "A textual string containing information about the radio
            interface.  
            "
    ::= {radioSettingsEntry 3}

    radioTxFrequency  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Transmitted frequency in KHz. Null value means invalid frequency."
        DEFVAL {0}
    ::= {radioSettingsEntry 4}

    radioDuplexFrequency  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Value of duplex frequency in KHz. -2 means not set."
        DEFVAL {-2}
    ::= {radioSettingsEntry 5}

    radioTxAttenuation  OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Transmitter attenuation relative to nominal power (dBm)."
    ::= {radioSettingsEntry 6}

    radioAtpcManual  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Enables/disables Atpc Manual operation."
        DEFVAL {disable}
    ::= {radioSettingsEntry 7}

    radioAtpcPwrHigh  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "ATPC Control - Local Rx Power High (dBm range -30 to -80) -."
        DEFVAL {-40}
    ::= {radioSettingsEntry 8}

    radioAtpcPwrLow  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "ATPC Control - Local Rx Power Low (dBm range -30 to -80) -."
        DEFVAL {-60}
    ::= {radioSettingsEntry 9}

    radioAtpcRange  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Defines the range of the ATPC regulation (expressed in dB) with respect
             to the current value of maximum Tx output, that is intended as the upper
             limit of the range. A null value means no limit: the lower limit
             of the range is equal to minimum Ptx."
        DEFVAL {0}
    ::= {radioSettingsEntry 10}

    radioFreqTableSelection  OBJECT-TYPE
        SYNTAX      ChannelSpacing
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "RadioFrequencyTable key (channel spacing & modulation) selection."
    ::= {radioSettingsEntry 11}

--
-------  End of radioSettingsTable

-------  Begin of tdmSettingsTable
--
    tdmSettingsTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  TdmSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with tdm settings entries.
           "
    ::= {radioSystem 10}

    tdmSettingsEntry OBJECT-TYPE
        SYNTAX      TdmSettingsEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing tdm parameters for a particular link.
            "
        INDEX       {linkIndex,
                    tdmPolIndex}
    ::= {tdmSettingsTable 1}

    TdmSettingsEntry  ::=
      SEQUENCE {
                tdmPolIndex                Integer32,
                tdmE1Channel               Integer32,
                tdmE1Framer                INTEGER
        }

    tdmPolIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
       DESCRIPTION
            "Polarization index.
            "
    ::= {tdmSettingsEntry 1}

    tdmE1Channel OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Number of E1 channels. This object is used to define the capacity
             of E1 tributaries assigned to a given radio link. The capacity is
             changed in steps of E1 (2Mbit/s).    
            "
         DEFVAL      {0}
    ::= {tdmSettingsEntry 2}
    
     tdmE1Framer OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "This object is used to attach the framer to a given E1. 
            "
        DEFVAL      {disable}
     ::=  {tdmSettingsEntry 3}
    
--
-------  End of tdmSettingsTable

-------  Begin of radioCapabilitiesTable
--
    radioCapabilitiesTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF RadioCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with RadioCapabilities entries: there is an entry for each 
             radioTable rows."
    ::= {radioSystem 11}

    radioCapabilitiesEntry  OBJECT-TYPE
        SYNTAX      RadioCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "RadioCapabilities entry."
        INDEX       {radioIndex}
    ::= {radioCapabilitiesTable 1}

    RadioCapabilitiesEntry  ::=
        SEQUENCE {
            radioCapabilitiesCapability           RadioCapability,
            radioCapabilitiesTxMinFrequency       Integer32,
            radioCapabilitiesTxMaxFrequency       Integer32,
            radioCapabilitiesStepFrequency        Integer32,
            radioCapabilitiesMinPtxNominalValue   Integer32,
            radioCapabilitiesMaxPtxNominalValue   Integer32,
            radioCapabilitiesExtendedMinPwr       Integer32
        }

    radioCapabilitiesCapability  OBJECT-TYPE
        SYNTAX      RadioCapability
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Bit map to describe the radio features."
    ::= {radioCapabilitiesEntry 1}

    radioCapabilitiesTxMinFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum of available channel frequency in KHz."
    ::= {radioCapabilitiesEntry 2}

    radioCapabilitiesTxMaxFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Maximum of available channel frequency in KHz."
    ::= {radioCapabilitiesEntry 3}

    radioCapabilitiesStepFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum frequency step in KHz."
    ::= {radioCapabilitiesEntry 4}

    radioCapabilitiesMinPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum nominal Ptx in dBm."
    ::= {radioCapabilitiesEntry 5}

    radioCapabilitiesMaxPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Maximum nominal Ptx in dBm."
    ::= {radioCapabilitiesEntry 6}

    radioCapabilitiesExtendedMinPwr  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum extended Ptx power for fade margin."
    ::= {radioCapabilitiesEntry 7}
--
-------  End of radioCapabilitiesTable

-------  Begin of radioStatusTable
--
    radioStatusTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     RadioStatusEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with RadioStatus records: one record for 1+0 configuration and
             two record for 1+1 configuration."
    ::= {radioSystem 12}

    radioStatusEntry  OBJECT-TYPE
        SYNTAX      RadioStatusEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "RadioStatus record."
        INDEX       {radioIndex}
    ::= {radioStatusTable 1}

    RadioStatusEntry  ::=
        SEQUENCE {
            radioCurrentDuplexFrequency     Integer32,
            radioTxChannelSpacing           Integer32,
            radioPrx                        Integer32,
            radioPtx                        Integer32,
            radioNormalizedMse              Integer32,
            radioRxActiveStatus             INTEGER,
            radioTxActiveStatus             INTEGER,
            radioCableOpenAlarm             AlarmStatus,
            radioCableShortAlarm            AlarmStatus,
            radioInvalidFrequencyAlarm      AlarmStatus,
            radioBaseBandRxAlarm            AlarmStatus,
            radioModulatorFailAlarm         AlarmStatus,
            radioDemodulatorFailAlarm       AlarmStatus,
            radioRxPowerLowAlarm            AlarmStatus,
            radioTxPowerLowAlarm            AlarmStatus,
            radioRemDemodulatorFailAlarm    AlarmStatus,
            radioVcoFailAlarm               AlarmStatus,
            radioRxIFAgcAlarm               AlarmStatus,
            radioTxIFAgcAlarm               AlarmStatus,
            radioIduOduCommunicationAlarm   AlarmStatus,
            radioOduIduCommunicationAlarm   AlarmStatus,
            radioLocalOduAlarmSynthesis     AlarmStatus,
            radioRemoteOduAlarmSynthesis    AlarmStatus,
            radioConfigMismatchAlarm        AlarmStatus,
            radioConfigAlarmReason          ConfigMismatchReason,
            radioRxQualityLowAlarm          AlarmStatus,
            radioRxQualityWarningAlarm      AlarmStatus,
            radioXpd                        Integer32
      }

    radioCurrentDuplexFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Spacing between transmitted and received frequency in KHz."
    ::= {radioStatusEntry 1}

    radioTxChannelSpacing OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Half of transmitted signal channel spacing in KHz."
    ::= {radioStatusEntry 2}

    radioPrx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Received power level (dBm)."
    ::= {radioStatusEntry 3}

    radioPtx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Transmitted power level (dBm)."
    ::= {radioStatusEntry 4}

    radioNormalizedMse OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Normalized MSE (Mean Squared Error) is an indicator of the Signal
             to Noise (S/N) ratio. It's in 0.1 dB steps"
    ::= {radioStatusEntry 5}

    radioRxActiveStatus OBJECT-TYPE
        SYNTAX      INTEGER   {
                               cleared (1),
                               active  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Receiver Active status with associated Severity
             In 1+1 Hot Standby radio system, only one RX is active.
             RXs are active in other configurations of the radio system.
            "
    ::= {radioStatusEntry 6}

    radioTxActiveStatus OBJECT-TYPE
        SYNTAX      INTEGER   {
                               cleared (1),
                               active  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Transmitter Active status with associated Severity.
             In 1+1 Hot Standby radio system, only one TX is active.
             TXs are active in other configurations of the radio system.
            "
    ::= {radioStatusEntry 7}

    radioCableOpenAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Cable connnecting ODU is open: alarm status with associated
             severity.
            "
    ::= {radioStatusEntry 8}

    radioCableShortAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Cable connnecting ODU is in short-circuit: alarm status
             with associated severity.
            "
    ::= {radioStatusEntry 9}

    radioInvalidFrequencyAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Invalid frequency alarm with associated severity."
    ::= {radioStatusEntry 10}

    radioBaseBandRxAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Base Band Rx alarm status with associated severity."
    ::= {radioStatusEntry 11}

    radioModulatorFailAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Modulator Fail Alarm status with associated severity."
    ::= {radioStatusEntry 12}

    radioDemodulatorFailAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Demodulator Fail Alarm status with associated severity."
    ::= {radioStatusEntry 13}

    radioRxPowerLowAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Receiver power low alarm status with associated severity."
    ::= {radioStatusEntry 14}

    radioTxPowerLowAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Transmitter power low alarm status with associated severity."
    ::= {radioStatusEntry 15}

    radioRemDemodulatorFailAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Remote Demodulator Fail Alarm status with associated severity."
    ::= {radioStatusEntry 16}

    radioVcoFailAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "RT VCO fail alarm status with associated severity."
    ::= {radioStatusEntry 17}

    radioRxIFAgcAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "RT Rx IF AGC fail alarm status with associated severity."
    ::= {radioStatusEntry 18}

    radioTxIFAgcAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "RT Tx IF AGC fail alarm status with associated severity."
    ::= {radioStatusEntry 19}

    radioIduOduCommunicationAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Communication from IDU towards ODU is down"
    ::= {radioStatusEntry 20}

    radioOduIduCommunicationAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Communication from ODU towards IDU is down"
    ::= {radioStatusEntry 21}

    radioLocalOduAlarmSynthesis  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Local ODU alarm synthesis with associated severity."
    ::= {radioStatusEntry 22}

    radioRemoteOduAlarmSynthesis  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Local ODU alarm synthesis alarm status with associated severity."
    ::= {radioStatusEntry 23}

    radioConfigMismatchAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Config Mismatch alarm status with associated severity and related map."
    ::= {radioStatusEntry 24}

    radioConfigAlarmReason  OBJECT-TYPE
        SYNTAX      ConfigMismatchReason
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
           "Bit map to describe the Config Mismatch Alarm"
--      DEFVAL { { } }
    ::= {radioStatusEntry 25}

    radioRxQualityLowAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "High BER Alarm status with associated severity."
    ::= {radioStatusEntry 26}

    radioRxQualityWarningAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The RX signal is close to cause errors on payload."
    ::= {radioStatusEntry 27}

    radioXpd  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Cross-Polarization Discrimination, in tenths of dB, is the
             difference between the received signal power of the
             co-polarized main beam, and it componemt received on the
             cross-polarized signal.
             This object shows an extimated value of the XPD performed by 
             the cross-polarization interference canceller (XPIC).
             This means that the measure is reliable if:
             - XPIC is on (linkType is radio2p0Xpic(4), or radio2p2XpicHS(5),
                           or radio2p2XpicFD(6))
             - Alarm radioDemodulatorFailAlarm is cleared.
             - XPD is not too high, since without cross-polar interference
               the canceller is not able to works well. Basically, in this
               condition, the extimated XPD is greater than the real one.
            "
    ::= {radioStatusEntry 28}
--
-------  End of radioStatusTable

--
--  MAINTENANCE TABLE
--

-------  Begin of radioMaintTable
--
    radioMaintTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     RadioMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with Command for maintenance of radio branch.
             Objects in this table is not persistent. An Instance of this
             table is created on creation of radioBranchEntry"
    ::= {radioSystem 13}

    radioMaintEntry  OBJECT-TYPE
        SYNTAX      RadioMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio branch Maintenance record."
        INDEX       {radioIndex}
    ::= {radioMaintTable 1}

    RadioMaintEntry  ::=
        SEQUENCE {
            radioTxStatus             INTEGER,
            radioCarrierOnly          INTEGER,
            radioLoop                 INTEGER,
            radioRFLoopTestResult     INTEGER,
            radioRFLoopTestPercTime   INTEGER,
            radioRtPsuOff             INTEGER,
            radioLom                  INTEGER,
            radioXpic                 INTEGER
        }

    radioTxStatus  OBJECT-TYPE
        SYNTAX      INTEGER {
                             transmitterOff  (1),
                             transmitterOn   (2),
                             permanentOff    (3)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Transmitter status control.
             The value transmitterOff(1) is related to a manual operation.
             The value permanentOff(3) is persistent across restart.
             "
        DEFVAL {transmitterOn}
    ::= {radioMaintEntry 1}

    radioCarrierOnly  OBJECT-TYPE
        SYNTAX      INTEGER {
                             carrierOnlyOff  (1),
                             carrierOnlyOn   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Carrier only transmission control."
        DEFVAL      {carrierOnlyOff}
    ::= {radioMaintEntry 2}

    radioLoop  OBJECT-TYPE
        SYNTAX      INTEGER {
                             loopOff                   (1),
                             rfLoop                    (2),
                             iqLoop                    (3),
                             baseBandLoop              (4),
                             rfLoopAtFixedMod          (6),
                             baseBandLoopEthSquelch    (7),
                             rfLoopAtFixedModEthSquelch(8),
                             iqloopEthSquelch          (9)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enables/disables the Radio Branch loops."
        DEFVAL      {loopOff}
    ::= {radioMaintEntry 3}

    radioRFLoopTestResult OBJECT-TYPE
        SYNTAX      INTEGER {
                             testNone          (0),
                             testRunning       (1),
                             testNotPossible   (2),
                             testPassed        (3),
                             testFail          (4),
                             testInterrupted   (5)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Radio branch RT loop test result."
        DEFVAL      {testNone}
    ::= {radioMaintEntry 4}

    radioRFLoopTestPercTime OBJECT-TYPE
        SYNTAX      INTEGER   (0..100)
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Radio branch RT loop test time percentage"
    ::= {radioMaintEntry 5}

    radioRtPsuOff OBJECT-TYPE
        SYNTAX      INTEGER   {
                               rtPsuOff       (1),
                               rtPsuOn        (2)
                              }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "It switches on/off the Rt power supply"
        DEFVAL      {rtPsuOn}
    ::= {radioMaintEntry 6}

    radioLom OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "It is used to enable the IP packet forwarding towards Radio."
        DEFVAL      {disable}
    ::= {radioMaintEntry 7}

    radioXpic  OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable (1),
                             enable  (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enable of the cross polarization interference cancellation of this
             radio.  The value disable is tied to a manual operation
             (ManOpRecord). This object is applicable only if thiis radio
             belongs to a 2+0 XPIC or 2+2 XPIC link."
    ::= {radioMaintEntry 8}
 
--
-------  End of radioMaintTable

-------  Begin of radioFrequencyTable
--
    radioFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     RadioFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Availables channels for selected channel spacing and modulation 
             (see leaf radioFreqTableSelection)."
    ::= {radioSystem 14}

    radioFreqTabEntry  OBJECT-TYPE
        SYNTAX      RadioFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "RadioFreqTab record."
        INDEX {radioIndex, radioFreqChannelId}
    ::= {radioFrequencyTable 1}

    RadioFreqEntry  ::=
        SEQUENCE {
            radioFreqChannelId   Integer32,
            radioFreqChannelNum  Integer32,
            radioFreqValue       Integer32
        }

    radioFreqChannelId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Index of the table"
    ::= {radioFreqTabEntry 1}

    radioFreqChannelNum  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Available channel number."
    ::= {radioFreqTabEntry 2}

    radioFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Frequency related to radioFreqChannelNum."
    ::= {radioFreqTabEntry 3}
--
-------  End of radioFrequencyTable

-------  Begin of radioDuplexFrequencyTable
--
    radioDuplexFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     RadioDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with available duplex frequencies. Duplex frequency is
             the absolute value of difference between RX and TX frequency." 
    ::= {radioSystem 15}

    radioDuplexFreqEntry  OBJECT-TYPE
        SYNTAX      RadioDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Duplex Frequency entry. There is an entry for each available
             duplex frequency."
        INDEX {radioIndex, radioDuplexFreqId}
    ::= {radioDuplexFrequencyTable 1}

    RadioDuplexFreqEntry  ::=
        SEQUENCE {
            radioDuplexFreqId     Integer32,
            radioDuplexFreqValue  Integer32
        }

    radioDuplexFreqId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Index of the table."
    ::= {radioDuplexFreqEntry 1}

    radioDuplexFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Duplex frequency in KHz."
    ::= {radioDuplexFreqEntry 2}
--
-------  End of radioDuplexFrequencyTable

-------  Begin of radioModulationTable
--
    radioModulationTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     RadioModulationEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "List of modulations related to channel spacing."
    ::= {radioSystem 16}

    radioModulationEntry  OBJECT-TYPE
        SYNTAX      RadioModulationEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "radioModulation record."
        INDEX {radioIndex, radioChannelSpacing}
    ::= {radioModulationTable 1}

    RadioModulationEntry  ::=
        SEQUENCE {
            radioChannelSpacing    ChannelSpacing,
            radioModulationMap     ModulationMap,
            radioRefModulationMap  ModulationMap
        }

    radioChannelSpacing  OBJECT-TYPE
        SYNTAX      ChannelSpacing
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object identifies the channel spacing."
    ::= {radioModulationEntry 1}

    radioModulationMap  OBJECT-TYPE
        SYNTAX      ModulationMap
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "List of modulations in the radioChanSpacing"
    ::= {radioModulationEntry 2}

    radioRefModulationMap  OBJECT-TYPE
        SYNTAX      ModulationMap
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "List of modulations that can be selected as reference
             in the radioChanSpacingId"
    ::= {radioModulationEntry 3}
--
-------  End of radioModulationTable

-------  Begin of linkStatusTable
--
    linkStatusTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkStatusEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with LinkStatusEntry."
    ::= {radioSystem 17}

    linkStatusEntry OBJECT-TYPE
        SYNTAX      LinkStatusEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Link status entry"
        INDEX       {linkIndex,
                     linkPolIndex }
    ::= {linkStatusTable 1}

    LinkStatusEntry  ::=
        SEQUENCE{
            linkPolIndex                INTEGER,
            linkAcmRxProfile            Integer32,
            linkAcmTxProfile            Integer32,
            linkAcmRxProfileLabel       DisplayString,
            linkAcmTxProfileLabel       DisplayString,
            linkAcmRxModulation         BitsPerSymbol,
            linkAcmTxModulation         BitsPerSymbol,
            linkAcmRxCode               INTEGER,
            linkAcmTxCode               INTEGER,
            linkTxETHCapacity           Integer32,
            linkRxETHCapacity           Integer32,
            linkTxTDMCapacity           Integer32,
            linkRxTDMCapacity           Integer32,
            linkRescueModulation        BitsPerSymbol,
            linkReducedCapacityAlarm    AlarmStatus,
            linkLinkTelemetryFailAlarm  AlarmStatus,
            linkIdMismatchAlarm         AlarmStatus,
            linkRadioEocAlarm           AlarmStatus,
            linkSetupMismatchAlarm      AlarmStatus,
            linkRescueSetupAlarm        AlarmStatus,
            linkXpicProcedureBlockAlarm AlarmStatus,
            linkXpicRemTxOffAlarm       AlarmStatus,
            linkRemoteIduAlarmSynthesis AlarmStatus,
            linkNotMatchingRadiosAlarm  AlarmStatus,
            linkConfigurationInProgress INTEGER,
            linkXpd                     Integer32
        }

    linkPolIndex OBJECT-TYPE
        SYNTAX      INTEGER (1..2)
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object identifies the radio polarization. In XPIC radio link
             identifies one of the polarizations."
    ::= {linkStatusEntry 1}

    linkAcmRxProfile OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the ACM profile number in use in the radio Rx.
             It is the linkAcmProfileId of linkAcmTable.
             Label is linkAcmProfileLabel from linkAcmTable"
    ::= {linkStatusEntry 2}

    linkAcmTxProfile OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the ACM profile number in use in the radio Tx.
             It is the linkAcmProfileId of linkAcmTable.
             Label is linkAcmProfileLabel from linkAcmTable"
    ::= {linkStatusEntry 3}

    linkAcmRxProfileLabel OBJECT-TYPE
        SYNTAX      DisplayString (SIZE (0..32))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "ASCII string used to describe current acm rx profile"
    ::= {linkStatusEntry 4}

    linkAcmTxProfileLabel OBJECT-TYPE
        SYNTAX      DisplayString (SIZE (0..32))
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "ASCII string used to describe current acm tx profile"
    ::= {linkStatusEntry 5}

    linkAcmRxModulation OBJECT-TYPE
        SYNTAX      BitsPerSymbol
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the type of modulation of the Rx profile in use."
    ::= {linkStatusEntry 6}

    linkAcmTxModulation OBJECT-TYPE
        SYNTAX      BitsPerSymbol
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the type of modulation of the Tx profile in use."
    ::= {linkStatusEntry 7}

    linkAcmRxCode OBJECT-TYPE
        SYNTAX      INTEGER   {
                               unknown (0),
                               normal  (1),
                               strong  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the type of codificator of the Rx profile in use."
    ::= {linkStatusEntry 8}

    linkAcmTxCode OBJECT-TYPE
        SYNTAX      INTEGER   {
                               unknown (0),
                               normal  (1),
                               strong  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the type of codificator of the Tx profile in use."
    ::= {linkStatusEntry 9}

    linkTxETHCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports (in Kbits/sec) the transmitted payload 
             capacity used by the Ethernet"
        DEFVAL  { 0 }
    ::= {linkStatusEntry 10}

    linkRxETHCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports (in Kbits/sec) the received payload capacity
             used by the Ethernet"
        DEFVAL  { 0 }
    ::= {linkStatusEntry 11}

    linkTxTDMCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the capacity in kbit/sec reserved to TDM 
             tributaries in tx ACM profile."
        DEFVAL  { 0 }
    ::= {linkStatusEntry 12}

    linkRxTDMCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the capacity in kbit/sec reserved to TDM
             tributaries in rx ACM profile."
        DEFVAL  { 0 }
    ::= {linkStatusEntry 13}

    linkRescueModulation OBJECT-TYPE
        SYNTAX      BitsPerSymbol
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the modulation used when the remote terminal is
             unreachable, ie traffic on radio link is down."
        DEFVAL  { bps4QAM }
    ::= {linkStatusEntry 14}

    linkReducedCapacityAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The equipment works in reduced capacity"
    ::= {linkStatusEntry 15}

    linkLinkTelemetryFailAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Fail of link telemetry communication channel with associated
             Severity"
    ::= {linkStatusEntry 16}

    linkIdMismatchAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Link Identification Alarm with associated Severity"
    ::= {linkStatusEntry 17}

    linkRadioEocAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Fail of Radio Eoc link communication channel with associated
             Severity"
    ::= {linkStatusEntry 18}

    linkSetupMismatchAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The local setup doesn't match the setup of remote terminal"
    ::= {linkStatusEntry 19}

    linkRescueSetupAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The equipment is using the setup relative to the rescue modulation"
    ::= {linkStatusEntry 20}

    linkXpicProcedureBlockAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Only for XPIC equipment configurations.
             Equipment Controller XPIC procedure Alarm control with associated
             Severity"
    ::= {linkStatusEntry 21}

    linkXpicRemTxOffAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Only for XPIC equipment configurations.
             Remote TX OFF command with associated Severity"
    ::= {linkStatusEntry 22}

    linkRemoteIduAlarmSynthesis  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Synthesis of the remote IDU alarms"
    ::= {linkStatusEntry 23}

    linkNotMatchingRadiosAlarm  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Radios of the link does not have matched parameters."
    ::= {linkStatusEntry 24}

    linkConfigurationInProgress  OBJECT-TYPE
        SYNTAX      INTEGER   {
                               cleared (1),
                               active  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The link is being configured and the table linkSettingsTable is
             not available for modifying parameters.
            "
    ::= {linkStatusEntry 25}

    linkXpd  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Cross-Polarization Discrimination, in tenths of dB, is the
             difference between the received signal power of the
             co-polarized main beam, and it componemt received on the
             cross-polarized signal.
             This object shows an extimated value of the XPD performed by 
             the cross-polarization interference canceller (XPIC).
             This means that the measure is reliable if:
             - XPIC is on (linkType is radio2p0Xpic(4), or radio2p2XpicHS(5),
                           or radio2p2XpicFD(6))
             - Alarm radioDemodulatorFailAlarm is cleared.
             - XPD is not too high, since without cross-polar interference
               the canceller is not able to works well. Basically, in this
               condition, the extimated XPD is greater than the real one.
            "
    ::= {linkStatusEntry 26}

--
-------  End of linkStatusTable

-------  Begin of linkTfcTable
--
    linkTfcTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkTfcEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Transmitter Fail Check feature. In 1+1 HS configuration, the
             radio terminal that doesn't receive signals on both receivers,
             requests the remote transmitter switch.

             This table was deprecated and replaced by linkTfcV2Table.
             It is a view of the rows of the linkTfcV2Table with the same
             linkIndex and linkPolIndex equal to 1, in order to ensure
             compatibility with old SNMP managers.
            "
    ::= {radioSystem 18}

    linkTfcEntry OBJECT-TYPE
        SYNTAX      LinkTfcEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Radio link TFC entry."
        INDEX       {linkIndex}
    ::= {linkTfcTable 1}

     LinkTfcEntry  ::=
        SEQUENCE {
            linkTfcAction          INTEGER,
            linkTfcControl         INTEGER,
            linkTfcWatchWindow     INTEGER,
            linkTfcAlarmThreshold  INTEGER,
            linkTfcAlarm           AlarmStatus,
            linkTfcRowStatus       RowStatus                       
        }

    linkTfcAction OBJECT-TYPE
        SYNTAX    INTEGER   {
                             notActive (0),
                             reset     (1)
                            }
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
          "reset: to clear the forced switch generated by Trasmission Fail
           Check algorithm (only if 1+1 configuration and ISO system)."
    ::= {linkTfcEntry 1}

    linkTfcControl OBJECT-TYPE
        SYNTAX    INTEGER   {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "It enables the Tx switch from remote equipment (only if 1+1
             configuration and ISO system)."
        DEFVAL      {disable}
    ::= {linkTfcEntry 2}

    linkTfcWatchWindow OBJECT-TYPE
        SYNTAX      INTEGER   (1..300)
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "Watch Window (in seconds) related to Trasmission Fail Check
             algorithm (only if 1+1 configuration and ISO system)."
        DEFVAL      { 60 }
    ::= {linkTfcEntry 3}

    linkTfcAlarmThreshold OBJECT-TYPE
        SYNTAX      INTEGER   (1..60)
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "Alarm Threshold (number of seconds with both remote RX in fail)
             related to Trasmission Fail Check algorithm (only if 1+1
             configuration and ISO system)."
        DEFVAL      { 10 }
    ::= {linkTfcEntry 4}

    linkTfcAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Transmission switch alarm generated by Trasmission Fail Check
             algorithm (only if 1+1 configuration and ISO system)."
    ::= {linkTfcEntry 5}

    linkTfcRowStatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "Status of this conceptual row in linkTfcTable."
    ::= {linkTfcEntry 6}

--
-------  End of linkTfcTable

-------  Begin of linkMaintTable
--
    linkMaintTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with commands for maintenance of radio link.
             Objects in this table is not persistent. An Instance of this
             table is created on creation of linkStatusEntry"
    ::= {radioSystem 19}

    linkMaintEntry OBJECT-TYPE
        SYNTAX      LinkMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio link maintenance entry."
        INDEX       {linkIndex,
                     linkPolIndex}
    ::= {linkMaintTable 1}

    LinkMaintEntry  ::=
        SEQUENCE {
            linkBerStart                  INTEGER,
            linkBaseBandLom               INTEGER,
            linkFadeMarginMeasure         INTEGER,
            linkXpicControlProcedureReset INTEGER
        }

    linkBerStart OBJECT-TYPE
        SYNTAX      INTEGER {
                             restart  (1),
                             stop     (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Stop, Start (resetting errors and counters) the pattern.
             This item is linked to a manual operation (ManOpRecord) instance."
        DEFVAL {stop}
    ::= {linkMaintEntry 1}

    linkBaseBandLom OBJECT-TYPE
        SYNTAX      INTEGER {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "It is used to enable the IP packet forwarding towards modems.
           This item is linked to a manual operation (ManOpRecord) instance."
        DEFVAL      {disable}
    ::= {linkMaintEntry 2}

    linkFadeMarginMeasure OBJECT-TYPE
        SYNTAX    INTEGER   {
                             disable (1),
                             enable  (2)
                            }
        MAX-ACCESS  read-write
        STATUS      deprecated
        DESCRIPTION
          "Set by manager to start/stop fade margin measure.
           This item is linked to a manual operation (ManOpRecord) instance.
           This object is deprecated and replaced by fadeMarginMeasure.
          "
        DEFVAL      { disable }
    ::= {linkMaintEntry 3}

    linkXpicControlProcedureReset  OBJECT-TYPE
        SYNTAX      INTEGER {
                             notActive (0),
                             reset     (1)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Set by manager to reset the XPIC control procedure after a
             blocking action."
        DEFVAL      {notActive}
    ::= {linkMaintEntry 4}

--
-------  End of linkMaintTable

-------  Begin of linkBerTable
--
    linkBerTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkBerEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with Command to estimate BER  of radio equipment.
             Every objects in this table is not persistent. An Instance of this
             table is created on creation of linkStatusEntry"
    ::= {radioSystem 20}

    linkBerEntry OBJECT-TYPE
        SYNTAX      LinkBerEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio equipment BER estimate record."
        INDEX       {linkIndex,
                     linkPolIndex}
    ::= {linkBerTable 1}

    LinkBerEntry  ::=
        SEQUENCE {
            linkBerErrorCounterH           Counter32,
            linkBerErrorCounterL           Counter32,
            linkBerDataCounterH            Counter32,
            linkBerDataCounterL            Counter32,
            linkBerSyncLossAlarm           AlarmStatus,
            linkBerSyncLossAlarmCounter    Integer32,
            linkBerElapsedTime             Integer32
        }

    linkBerErrorCounterH OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "High 32 bit part of the 64 bit error counter. Bit 32-63."
    ::= {linkBerEntry 1}

    linkBerErrorCounterL OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Low 32 bit part of the 64 bit error counter. Bit 0-31."
    ::= {linkBerEntry 2}

    linkBerDataCounterH OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "High 32 bit part of the 64 bit data counter. Bit 32-63."
    ::= {linkBerEntry 3}

    linkBerDataCounterL OBJECT-TYPE
        SYNTAX      Counter32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Low 32 bit part of the 64 bit data counter. Bit 0-31."
    ::= {linkBerEntry 4}

    linkBerSyncLossAlarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "BER sync loss alarm."
    ::= {linkBerEntry 5}

    linkBerSyncLossAlarmCounter OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "BER sync loss events counter."
    ::= {linkBerEntry 6}

    linkBerElapsedTime OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "BER measure elapsed time."
    ::= {linkBerEntry 7}

--
-------  End of linkBerTable

-------  Begin of linkAcmTable
--
    linkAcmTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkAcmEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with link records."
    ::= {radioSystem 21}

    linkAcmEntry OBJECT-TYPE
        SYNTAX      LinkAcmEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "ACM entries."
        INDEX       {linkIndex, linkPolIndex, linkAcmProfileId}
    ::= {linkAcmTable 1}

    LinkAcmEntry  ::=
        SEQUENCE {
            linkAcmProfileId             Integer32,
            linkAcmProfileModulation     BitsPerSymbol,
            linkAcmProfileCode           INTEGER,
            linkAcmProfileCapacity       Integer32,
            linkAcmProfileLabel          DisplayString,
            linkAcmMaxTDMCapacity        Integer32,
            linkAcmPowerScaling          Integer32,
            linkAcmProfileEnable         INTEGER,
            linkAcmDownshiftThreshold    Integer32,
            linkAcmUpshiftThreshold      Integer32,
            linkAcmActiveProfile         INTEGER,
            linkAcmTDMCapacity           Integer32,
            linkAcmETHCapacity           Integer32,
            linkAcmAtpcRxPowerScaling    Integer32,
            linkAcmPowerRange            Integer32
         }

    linkAcmProfileId OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object identifies the profile number for the radio selected
             by the object linkAcmId."
    ::= {linkAcmEntry 1}

    linkAcmProfileModulation OBJECT-TYPE
        SYNTAX      BitsPerSymbol
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the modulation of the profile."
    ::= {linkAcmEntry 2}

    linkAcmProfileCode OBJECT-TYPE
        SYNTAX      INTEGER   {
                               normal (1),
                               strong (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is the type of codificator of the profile."
    ::= {linkAcmEntry 3}

    linkAcmProfileCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used to contain total capacity of profile
             (in kbits/sec)."
    ::= {linkAcmEntry 4}

    linkAcmProfileLabel OBJECT-TYPE
        SYNTAX      DisplayString (SIZE (0..32))
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "ASCII string used to assign a name to profile."
    ::= {linkAcmEntry 5}

    linkAcmProfileEnable OBJECT-TYPE
        SYNTAX      INTEGER   {
                               disable (1),
                               enable  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The object is used to contain if the use of this profile is
             enabled or disabled"
        DEFVAL      {enable}
    ::= {linkAcmEntry 6}

    linkAcmMaxTDMCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object reports the maximum capacity that can
             be assigned to the TDM traffic.
             The capacity is specified in number of E1 (2Mbit/s).

             This object has been superseded by linkE1vsSTM1CapacityTable.
            "
        DEFVAL      {0}
    ::= {linkAcmEntry 7}

    linkAcmPowerScaling OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object contains the difference (in eighth of dB) between the
             TX power at this profile modulation and the TX power at the
             reference modulation. The power scaling value is achieved from the
             table linkPtxProfileTable.
             This object is deprecated: see combinedRadioPowerScalingTable."
    ::= {linkAcmEntry 8}

    linkAcmDownshiftThreshold OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The object is used to contain the downshift threshold in dB/10."
    ::= {linkAcmEntry 9}

    linkAcmUpshiftThreshold OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The object is used to contain the upshift threshold in dB/10."
    ::= {linkAcmEntry 10}

    linkAcmActiveProfile OBJECT-TYPE
        SYNTAX    INTEGER   {
                             cleared    (1),
                             activeRx   (2),
                             activeTx   (3),
                             activeBoth (4)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used to contain the active status of this profile.
             The value of the object is related to linkAcmRxProfile
             and linkAcmTxProfile of the LinkStatusEntry."
        DEFVAL      {cleared}
    ::= {linkAcmEntry 11}

    linkAcmTDMCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports current TDM capacity (in kbits/sec)
             of the profile."
    ::= {linkAcmEntry 12}

    linkAcmETHCapacity OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports current ETH capacity (in Kbits/sec) of
             the profile."
    ::= {linkAcmEntry 13}

    linkAcmAtpcRxPowerScaling OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object contains the difference (in eighth of dB) between the
             ATPC RX level thresholds at this profile modulation and the ATPC
             RX level thresholds at the upper modulation.
             This object is deprecated: see combinedRadioPowerScalingTable."
    ::= {linkAcmEntry 14}

    linkAcmPowerRange OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object contains (in dB) the current value of ATPC range.
             This object is deprecated: see combinedRadioPowerScalingTable."
    ::= {linkAcmEntry 15}

--
-------  End of linkAcmTable

-------  Begin of linkProTable
--
    linkProTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkProEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "A list of protection link entries.

             This table was deprecated and replaced by linkProV2Table.
             It is a view of the rows of the linkProV2Table with the same
             linkIndex and linkPolIndex equal to 1, in order to ensure
             compatibility with old SNMP managers
            "
    ::= {radioSystem 22}

    linkProEntry OBJECT-TYPE
        SYNTAX      LinkProEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "An entry containing management information applicable to a
             protected link.
            "
        INDEX       {linkIndex}
    ::= {linkProTable 1}

    LinkProEntry  ::=
        SEQUENCE {          
            linkProProtectionTxChIdx         Integer32,
            linkProProtectionRxChIdx         Integer32,
            linkProTxWtrTime                 INTEGER,
            linkProRxWtrTime                 INTEGER,
            linkProTxSwitchedChIdx           Integer32,
            linkProRxSwitchedChIdx           Integer32,
            linkProTxRevertive               INTEGER,
            linkProRxRevertive               INTEGER,
            linkProExtraTraffic              INTEGER,
            linkProRowStatus                 RowStatus                       
         }
         
    linkProProtectionTxChIdx     OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "This object identifies the tx protection channel 
             of a protected link. This object is not applicable 
             in case of not-revertive protection. For N+1 links 
             a value different from zero must be set.
            "
        DEFVAL {0}
    ::= {linkProEntry 1}
    
     linkProProtectionRxChIdx     OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "This object identifies the rx protection channel 
             of a protected link. This object is not applicable 
             in case of not-revertive protection. For N+1 links 
             a value different from zero must be set.
            "
        DEFVAL {0}
    ::= {linkProEntry 2}
     
    linkProTxWtrTime OBJECT-TYPE
        SYNTAX      INTEGER     (0..12)
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "It defines the Wait Time (in minutes) to Restore in transmission
             when revertive protection is enabled. Zero value means no switch. 
             If switch is not supported or protection is not revertive, 
             a value different from zero cannot be set. 
            "
        DEFVAL {0}
    ::= {linkProEntry 3}
           
    linkProRxWtrTime OBJECT-TYPE
        SYNTAX      INTEGER     (0..12)
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "It defines the Wait Time (in minutes) to Restore in reception when
             revertive protection is enabled. Zero value means no switch. 
             If switch is not supported or protection is not revertive, 
             a value different from zero cannot be set. 
            "
        DEFVAL {0}
    ::= {linkProEntry 4}
        
    linkProTxSwitchedChIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object reports the index of tx channel switched to protection.
             This object is applicable only for N+1 protection schema.
            "
        DEFVAL {0}
    ::= {linkProEntry 5}
    
    linkProRxSwitchedChIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "This object reports the index of rx channel switched to protection.
             This object is applicable only for N+1 protection schema.
            "
        DEFVAL {0}
    ::= {linkProEntry 6}
     
    linkProTxRevertive OBJECT-TYPE
        SYNTAX      INTEGER {
                      disable (1),
                      enable  (2)
                    }
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "It defines if tx protection is revertive or not revertive.
             In case of N+1 protection, protection is always revertive.
            "
        DEFVAL {disable}
    ::= {linkProEntry 7}

    linkProRxRevertive OBJECT-TYPE
        SYNTAX      INTEGER {
                      disable (1),
                      enable  (2)
                    }
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "It defines if rx protection is revertive or not revertive.
             In case of N+1 protection, protection is always revertive.
            "
        DEFVAL {disable}
    ::= {linkProEntry 8}
    
     linkProExtraTraffic OBJECT-TYPE
        SYNTAX       INTEGER { 
                        disable (1), 
                        enable  (2) 
                     }
        MAX-ACCESS read-create
        STATUS     deprecated
        DESCRIPTION
        "This object enables or disables the transfer of extra traffic
         on the protection channel in a N+1 link. This object must be 
         set to disabled in case of architectures different for N+1.
         "
        DEFVAL {disable}
   ::= {linkProEntry 9}
   
    linkProRowStatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      deprecated
        DESCRIPTION
            "Status of this conceptual row in linkProTable.
            "
    ::= {linkProEntry 10}

--
-------  End of linkProTable

-------  Begin of linkProMaintTable
--
    linkProMaintTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkProMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "A list of maintenance commands for protected links.
             A row in this table is added on creation of a row
             in linkProTable.

             This table was deprecated and replaced by linkProMaintV2Table.
             It is a view of the rows of the linkProMaintV2Table with the same
             linkIndex and linkPolIndex equal to 1, in order to ensure
             compatibility with old SNMP managers
            "
    ::= {radioSystem 23}

    linkProMaintEntry OBJECT-TYPE
        SYNTAX      LinkProMaintEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "An entry containing maintenance commands applicable to a
             protected link.
            "
        INDEX       {linkIndex}
    ::= {linkProMaintTable 1}

    LinkProMaintEntry  ::=
        SEQUENCE {
            linkProMaintTxLockout      INTEGER,
            linkProMaintRxLockout      INTEGER,
            linkProMaintTxForced       Integer32,
            linkProMaintRxForced       Integer32,
            linkProMaintTxWtrReset     INTEGER,
            linkProMaintRxWtrReset     INTEGER
         }
              
      linkProMaintTxLockout OBJECT-TYPE
      SYNTAX      INTEGER   {
                             disable     (1), 
                             enable      (2)
                            }
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Command to enable/disable tx lockout. This object
           is applicable only in case of N+1 protections.
          "
      DEFVAL {disable}
      ::= {linkProMaintEntry 1}
      
      linkProMaintRxLockout OBJECT-TYPE
      SYNTAX      INTEGER   {
                             disable     (1), 
                             enable      (2)
                            }
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Command to enable/disable rx lockout. This object
           is applicable only in case of N+1 protections.
          "
      DEFVAL {disable}
      ::= {linkProMaintEntry 2}
      
      linkProMaintTxForced OBJECT-TYPE
      SYNTAX      Integer32
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Command to force switch to a given 
           transmission channel. Zero value means no 
           switch.
          "
      DEFVAL {0}
      ::= {linkProMaintEntry 3}
      
      linkProMaintRxForced OBJECT-TYPE
      SYNTAX      Integer32
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Command to force switch to a given 
           receiving channel. Zero value means no 
           switch.
          "
      DEFVAL {0}
      ::= {linkProMaintEntry 4}
      
      linkProMaintTxWtrReset OBJECT-TYPE
      SYNTAX      INTEGER  {
                            notActive  (1), 
                            on         (2)
                           }
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Clear wait time to restore making the revertive 
           path immediately available.
          "
     DEFVAL {notActive}
    ::= {linkProMaintEntry 5}
    
    linkProMaintRxWtrReset OBJECT-TYPE
      SYNTAX      INTEGER  {
                            notActive  (1), 
                            on         (2)
                           }
      MAX-ACCESS  read-write
      STATUS      deprecated
      DESCRIPTION
          "Clear wait time to restore making the revertive 
           path immediately available.
          "
     DEFVAL {notActive}
    ::= {linkProMaintEntry 6}
      
             
--
-------  End of linkProMaintTable

-------  Begin of linkCapabilitiesTable
--
    linkCapabilitiesTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF LinkCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Table with RadioCapabilities entries: there is an entry for each 
             linkTable row.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios.
             In 1+1 FD radio link, managers have to know the capabilities 
             of each channel. As such, this table is declared deprecated and
             replaced by combinedRadioCapabilitiesTable."
    ::= {radioSystem 24}

    linkCapabilitiesEntry  OBJECT-TYPE
        SYNTAX      LinkCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "LinkCapabilities entry."
        INDEX       {linkIndex}
    ::= {linkCapabilitiesTable 1}

    LinkCapabilitiesEntry  ::=
        SEQUENCE {
            linkCapabilitiesCapability           RadioCapability,
            linkCapabilitiesTxMinFrequency       Integer32,
            linkCapabilitiesTxMaxFrequency       Integer32,
            linkCapabilitiesStepFrequency        Integer32,
            linkCapabilitiesMinPtxNominalValue   Integer32,
            linkCapabilitiesMaxPtxNominalValue   Integer32,
            linkCapabilitiesExtendedMinPwr       Integer32
        }

    linkCapabilitiesCapability  OBJECT-TYPE
        SYNTAX      RadioCapability
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Bit map to describe the radio features."
    ::= {linkCapabilitiesEntry 1}

    linkCapabilitiesTxMinFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Minimum of available channel frequency in KHz."
    ::= {linkCapabilitiesEntry 2}

    linkCapabilitiesTxMaxFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Maximum of available channel frequency in KHz."
    ::= {linkCapabilitiesEntry 3}

    linkCapabilitiesStepFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Minimum frequency step in KHz."
    ::= {linkCapabilitiesEntry 4}

    linkCapabilitiesMinPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Minimum nominal Ptx in dBm."
    ::= {linkCapabilitiesEntry 5}

    linkCapabilitiesMaxPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Maximum nominal Ptx in dBm."
    ::= {linkCapabilitiesEntry 6}

    linkCapabilitiesExtendedMinPwr  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Minimum extended Ptx power for fade margin."
    ::= {linkCapabilitiesEntry 7}
--
-------  End of linkCapabilitiesTable

-------  Begin of linkFrequencyTable
--
    linkFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     LinkFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Availables channels for selected channel spacing and modulation 
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios.
             In 1+1 FD radio link, managers have to know the allowable 
             frequencies of each channel. As such, this table is declared
             deprecated and replaced by combinedRadioFrequencyTable."
    ::= {radioSystem 25}

    linkFreqTabEntry  OBJECT-TYPE
        SYNTAX      LinkFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "LinkFreqTab record."
        INDEX {linkIndex, linkFreqChannelId}
    ::= {linkFrequencyTable 1}

    LinkFreqEntry  ::=
        SEQUENCE {
            linkFreqChannelId   Integer32,
            linkFreqChannelNum  Integer32,
            linkFreqValue       Integer32
        }

    linkFreqChannelId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Index of the table"
    ::= {linkFreqTabEntry 1}

    linkFreqChannelNum  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Available channel number."
    ::= {linkFreqTabEntry 2}

    linkFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Frequency related to linkFreqChannelNum."
    ::= {linkFreqTabEntry 3}
--
-------  End of linkFrequencyTable

-------  Begin of linkDuplexFrequencyTable
--
    linkDuplexFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     LinkDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Table with available duplex frequencies. Duplex frequency is
             the absolute value of difference between RX and TX frequency.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios.
             In 1+1 FD radio link, managers have to know the allowable 
             duplex frequencies of each channel. As such, this table is declared
             deprecated and replaced by combinedRadioDuplexFrequencyTable."
    ::= {radioSystem 26}

    linkDuplexFreqEntry  OBJECT-TYPE
        SYNTAX      LinkDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      deprecated
        DESCRIPTION
            "Duplex Frequency entry. For each available duplex frequency"
        INDEX {linkIndex, linkDuplexFreqId}
    ::= {linkDuplexFrequencyTable 1}

    LinkDuplexFreqEntry  ::=
        SEQUENCE {
            linkDuplexFreqId     Integer32,
            linkDuplexFreqValue  Integer32
        }

    linkDuplexFreqId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Index of the table."
    ::= {linkDuplexFreqEntry 1}

    linkDuplexFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      deprecated
        DESCRIPTION
            "Duplex frequency in KHz."
    ::= {linkDuplexFreqEntry 2}
--
-------  End of linkDuplexFrequencyTable

-------  Begin of linkModulationTable
--
    linkModulationTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     LinkModulationEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "List of modulation related to channel spacing.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios.
            "
    ::= {radioSystem 27}

    linkModulationEntry  OBJECT-TYPE
        SYNTAX      LinkModulationEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "linkModulation record."
        INDEX {linkIndex, linkChannelSpacing}
    ::= {linkModulationTable 1}

    LinkModulationEntry  ::=
        SEQUENCE {
            linkChannelSpacing    ChannelSpacing,
            linkModulationMap     ModulationMap,
            linkRefModulationMap  ModulationMap
        }

    linkChannelSpacing  OBJECT-TYPE
        SYNTAX      ChannelSpacing
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object identifies the channel spacing."
    ::= {linkModulationEntry 1}

    linkModulationMap  OBJECT-TYPE
        SYNTAX      ModulationMap
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "List of modulation in the linkChanSpacing"
    ::= {linkModulationEntry 2}

    linkRefModulationMap  OBJECT-TYPE
        SYNTAX      ModulationMap
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "List of modulations that can be selected as reference
             in the linkChanSpacingId"
    ::= {linkModulationEntry 3}
--
-------  End of linkModulationTable

-------  Begin of linkChCapabilitiesTable
--
    combinedRadioCapabilitiesTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF CombinedRadioCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with RadioCapabilities entries: there is an entry for each 
             radioSettingTable row.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios belonging to the link.
             In 1+1 FD radio link, managers have to know the allowable 
             duplex frequencies of each channel. As such, this table is declared
             deprecated and replaced by combinedRadioCapabilitiesTable."
    ::= {radioSystem 28}

    combinedRadioCapabilitiesEntry  OBJECT-TYPE
        SYNTAX      CombinedRadioCapabilitiesEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "combinedRadioCapabilities entry."
        INDEX       {radioSettingsIndex}
    ::= {combinedRadioCapabilitiesTable 1}

    CombinedRadioCapabilitiesEntry  ::=
        SEQUENCE {
            combinedRadioCapabilitiesCapability           RadioCapability,
            combinedRadioCapabilitiesTxMinFrequency       Integer32,
            combinedRadioCapabilitiesTxMaxFrequency       Integer32,
            combinedRadioCapabilitiesStepFrequency        Integer32,
            combinedRadioCapabilitiesMinPtxNominalValue   Integer32,
            combinedRadioCapabilitiesMaxPtxNominalValue   Integer32,
            combinedRadioCapabilitiesExtendedMinPwr       Integer32
        }

    combinedRadioCapabilitiesCapability  OBJECT-TYPE
        SYNTAX      RadioCapability
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Bit map to describe the radio features."
    ::= {combinedRadioCapabilitiesEntry 1}

    combinedRadioCapabilitiesTxMinFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum of available channel frequency in KHz."
    ::= {combinedRadioCapabilitiesEntry 2}

    combinedRadioCapabilitiesTxMaxFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Maximum of available channel frequency in KHz."
    ::= {combinedRadioCapabilitiesEntry 3}

    combinedRadioCapabilitiesStepFrequency  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum frequency step in KHz."
    ::= {combinedRadioCapabilitiesEntry 4}

    combinedRadioCapabilitiesMinPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum nominal Ptx in dBm."
    ::= {combinedRadioCapabilitiesEntry 5}

    combinedRadioCapabilitiesMaxPtxNominalValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Maximum nominal Ptx in dBm."
    ::= {combinedRadioCapabilitiesEntry 6}

    combinedRadioCapabilitiesExtendedMinPwr  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Minimum extended Ptx power for fade margin."
    ::= {combinedRadioCapabilitiesEntry 7}
--
-------  End of combinedRadioCapabilitiesTable

-------  Begin of combinedRadioFrequencyTable
--
    combinedRadioFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF CombinedRadioFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Availables channels for selected channel spacing and modulation 
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios."
    ::= {radioSystem 29}

    combinedRadioFreqTabEntry  OBJECT-TYPE
        SYNTAX      CombinedRadioFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "combinedRadioFreqTab record."
        INDEX {radioSettingsIndex, combinedRadioFreqChannelId}
    ::= {combinedRadioFrequencyTable 1}

    CombinedRadioFreqEntry  ::=
        SEQUENCE {
            combinedRadioFreqChannelId   Integer32,
            combinedRadioFreqChannelNum  Integer32,
            combinedRadioFreqValue       Integer32
        }

    combinedRadioFreqChannelId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Index of the table"
    ::= {combinedRadioFreqTabEntry 1}

    combinedRadioFreqChannelNum  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Available channel number."
    ::= {combinedRadioFreqTabEntry 2}

    combinedRadioFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Frequency related to combinedRadioFreqChannelNum."
    ::= {combinedRadioFreqTabEntry 3}
--
-------  End of combinedRadioFrequencyTable

-------  Begin of combinedRadioDuplexFrequencyTable
--
    combinedRadioDuplexFrequencyTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     CombinedRadioDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with available duplex frequencies. Duplex frequency is
             the absolute value of difference between RX and TX frequency.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios."
    ::= {radioSystem 30}

    combinedRadioDuplexFreqEntry  OBJECT-TYPE
        SYNTAX      CombinedRadioDuplexFreqEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Duplex Frequency entry. There is an entry for each available
             duplex frequency."
        INDEX {radioSettingsIndex, combinedRadioDuplexFreqId}
    ::= {combinedRadioDuplexFrequencyTable 1}

    CombinedRadioDuplexFreqEntry  ::=
        SEQUENCE {
            combinedRadioDuplexFreqId     Integer32,
            combinedRadioDuplexFreqValue  Integer32
        }

    combinedRadioDuplexFreqId  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Index of the table."
    ::= {combinedRadioDuplexFreqEntry 1}

    combinedRadioDuplexFreqValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Duplex frequency in KHz."
    ::= {combinedRadioDuplexFreqEntry 2}
--
-------  End of combinedRadioDuplexFrequencyTable

-------  Begin of combinedRadioPowerScalingTable
--
    combinedRadioPowerScalingTable  OBJECT-TYPE
        SYNTAX      SEQUENCE OF     CombinedRadioPowerScalingEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "List of modulation related to channel spacing.
             In 1+1 HS and XPIC radio links, this table contains only values
             supported by both radios."
    ::= {radioSystem 31}

    combinedRadioPowerScalingEntry  OBJECT-TYPE
        SYNTAX      CombinedRadioPowerScalingEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "radioPowerScaling record."
        INDEX {radioSettingsIndex, linkAcmProfileId}
    ::= {combinedRadioPowerScalingTable 1}

    CombinedRadioPowerScalingEntry  ::=
        SEQUENCE {
            combinedRadioPowerScaling        Integer32,
            combinedRadioAtpcRxPowerScaling  Integer32,
            combinedRadioPowerRange          Integer32
        }

    combinedRadioPowerScaling OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the difference (in eighth of dB) between the
             TX power at this profile modulation and the TX power at the
             reference modulation. The power scaling value is achieved from the
             table linkPtxProfileTable."
    ::= {combinedRadioPowerScalingEntry 1}

    combinedRadioAtpcRxPowerScaling OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains the difference (in eighth of dB) between the
             ATPC RX level thresholds at this profile modulation and the ATPC
             RX level thresholds at the upper modulation."
    ::= {combinedRadioPowerScalingEntry 2}

    combinedRadioPowerRange OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object contains (in dB) the current value of ATPC range."
    ::= {combinedRadioPowerScalingEntry 3}
--
-------  End of radioPowerScalingTable

-------  Begin of stm1BulkSettingsTable
--
    stm1BulkMappingTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  Stm1BulkMappingEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with entries containing stm-1 bulk transport parameters 
             for a particular link.
             For each link are present as many rows as the STM-1 that the link
             can carry in bulk mode.
           "
    ::= {radioSystem 32}

    stm1BulkMappingEntry OBJECT-TYPE
        SYNTAX      Stm1BulkMappingEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An row in stm1BulkSettingsTable.
            "
        INDEX       {linkIndex, stm1BulkPolIndex, stm1BulkChanIndex}
    ::= {stm1BulkMappingTable 1}

    Stm1BulkMappingEntry  ::=
      SEQUENCE {
                stm1BulkPolIndex           Integer32,
                stm1BulkChanIndex          Integer32,
                stm1BulkChannel            Stm1IndexOrZero
        }

    stm1BulkPolIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
       DESCRIPTION
            "Polarization index.
            "
    ::= {stm1BulkMappingEntry 1}

    stm1BulkChanIndex OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
       DESCRIPTION
            "STM-1 channel index.
             The range of this object is from 1 to N, where N is the number
             of STM-1 that a link can carry in bulk mode.
            "
    ::= {stm1BulkMappingEntry 2}

    stm1BulkChannel OBJECT-TYPE
        SYNTAX      Stm1IndexOrZero
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Index of the stm-1 in stm1Table.
             The SNMP agent will accept only index of a STM-1 present in
             stm1Table with stm1Structure set to opaque(4).
            "
         DEFVAL     {0}
    ::= {stm1BulkMappingEntry 3}

--
-------  End of stm1BulkSettingsTable

-------  Begin of linkE1vsSTM1CapacityTable
--

    linkE1vsSTM1CapacityTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkE1vsSTM1CapacityEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Table with entries containing the E1 cpacity according to the
             tributaries STM-1 configured to be carried in bulk mode.
            "
    ::= {radioSystem 33}

    linkE1vsSTM1CapacityEntry OBJECT-TYPE
        SYNTAX      LinkE1vsSTM1CapacityEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An row in linkE1vsSTM1CapacityTable.
            "
        INDEX       {linkIndex, linkAcmProfileId, linkE1vsSTM1CapacityStm1}
    ::= {linkE1vsSTM1CapacityTable 1}

    LinkE1vsSTM1CapacityEntry  ::=
      SEQUENCE {
                linkE1vsSTM1CapacityStm1      Integer32,
                linkE1vsSTM1CapacityE1        Integer32
               }

    linkE1vsSTM1CapacityStm1 OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Number of tributaries STM-1 configured to be transported in
             bulk mode.
            "
    ::= {linkE1vsSTM1CapacityEntry 1 }

    linkE1vsSTM1CapacityE1 OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
       DESCRIPTION
            "Number of E1 that can be carried by this profile according to the
             the tributaries STM-1 carried in bulk mode.
            "
    ::= {linkE1vsSTM1CapacityEntry 2}

--
-------  End of linkE1vsSTM1CapacityTable

-------  Begin of linkTfcV2Table
--
    linkTfcV2Table OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkTfcV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Transmitter Fail Check feature. In 1+1 HS configuration, the
             radio terminal that doesn't receive signals on both receivers,
             requests the remote transmitter switch."
    ::= {radioSystem 34}

    linkTfcV2Entry OBJECT-TYPE
        SYNTAX      LinkTfcV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "Radio link TFC entry."
        INDEX       {linkIndex, linkPolIndex}
    ::= {linkTfcV2Table 1}

     LinkTfcV2Entry  ::=
        SEQUENCE {
            linkTfcV2Action          INTEGER,
            linkTfcV2Control         INTEGER,
            linkTfcV2WatchWindow     INTEGER,
            linkTfcV2AlarmThreshold  INTEGER,
            linkTfcV2Alarm           AlarmStatus,
            linkTfcV2RowStatus       RowStatus                       
        }

    linkTfcV2Action OBJECT-TYPE
        SYNTAX    INTEGER   {
                             notActive (0),
                             reset     (1)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
          "reset: to clear the forced switch generated by Trasmission Fail
           Check algorithm (only if 1+1 configuration and ISO system)."
    ::= {linkTfcV2Entry 1}

    linkTfcV2Control OBJECT-TYPE
        SYNTAX    INTEGER   {
                             disable  (1),
                             enable   (2)
                            }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "It enables the Tx switch from remote equipment (only if 1+1
             configuration and ISO system)."
        DEFVAL      {disable}
    ::= {linkTfcV2Entry 2}

    linkTfcV2WatchWindow OBJECT-TYPE
        SYNTAX      INTEGER   (1..300)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Watch Window (in seconds) related to Trasmission Fail Check
             algorithm (only if 1+1 configuration and ISO system)."
        DEFVAL      { 60 }
    ::= {linkTfcV2Entry 3}

    linkTfcV2AlarmThreshold OBJECT-TYPE
        SYNTAX      INTEGER   (1..60)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Alarm Threshold (number of seconds with both remote RX in fail)
             related to Trasmission Fail Check algorithm (only if 1+1
             configuration and ISO system)."
        DEFVAL      { 10 }
    ::= {linkTfcV2Entry 4}

    linkTfcV2Alarm OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Transmission switch alarm generated by Trasmission Fail Check
             algorithm (only if 1+1 configuration and ISO system)."
    ::= {linkTfcV2Entry 5}

    linkTfcV2RowStatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this conceptual row in linkTfcV2Table."
    ::= {linkTfcV2Entry 6}

--
-------  End of linkTfcV2Table

-------  Begin of linkProV2Table
--
    linkProV2Table OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkProV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of protection link entries.
            "
    ::= {radioSystem 35}

    linkProV2Entry OBJECT-TYPE
        SYNTAX      LinkProV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing management information applicable to a
             protected link.
            "
        INDEX       {linkIndex, linkPolIndex}
    ::= {linkProV2Table 1}

    LinkProV2Entry  ::=
        SEQUENCE {          
            linkProV2ProtectionTxChIdx         Integer32,
            linkProV2ProtectionRxChIdx         Integer32,
            linkProV2TxWtrTime                 INTEGER,
            linkProV2RxWtrTime                 INTEGER,
            linkProV2TxSwitchedChIdx           Integer32,
            linkProV2RxSwitchedChIdx           Integer32,
            linkProV2TxRevertive               INTEGER,
            linkProV2RxRevertive               INTEGER,
            linkProV2ExtraTraffic              INTEGER,
            linkProV2RowStatus                 RowStatus                       
         }
         
    linkProV2ProtectionTxChIdx     OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object identifies the tx protection channel 
             of a protected link. This object is not applicable 
             in case of not-revertive protection. For N+1 links 
             a value different from zero must be set.
            "
        DEFVAL {0}
    ::= {linkProV2Entry 1}
    
     linkProV2ProtectionRxChIdx     OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "This object identifies the rx protection channel 
             of a protected link. This object is not applicable 
             in case of not-revertive protection. For N+1 links 
             a value different from zero must be set.
            "
        DEFVAL {0}
    ::= {linkProV2Entry 2}
     
    linkProV2TxWtrTime OBJECT-TYPE
        SYNTAX      INTEGER     (0..12)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "It defines the Wait Time (in minutes) to Restore in transmission
             when revertive protection is enabled. Zero value means no switch. 
             If switch is not supported or protection is not revertive, 
             a value different from zero cannot be set. 
            "
        DEFVAL {0}
    ::= {linkProV2Entry 3}
           
    linkProV2RxWtrTime OBJECT-TYPE
        SYNTAX      INTEGER     (0..12)
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "It defines the Wait Time (in minutes) to Restore in reception when
             revertive protection is enabled. Zero value means no switch. 
             If switch is not supported or protection is not revertive, 
             a value different from zero cannot be set. 
            "
        DEFVAL {0}
    ::= {linkProV2Entry 4}
        
    linkProV2TxSwitchedChIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the index of tx channel switched to protection.
             This object is applicable only for N+1 protection schema.
            "
        DEFVAL {0}
    ::= {linkProV2Entry 5}
    
    linkProV2RxSwitchedChIdx  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object reports the index of rx channel switched to protection.
             This object is applicable only for N+1 protection schema.
            "
        DEFVAL {0}
    ::= {linkProV2Entry 6}
     
    linkProV2TxRevertive OBJECT-TYPE
        SYNTAX      INTEGER {
                      disable (1),
                      enable  (2)
                    }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "It defines if tx protection is revertive or not revertive.
             In case of N+1 protection, protection is always revertive.
            "
        DEFVAL {disable}
    ::= {linkProV2Entry 7}

    linkProV2RxRevertive OBJECT-TYPE
        SYNTAX      INTEGER {
                      disable (1),
                      enable  (2)
                    }
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "It defines if rx protection is revertive or not revertive.
             In case of N+1 protection, protection is always revertive.
            "
        DEFVAL {disable}
    ::= {linkProV2Entry 8}
    
     linkProV2ExtraTraffic OBJECT-TYPE
        SYNTAX       INTEGER { 
                        disable (1), 
                        enable  (2) 
                     }
        MAX-ACCESS read-create
        STATUS     current
        DESCRIPTION
        "This object enables or disables the transfer of extra traffic
         on the protection channel in a N+1 link. This object must be 
         set to disabled in case of architectures different for N+1.
         "
        DEFVAL {disable}
    ::= {linkProV2Entry 9}
   
    linkProV2RowStatus   OBJECT-TYPE
        SYNTAX      RowStatus
        MAX-ACCESS  read-create
        STATUS      current
        DESCRIPTION
            "Status of this conceptual row in linkProV2Table.
            "
    ::= {linkProV2Entry 10}

--
-------  End of linkProV2Table

-------  Begin of linkProMaintV2Table
--
    linkProMaintV2Table OBJECT-TYPE
        SYNTAX      SEQUENCE OF  LinkProMaintV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of maintenance commands for protected links.
             A row in this table is added on creation of a row
             in linkProV2Table.
            "
    ::= {radioSystem 36}

    linkProMaintV2Entry OBJECT-TYPE
        SYNTAX      LinkProMaintV2Entry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing maintenance commands applicable to a
             protected link.
            "
        INDEX       {linkIndex, linkPolIndex}
    ::= {linkProMaintV2Table 1}

    LinkProMaintV2Entry  ::=
        SEQUENCE {
            linkProMaintV2TxLockout      INTEGER,
            linkProMaintV2RxLockout      INTEGER,
            linkProMaintV2TxForced       Integer32,
            linkProMaintV2RxForced       Integer32,
            linkProMaintV2TxWtrReset     INTEGER,
            linkProMaintV2RxWtrReset     INTEGER
         }
              
      linkProMaintV2TxLockout OBJECT-TYPE
      SYNTAX      INTEGER   {
                             disable     (1), 
                             enable      (2)
                            }
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Command to enable/disable tx lockout. This object
           is applicable only in case of N+1 protections.
          "
      DEFVAL {disable}
      ::= {linkProMaintV2Entry 1}
      
      linkProMaintV2RxLockout OBJECT-TYPE
      SYNTAX      INTEGER   {
                             disable     (1), 
                             enable      (2)
                            }
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Command to enable/disable rx lockout. This object
           is applicable only in case of N+1 protections.
          "
      DEFVAL {disable}
      ::= {linkProMaintV2Entry 2}
      
      linkProMaintV2TxForced OBJECT-TYPE
      SYNTAX      Integer32
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Command to force switch to a given 
           transmission channel. Zero value means no 
           switch.
          "
      DEFVAL {0}
      ::= {linkProMaintV2Entry 3}
      
      linkProMaintV2RxForced OBJECT-TYPE
      SYNTAX      Integer32
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Command to force switch to a given 
           receiving channel. Zero value means no 
           switch.
          "
      DEFVAL {0}
      ::= {linkProMaintV2Entry 4}
      
      linkProMaintV2TxWtrReset OBJECT-TYPE
      SYNTAX      INTEGER  {
                            notActive  (1), 
                            on         (2)
                           }
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Clear wait time to restore making the revertive 
           path immediately available.
          "
     DEFVAL {notActive}
    ::= {linkProMaintV2Entry 5}
    
    linkProMaintV2RxWtrReset OBJECT-TYPE
      SYNTAX      INTEGER  {
                            notActive  (1), 
                            on         (2)
                           }
      MAX-ACCESS  read-write
      STATUS      current
      DESCRIPTION
          "Clear wait time to restore making the revertive 
           path immediately available.
          "
     DEFVAL {notActive}
    ::= {linkProMaintV2Entry 6}
                   
--
-------  End of linkProMaintV2Table

-------  Begin of sspTable
--
    sspTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF SspEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "A list of operative and administrative set of parameters.
             This table holds three row for every link (and its polarizations)
             configured in the NE:
              1) administative parameters of local NE
              2) operative parameters of local NE
              3) administative parameters of remote NE
            "
    ::= {radioSystem 37}

    sspEntry OBJECT-TYPE
        SYNTAX      SspEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing SSP relevant parameters.
            "
        INDEX       {linkIndex, linkPolIndex, sspParameterType}
    ::= {sspTable 1}

    SspEntry  ::=
        SEQUENCE  {
            sspParameterType                  INTEGER,
            sspLinkBandwidth                  INTEGER,
            sspLinkModulation                 INTEGER,
            sspLinkAcmEngineEnable            INTEGER,
            sspLinkTxUpperProfile             INTEGER,
            sspLinkTxLowerProfile             INTEGER,
            sspLinkSynchSetupProtocolEnable   INTEGER,
            sspLinkProfilesSetSelection       INTEGER,
            sspTdmE1Channel                   Integer32,
            sspTdmStm1Channel                 Integer32
         }

    sspParameterType OBJECT-TYPE
        SYNTAX      INTEGER {
                              localAdminStatus  (1),
                              localOperStatus   (2),
                              remoteAdminStatus (3)
                            }
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "This object identifies what parameters are for.
            "
    ::= {sspEntry 1}

    sspLinkBandwidth OBJECT-TYPE
        SYNTAX      INTEGER {
                              sspBw3p5Mhz          (0),
                              sspBw7MHz            (1),
                              sspBw14MHz           (2),
                              sspBw28MHz           (3),
                              sspBw56MHz           (4),
                              sspBw10MHz           (5),
                              sspBw20MHz           (6),
                              sspBw30MHz           (7),
                              sspBw40MHz           (8),
                              sspBw50MHz           (9),
                              sspBw112Mhz          (10),
                              sspBw250Mhz          (11),
                              sspBw500Mhz          (12),
                              sspBw750Mhz          (13),
                              sspBw1Ghz            (14),
                              sspBw60MHz           (15),
                              sspBw80MHz           (16)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Link Bandwidth (channel spacing).
            "
    ::= {sspEntry 2}

    sspLinkModulation OBJECT-TYPE
        SYNTAX      INTEGER{
                              sspModBPSK          (1),
                              sspMod4QAM          (2),
                              sspMod8PSK          (3),
                              sspMod16QAM         (4),
                              sspMod32QAM         (5),
                              sspMod64QAM         (6),
                              sspMod128QAM        (7),
                              sspMod256QAM        (8),
                              sspMod512QAM        (9),
                              sspMod1024QAM       (10),
                              sspMod2048QAM       (11),
                              sspMod4096QAM       (12)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Link reference modulation.
            "
    ::= {sspEntry 3}

    sspLinkAcmEngineEnable OBJECT-TYPE
        SYNTAX      INTEGER  {
                              disable (1),
                              enable  (2)
                             }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object is used to enable/disable the ACM engine.
            "
        DEFVAL  { disable }
    ::=  {sspEntry 4}

    sspLinkTxUpperProfile OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The object (and linkTxLowerProfile object) is used to
             restrict the TX profile range when ACM is enabled.
            "
    ::= {sspEntry 5}

    sspLinkTxLowerProfile OBJECT-TYPE
        SYNTAX      INTEGER
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The object (and linkTxUpperProfile object) is used to
             restrict the TX profile range when ACM is enabled.
            "
    ::= {sspEntry 6}

    sspLinkSynchSetupProtocolEnable OBJECT-TYPE
        SYNTAX      INTEGER   {
                               disable (1),
                               enable  (2)
                              }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Synchronization Setup Protocol (SSP) control.
            "
    ::= {sspEntry 7}

    sspLinkProfilesSetSelection OBJECT-TYPE
        SYNTAX      INTEGER  {
                              highThroughput (1),
                              highGain       (2)
                             }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Selection of the working profile set between high gain
             (max robustness) profile set and high throughput (max
             capacity) profile set. The set of profiles high gain
             features a greater robustness against to the set of
             profiles high throughput.
             For radio systems that do not have more sets of profiles,
             this object becomes read only and its reading shows the
             only one set of profiles supported.
            "
    ::= {sspEntry 8}

    sspTdmE1Channel OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Number of E1 channels. This object is used to define the capacity
             of E1 tributaries assigned to a given radio link. The capacity is
             changed in steps of E1 (2Mbit/s).
            "
    ::= {sspEntry 9}

    sspTdmStm1Channel OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Number of STM-1 channels transported in bulk mode.
            "
    ::= {sspEntry 10}

--
-------  End of sspTable

-------  Begin of radioLoopCapabilityTable
--
    radioLoopCapabilityTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF RadioLoopCapabilityEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "This table shows which group a radio loop belongs to.
             Radios with the same group number (identifier) close loop
             simultaneously.
            "
    ::= {radioSystem 38}

    radioLoopCapabilityEntry OBJECT-TYPE
        SYNTAX      RadioLoopCapabilityEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing a group identifier for each radio loop type.
            "
        INDEX       {radioIndex}
    ::= {radioLoopCapabilityTable 1}

    RadioLoopCapabilityEntry  ::=
        SEQUENCE  {
            radioLoopRfGroup                  Integer32,
            radioLoopIqGroup                  Integer32,
            radioLoopBaseBandGroup            Integer32
         }

    radioLoopRfGroup OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The group to which the radio RF loop belong to.
            "
    ::= {radioLoopCapabilityEntry 1}


    radioLoopIqGroup OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The group to which the radio IQ loop belong to.
            "
    ::= {radioLoopCapabilityEntry 2}

    radioLoopBaseBandGroup OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The group to which the radio base loop belong to.
            "
    ::= {radioLoopCapabilityEntry 3}

--
-------  End of radioLoopCapabilityTable

-------  Begin of radioRxThresholdTable
--
    radioRxBerThresholdTable OBJECT-TYPE
        SYNTAX      SEQUENCE OF RadioRxBerThresholdEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "This table shows the nominal and measured values of RX power 
             at a bit error rate (BER) equal to 10e-6.
            "
    ::= {radioSystem 39}

    radioRxBerThresholdEntry OBJECT-TYPE
        SYNTAX      RadioRxBerThresholdEntry
        MAX-ACCESS  not-accessible
        STATUS      current
        DESCRIPTION
            "An entry containing the RX power thresholds.
            "
        INDEX       {radioIndex}
    ::= {radioRxBerThresholdTable 1}

    RadioRxBerThresholdEntry  ::=
        SEQUENCE  {
            radioRxBerThresholdStatus     INTEGER,
            radioNominalRxBerThreshold    Integer32,
            radioMeasuredRxBerThreshold   Integer32
         }

    radioRxBerThresholdStatus OBJECT-TYPE
        SYNTAX      INTEGER {
                              nonValid (1),
                              valid(2)
                            }
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "This object shows whether the following objects are significant.
            "
    ::= {radioRxBerThresholdEntry 1}

    radioNominalRxBerThreshold OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The nominal value of RX power @ BER equal to 10e-6
            "
    ::= {radioRxBerThresholdEntry 2}

    radioMeasuredRxBerThreshold OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "The measured value of RX power @ BER equal to 10e-6.
            "
    ::= {radioRxBerThresholdEntry 3}

--
-------  End of radioRxThresholdTable


    radioRemDemodulatorFailAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioRemDemodulatorFailAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 50}

    radioRxActiveStatusTrapNotification OBJECT-TYPE
        SYNTAX      INTEGER   {
                               trapDisable       (1),
                               trapEnable        (2)
                              }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enable/disables (statusTrapEnable or statusTrapDisable) the trap
             generation on status change event for radioRxActivestatus"
        DEFVAL{ trapEnable }
    ::=  {radioSystem 51}

    radioTxActiveStatusTrapNotification OBJECT-TYPE
        SYNTAX      INTEGER   {
                               trapDisable       (1),
                               trapEnable        (2)
                              }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioTxActivestatus and
             enable/disable the trap generation on status change event."
        DEFVAL{ trapEnable }
    ::=  {radioSystem 52}

    radioCableOpenAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the  radioCableOpen
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 53}

    radioCableShortAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the  radioCableShort
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 54}

    radioInvalidFrequencyAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioInvalidFrequencyAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 55}

    radioBaseBandRxAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioBaseBandRxAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 56}

    radioModulatorFailAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioModulatorFailAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 57}

    radioDemodulatorFailAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioDemodulatorFailAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 58}

    radioRxPowerLowAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioRxPowerLowAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 59}

    radioTxPowerLowAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioTxPowerLowAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 60}

    radioVcoFailAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioVcoFailAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 61}

    radioRxIFAgcAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioRxIFAgcAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 62}

    radioTxIFAgcAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioTxIFAgcAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 63}

    radioIduOduCommunicationAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioIduOduCommunicationAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 64}

    radioOduIduCommunicationAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioOduIduCommunicationAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {radioSystem 65}

    radioLocalOduAlarmSynthesisSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioLocalOduAlarmSynthesis
             and enable/disable the trap generation on status change event."
        DEFVAL {statusTrapDisable}
    ::= {radioSystem 66}

    radioRemoteOduAlarmSynthesisSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioRemoteOduAlarmSynthesis
             and enable/disable the trap generation on status change event."
        DEFVAL {statusTrapDisable}
    ::= {radioSystem 67}

    radioConfigMismatchAlarmSeverityCode  OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the severity associated to the radioConfigMismatchAlarm
             and enables/disables the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 68}

    radioPrxHysteresisValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the delta value associated to the radioPrx before
             having a new trap generation (radioPtxChange TRAP).
             The zero value is not allowed."
        DEFVAL {3}
    ::= {radioSystem 69}

    radioPtxHysteresisValue  OBJECT-TYPE
        SYNTAX      Integer32
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Defines the delta value associated to the radioPtx before
             having a new trap generation (radioPtxChange TRAP).
             The zero value is not allowed."
        DEFVAL {3}
    ::= {radioSystem 70}

    radioPrxHysteresisValueTrapNotification  OBJECT-TYPE
        SYNTAX      INTEGER {
                             trapDisable  (1),
                             trapEnable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enables/disables the Rx change trap generation on status change
             event."
        DEFVAL {trapEnable}
    ::= {radioSystem 71}

    radioPtxHysteresisValueTrapNotification  OBJECT-TYPE
        SYNTAX      INTEGER {
                             trapDisable  (1),
                             trapEnable   (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enables/disables the Tx change trap generation on status change
             event."
        DEFVAL {trapEnable}
    ::= {radioSystem 72}

    radioRxQualityLowAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioRxQualityLowAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 73}

    radioRxQualityWarningAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the radioRxQualityWarningAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 74}

    linkReducedCapacityAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkReducedCapacityAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {radioSystem 75}

    linkLinkTelemetryFailAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkLinkTelemetryFailAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 76}

    linkIdMismatchAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkIdMismatchAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 77}

    linkRadioEocAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkRadioEocAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 78}

    linkSetupMismatchAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkSetupMismatchAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {warningTrapEnable}
    ::= {radioSystem 79}

    linkRescueSetupAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkRescueSetupAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {criticalTrapEnable}
    ::= {radioSystem 80}

    linkXpicProcedureBlockAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkXpicProcedureBlockAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 81}

    linkXpicRemTxOffAlarmAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkXpicRemTxOffAlarm
            and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 82}

    linkLocalIduAlarmSynthesis  OBJECT-TYPE
        SYNTAX      AlarmStatus
        MAX-ACCESS  read-only
        STATUS      current
        DESCRIPTION
            "Synthesis of the local IDU alarms"
    ::= {radioSystem 83}

    linkLocalIduAlarmSynthesisSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkLocalIduAlarmSynthesis
            and enable/disable the trap generation on status change event."
        DEFVAL{ statusTrapDisable }
    ::=  {radioSystem 84}

    linkRemoteIduAlarmSynthesisSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkLocalIduAlarmSynthesis
            and enable/disable the trap generation on status change event."
        DEFVAL{ statusTrapDisable }
    ::=  {radioSystem 85}

    linkTfcAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
           "Define the severity associated to the linkTfcV2Alarm (linkTfcAlarm)
            and enable/disable the trap generation on status change event."
        DEFVAL      { minorTrapEnable }
    ::= {radioSystem 86}

    linkBerSyncLossAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the linkBerSyncLossAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 87}

    linkNotMatchingRadiosAlarmSeverityCode OBJECT-TYPE
        SYNTAX      AlarmSeverityCode
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Define the severity associated to the linkNotMatchingRadiosAlarm
             and enable/disable the trap generation on status change event."
        DEFVAL {majorTrapEnable}
    ::= {radioSystem 88} 

    channelSpacingSelection OBJECT-TYPE
        SYNTAX      BITS {
                           etsi (0),
                           fcc  (1)
                         }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "his object selects which channel spacings the radio link has to
             support:
             - etsi: Compliant with European Telecommunication Standards
                     Institute
             - fcc:  Compliant with Federal Communications Commission
            "
        DEFVAL { { etsi, fcc } }
    ::= {radioSystem 89} 

    fadeMarginMeasure OBJECT-TYPE
        SYNTAX    INTEGER   {
                             disable (1),
                             enable  (2)
                            }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
          "Set by manager to start/stop fade margin measure.
           This item is linked to a manual operation (ManOpRecord) instance."
        DEFVAL      { disable }
    ::= {radioSystem 90}

    linkConfigurationInProgressTrapNotification OBJECT-TYPE
        SYNTAX      INTEGER   {
                               trapDisable       (1),
                               trapEnable        (2)
                              }
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
            "Enable/disables (statusTrapEnable or statusTrapDisable) the trap
             generation on status change event for linkConfigurationInProgress"
        DEFVAL{ trapEnable }
    ::=  {radioSystem 91}

-----------------------
--  This MIB module generates the following TRAPs:
-----------------------
    radioPrxChange  NOTIFICATION-TYPE
        OBJECTS  {equipIpSnmpAgentAddress, radioIndex, radioSettingsLabel, radioPrx}
        STATUS current
        DESCRIPTION
           "This event is generated when radioPrx is changed, in
            modulus, more than radioPtxHysteresisValue from last TRAP.
            The data passed with the event are:
            1) equipIpSnmpAgentAddress     - agent IP address
            2) radioIndex                  - branch index
            3) radioName                   - user assinged name
            4) radioPrx                    - PRX value"
    ::= { alarmTrap 8001 }

    radioPtxChange  NOTIFICATION-TYPE
        OBJECTS  {equipIpSnmpAgentAddress, radioIndex, radioSettingsLabel, radioPtx}
        STATUS current
        DESCRIPTION
           "This event is generated when radioPtx is changed, in
            modulus, more than radioPtxHysteresisValue from last TRAP.
            The data passed with the event are:
            1) equipIpSnmpAgentAddress     - agent IP address
            2) radioIndex                  - branch index
            3) radioName                   - user assigned name
            4) radioPtx                    - PTX value"
    ::= { alarmTrap 8002 }

------ End group -----------------------------------------------------------------

---------------------------------- End  -------------------------------------


END