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
|
--
-- RADWIN Management Information Base (MIB)
-- Generated 01/05/16 14:23:32 Version: 10.2.40_b9653
--
RADWIN-MIB-WINLINK1000 DEFINITIONS ::= BEGIN
IMPORTS
enterprises, IpAddress, Counter, Gauge, TimeTicks
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString, ifIndex
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215;
radwin OBJECT IDENTIFIER ::= { enterprises 4458 }
winlink1000 OBJECT IDENTIFIER ::= { radwin 1000 }
-- ###########################################################
-- ODU
-- ###########################################################
winlink1000Odu OBJECT IDENTIFIER ::= { winlink1000 1 }
-- ###########################################################
-- ODU Admin
-- ###########################################################
winlink1000OduAdmin OBJECT IDENTIFIER ::= { winlink1000Odu 1 }
winlink1000OduAdmProductType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU configuration description."
::= { winlink1000OduAdmin 1 }
winlink1000OduAdmHwRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Hardware Version."
::= { winlink1000OduAdmin 2 }
winlink1000OduAdmSwRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Software Version."
::= { winlink1000OduAdmin 3 }
winlink1000OduAdmLinkName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Link Name. A change is effective immediately."
::= { winlink1000OduAdmin 4 }
winlink1000OduAdmResetCmd OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset Command.
A set command with a value of 3 will cause a device reset.
HBS only: A set command with a value of 4 will cause a device reset for the entire sector.
The read value is always 0."
::= { winlink1000OduAdmin 5 }
winlink1000OduAdmAddres OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU IP address. A change is effective after reset.
The parameter is kept for backward compatibility.
Using the alternative parameter: winlink1000OduAdmIpParamsCnfg is recommended."
::= { winlink1000OduAdmin 6 }
winlink1000OduAdmMask OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU Subnet Mask. A change is effective after reset.
The parameter is kept for backward compatibility.
Using the alternative parameter: winlink1000OduAdmIpParamsCnfg is recommended."
::= { winlink1000OduAdmin 7 }
winlink1000OduAdmGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU default gateway. A change is effective after reset.
The parameter is kept for backward compatibility.
Using the alternative parameter: winlink1000OduAdmIpParamsCnfg is recommended."
::= { winlink1000OduAdmin 8 }
winlink1000OduAdmBroadcast OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter is reserved for the Manager application provided with the product."
::= { winlink1000OduAdmin 10 }
-- ###########################################################
-- ODU Admin Hosts Table
-- ###########################################################
winlink1000OduAdmHostsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAdmHostsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Trap destinations table. Each trap destination is defined by an IP address and a UDP port.
Up to 10 addresses can be configured."
::= { winlink1000OduAdmin 12 }
winlink1000OduAdmHostsEntry OBJECT-TYPE
SYNTAX Winlink1000OduAdmHostsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Trap destinations table entry."
INDEX { winlink1000OduAdmHostsIndex }
::= { winlink1000OduAdmHostsTable 1 }
Winlink1000OduAdmHostsEntry ::= SEQUENCE {
winlink1000OduAdmHostsIndex
INTEGER,
winlink1000OduAdmHostsIp
IpAddress,
winlink1000OduAdmHostsPort
INTEGER,
winlink1000OduAdmHostsSecurityModel
INTEGER,
winlink1000OduAdmHostsUserName
DisplayString,
winlink1000OduAdmHostsPassword
DisplayString,
winlink1000OduAdmHostsIPv6
DisplayString
}
winlink1000OduAdmHostsIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Trap destinations table index."
::= { winlink1000OduAdmHostsEntry 1 }
winlink1000OduAdmHostsIp OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Trap destination IP address. A change is effective immediately."
::= { winlink1000OduAdmHostsEntry 2 }
winlink1000OduAdmHostsPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"UDP port of the trap destination. A change is effective immediately."
::= { winlink1000OduAdmHostsEntry 3 }
winlink1000OduAdmHostsSecurityModel OBJECT-TYPE
SYNTAX INTEGER {
snmpv1(1),
snmpv3(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Security model used for this trap generation."
::= { winlink1000OduAdmHostsEntry 4 }
winlink1000OduAdmHostsUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"User name used to generate the snmpv3 trap."
::= { winlink1000OduAdmHostsEntry 5 }
winlink1000OduAdmHostsPassword OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Password used to generate the snmpv3 trap."
::= { winlink1000OduAdmHostsEntry 6 }
winlink1000OduAdmHostsIPv6 OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Trap destination IPv6 address. A change is effective immediately."
::= { winlink1000OduAdmHostsEntry 7 }
winlink1000OduBuzzerAdminState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter controls the activation of the buzzer while the unit is in install mode.
A change is effective immediately. The valid values are: disabled (0), enabledAuto (1), enabledConstantly(2), advancedAuto (3)."
::= { winlink1000OduAdmin 13 }
winlink1000OduProductId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter is reserved for the Manager application provided with the product."
::= { winlink1000OduAdmin 14 }
winlink1000OduReadCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Read Community String. This parameter always returns ***** when retrieving its value.
It is used by the Manager application to change the Read Community String.
The SNMP agent accepts only encrypted values."
::= { winlink1000OduAdmin 15 }
winlink1000OduReadWriteCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Read/Write Community String. This parameter always returns ***** when retrieving its value.
It is used by the Manager application to change the Read/Write Community String.
The SNMP agent accepts only encrypted values."
::= { winlink1000OduAdmin 16 }
winlink1000OduTrapCommunity OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Trap Community String. This parameter is used by the Manager application to change the Trap Community String.
The SNMP agent accepts only encrypted values."
::= { winlink1000OduAdmin 17 }
winlink1000OduAdmSnmpAgentVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Major version of the SNMP agent."
::= { winlink1000OduAdmin 18 }
winlink1000OduAdmRemoteSiteName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Remote site name. Returns the same value as sysLocation parameter of the remote site."
::= { winlink1000OduAdmin 19 }
winlink1000OduAdmSnmpAgentMinorVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minor version of the SNMP agent."
::= { winlink1000OduAdmin 20 }
winlink1000OduAdmLinkPassword OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Link Password. This parameter always returns ***** when retrieving its value.
It is used by the Manager application to change the Link Password.
The SNMP agent accepts only encrypted values."
::= { winlink1000OduAdmin 21 }
winlink1000OduAdmSiteLinkPassword OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Site Link Password. This parameter always returns ***** when retrieving its value.
It is used by the Manager application to change the Link Password of the site.
The SNMP agent accepts only encrypted values."
::= { winlink1000OduAdmin 22 }
winlink1000OduAdmDefaultPassword OBJECT-TYPE
SYNTAX INTEGER {
default(1),
nonDefault(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates if the current Link Password is the default password."
::= { winlink1000OduAdmin 23 }
winlink1000OduAdmConnectionType OBJECT-TYPE
SYNTAX INTEGER {
directConnection(1),
indirectConnection(2),
unknown(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates if the Manager application is connected to the local ODU
or to the remote ODU over the air. A value of 'unknown' indicates community string mismatch."
::= { winlink1000OduAdmin 24 }
winlink1000OduAdmBackToFactorySettingsCmd OBJECT-TYPE
SYNTAX INTEGER {
withIP(1),
withoutIP(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Back to factory settings Command. A change is effective after reset.
The read value is always 0."
::= { winlink1000OduAdmin 25 }
winlink1000OduAdmIpParamsCnfg OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU IP address Configuration. The format is: |||"
::= { winlink1000OduAdmin 26 }
winlink1000OduAdmVlanID OBJECT-TYPE
SYNTAX INTEGER (0..4094)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"VLAN ID. Valid values are 1 to 4094.
Initial value is 0 meaning VLAN unaware."
::= { winlink1000OduAdmin 27 }
winlink1000OduAdmVlanPriority OBJECT-TYPE
SYNTAX INTEGER (0..7)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"VLAN Priority. 0 is lowest priority, 7 is highest priority."
::= { winlink1000OduAdmin 28 }
winlink1000OduAdmSN OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Serial Number"
::= { winlink1000OduAdmin 29 }
winlink1000OduAdmProductName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the product name as it exists at EC"
::= { winlink1000OduAdmin 30 }
winlink1000OduAdmActivationKey OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Activates a general key."
::= { winlink1000OduAdmin 31 }
winlink1000OduAdmRmtPermittedOduType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Mobile Application: permitted partner OduType."
::= { winlink1000OduAdmin 32 }
winlink1000OduAdmCpuID OBJECT-TYPE
SYNTAX INTEGER (0..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"CPU ID"
::= { winlink1000OduAdmin 33 }
winlink1000OduAdmOvrdCmd OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Ability to perform special command in the ODU."
::= { winlink1000OduAdmin 34 }
winlink1000OduAdmLinkMode OBJECT-TYPE
SYNTAX INTEGER {
pmpHbs (1),
pmpHsu (2),
pmpHsuHyb (3),
pmpHbsHyb (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Unit PMP operation mode."
::= { winlink1000OduAdmin 35 }
winlink1000OduAdmActualConnectMode OBJECT-TYPE
SYNTAX INTEGER {
none (1),
ptp (2),
ptmp (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Unit connected as part to ptp or ptmp."
::= { winlink1000OduAdmin 36 }
winlink1000OduAdmAES256Support OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"AES-256 security support indication."
::= { winlink1000OduAdmin 37 }
winlink1000OduAdmAES256State OBJECT-TYPE
SYNTAX INTEGER {
disabled (1),
enabled (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/Disable AES-256 security mode over the air link."
::= { winlink1000OduAdmin 38 }
winlink1000OduAdmAES256Status OBJECT-TYPE
SYNTAX INTEGER {
notOperating (1),
partiallyOperating (2),
operating (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"AES256 operating status"
::= { winlink1000OduAdmin 39 }
winlink1000OduAdmBatterySavingShutdownTime OBJECT-TYPE
SYNTAX INTEGER (0..1000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Battery Saving Shutdown Time in minutes, 0 till battery run out, -1 if not supported."
::= { winlink1000OduAdmin 40 }
winlink1000OduAdmWiFiPowerMode OBJECT-TYPE
SYNTAX INTEGER {
undefined (1),
powerON (2),
powerOFF (3),
alwaysON (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"WIFI unit power mode."
::= { winlink1000OduAdmin 41 }
winlink1000OduAdmShutdownTimer OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Shutdown Timer in seconds."
::= { winlink1000OduAdmin 42 }
winlink1000OduAdmGPSState OBJECT-TYPE
SYNTAX INTEGER {
undefined (1),
notSynchronized (2),
fixed (3),
shortCircuit (4),
faulty (5),
synchronized (6),
synchronizedGlonass (7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"GPS state"
::= { winlink1000OduAdmin 43 }
winlink1000OduAdmTemperatureC OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The temperature (Celsius) inside the Board."
::= { winlink1000OduAdmin 44 }
winlink1000OduAdmIPStackMode OBJECT-TYPE
SYNTAX INTEGER {
v4 (1),
v6 (2),
v4andv6 (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP stack mode."
::= { winlink1000OduAdmin 45 }
winlink1000OduAdmIPv6ParamsCnfg OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU IPv6 address Configuration. The format is: |||"
::= { winlink1000OduAdmin 46 }
winlink1000OduAdmIPv6Address OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU IPv6 address."
::= { winlink1000OduAdmin 47 }
winlink1000OduAdmIPv6Prefix OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU IPv6 subnet mask."
::= { winlink1000OduAdmin 48 }
winlink1000OduAdmIPv6DefaultGateWay OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU IPv6 default gateway."
::= { winlink1000OduAdmin 49 }
winlink1000OduAdmPowerConsumption OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Power Consumption (mWatt)"
::= { winlink1000OduAdmin 50 }
-- ###########################################################
-- ODU Wifi
-- ###########################################################
winlink1000OduAdmWifi OBJECT IDENTIFIER ::= { winlink1000OduAdmin 51 }
winlink1000OduAdmWifiChannel OBJECT-TYPE
SYNTAX INTEGER (1..11)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Wifi Channel"
::= { winlink1000OduAdmWifi 1 }
winlink1000OduAdmWifiTxPower OBJECT-TYPE
SYNTAX INTEGER (11..15)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Wifi TX Power"
::= { winlink1000OduAdmWifi 2 }
winlink1000OduAdmWifiSSID OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Wifi SSID"
::= { winlink1000OduAdmWifi 3 }
winlink1000OduAdmWifiSecurityType OBJECT-TYPE
SYNTAX INTEGER {
open (1),
wep (2),
wpa2 (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Wifi Security type"
::= { winlink1000OduAdmWifi 4 }
winlink1000OduAdmWifiPassword OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Wifi Password"
::= { winlink1000OduAdmWifi 5 }
winlink1000OduAdmWifiNetwork OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Wifi Network"
::= { winlink1000OduAdmWifi 6 }
winlink1000OduAdmWifiRssi OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Wifi RSSI"
::= { winlink1000OduAdmWifi 7 }
winlink1000OduAdmWifiStationMAC OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Wifi Station MAC"
::= { winlink1000OduAdmWifi 8 }
winlink1000OduAdmWifiRestart OBJECT-TYPE
SYNTAX INTEGER (1)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A set command with a value of 1 will cause a Wifi restart.
The read value is always 0."
::= { winlink1000OduAdmWifi 9 }
winlink1000OduAdmWifiApStatus OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
connected (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Wifi AP Status"
::= { winlink1000OduAdmWifi 10 }
winlink1000OduAdmBsaOperationMode OBJECT-TYPE
SYNTAX INTEGER {
inactive (1),
hbsTracking (2),
hsuAlignment (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"BSA Operation Mode"
::= { winlink1000OduAdmin 52 }
winlink1000OduAdmMngConnection OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Management Connection"
::= { winlink1000OduAdmin 53 }
winlink1000OduAdm1588TCSupport OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates that 1588TC license activated"
::= { winlink1000OduAdmin 54 }
winlink1000OduAdmSyncESupport OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ndicates that SyncE license activated"
::= { winlink1000OduAdmin 55 }
winlink1000OduAdmRadioRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Radio Revision"
::= { winlink1000OduAdmin 56 }
winlink1000OduAdmProductRev OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Product Revision"
::= { winlink1000OduAdmin 57 }
winlink1000OduAdmPMPSUSupport OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates that PMP SU license is activated"
::= { winlink1000OduAdmin 58 }
winlink1000OduAdmManagerDownloadURL OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the URL from which management tool can be downloaded"
::= { winlink1000OduAdmin 59 }
winlink1000OduAdmAntennaDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The is a description of the antenna connected to the ODU"
::= { winlink1000OduAdmin 60 }
winlink1000OduAdmSwCapabilities OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is used to describe which Software Capabilities the current ODU supports"
::= { winlink1000OduAdmin 61 }
-- ###########################################################
-- ODU Service
-- ###########################################################
winlink1000OduService OBJECT IDENTIFIER ::= { winlink1000Odu 2 }
winlink1000OduSrvMode OBJECT-TYPE
SYNTAX INTEGER {
installMode (1),
normalMode (2),
slaveMode (3),
tempInstallMode (4),
inactiveMode (5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"System mode. The only values that can be set are installMode and slaveMode;
normalMode reserved to the Manager application provided with the product.
A change is effective after link re-synchronization."
::= { winlink1000OduService 1 }
winlink1000OduSrvBridging OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Bridging Mode. Valid values are: disabled (0), enabled (1)."
::= { winlink1000OduService 3 }
-- ###########################################################
-- ODU Ring Topology
-- ###########################################################
winlink1000OduServiceRingTopology OBJECT IDENTIFIER ::= { winlink1000OduService 4 }
winlink1000OduSrvRingLinkMode OBJECT-TYPE
SYNTAX INTEGER {
independentLink (1),
nonRpl (2),
rpl (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Mode of the link regarding ring topology."
::= { winlink1000OduServiceRingTopology 1 }
winlink1000OduSrvRingTopologySupported OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Ring Topology, options are: supported, not supported"
::= { winlink1000OduServiceRingTopology 2 }
winlink1000OduSrvRingVlanIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduSrvRingVlanIdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Ring VLAN IDs table."
::= { winlink1000OduServiceRingTopology 3 }
winlink1000OduSrvRingVlanIdEntry OBJECT-TYPE
SYNTAX Winlink1000OduSrvRingVlanIdEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"VLAN ID of the internal ring messages. Valid values are 1 to 4094.
Initial value is 0 meaning VLAN unaware."
INDEX { winlink1000OduSrvRingVlanIdIndex }
::= { winlink1000OduSrvRingVlanIdTable 1 }
Winlink1000OduSrvRingVlanIdEntry ::= SEQUENCE {
winlink1000OduSrvRingVlanIdIndex
INTEGER,
winlink1000OduSrvRingVlanId
INTEGER
}
winlink1000OduSrvRingVlanIdIndex OBJECT-TYPE
SYNTAX INTEGER (0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index of VLAN ID of the internal ring messages."
::= { winlink1000OduSrvRingVlanIdEntry 1 }
winlink1000OduSrvRingVlanId OBJECT-TYPE
SYNTAX INTEGER (0..4094)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"VLAN ID of the internal ring messages. Valid values are 1 to 4094.
Initial value is 0 meaning VLAN unaware."
::= { winlink1000OduSrvRingVlanIdEntry 2 }
winlink1000OduSrvRingEthStatus OBJECT-TYPE
SYNTAX INTEGER {
unblocked(1),
blocked(2),
notApplicable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the Ethernet service blocking state of a Rings link"
::= { winlink1000OduServiceRingTopology 4 }
winlink1000OduSrvRingMaxAllowedTimeFromLastRpm OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Defines the minimal time (in ms) required for determination of ring failure."
::= { winlink1000OduServiceRingTopology 5 }
winlink1000OduSrvRingWTR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Defines the minimal time (in ms) required for ring recovery."
::= { winlink1000OduServiceRingTopology 6 }
-- ###########################################################
-- ODU QoS
-- ###########################################################
winlink1000OduServiceQoS OBJECT IDENTIFIER ::= { winlink1000OduService 5 }
winlink1000OduSrvQoSMode OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
notActive (2),
classVlan (3),
classDiffserv (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Mode of QoS feature."
::= { winlink1000OduServiceQoS 1 }
winlink1000OduSrvQoSConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduSrvQoSConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"QoS configuration table."
::= { winlink1000OduServiceQoS 2 }
winlink1000OduSrvQoSConfEntry OBJECT-TYPE
SYNTAX Winlink1000OduSrvQoSConfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"QoS configuration table."
INDEX { winlink1000OduSrvQoSConfIndex }
::= { winlink1000OduSrvQoSConfTable 1 }
Winlink1000OduSrvQoSConfEntry ::= SEQUENCE {
winlink1000OduSrvQoSConfIndex
INTEGER,
winlink1000OduSrvConfVlanQGroups
INTEGER,
winlink1000OduSrvConfDiffservQGroups
INTEGER,
winlink1000OduSrvConfQueMir
INTEGER,
winlink1000OduSrvConfQueWeight
INTEGER
}
winlink1000OduSrvQoSConfIndex OBJECT-TYPE
SYNTAX INTEGER (0..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index of QoS Configuration."
::= { winlink1000OduSrvQoSConfEntry 1 }
winlink1000OduSrvConfVlanQGroups OBJECT-TYPE
SYNTAX INTEGER (0..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Frames classification according to VLAN Priority IDs."
::= { winlink1000OduSrvQoSConfEntry 2 }
winlink1000OduSrvConfDiffservQGroups OBJECT-TYPE
SYNTAX INTEGER (0..48)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Frames classification according to Diffserv."
::= { winlink1000OduSrvQoSConfEntry 3 }
winlink1000OduSrvConfQueMir OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Desired Private MIR."
::= { winlink1000OduSrvQoSConfEntry 4 }
winlink1000OduSrvConfQueWeight OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"QoS queueu's weights in percent."
::= { winlink1000OduSrvQoSConfEntry 5 }
winlink1000OduSrvQoSVlanQGroupsSetStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Frames classification according to VLAN IDs string for set."
::= { winlink1000OduServiceQoS 3 }
winlink1000OduSrvQoSDiffservQGroupsSetStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Frames classification according to Diffserv IDs string for set."
::= { winlink1000OduServiceQoS 4 }
winlink1000OduSrvQoSMaxRTQuePercent OBJECT-TYPE
SYNTAX INTEGER (0..100)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximal percent for RT & NRT queues."
::= { winlink1000OduServiceQoS 5 }
-- ###########################################################
-- ODU VLAN Configuration
-- ###########################################################
winlink1000OduServiceVlan OBJECT IDENTIFIER ::= { winlink1000OduService 6 }
winlink1000OduSrvVlanSupport OBJECT-TYPE
SYNTAX INTEGER {
notSupported (1),
supported(2),
available(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Ethernet port VLAN support and configuration availability indication.
1 - ODU VLAN Functionality Not Supported
2 - ODU VLAN Functionality Supported
3 - ODU VLAN Functionality Supported and Available"
::= { winlink1000OduServiceVlan 1 }
winlink1000OduSrvVlanIngressMode OBJECT-TYPE
SYNTAX INTEGER {
transparent (1),
untagAll (2),
filter (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU Ethernet port ingress VLAN mode."
::= { winlink1000OduServiceVlan 2 }
winlink1000OduSrvVlanEgressMode OBJECT-TYPE
SYNTAX INTEGER {
transparent (1),
tag (2),
provider (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU Ethernet port egress VLAN mode."
::= { winlink1000OduServiceVlan 3 }
winlink1000OduSrvEgressTag OBJECT-TYPE
SYNTAX INTEGER (0..40947)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU ethernet port egress VLAN tag.
Right most digit is Vlan priority (0-7),
other digits compose Vlan Id (2-4094)"
::= { winlink1000OduServiceVlan 4 }
winlink1000OduSrvEgressProviderTag OBJECT-TYPE
SYNTAX INTEGER (0..40947)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU ethernet port egress Provider VLAN tag.
Right most digit is Vlan priority (0-7),
other digits compose Vlan Id (2-4094)"
::= { winlink1000OduServiceVlan 5 }
winlink1000OduSrvVlanIngressAllowedVIDs OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU ethernet port VLAN IDs that will not be filtered on ingress.
w|w|w|w|w|w|w|w| ( where w = {0-4094} and w != 1 )"
::= { winlink1000OduServiceVlan 6 }
winlink1000OduSrvVlanDisable OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Disable VLAN functionality. The following values can be set:
3 - Disable ODU & IDU VLAN Configurations."
::= { winlink1000OduServiceVlan 7 }
winlink1000OduServiceVlanProviderListTPIDstr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds the possible Provider TPIDs."
::= { winlink1000OduServiceVlan 8 }
-- ###########################################################
-- ODU Ethernet
-- ###########################################################
winlink1000OduEthernet OBJECT IDENTIFIER ::= { winlink1000Odu 3 }
winlink1000OduEthernetRemainingRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current Ethernet bandwidth in bps."
::= { winlink1000OduEthernet 1 }
-- ###########################################################
-- ODU Ethernet Interface Table
-- ###########################################################
winlink1000OduEthernetIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduEthernetIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Ethernet Interface table."
::= { winlink1000OduEthernet 2 }
winlink1000OduEthernetIfEntry OBJECT-TYPE
SYNTAX Winlink1000OduEthernetIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Ethernet Interface table entry."
INDEX { winlink1000OduEthernetIfIndex }
::= { winlink1000OduEthernetIfTable 1 }
Winlink1000OduEthernetIfEntry ::= SEQUENCE {
winlink1000OduEthernetIfIndex
INTEGER,
winlink1000OduEthernetIfAddress
DisplayString,
winlink1000OduEthernetIfAdminStatus
INTEGER,
winlink1000OduEthernetIfOperStatus
INTEGER,
winlink1000OduEthernetIfFailAction
INTEGER,
winlink1000OduEthernetIf1588v2PTPEventRXRate
INTEGER,
winlink1000OduEthernetIf1588v2PTPEventTXRate
INTEGER
}
winlink1000OduEthernetIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Ethernet Interface Index."
::= { winlink1000OduEthernetIfEntry 1 }
winlink1000OduEthernetIfAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU MAC address."
::= { winlink1000OduEthernetIfEntry 5 }
winlink1000OduEthernetIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
portAutoSense(1),
portAutoSense100Mbps(5),
forceHalfDuplex10Mbps(10),
forceFullDuplex10Mbps(11),
forceHalfDuplex100Mbps(15),
forceFullDuplex100Mbps(16),
forceFullDuplex1000Mbps(21),
disablePoePort(254),
disablePort(255)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Required state of the interface."
::= { winlink1000OduEthernetIfEntry 6 }
winlink1000OduEthernetIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
notConnected(1),
connectedHalfDuplex10Mbps(10),
connectedFullDuplex10Mbps(11),
connectedHalfDuplex100Mbps(15),
connectedFullDuplex100Mbps(16),
connectedHalfDuplex1000Mbps(20),
connectedFullDuplex1000Mbps(21),
unknown(65535)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current operational state of the interface."
::= { winlink1000OduEthernetIfEntry 7 }
winlink1000OduEthernetIfFailAction OBJECT-TYPE
SYNTAX INTEGER {
faNoAction(1),
faForceHalfDuplex10Mbps(10),
faForceFullDuplex10Mbps(11),
faDisablePort(255)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Failure action of the interface."
::= { winlink1000OduEthernetIfEntry 8 }
winlink1000OduEthernetIf1588v2PTPEventRXRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For debug use"
::= { winlink1000OduEthernetIfEntry 9 }
winlink1000OduEthernetIf1588v2PTPEventTXRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"For debug use"
::= { winlink1000OduEthernetIfEntry 10 }
winlink1000OduEthernetNumOfPorts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of ODU network interfaces."
::= { winlink1000OduEthernet 3 }
winlink1000OduEthernetGbeSupported OBJECT-TYPE
SYNTAX INTEGER {notSupported(1), supported(2)}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Supported Giga bit Ethernet in ODU."
::= { winlink1000OduEthernet 4 }
winlink1000OduEthernetSfpProperties OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Sfp port properties."
::= { winlink1000OduEthernet 5 }
-- ###########################################################
-- ODU Bridge
-- ###########################################################
winlink1000OduBridge OBJECT IDENTIFIER ::= { winlink1000Odu 4 }
-- ###########################################################
-- ODU Bridge Base
-- ###########################################################
winlink1000OduBridgeBase OBJECT IDENTIFIER ::= { winlink1000OduBridge 1 }
-- ###########################################################
-- ODU Bridge Ports Table
-- ###########################################################
winlink1000OduBridgeBasePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduBridgeBasePortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Bridge Ports table."
::= { winlink1000OduBridgeBase 4 }
winlink1000OduBridgeBasePortEntry OBJECT-TYPE
SYNTAX Winlink1000OduBridgeBasePortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Bridge Ports table entry."
INDEX { winlink1000OduBridgeBasePortIndex }
::= { winlink1000OduBridgeBasePortTable 1 }
Winlink1000OduBridgeBasePortEntry ::= SEQUENCE {
winlink1000OduBridgeBasePortIndex
INTEGER,
winlink1000OduBridgeBaseIfIndex
INTEGER
}
winlink1000OduBridgeBasePortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Bridge Port Number."
::= { winlink1000OduBridgeBasePortEntry 1 }
winlink1000OduBridgeBaseIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"IfIndex corresponding to ODU Bridge port."
::= { winlink1000OduBridgeBasePortEntry 2 }
-- ###########################################################
-- ODU Bridge Tp
-- ###########################################################
winlink1000OduBridgeTp OBJECT IDENTIFIER ::= { winlink1000OduBridge 4 }
winlink1000OduBridgeTpMode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"ODU bridge mode.
A change is effective after reset. Valid values: hubMode (0), bridgeMode (1)."
::= { winlink1000OduBridgeTp 101 }
-- ###########################################################
-- ODU Transparent Bridge Ports Table
-- ###########################################################
winlink1000OduBridgeTpPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduBridgeTpPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Transparent Bridge Ports table."
::= { winlink1000OduBridgeTp 3 }
winlink1000OduBridgeTpPortEntry OBJECT-TYPE
SYNTAX Winlink1000OduBridgeTpPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Transparent Bridge Ports table entry."
INDEX { winlink1000OduBridgeTpPortIndex }
::= { winlink1000OduBridgeTpPortTable 1 }
Winlink1000OduBridgeTpPortEntry ::= SEQUENCE {
winlink1000OduBridgeTpPortIndex
INTEGER,
winlink1000OduBridgeTpPortInFrames
Counter,
winlink1000OduBridgeTpPortOutFrames
Counter,
winlink1000OduBridgeTpPortInBytes
Counter,
winlink1000OduBridgeTpPortOutBytes
Counter
}
winlink1000OduBridgeTpPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU Transparent Bridge Port Number."
::= { winlink1000OduBridgeTpPortEntry 1 }
winlink1000OduBridgeTpPortInFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of frames received by this port."
::= { winlink1000OduBridgeTpPortEntry 3 }
winlink1000OduBridgeTpPortOutFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of frames transmitted by this port."
::= { winlink1000OduBridgeTpPortEntry 4 }
winlink1000OduBridgeTpPortInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes received by this port."
::= { winlink1000OduBridgeTpPortEntry 101 }
winlink1000OduBridgeTpPortOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes transmitted by this port."
::= { winlink1000OduBridgeTpPortEntry 102 }
winlink1000OduBridgeConfigMode OBJECT-TYPE
SYNTAX INTEGER{
enable (1),
disable (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU bridge configuration mode"
::= { winlink1000OduBridgeTp 102 }
-- ###########################################################
-- ODU Air
-- ###########################################################
winlink1000OduAir OBJECT IDENTIFIER ::= { winlink1000Odu 5 }
winlink1000OduAirFreq OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Installation Center Frequency. Valid values are product dependent. A change is effective after link re-synchronization."
::= { winlink1000OduAir 1 }
winlink1000OduAirDesiredRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS deprecated
DESCRIPTION
"Deprecated parameter, actual behavior is read-only.
Required Air Rate. For Channel Bandwidth of 20, 10, 5 MHz divide the value by 1, 2, 4 respectively."
::= { winlink1000OduAir 2 }
winlink1000OduAirSSID OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reserved for the Manager application provided with the product.
The Sector ID in Point-To-Multi-Point systems."
::= { winlink1000OduAir 3 }
winlink1000OduAirTxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Required Transmit power in dBm . This is a nominal value while the actual transmit power includes additional attenuation.
The min and max values are product specific. A change is effective immediately."
::= { winlink1000OduAir 4 }
winlink1000OduAirSesState OBJECT-TYPE
SYNTAX INTEGER {
sessionDown (1),
basicRate (2),
active (3),
installation (4),
scanning (5),
probing (6),
transmitting (7),
activeWithDefaultEncryptionKey (8),
installationWithDefaultEncryptionKey (9),
bitFailed (10),
activeWithVersionsMismatch (11),
installationWithVersionsMismatch (12),
inactive (13),
iduIncompatible (14),
spectrumAnalysis (15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current Link State. The value is active (3) during normal operation."
::= { winlink1000OduAir 5 }
winlink1000OduAirMstrSlv OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates if the device was automatically selected into the radio link master or slave.
The value is undefined if there is no link.
The value is relevant only for point to point systems."
::= { winlink1000OduAir 6 }
winlink1000OduAirResync OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this parameter to 1 will cause the link to restart the synchronization process."
::= { winlink1000OduAir 8 }
-- ###########################################################
-- ODU Air Perf
-- ###########################################################
winlink1000OduAirPerf OBJECT IDENTIFIER ::= { winlink1000OduAir 9 }
winlink1000OduAirRxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Received Signal Strength in dBm. Relevant only for point to point systems."
::= { winlink1000OduAirPerf 1 }
winlink1000OduAirTotalFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of radio frames."
::= { winlink1000OduAirPerf 2 }
winlink1000OduAirBadFrames OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of received radio frames with CRC error. The value is relevant only for point to point systems ."
::= { winlink1000OduAirPerf 3 }
winlink1000OduAirCurrentRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Deprecated parameter. Actual rate of the air interface in Mbps.
For Channel Bandwidth of 20, 10, 5 MHz divide the value by 1, 2, 4 respectively."
::= { winlink1000OduAirPerf 4 }
winlink1000OduAirCurrentRateIdx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index of current air rate."
::= { winlink1000OduAirPerf 5 }
winlink1000OduAirChainsRxPower OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Received Signal Strength of Cpe chains in dBm.
Chain 1 RSS: (1 Byte)
Chain 2 RSS: (1 Byte)
Chain 3 RSS: (1 Byte)"
::= { winlink1000OduAirPerf 6 }
winlink1000OduAirCurrentRateCBW OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"CBW of current air rate."
::= { winlink1000OduAirPerf 7 }
winlink1000OduAirCurrentRateGI OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"GI of current air rate."
::= { winlink1000OduAirPerf 8 }
winlink1000OduAirTxPower36 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS deprecated
DESCRIPTION
"Deprecated parameter. Actual behavior is read-only."
::= { winlink1000OduAir 10 }
winlink1000OduAirTxPower48 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS deprecated
DESCRIPTION
"Deprecated parameter. Actual behavior is read-only."
::= { winlink1000OduAir 11 }
winlink1000OduAirCurrentTxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current Transmit Power in dBm. This is a nominal value while the actual transmit power includes additional attenuation."
::= { winlink1000OduAir 12 }
winlink1000OduAirMinFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minimum center frequency in MHz."
::= { winlink1000OduAir 13 }
winlink1000OduAirMaxFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum center frequency in MHz."
::= { winlink1000OduAir 14 }
winlink1000OduAirFreqResolution OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Center Frequency resolution.
Measured in MHz if value < 100, otherwise in KHz."
::= { winlink1000OduAir 15 }
winlink1000OduAirCurrentFreq OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current Center Frequency.
Measured in MHz if center frequency resolution value < 100, otherwise in KHz."
::= { winlink1000OduAir 16 }
winlink1000OduAirNumberOfChannels OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of channels that can be used."
::= { winlink1000OduAir 17 }
-- ###########################################################
-- Channels Table
-- ###########################################################
winlink1000OduAirChannelsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirChannelsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of channels used by automatic channels selection (ACS)."
::= { winlink1000OduAir 18 }
winlink1000OduAirChannelsEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirChannelsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ACS channels table entry."
INDEX { winlink1000OduAirChannelsIndex }
::= { winlink1000OduAirChannelsTable 1 }
Winlink1000OduAirChannelsEntry ::= SEQUENCE {
winlink1000OduAirChannelsIndex
INTEGER,
winlink1000OduAirChannelsFrequency
INTEGER,
winlink1000OduAirChannelsOperState
INTEGER,
winlink1000OduAirChannelsAvail
INTEGER,
winlink1000OduAirChannelsDefaultFreq
INTEGER
}
winlink1000OduAirChannelsIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel Index."
::= { winlink1000OduAirChannelsEntry 1 }
winlink1000OduAirChannelsFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel frequency in MHz."
::= { winlink1000OduAirChannelsEntry 2 }
winlink1000OduAirChannelsOperState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Channel state. Can be set by the user.
Automatic Channel Selection uses channels that are AirChannelsOperState enabled and AirChannelsAvail enabled.
A change is effective after link re-synchronization. Valid values: disabled (0), enabled (1).
Rewriteable only in Point-To-Point products."
::= { winlink1000OduAirChannelsEntry 3 }
winlink1000OduAirChannelsAvail OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel state. Product specific and cannot be changed by the user.
Automatic Channel Selection uses channels that are AirChannelsOperState enabled and AirChannelsAvail enabled.
Valid values: disabled (0), enabled (1)."
::= { winlink1000OduAirChannelsEntry 4 }
winlink1000OduAirChannelsDefaultFreq OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Default channel's availability for all CBWs.
The valid values are: forbidden (0), available (1)."
::= { winlink1000OduAirChannelsEntry 5 }
winlink1000OduAirDfsState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Radar detection state. Valid values: disabled (0), enabled (1)."
::= { winlink1000OduAir 19 }
winlink1000OduAirAutoChannelSelectionState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Deprecated parameter. Indicating Automatic Channel Selection availability at current channel bandwidth.
Valid values: disabled (0), enabled (1)."
::= { winlink1000OduAir 20 }
winlink1000OduAirEnableTxPower OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicating Transmit power configuration enabled or disabled."
::= { winlink1000OduAir 21 }
winlink1000OduAirMinTxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minimum Transmit power in dBm."
::= { winlink1000OduAir 22 }
-- ###########################################################
-- Max Tx Power Table
-- ###########################################################
winlink1000OduAirMaxTxPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirMaxTxPowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of Maximum transmit power per air rate, in dBm."
::= { winlink1000OduAir 23 }
winlink1000OduAirMaxTxPowerEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirMaxTxPowerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Maximum Transmit power table entry."
INDEX { winlink1000OduAirMaxTxPowerIndex }
::= { winlink1000OduAirMaxTxPowerTable 1 }
Winlink1000OduAirMaxTxPowerEntry ::= SEQUENCE {
winlink1000OduAirMaxTxPowerIndex
INTEGER,
winlink1000OduAirMaxTxPower
INTEGER
}
winlink1000OduAirMaxTxPowerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Air interface rate index."
::= { winlink1000OduAirMaxTxPowerEntry 1 }
winlink1000OduAirMaxTxPower OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximum Transmit power in dBm."
::= { winlink1000OduAirMaxTxPowerEntry 2 }
winlink1000OduAirChannelBandwidth OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Channel bandwidth in KHz. A change is effective after reset."
::= { winlink1000OduAir 24 }
-- ###########################################################
-- Channel BW Table
-- ###########################################################
winlink1000OduAirChannelBWTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirChannelBWEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Channel Bandwidths table."
::= { winlink1000OduAir 25 }
winlink1000OduAirChannelBWEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirChannelBWEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Channel Bandwidth table entry."
INDEX { winlink1000OduAirChannelBWIndex }
::= { winlink1000OduAirChannelBWTable 1 }
Winlink1000OduAirChannelBWEntry ::= SEQUENCE {
winlink1000OduAirChannelBWIndex
INTEGER,
winlink1000OduAirChannelBWAvail
INTEGER,
winlink1000OduAirChannelsAdminState
DisplayString,
winlink1000OduAirChannelBWHSSATDDConflictPerCBW
INTEGER,
winlink1000OduAirChannelBWMinRatioForSupporting
INTEGER,
winlink1000OduAirChannelBWMaxRatioForSupporting
INTEGER
}
winlink1000OduAirChannelBWIndex OBJECT-TYPE
SYNTAX INTEGER {
channelBW5MHz(1),
channelBW10MHz(2),
channelBW20MHz(3),
channelBW40MHz(4),
channelBW80MHz(5),
channelBW7MHz(6),
channelBW14MHz(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel Bandwidth index."
::= { winlink1000OduAirChannelBWEntry 1 }
winlink1000OduAirChannelBWAvail OBJECT-TYPE
SYNTAX INTEGER {
notSupported(1),
supportedManual(2),
supportedWithACS(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channel Bandwidth availability, product specific.
Options are: Not supported, supported with manual channel selection, supported with Automatic Channel Selection."
::= { winlink1000OduAirChannelBWEntry 2 }
winlink1000OduAirChannelsAdminState OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Channels' availability per CBW."
::= { winlink1000OduAirChannelBWEntry 3 }
winlink1000OduAirChannelBWHSSATDDConflictPerCBW OBJECT-TYPE
SYNTAX INTEGER {
noConflict(1),
conflictSingle(2),
conflictDual(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indication for possible Link drop per CBW due to conflict between HSS and ATDD."
::= { winlink1000OduAirChannelBWEntry 4 }
winlink1000OduAirChannelBWMinRatioForSupporting OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minimal TX ratio that may be used by the HSM and still enable proper operation of the aforementioned CBW."
::= { winlink1000OduAirChannelBWEntry 5 }
winlink1000OduAirChannelBWMaxRatioForSupporting OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Maximal TX ratio that may be used by the HSM and still enable proper operation of the aforementioned CBW."
::= { winlink1000OduAirChannelBWEntry 6 }
winlink1000OduAirRFD OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current radio frame duration in microseconds."
::= { winlink1000OduAir 26 }
-- ###########################################################
-- Available Rates Table
-- ###########################################################
winlink1000OduAirRatesTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirRatesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Air Rate indexes table for current channel bandwidth."
::= { winlink1000OduAir 27 }
winlink1000OduAirRatesEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirRatesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Air Rate indexes table entry."
INDEX { winlink1000OduAirRatesIndex }
::= { winlink1000OduAirRatesTable 1 }
Winlink1000OduAirRatesEntry ::= SEQUENCE {
winlink1000OduAirRatesIndex
INTEGER,
winlink1000OduAirRatesAvail
INTEGER
}
winlink1000OduAirRatesIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Air Rate index."
::= { winlink1000OduAirRatesEntry 1 }
winlink1000OduAirRatesAvail OBJECT-TYPE
SYNTAX INTEGER {
rateNotAvailable(1),
rateAvailable(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Air Rate availability, depending on air interface conditions."
::= { winlink1000OduAirRatesEntry 2 }
winlink1000OduAirDesiredRateIdx OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Required Air Rate index. 0 reserved for Adaptive Rate.
A change is effective immediately after Set operation to the master side
while the link is up."
::= { winlink1000OduAir 28 }
winlink1000OduAirLinkDistance OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Link distance in meters.
A value of -1 indicates an illegal value and is also used when a link is not established."
::= { winlink1000OduAir 29 }
winlink1000OduAirLinkWorkingMode OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
normal(2),
fullCompatibilityRemoteUpgradeAvailable(3),
fullCompatibilityLocalUpgradeAvailable(4),
restrictedCompatibilityRemoteUpgradeRecomended(5),
restrictedCompatibilityLocalUpgradeRecomended(6),
softwareUpgradeRemoteUpgradeRequired(7),
softwareUpgradeLocalUpgradeRequired(8),
versionsIncompatibilityRemoteUpgradeRequired(9),
versionsIncompatibilityLocalUpgradeRequired(10)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Link working mode as a result of comparing versions of both sides of the link.
Possible modes are: Unknown - no link, Normal - versions on both sides are identical with full compatibility,
with restricted compatibility, or versions on both sides are different with software upgrade or versions incompatibility."
::= { winlink1000OduAir 30 }
winlink1000OduAirMajorLinkIfVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Major link interface version"
::= { winlink1000OduAir 31 }
winlink1000OduAirMinorLinkIfVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minor link interface version"
::= { winlink1000OduAir 32 }
winlink1000OduAirHss OBJECT IDENTIFIER ::= { winlink1000OduAir 40 }
winlink1000OduAirHssDesiredOpState OBJECT-TYPE
SYNTAX INTEGER {
notSupported(1),
independentUnit(2),
hubSyncMaster(3),
hubSyncClientContinueTx(4),
hubSyncClientDisableTx(5),
gpsSync(6),
independentSyncUnit-ISU(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Required Hub Site Synchronization operating state.
For HssSyncUnits : For hssISU :[2,7] ,For hssGSU :[2,6]
For HBS: [2,3,4,5]"
::= { winlink1000OduAirHss 1 }
winlink1000OduAirHssCurrentOpState OBJECT-TYPE
SYNTAX INTEGER {
notSupported(1),
independentUnit(2),
hubSyncMaster(3),
hubSyncClientContinueTx(4),
hubSyncClientDisableTx(5),
gpsSync(6),
independentSyncUnit-ISU(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current Hub Site Synchronization operating state."
::= { winlink1000OduAirHss 2 }
winlink1000OduAirHssSyncStatus OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
notSynchronized(2),
synchronized(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization sync status."
::= { winlink1000OduAirHss 3 }
winlink1000OduAirHssExtPulseStatus OBJECT-TYPE
SYNTAX INTEGER {
notDetected(1),
generating(2),
generatingAndDetected(3),
generatingAndImproperDetected(4),
detected(5),
improperDetected(6),
multipleSourcesDetected(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization external pulse detection status.
In GSS mode:
if generating then 1PSP is auto generated by the GSS Unit.
if generatingAndDetecting then 1PSP is generated by GPS satellites signal."
::= { winlink1000OduAirHss 4 }
winlink1000OduAirHssExtPulseType OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
typeA(2),
typeB(3),
typeC(4),
typeD(5),
typeE(6),
typeF(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization external pulse type."
::= { winlink1000OduAirHss 5 }
winlink1000OduAirHssDesiredExtPulseType OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
typeA(2),
typeB(3),
typeC(4),
typeD(5),
typeE(6),
typeF(7)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization required external pulse type. Valid values for read write:
{typeA(2),typeB(3),typeC(4),typeD(5),typeE(6),typeF(7)}. Valid value for read only:
{notApplicable(1)}."
::= { winlink1000OduAirHss 6 }
-- ###########################################################
-- HSS Radio Frame Pattern Table
-- ###########################################################
winlink1000OduAirHssRfpTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirHssRfpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Radio Frame Patterns (RFP) Table."
::= { winlink1000OduAirHss 7 }
winlink1000OduAirHssRfpEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirHssRfpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU RFP Table entry."
INDEX { winlink1000OduAirHssRfpIndex }
::= { winlink1000OduAirHssRfpTable 1 }
Winlink1000OduAirHssRfpEntry ::= SEQUENCE {
winlink1000OduAirHssRfpIndex
INTEGER,
winlink1000OduAirHssRfpEthChannelBW5MHz
INTEGER,
winlink1000OduAirHssRfpTdmChannelBW5MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW10MHz
INTEGER,
winlink1000OduAirHssRfpTdmChannelBW10MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW20MHz
INTEGER,
winlink1000OduAirHssRfpTdmChannelBW20MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW40MHz
INTEGER,
winlink1000OduAirHssRfpTdmChannelBW40MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW80MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW7MHz
INTEGER,
winlink1000OduAirHssRfpEthChannelBW14MHz
INTEGER
}
winlink1000OduAirHssRfpIndex OBJECT-TYPE
SYNTAX INTEGER (2..7)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ODU RFP Table index. The index represent the Radio Frame Pattern:
typeA(2), typeB(3), typeC(4), typeD(5),typeE(6),typeF(7)."
::= { winlink1000OduAirHssRfpEntry 1 }
winlink1000OduAirHssRfpEthChannelBW5MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 5MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 2 }
winlink1000OduAirHssRfpTdmChannelBW5MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of TDM service under Channel BW of 5MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 3 }
winlink1000OduAirHssRfpEthChannelBW10MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 10MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 4 }
winlink1000OduAirHssRfpTdmChannelBW10MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of TDM service under Channel BW of 10MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 5 }
winlink1000OduAirHssRfpEthChannelBW20MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 20MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 6 }
winlink1000OduAirHssRfpTdmChannelBW20MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of TDM service under Channel BW of 20MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 7 }
winlink1000OduAirHssRfpEthChannelBW40MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 40MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 8 }
winlink1000OduAirHssRfpTdmChannelBW40MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of TDM service under Channel BW of 40MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 9 }
winlink1000OduAirHssRfpEthChannelBW80MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 80MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 10 }
winlink1000OduAirHssRfpEthChannelBW7MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 7MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 11 }
winlink1000OduAirHssRfpEthChannelBW14MHz OBJECT-TYPE
SYNTAX INTEGER {
bestFit(1),
nonOptimal(2),
notAvailable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Represents the compatibility of Ethernet service under Channel BW of 14MHz
in the specific Radio Frame Pattern."
::= { winlink1000OduAirHssRfpEntry 12 }
winlink1000OduAirHssRfpStr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization supported patterns"
::= { winlink1000OduAirHss 8 }
winlink1000OduAirHssHsmID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique ID which is common to the HSM and all its collocated ODUs"
::= { winlink1000OduAirHss 9 }
winlink1000OduAirHssTime OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS time"
::= { winlink1000OduAirHss 10 }
winlink1000OduAirHssLatitude OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS Latitude"
::= { winlink1000OduAirHss 11 }
winlink1000OduAirHssNSIndicator OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS N/S Indicator"
::= { winlink1000OduAirHss 12 }
winlink1000OduAirHssLongitude OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS Longitude"
::= { winlink1000OduAirHss 13 }
winlink1000OduAirHssEWIndicator OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS E/W Indicator"
::= { winlink1000OduAirHss 14 }
winlink1000OduAirHssNumSatellites OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS Number of satellites"
::= { winlink1000OduAirHss 15 }
winlink1000OduAirHssAltitude OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS Altitude"
::= { winlink1000OduAirHss 16 }
winlink1000OduAirHssRfpPhase OBJECT-TYPE
SYNTAX INTEGER {
rfpNormalPhase(1),
rfpShiftedPhase(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Hub Site Synchronization GPS RFP phase"
::= { winlink1000OduAirHss 17 }
winlink1000OduAirHssInterSiteSynchronizationMode OBJECT-TYPE
SYNTAX INTEGER {
independent(1),
synchronized(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Inter-Site Synchronization Mode - independent / synchronized"
::= { winlink1000OduAirHss 18 }
winlink1000OduAirHssInterSiteSynchronizationAvailability OBJECT-TYPE
SYNTAX INTEGER {
notAvailable(1),
available(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Inter-Site Synchronization Availability"
::= { winlink1000OduAirHss 19 }
winlink1000OduAirHssSatellitesSatSyncRequired OBJECT-TYPE
SYNTAX INTEGER {
notRequired(1),
required(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Satellites Synchronization Is Required"
::= { winlink1000OduAirHss 20 }
winlink1000OduAirHssDomainID OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"EHSS domain. Indentify set of CUs with same HSS synchronization"
::= { winlink1000OduAirHss 21 }
winlink1000OduAirHssSupportedSynchronizationProtocol OBJECT-TYPE
SYNTAX INTEGER {
serialOnly(1),
ethOnly(2),
both(3),
ghssAndEth(4),
ghssEthSerial(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Supported Synchronization Protocols"
::= { winlink1000OduAirHss 22 }
winlink1000OduAirHssDesiredSynchronizationProtocol OBJECT-TYPE
SYNTAX INTEGER {
serialOnly(1),
ethOnly(2),
both(3),
ghssOnly(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Desired Synchronization Protocols"
::= { winlink1000OduAirHss 23 }
winlink1000OduAirHssDiscover OBJECT-TYPE
SYNTAX INTEGER {
startAll(1),
startAllMstr(2),
startMyDmn(3),
startMyMstr(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Initiate Discovery process of ODUs on the network."
::= { winlink1000OduAirHss 24 }
winlink1000OduAirHssNumberOfDiscoveredODUs OBJECT-TYPE
SYNTAX INTEGER (0..1000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number OF Discovered ODUs in network."
::= { winlink1000OduAirHss 25 }
-- ###########################################################
-- HSS Discover Table
-- ###########################################################
winlink1000OduAirHssDiscoverTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirHssDiscoverEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"HSS Discover Table."
::= { winlink1000OduAirHss 26 }
winlink1000OduAirHssDiscoverEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirHssDiscoverEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"ODU Discover Table entry."
INDEX { winlink1000OduAirHssDiscoverIndex }
::= { winlink1000OduAirHssDiscoverTable 1 }
Winlink1000OduAirHssDiscoverEntry ::= SEQUENCE {
winlink1000OduAirHssDiscoverIndex
INTEGER,
winlink1000OduAirHssDiscoverODUDescription
DisplayString
}
winlink1000OduAirHssDiscoverIndex OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"HSS Discover Table Index."
::= { winlink1000OduAirHssDiscoverEntry 1 }
winlink1000OduAirHssDiscoverODUDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Hold ODU HSS status in compress format:
Domain,IP,HSS Role,Hss support,
Enabled HSS protocol,Sync Status,
Location, IPv6."
::= { winlink1000OduAirHssDiscoverEntry 2 }
-- ###################### End of Discover Table ###################
winlink1000OduAirHssMasterSlaveCompatibility OBJECT-TYPE
SYNTAX INTEGER {
compatible(1),
notCompatible(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"EHSM version compatibility. Relevant to Ethernet HSS Clients only."
::= { winlink1000OduAirHss 27 }
winlink1000OduAirHssNumberOfAssociatedCU OBJECT-TYPE
SYNTAX INTEGER (0..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of associated Ethernet HSS Clients. Relevant to Ethernet HSS Masters only"
::= { winlink1000OduAirHss 28 }
-- ###########################################################
-- HSS Associated CU Table
-- ###########################################################
winlink1000OduAirHssAssociatedCUTable OBJECT-TYPE
SYNTAX SEQUENCE OF Winlink1000OduAirHssAssociatedCUTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Associated Ethernet HSS Clients Table. Releant for Ethernet HSS Masters only."
::= { winlink1000OduAirHss 29 }
winlink1000OduAirHssAssociatedCUTableEntry OBJECT-TYPE
SYNTAX Winlink1000OduAirHssAssociatedCUTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Associated Ethernet HSS Clients Table Entry. Releant for Ethernet HSS Masters only."
INDEX { winlink1000OduAirHssAssociatedCUIndex }
::= { winlink1000OduAirHssAssociatedCUTable 1 }
Winlink1000OduAirHssAssociatedCUTableEntry ::= SEQUENCE {
winlink1000OduAirHssAssociatedCUIndex
INTEGER,
winlink1000OduAirHssAssociatedCUDescription
DisplayString
}
winlink1000OduAirHssAssociatedCUIndex OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Associated Ethernet HSS Clients Table Index. Releant for Ethernet HSS Masters only."
::= { winlink1000OduAirHssAssociatedCUTableEntry 1 }
winlink1000OduAirHssAssociatedCUDescription OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Holds Associated Ethernet HSS Clients Description in compress format:
IP,Delay,Compatibility,Ethernet Speed, Ethernet Rx rate, IPv6"
::= { winlink1000OduAirHssAssociatedCUTableEntry 2 }
-- ###################### End of Associated CU Table ###################
winlink1000OduAirHssSyncStatusEth OBJECT-TYPE
SYNTAX INTEGER {
notApplicable(1),
notSynchronized(2),
goodSynchronizationLevel(3),
mediumSynchronizationLevel(4),
badSynchronizationLevel(5),
startSynchronization(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Ethernet HSS Client Synchronization Level"
::= { winlink1000OduAirHss 30 }
winlink1000OduAirHssEthVLANTag OBJECT-TYPE
SYNTAX INTEGER (1..40947)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Ethernet HSS VLan Tag:
The least significate decimal digit is the VLan Priority(0-6)
and the rest of the digits represents VLan ID (2-4094)"
::= { winlink1000OduAirHss 31 }
winlink1000OduAirHssHSMIPAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"HSMs IP address. Relevant for HSC synchronized over Ethernet."
::= { winlink1000OduAirHss 32 }
winlink1000OduAirHssDelayToHSM OBJECT-TYPE
SYNTAX INTEGER (0..1000000)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Delay in microseconds to HSM. Relevant for HSC synchronized over Ethernet."
::= { winlink1000OduAirHss 33 }
winlink1000OduAirHssSyncAcquisitionSeconds OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Accumulated quantity of seconds in clock acquisition while connected to current HSM"
::= { winlink1000OduAirHss 34 }
winlink1000OduAirHssHSMIPv6Address OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"HSMs IPv6 address. Relevant for HSC synchronized over Ethernet."
::= { winlink1000OduAirHss 35 }
-- ###################### End of HSS Section ###################
winlink1000OduAirLockRemote OBJECT-TYPE
SYNTAX INTEGER {
unlock(1),
lock(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter enables locking the link with a specific ODU.
The following values can be set:
Unlock (default) - The ODU is not locked on a specific remote ODU. Unlock can only be performed when the link is not connected.
Lock - The ODU is locked on a specific remote ODU. Lock can only be performed when the link is active."
::= { winlink1000OduAir 41 }
winlink1000OduAirAntennaGain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Current Antenna Gain in 0.1 dBi resolution. User defined value for
external antenna.
Legal range: MinAntennaGain - Alarm.
"
::= { winlink1000OduAir 42 }
externalAlarmInPort1Alarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent every time an alarm occurs in the External Alarm Input of port #1.
Contains a single parameter, which is its description:
1 - Description: External Alarm 1 - - Alarm.
"
::= 105
externalAlarmInPort2Alarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent every time an alarm occurs in the External Alarm Input of port #2.
Contains a single parameter, which is its description:
1 - Description: External Alarm 2 - - Alarm.
"
::= 106
bitFailedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { critical }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if there is no way to recover from the situation.
Contains two parameters:
1 - Description: ODU power up built in test failed. Error code is: %n
2 - %n number
"
::= 107
wrongConfigurationLoadedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if there is a way to recover from the situation.
Contains two parameters:
1 - Description: Wrong configuration loaded. Error code is: %n
2 - %n number
"
::= 108
lanPort1DisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port 1 status changed to disconnected.
Contains a single parameter, which is its description:
1 - Description: LAN port 1 status changed to disconnected.
"
::= 109
lanPort2DisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port 2 status changed to disconnected.
Contains a single parameter, which is its description:
1 - Description: LAN port 2 status changed to disconnected.
"
::= 110
mngPortDisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN1 port status changed to disconnected.
Contains a single parameter, which is its description:
1 - Description: LAN1 port status changed to disconnected.
"
::= 111
externalAlarmInPort3Alarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent every time an alarm occurs in the External Alarm Input of port #3.
Contains a single parameter, which is its description:
1 - Description: External Alarm 3 - - Alarm.
"
::= 112
externalAlarmInPort4Alarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent every time an alarm occurs in the External Alarm Input of port #4.
Contains a single parameter, which is its description:
1 - Description: External Alarm 4 - - Alarm.
"
::= 113
swVersionsMismatchFullCompatibilityAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { warning }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions mismatch with full link functionality.
Contains a single parameter, which is its description:
1 - Description: Software versions mismatch - full link functionality
"
::= 114
swVersionsMismatchRestrictedCompatibilityAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { minor }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions mismatch with restricted link functionality.
Contains a single parameter, which is its description:
1 - Description: Software versions mismatch - restricted link functionality
"
::= 115
swVersionsMismatchSoftwareUpgradeRequired TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions mismatch and SW upgrade is required.
Contains a single parameter, which is its description:
1 - Description: Software versions mismatch - Software upgrade required
"
::= 116
swVersionsIncompatible TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { critical }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions are incompatible.
Contains a single parameter, which is its description:
1 - Description: SW Versions incompatible
"
::= 117
hssMultipleSourcesDetectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that multiple sync pulse sources were detected.
Contains a single parameter, which is its description:
1 - Description: HSS multiple sync sources were detected.
"
::= 118
hssSyncToProperSourceStoppedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that synchronization to a proper sync pulse source was stopped.
Contains a single parameter, which is its description:
1 - Description: HSS sync pulse - Down. The reason is: %s.
%s - Is the reason for the sync down.
"
::= 119
hssSyncPulseDetectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that HSS additional sync pulse was detected.
Contains a single parameter, which is its description:
1 - Description: HSS additional sync pulse was detected.
"
::= 120
tdmBackupAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the TDM backup link was activated.
Contains a single parameter, which is its description:
1 - Description: TDM backup alarm - backup link was activated.
"
::= 121
linkLockUnauthorizedRemoteODU TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the remote ODU is unauthorized.
Contains a single parameter, which is its description:
1 - Description: Unauthorized remote ODU connection rejected.
"
::= 122
linkLockUnauthorizedODU TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the ODU is unauthorized.
Contains a single parameter, which is its description:
1 - Description: Unauthorized ODU connection rejected.
"
::= 123
hotStandbyAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the hot standby secondary link was activated.
Contains a single parameter, which is its description:
1 - Description: Secondary Link Is Active.
"
::= 124
sfpInsertion TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicates that a device was inserted to SFP Port
"
::= 126
sfpPort1DisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the SFP port 1 status changed to disconnected.
Contains a single parameter which is its description:
1 - Description: SFP port 1 status changed to disconnected.
"
::= 127
ringRplStateActiveAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
RPL state changed to Active.
"
::= 128
desiredRatioCanNotBeAppliedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { minor }
--&MESG "$'1"
DESCRIPTION
"
Indicates Desired UL/DL RAtio Can Not Be Applied.
"
::= 129
cbwMismatch TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that a Channel Bandwidth mismatch was detected.
Contains two parameters:
1 - Description: Channel Bandwidth Mismatch: one side is %n0 MHz and the other is %n1 MHz.
%n0 is the local Channel Bandwidth value in MHz.
%n1 is the remoet Channel Bandwidth value in MHz."
::= 130
gpsNotSynchronized TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the GPS is not synchronized with satellites.
Pulses are self generated.
"
::= 131
pdTooHighDueCbwLimitations TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates that link cannot be established because
link range is too large for channel bandwidth.
"
::= 132
hbsEncryptionAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates an encryption key mismatch.
Contains a single parameter, which is its description, including the HSU's name
"
::= 133
hbsEhServiceClosedToHsu TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates an encryption key mismatch.
Contains a single parameter, which is its description, including the HSU's name
"
::= 134
hbsUnsynchronizedHsuAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { critical }
--&MESG "$'1"
DESCRIPTION
"
Indicates a registered HSU lost synchronization.
"
::= 135
hbsInactiveHbsAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates HBS is InActive.
"
::= 136
incompatibleHsu TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { critical }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the HSU is not compatible to HBS.
Contains a single parameter, which is its description:
1 - Description: Incompatible ODUs.
"
::= 137
hsuUnsupportedBeacon TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { warning }
--&MESG "$'1"
DESCRIPTION
"
Indicates an unsupported beacon has arrived at HSU
"
::= 138
lanPortDisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port status changed to disconnected.
Contains a single parameter, which is its description:
1 - Description: LAN port status changed to disconnected.
"
::= 139
poePortDisconnectedAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN2 port status changed to disconnected.
Contains a single parameter, which is its description:
1 - Description: LAN2 port status changed to disconnected.
"
::= 140
poePowerConsumptionAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the POE Power Consumption is above allowed maximum.
Contains a single parameter, which is its description:
1 - Description: POE consumption above allowed maximum. port closed.
"
::= 141
hobupFaultyStateAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
This Alarm will indicate that the Hot Backup module is in faulty state.
1 - Description: Hot Backup fault detected: %s unit.
%s - Primary Or Secondary Unit
"
::= 149
gpsOverCurrentAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the GPS Antenna current consumption is above allowed maximum.
Contains a single parameter, which is its description:
1 - Description: GPS Antenna current consumption above allowed maximum. GPS closed.
"
::= 150
gpsCommunicationFailiureAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the GPS data isn't received.
Contains a single parameter, which is its description:
1 - Description: GPS Communication failiure.
"
::= 151
temperatureThresholdAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Indicates the board temperature is above allowed maximum.
Contains a single parameter, which is its description:
1 - Description: GPS Antenna current consumption above allowed maximum. GPS closed.
"
::= 152
localRouterDiscoveryStatus TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
This Alarm will indicate that we have no connection with local train router.
1 - Description: MacLearningUpdate detected disconnection with local train router %s
%s - local train IP
"
::= 153
trackRouterDiscoveryStatus TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
This Alarm will indicate that we have no connection with Track side router.
1 - Description: MacLearningUpdate detected disconnection with Track side router %s
%s - Default gateway IP
"
::= 154
lastUserSnmpAccessOverHourAgo TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
This trap will indicate that the last access of the accessing user was more than an hour ago.
1 - Description: User %s performed SNMP access after more than an hour.
%s - user name
"
::= 155
btsTargetUnreachable TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
This Alarm will indicate that we have no connection with Bts desired target.
1 - Description: TNC detected disconnection with the BTS target %s
%s - Default gateway IP
"
::= 156
tdmServiceClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 100 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that TDM Service fault is cleared.
Contains a single parameter, which is its description:
1 - Description: TDM Service - Normal.
"
::= 200
ethServiceOpened TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 101 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that Ethernet Service has been opened.
Contains a single parameter, which is its description:
1 - Description: Ethernet Service has been opened.
"
::= 201
encryptionClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 103 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that encryption is OK.
Contains a single parameter, which is its description:
1 - Description: Encryption Status - Normal.
"
::= 203
changeLinkPasswordClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 104 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the Link Password was changed successfully.
Contains a single parameter, which is its description:
1 - Description: Link Password has been changed at/on: %s.
%s - Is the Local Site name or Remote Site name or both sides of the Link.
"
::= 204
externalAlarmInPort1Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 105 }
--&MESG "$'1"
DESCRIPTION
"
This Trap is sent every time an External Alarm Input fault of port # 1 is cleared.
Contains a single parameter, which is its description:
1 - Description: External Alarm 1 - - Alarm Cleared.
"
::= 205
externalAlarmInPort2Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 106 }
--&MESG "$'1"
DESCRIPTION
"
This Trap is sent every time an External Alarm Input fault of port # 2 is cleared.
Contains a single parameter, which is its description:
1 - Description: External Alarm 2 - - Alarm Cleared.
"
::= 206
lanPort1Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 109 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port 1 status changed to connected.
Contains two parameters:
1 - Description: LAN port 1 status changed to connected - %s
2 - %s Is the Eth. mode (speed & duplex)
"
::= 209
lanPort2Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 110 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port 2 status changed to connected.
Contains two parameters:
1 - Description: LAN port 2 status changed to connected - %s.
2 - %s Is the Eth. mode (speed & duplex).
"
::= 210
mngPortClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 111 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN1 port status changed to connected.
Contains two parameters:
1 - Description: LAN1 port status changed to connected - %s
2 - %s Is the Eth. mode (speed & duplex)
"
::= 211
externalAlarmInPort3Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 112 }
--&MESG "$'1"
DESCRIPTION
"
This Trap is sent every time an External Alarm Input fault of port # 3 is cleared.
Contains a single parameter, which is its description:
1 - Description: External Alarm 3 - - Alarm Cleared.
"
::= 212
externalAlarmInPort4Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 113 }
--&MESG "$'1"
DESCRIPTION
"
This Trap is sent every time an External Alarm Input fault of port # 4 is cleared.
Contains a single parameter, which is its description:
1 - Description: External Alarm 4 - - Alarm Cleared.
"
::= 213
swVersionsMatchFullCompatibilityClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 114 }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions match.
Contains a single parameter, which is its description:
1 - Description: Software Versions compatible
"
::= 214
swVersionsMatchRestrictedCompatibilityClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 115 }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions match and link functionality is not restricted.
Contains a single parameter, which is its description:
1 - Description: Software Versions compatible
"
::= 215
swVersionsMatchSoftwareUpgradeRequiredClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 116 }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions match and SW upgrade is successful.
Contains a single parameter, which is its description:
1 - Description: Software Versions compatible
"
::= 216
swVersionsCompatibleClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 117 }
--&MESG "$'1"
DESCRIPTION
"
The trap is sent if SW versions compatible
Contains a single parameter, which is its description:
1 - Description: Software Versions compatible
"
::= 217
hssMultipleSourcesDisappearedClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 118 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that multiple sync pulse sources disappeared.
Contains a single parameter, which is its description:
1 - Description: HSS multiple sync pulse sources disappeared.
"
::= 218
hssSyncToProperSourceAchievedClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 119 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that synchronization to a proper Sync source was achieved.
Contains a single parameter, which is its description:
1 - Description: HSS sync pulse - Up.
"
::= 219
hssSyncPulseDisappearedClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 120 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that HSS additional sync pulse disappeared.
Contains a single parameter, which is its description:
1 - Description: HSS additional sync pulse was disappeared.
"
::= 220
tdmBackupClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 121 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the TDM main link was activated.
Contains a single parameter, which is its description:
1 - Description: TDM main link was activated.
"
::= 221
linkLockAuthorizedRemoteODU TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 122 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the remote ODU is authorized.
Contains a single parameter, which is its description:
1 - Description: Authorized remote ODU connection accepted.
"
::= 222
linkLockAuthorizedODU TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 123 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the ODU is authorized.
Contains a single parameter, which is its description:
1 - Description: Authorized ODU connection permitted.
"
::= 223
linkAuthenticationDisabled TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 122 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the Link Lock is disabled.
Contains a single parameter, which is its description:
1 - Description: Link Authentication has been disabled.
"
::= 224
hotStandbyClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 124 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the Primary Link Was Activated.
Contains a single parameter, which is its description:
1 - Description: Primary Link Is Active.
"
::= 225
sfpExtraction TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicates that a device was extracted from SFP Port
"
::= 226
sfpPort1Clear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 127 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the SFP port 1 status changed to connected.
Contains two parameters:
1 - Description: SFP port 1 status changed to connected - %s
2 - %s Is the Eth. mode (speed & duplex)
"
::= 227
compatibleIdus TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 10 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the ODU has identified compatible Idus on both sides of the link.
"
::= 228
desiredRatioCanNotBeAppliedClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 129 }
--&MESG "$'1"
DESCRIPTION
"
Indicates Current UL/DL Ratio Is Equal To Desired Ratio.
"
::= 229
cbwMatch TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 130 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that a Channel Bandwidth match was detected.
Contains a single parameter, which is its description:
1 - Channel Bandwidth value in MHz.
"
::= 230
switchCbwAndChannel TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the system is switching Channel Bandwidth and channel frequency.
Contains two parameters:
1 - Switching to Channel Bandwith %n0 MHz and to channel %n1 GHz.
"
::= 231
ringRplStateIdle TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 128 }
--&MESG "$'1"
DESCRIPTION
"
RPL state changed to Idle.
"
::= 232
ringEthServiceStatus TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicates Ethernet service's state - blocked \ unblocked.
Contains a single parameter:
1 - Description: Ethernet's state (blocked \ unblocked)
"
::= 233
ringFirstRpmReceived TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Ring application: in non-RPL link indicates first from a specific RPL was received.
Contains a single parameter:
1 - Description: RPM's VLAN ID
"
::= 234
ringEthernetSrviceUnblockedTO TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Ring application: in non-RPL link Ethernet service is unblocked due to RPM timeout.
"
::= 235
gpsSynchronized TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 131 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that the GPS is synchronized with satellites.
"
::= 236
hbsEncryptionClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 133 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that encryption is OK.
Contains a single parameter, which is its description, including the HSU's name
"
::= 237
hbsEhServiceOpenedToHsu TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 134 }
--&MESG "$'1"
DESCRIPTION
"
Indicates that encryption is OK.
Contains a single parameter, which is its description, including the HSU's name
"
::= 238
hbsSynchronizedHsuAlarm TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 135 }
--&MESG "$'1"
DESCRIPTION
"
Indicates a registered HSU is synchronized.
"
::= 239
hbsActiveHbs TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 136 }
--&MESG "$'1"
DESCRIPTION
"
Indicates when HBS has been activated.
"
::= 240
switchCBW TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Switching Channel Bandwidth.
"
::= 241
changeRatio TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
HBS Tx ratio has changed.
"
::= 242
lanPortClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 139 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN port status changed to connected.
Contains two parameters:
1 - Description: LAN port status changed to connected - %s
2 - %s Is the Eth. mode (speed & duplex)
"
::= 243
poePortClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 140 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the LAN2 port status changed to connected.
Contains two parameters:
1 - Description: LAN2 port status changed to connected - %s
2 - %s Is the Eth. mode (speed & duplex)
"
::= 244
poePowerConsumptionClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 141 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the POE power consumption is valid.
Contains two parameters:
1 - Description: POE consumption within limits. port is opened.
2 - %s Is the Eth. mode (speed & duplex)
"
::= 245
incompatibleHbsHsu TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Incompatible HBS/HSU software versions - no service.
"
::= 246
mobilityLinkOff TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Mobility - Link cannot be established due to:
1 - The HBS does not support Mobility
2 - Lack of resources in the HBS for HSU level
"
::= 247
enterLocalConnection TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Entering Local Connection (Broadcast) Mode.
"
::= 248
hobupActiveStateFaultyClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 149 }
--&MESG "$'1"
DESCRIPTION
"
this clear alarm will indicate that the Hot Backup unit is in active state.
Contains a single parameter, which is its description:
1 - Description: Hot Backup %s unit activated.
%s - Primary Or Secondary Unit
"
::= 249
hobupStandbyState TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
This info fault will indicate that the Hot backup module has entered standby/peer_detection state
Contains a single parameter, which is its description:
1 - Description: Hot Backup in Standby state: %s unit.
%s - Primary Or Secondary Unit
"
::= 250
gpsOverCurrentClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 150 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the GPS Antenna current consumption is valid.
"
::= 251
temperatureThresholdClear TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 152 }
--&MESG "$'1"
DESCRIPTION
"
Indicates the board temperature is valid.
"
::= 252
localRouterDiscoverySucceed TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 153 }
--&MESG "$'1"
DESCRIPTION
"
Indicated the we succeeded to discover train router in ip %s MAC address %s
%s Train IP
%s Train MAC Address
"
::= 253
trackRouterDiscoverySucceed TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 154 }
--&MESG "$'1"
DESCRIPTION
"
Indicated the we succeeded to discover track router in ip %s MAC address %s
%s Train IP
%s Train MAC Address
"
::= 254
qosVersion2StrictMismatch TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
CPE doesn't support strict QOS configuration.
"
::= 255
qosVersion2TtlMismatch TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
CPE doesn't support TTL configuration.
"
::= 256
btsTargetIsReachable TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 156 }
--&MESG "$'1"
DESCRIPTION
"
Indicated the we succeeded to establish connection with the Bts desired target (%s)
%s Target IP
"
::= 257
tcNotSupportedByHSU TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
CPE doesn't support TC functionality.
"
::= 258
syncEPortHOStateChange TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Enter/leave HO state of SyncE port.
"
::= 259
syncEPortFailureStateChange TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Enter/leave Failure state of SyncE port.
"
::= 260
btsCpeUpdateServiceFailed TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Update service Failed
"
::= 261
btsCpeUpdateServiceSucceed TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Update service Succeed
"
::= 262
radiusServerNoREsponse TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
No response from radius server
"
::= 263
noRadiusServerRespond TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { major }
--&MESG "$'1"
DESCRIPTION
"
Alarm indicates that no Radius server is connected
"
::= 264
radiusServerRespondedSuccessfully TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&CLEARS { 264 }
--&MESG "$'1"
DESCRIPTION
"
indicates that Radius server responded seccessfully.
"
::= 265
bsaAlignmentStarted TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicate the beginning of Alignment Process
"
::= 266
bsaAlignmentFinished TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicate the completion of Alignment Process
"
::= 267
bsaAlignmentTriggered TRAP-TYPE
ENTERPRISE winlink1000
VARIABLES { winlink1000GeneralTrapDescription, winlink1000OduAgnCurrAlarmSeverity, winlink1000OduAgnCurrAlarmIfIndex,
winlink1000OduAgnCurrAlarmUnit, winlink1000OduAgnCurrAlarmTimeT, winlink1000OduAgnCurrAlarmId }
--&ACTIONS { normal }
--&MESG "$'1"
DESCRIPTION
"
Indicate the triggering of Alignment Process due to exceeding thresholds
"
::= 268
-- ###########################################################
-- Products Section
-- ###########################################################
radwinProducts OBJECT IDENTIFIER ::= { radwin 20 }
winlink1000Family OBJECT IDENTIFIER ::= { radwinProducts 2 }
radwin2000Family OBJECT IDENTIFIER ::= { radwinProducts 3 }
gpsSynchronizerFamily OBJECT IDENTIFIER ::= { radwinProducts 4 }
radwin5000HBSFamily OBJECT IDENTIFIER ::= { radwinProducts 5 }
radwin5000HSUFamily OBJECT IDENTIFIER ::= { radwinProducts 6 }
radwin6000Family OBJECT IDENTIFIER ::= { radwinProducts 10 }
radwinWiFiAPFamily OBJECT IDENTIFIER ::= { radwinProducts 20 }
--
-- the following identifiers are assigned to ODU Products
--
odu OBJECT IDENTIFIER ::= { winlink1000Family 1 }
oduIntegratedAntenna OBJECT IDENTIFIER ::= { odu 1 }
oduExternalAntenna OBJECT IDENTIFIER ::= { odu 2 }
--
-- Suffix 3,4,5,6,7,8,9,10,11,12,13,14,15,16 in the products section
-- are reserved for backward compatibility.
--
odu2000 OBJECT IDENTIFIER ::= { radwin2000Family 1 }
odu2KIntegratedAntenna OBJECT IDENTIFIER ::= { odu2000 1 }
odu2KExternalAntenna OBJECT IDENTIFIER ::= { odu2000 2 }
oduGSU OBJECT IDENTIFIER ::= { gpsSynchronizerFamily 1 }
oduGSUExternalAntenna OBJECT IDENTIFIER ::= { oduGSU 2 }
hssSyncUnits OBJECT IDENTIFIER ::= { gpsSynchronizerFamily 2 }
hssISU OBJECT IDENTIFIER ::= { hssSyncUnits 1 }
hssGSU OBJECT IDENTIFIER ::= { hssSyncUnits 2 }
oduHBS OBJECT IDENTIFIER ::= { radwin5000HBSFamily 1 }
oduHBSIntegratedAntenna OBJECT IDENTIFIER ::= { oduHBS 1 }
oduHBSExternalAntenna OBJECT IDENTIFIER ::= { oduHBS 2 }
oduHSU OBJECT IDENTIFIER ::= { radwin5000HSUFamily 1 }
oduHSUIntegratedAntenna OBJECT IDENTIFIER ::= { oduHSU 1 }
oduHSUExternalAntenna OBJECT IDENTIFIER ::= { oduHSU 2 }
odu6000 OBJECT IDENTIFIER ::= { radwin6000Family 1 }
odu6K OBJECT IDENTIFIER ::= { odu6000 1 }
gateway6000 OBJECT IDENTIFIER ::= { radwin6000Family 2 }
gateway6K OBJECT IDENTIFIER ::= { gateway6000 1 }
odu600 OBJECT IDENTIFIER ::= { radwinWiFiAPFamily 1 }
oduWiFiAP OBJECT IDENTIFIER ::= { odu600 1 }
END
|