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
|
ALU-MICROWAVE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
NOTIFICATION-TYPE, Counter64, IpAddress,
Unsigned32, Integer32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DateAndTime, TimeStamp,
TruthValue, RowStatus, DisplayString FROM SNMPv2-TC
tmnxChassisIndex FROM TIMETRA-CHASSIS-MIB
TmnxPortID, TNamedItemOrEmpty,
TmnxActionType,
TmnxDisplayStringURL FROM TIMETRA-TC-MIB
TmnxPortOperStatus FROM TIMETRA-PORT-MIB
aluSARMIBModules, aluSARObjs,
aluSARConfs, aluSARNotifyPrefix FROM ALU-SAR-GLOBAL-MIB
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
;
aluMwMIBModule MODULE-IDENTITY
LAST-UPDATED "0809100000Z"
ORGANIZATION "Nokia"
CONTACT-INFO
"Nokia 7x50 Support
Web: http://www.nokia.com/comps/pages/carrier_support.jhtml"
DESCRIPTION
"This document is the SNMP MIB module to manage and provision the
microwave components on the Nokia 7xxx device.
Copyright 2012-2014 Nokia. All rights reserved.
Reproduction of this document is authorized on the condition that
the foregoing copyright notice is included.
This SNMP MIB module (Specification) embodies Nokia's
proprietary intellectual property. Nokia retains
all title and ownership in the Specification, including any
revisions.
Nokia grants all interested parties a non-exclusive
license to use and distribute an unmodified copy of this
Specification in connection with management of Nokia
products, and without fee, provided this copyright notice and
license appear on all copies.
This Specification is supplied 'as is', and Nokia
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
--
-- Revision History
--
REVISION "0801090000Z"
DESCRIPTION "Rev 1.0 09 Jan 2008 00:00
1.0 release of the ALU-MICROWAVE-MIB."
::= { aluSARMIBModules 6 }
aluMwObjPrefix OBJECT IDENTIFIER ::= { aluSARObjs 7 }
aluMwObjs OBJECT IDENTIFIER ::= { aluMwObjPrefix 1 }
aluMwNotifyObjs OBJECT IDENTIFIER ::= { aluMwObjPrefix 2 }
aluMwMIBConformance OBJECT IDENTIFIER ::= { aluSARConfs 7 }
aluMwConformance OBJECT IDENTIFIER ::= { aluMwMIBConformance 1 }
aluMwNotifyPrefix OBJECT IDENTIFIER ::= { aluSARNotifyPrefix 10 }
aluMwNotification OBJECT IDENTIFIER ::= { aluMwNotifyPrefix 0 }
--
-- ALU-MICROWAVE-MIB at a glance
--
-- timetra (enterprises 6527)
-- timetraBasedProducts (6)
-- aluServiceAggrRouters (1)
-- aluSARObjects (2)
-- aluSARMIB (1)
-- aluSARConfs (1)
-- aluSARObjs (2)
-- aluMwObjs (aluSARObjs 7)
-- aluSARNotifyPrefix (3)
--
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- ALU-MICROWAVE-MIB textual conventions
--
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- AluMwLinkID
--
AluMwLinkID ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A AluMwLinkID is an unique 32 bit number identifying a
Packet Microwave Link encoded as shown below.
|32 30| 29 26 | 25 22 | 21 16 | 15 13 | 12 1|
+-----+-------+-------+-------+-----------+-------+
|011 | all zeros | id | all zeros |
+-----+-------+-------+-------+-----------+-------+
There may be multiple MW Links on each system."
SYNTAX Unsigned32
--
-- AluMwLinkRadioActivity
--
AluMwLinkRadioActivity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The AluMwLinkRadioActivity data type is an enumerated integer that
describes which radio (main or spare) is active in a particular
protection scheme."
SYNTAX INTEGER {
notApplicable (1),
mainRadio (2),
spareRadio (3),
bothActive (4)
}
--
-- AluMwLinkRevertiveness
--
AluMwLinkRevertiveness ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The AluMwLinkRevertiveness data type is an enumerated integer that
describes the revertiveness of a particular protection scheme."
SYNTAX INTEGER {
notApplicable (1),
revertive (2),
nonRevertive (3)
}
--
-- AluMwLinkRadioMaintenanceOp
--
AluMwLinkMaintenanceOp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The AluMwLinkMaintenanceOp data type is an enumerated integer that
describes the maintentance operation is active in a particular
protection scheme."
SYNTAX INTEGER {
none (0),
lockout (1),
forced (2),
manual (3)
}
--
-- AluMwRadioSwState
--
AluMwRadioSwState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"AluMwRadioSwState describes the state of software on
the MPT.
unknown - Indicates s/w version is unknown.
dwnldRequested - Software Download Requested
dwnldForced - Forced Software Download Requested
inProgress - Software download in progress
ready - Software is downloaded and ready for upgrade
ok - Software is correct and running on MPT
mismatch - Radio software is mismatched with running software
dwnldFailed - Download of software failed"
SYNTAX INTEGER {
unknown (0),
dwnldRequested (1),
dwnldForced (2),
inProgress (3),
ready (4),
ok (5),
mismatch (6),
dwnldFailed (7)
}
AluMwPerfMonSection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"$[OBJECT] is used to select the particular
performance monitoring point from which to receive statistics.
radioHop - Selects the stats for this radio in a 1+1,
or the only possible selection in 1+0.
radioLink - Selects the stats for the radio link, combining
the main and spare in a 1+1."
SYNTAX INTEGER {
radioHop (0),
radioLink (1)
}
AluMwPerfMonPeriod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"$[OBJECT] is used to choose the elapsed time period
from which to receive statistics."
SYNTAX INTEGER {
fifteenMinute (0),
twentyFourHour (1)
}
AluMwPerfMonBin ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"$[OBJECT] is used to select a specific performance monitoring bin.
- 0 Selects the current data, and actively retrieves the stats
from the radio.
- 1..96 Selects one of the historic data bins, from most recent
to oldest. Only bins 1 through 8 are available for period
twentyFourHour."
SYNTAX INTEGER (0 | 1..96)
AluMwPerfMonEPSState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"$[OBJECT] is the EPS state at the time the performance
monitoring was recorded. notRelevant is returned if the radio is
in a 1+0 configuration."
SYNTAX INTEGER {
notActive (0),
active (1),
notRelevant (2)
}
--
-- MW Link Table
--
aluMwLinkTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The aluMwLinkTable has an entry for each Packet Microwave Link in the system."
::= { aluMwObjs 1 }
aluMwLinkEntry OBJECT-TYPE
SYNTAX AluMwLinkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a Packet Microwave Link that is provisioned on the system.
Entries can be created and deleted on the system via SNMP SET operations
operations using the aluMwLinkRowStatus object. Creation of this entry enables
management of Packet Microwave (MW) Links that contain Microwave Radios. The
operational state of the link is based on the state of the contained radios and
protection scheme provisioned."
INDEX { tmnxChassisIndex, aluMwLinkID }
::= { aluMwLinkTable 1 }
AluMwLinkEntry ::=
SEQUENCE {
aluMwLinkID AluMwLinkID,
aluMwLinkRowStatus RowStatus,
aluMwLinkOperFlags BITS,
aluMwLinkRadioScheme INTEGER,
aluMwLinkAlarmState INTEGER,
aluMwLinkAlarmsCritical INTEGER,
aluMwLinkAlarmsMajor INTEGER,
aluMwLinkAlarmsMinor INTEGER,
aluMwLinkAlarmsWarning INTEGER,
aluMwLinkAlarmsInd INTEGER,
aluMwLinkAlarmsCommunication INTEGER,
aluMwLinkAlarmsEquipment INTEGER,
aluMwLinkEPSActivity AluMwLinkRadioActivity,
aluMwLinkTPSActivity AluMwLinkRadioActivity,
aluMwLinkRPSActivity AluMwLinkRadioActivity,
aluMwLinkEPSRevertiveness AluMwLinkRevertiveness,
aluMwLinkTPSRevertiveness AluMwLinkRevertiveness,
aluMwLinkRPSRevertiveness AluMwLinkRevertiveness,
aluMwLinkEPSMainMaintOp AluMwLinkMaintenanceOp,
aluMwLinkEPSSpareMaintOp AluMwLinkMaintenanceOp,
aluMwLinkTPSMainMaintOp AluMwLinkMaintenanceOp,
aluMwLinkTPSSpareMaintOp AluMwLinkMaintenanceOp,
aluMwLinkRPSMainMaintOp AluMwLinkMaintenanceOp,
aluMwLinkRPSSpareMaintOp AluMwLinkMaintenanceOp,
aluMwLinkPeerID AluMwLinkID,
aluMwLinkPeerNEIpAddress IpAddress,
aluMwLinkClearStatistics TmnxActionType,
aluMwLinkPeerDiscovery TruthValue
}
aluMwLinkID OBJECT-TYPE
SYNTAX AluMwLinkID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"aluMwLinkID identifies this Packet Microwave Link. The value of this object is
calculated using the TiMOS encoding scheme described in AluMwLinkID."
::= { aluMwLinkEntry 1 }
aluMwLinkRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkRowStatus controls the creation and deletion of
row entries in the aluMwLinkTable.
The manager has to first calculate the aluMwLinkID
based on the TiMOS encoding."
::= { aluMwLinkEntry 2 }
aluMwLinkOperFlags OBJECT-TYPE
SYNTAX BITS {
noRadioCfg (0), -- Link has no radios configured
linkAdminDown (1), -- Link is admin down
noRadiosPresent (2), -- No Radios detected
noRadiosReady (3), -- No Radios are ready
incompatibleConfig (4), -- Radio configuration is incompatible
radioFailure (5), -- Radio equipment has failure
receptionFailure (6), -- Radio reception failure
di (7), -- Defect Indication
txMuted (8) -- No Radios transmitting
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies all the conditions that
affect the operating status of this Packet Microwave
Link."
::= { aluMwLinkEntry 3 }
aluMwLinkRadioScheme OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
onePlusZero (1),
onePlusOneHSB (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkRadioScheme specifies the scheme all the radios contained in
this link are operating in."
DEFVAL { onePlusZero }
::= { aluMwLinkEntry 4 }
aluMwLinkAlarmState OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
critical (1),
major (2),
minor (3),
warning (4),
inderminate (5),
notSupported (6),
unknown (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmState summarizes the alarm state of the link.
A value of 'notSupported' indicates the link does not support alarm management."
::= { aluMwLinkEntry 5 }
aluMwLinkAlarmsCritical OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsCritical indicates the number of critical alarms
that are raised on this microwave link."
::= { aluMwLinkEntry 6 }
aluMwLinkAlarmsMajor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsMajor indicates the number of major alarms
that are raised on this microwave link."
::= { aluMwLinkEntry 7 }
aluMwLinkAlarmsMinor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsMinor indicates the number of minor alarms
that are raised on this microwave link."
::= { aluMwLinkEntry 8 }
aluMwLinkAlarmsWarning OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsWarning indicates the number of warning alarms
that are raised on this microwave link."
::= { aluMwLinkEntry 9 }
aluMwLinkAlarmsInd OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsInd indicates the number of
indeterminate alarms that are raised on this microwave link."
::= { aluMwLinkEntry 10 }
aluMwLinkAlarmsCommunication OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsCommunication indicates the number of alarms
related to radio communications that are raised on this microwave link."
::= { aluMwLinkEntry 11 }
aluMwLinkAlarmsEquipment OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAlarmsEquipment indicates the number of alarms
related to equipment that are raised on this microwave link."
::= { aluMwLinkEntry 12 }
aluMwLinkEPSActivity OBJECT-TYPE
SYNTAX AluMwLinkRadioActivity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkEPSActivity indicates the current activity of the equipment
protection scheme"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 13 }
aluMwLinkTPSActivity OBJECT-TYPE
SYNTAX AluMwLinkRadioActivity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkTPSActivity indicates the current activity of the transport
protection scheme"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 14 }
aluMwLinkRPSActivity OBJECT-TYPE
SYNTAX AluMwLinkRadioActivity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkRPSActivity indicates the current activity of the radio
protection scheme"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 15 }
aluMwLinkEPSRevertiveness OBJECT-TYPE
SYNTAX AluMwLinkRevertiveness
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkEPSRevertiveness configures the revertiveness of the
equipment protection scheme"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 16 }
aluMwLinkTPSRevertiveness OBJECT-TYPE
SYNTAX AluMwLinkRevertiveness
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkTPSRevertiveness indicates the revertiveness of the
transport protection scheme. This is inherited from the
aluMwLinkEPSRevertiveness"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 17 }
aluMwLinkRPSRevertiveness OBJECT-TYPE
SYNTAX AluMwLinkRevertiveness
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkRPSRevertiveness configures the revertiveness of the
radio protection scheme"
DEFVAL { notApplicable }
::= { aluMwLinkEntry 18 }
aluMwLinkEPSMainMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkEPSMainMaintOp applies maintenance operations to the
main radio in the equipment protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 19 }
aluMwLinkEPSSpareMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkEPSSpareMaintOp applies maintenance operations to the
spare radio in the equipment protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 20 }
aluMwLinkTPSMainMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkTPSMainMaintOp applies maintenance operations to the
main radio in the transport protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 21 }
aluMwLinkTPSSpareMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkTPSSpareMaintOp applies maintenance operations to the
spare radio in the transport protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 22 }
aluMwLinkRPSMainMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkRPSMainMaintOp applies maintenance operations to the
main radio in the radio protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 23 }
aluMwLinkRPSSpareMaintOp OBJECT-TYPE
SYNTAX AluMwLinkMaintenanceOp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkRPSSpareMaintOp applies maintenance operations to the
spare radio in the radio protection scheme"
DEFVAL { none }
::= { aluMwLinkEntry 24 }
aluMwLinkPeerID OBJECT-TYPE
SYNTAX AluMwLinkID
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkPeerID identifies the peer Microwave Link. The value of this object is
calculated using the TiMOS encoding scheme described in AluMwLinkID when connected
to 7705 SAR systems and based on peer encoding scheme for other peer types."
::= { aluMwLinkEntry 25 }
aluMwLinkPeerNEIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkPeerNEIpAddress identifies the peer NE IPv4 address. "
::= { aluMwLinkEntry 26 }
aluMwLinkClearStatistics OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkClearStatistics clears all link level statistics."
DEFVAL { notApplicable }
::= { aluMwLinkEntry 27 }
aluMwLinkPeerDiscovery OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwLinkPeerDiscovery enables and disables discovery of peer information
on managed microwave links. The value of aluMwLinkPeerDiscovery is not used
for standalone microwave links."
DEFVAL { true }
::= { aluMwLinkEntry 28 }
--
-- Microwave Radio Table
--
aluMwRadioTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The aluMwRadioTable has an entry for each Microwave Radio in the system."
::= { aluMwObjs 2 }
aluMwRadioEntry OBJECT-TYPE
SYNTAX AluMwRadioEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a Microwave Radio that is connected off a physical port
on the system. The aluMwRadioPortID contains this port encoded in it.
Entries can be created and deleted on microwave-aware ports via SNMP SET
operations using the aluMwRadioRowStatus object. Creation of this entry enables
management of connected Microwave (MW) Packet Transport Radios. The
operational state of the connected radio and it's Microwave Link is represented
in the operational state of this entry.
Microwave Radios may only be created on ports that support microwave-awareness.
There can be only one Microwave Radio on each port."
INDEX { tmnxChassisIndex, aluMwRadioPortID }
::= { aluMwRadioTable 1 }
AluMwRadioEntry ::=
SEQUENCE {
aluMwRadioPortID TmnxPortID,
aluMwRadioRowStatus RowStatus,
aluMwRadioMode INTEGER,
aluMwRadioMwLinkID AluMwLinkID,
aluMwRadioOperStatus TmnxPortOperStatus,
aluMwRadioOperFlags BITS,
aluMwRadioStandalone TruthValue,
aluMwRadioName TNamedItemOrEmpty,
aluMwRadioDatabaseFilename TNamedItemOrEmpty,
aluMwRadioType INTEGER,
aluMwRadioFrequency INTEGER,
aluMwRadioAlarmState INTEGER,
aluMwRadioAlarmsCritical INTEGER,
aluMwRadioAlarmsMajor INTEGER,
aluMwRadioAlarmsMinor INTEGER,
aluMwRadioAlarmsWarning INTEGER,
aluMwRadioAlarmsInd INTEGER,
aluMwRadioAlarmsCommunication INTEGER,
aluMwRadioAlarmsEquipment INTEGER,
aluMwRadioTxMuted INTEGER,
aluMwRadioReboot TmnxActionType,
aluMwRadioLastStateChange TimeStamp,
aluMwRadioCommEstablished TimeStamp,
aluMwRadioCommLost TimeStamp,
aluMwRadioSwState AluMwRadioSwState,
aluMwRadioSwDnldProgress INTEGER,
aluMwRadioRslHistoryUrl TmnxDisplayStringURL,
aluMwRadioRslHistoryClear TmnxActionType,
aluMwRadioFfdSuppressFlags BITS,
aluMwRadioPMG826Enable TruthValue,
aluMwRadioPMG826OperStatus TruthValue,
aluMwRadioPMG826Clear TmnxActionType,
aluMwRadioPMACMEnable TruthValue,
aluMwRadioPMACMOperStatus TruthValue,
aluMwRadioPMACMClear TmnxActionType,
aluMwRadioPMPowerEnable TruthValue,
aluMwRadioPMPowerOperStatus TruthValue,
aluMwRadioPMPowerClear TmnxActionType
}
aluMwRadioPortID OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"aluMwRadioPortID identifies the port of this microwave radio. The value of
this object is calculated using the TiMOS encoding scheme described
in TmnxPortID."
::= { aluMwRadioEntry 1 }
aluMwRadioRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioRowStatus controls the creation and deletion of
row entries in the aluMwRadioTable.
The manager has to first calculate the aluMwRadioPortID
based on the TiMOS encoding.
Setting aluMwRadioRowStatus to 'createAndGo(4)', 'createAndWait(5)'
or 'destroy(6)' will be rejected if aluMwRadioPortID is set to a
TmnxPortID that is the same as either
TIMETRA-CHASSIS-MIB::tmnxSyncIfTimingRef1SrcPort or
TIMETRA-CHASSIS-MIB::tmnxSyncIfTimingRef2SrcPort."
::= { aluMwRadioEntry 2 }
aluMwRadioMode OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
onePlusZero (1),
main (2),
spare (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioMode specifies the role this microwave radio is
operating with respect to the 'mw-link' that it is part of.
This radio will be a 'main (1)' or 'spare (2)' radio in an mw-link.
This object can only be set with aluMwRadioRowStatus during the
creation of the mw-link."
DEFVAL { onePlusZero }
::= { aluMwRadioEntry 3 }
aluMwRadioMwLinkID OBJECT-TYPE
SYNTAX AluMwLinkID
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioMwLinkID indicates the AluMwLinkID of the mw-link that this
radio is part of. This object must be set during conjunction with
aluMwRadioRowStatus during mw-link creation."
::= { aluMwRadioEntry 4 }
aluMwRadioOperStatus OBJECT-TYPE
SYNTAX TmnxPortOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of this microwave radio."
::= { aluMwRadioEntry 5 }
aluMwRadioOperFlags OBJECT-TYPE
SYNTAX BITS {
portNotPresent (0), -- IDU Port is not present
portOperDown (1), -- IDU Port is oper down
radioNotPresent (2), -- Radio is not present
radioCommError (3), -- Radio communication error
radioInit (4), -- IDU is initializing radio
softwareDownload (5), -- Radio is downloading software
txMuted (6), -- Radio is not transmitting
radioNotReady (7), -- Radio not ready
radioEqFailure (8), -- Radio equipment failure
incompatibleShifter (9), -- Radio incompatible with shifter config
incompatibleFreq (10), -- Radio incompatible with frequency cfg
incompatiblePower (11), -- Radio incompatible with power config
incompatibleModParms (12), -- Radio incompatible with modulation parms
di (13), -- Radio Defect Indication
radioLinkDown (14), -- Radio Link Down
rslThresholdFail (15), -- RSL Threshold Crossed
lof (16), -- Loss of Radio Frame
protectionFail (17), -- Protection Failure
proxyActive (18), -- Proxy Session to radio Active
noDbFile (19), -- Radio Database File is Missing
dbSyncInProgress (20), -- Radio Database Sync In Progress
noDbConfig (21), -- Radio Database config is missing
tpsTxMuted (22), -- Radio is Muted due to TPS activity
noSoftware (23), -- IDU did not detect any software
softwareMismatch (24), -- Radio does not contain correct software
issu (25), -- Radio is in In-service software upgrade
highBer (26) -- High bit error rate
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object specifies all the conditions that
affect the operating status of this radio.
Only 'portOperDown' is applicable to radios operating as
standalone devices as indicated by aluMwRadioStandalone."
::= { aluMwRadioEntry 6 }
aluMwRadioStandalone OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies whether the radio is operating as a standalone
network element or if it is managed by this router.
A value of 'true' indicates it is operating as a standalone device."
DEFVAL { false }
::= { aluMwRadioEntry 7 }
aluMwRadioName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The textual name of the radio."
::= { aluMwRadioEntry 8 }
aluMwRadioDatabaseFilename OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioDatabaseFilename specifies the filename of the radio's database.
This file must be located at the same path as the system configuration file."
::= { aluMwRadioEntry 9 }
aluMwRadioType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioType specifies the device type of microwave radio.
The type of radio is only available when the microwave radio is
managed and is present. aluMwRadioType returns a value of '0' when
the radio type is unknown."
::= { aluMwRadioEntry 10 }
aluMwRadioFrequency OBJECT-TYPE
SYNTAX INTEGER
UNITS "MHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioType specifies the frequency of the microwave radio.
The frequency of the radio is only available when the microwave radio is
managed and is present."
::= { aluMwRadioEntry 11 }
aluMwRadioAlarmState OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
critical (1),
major (2),
minor (3),
warning (4),
inderminate (5),
notSupported (6),
unknown (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmState summarizes the alarm state of the radio."
::= { aluMwRadioEntry 12 }
aluMwRadioAlarmsCritical OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsCritical indicates the number of critical alarms
that are raised on this microwave radio."
::= { aluMwRadioEntry 13 }
aluMwRadioAlarmsMajor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsMajor indicates the number of major alarms
that are raised on this microwave radio."
::= { aluMwRadioEntry 14 }
aluMwRadioAlarmsMinor OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsMinor indicates the number of minor alarms
that are raised on this microwave radio."
::= { aluMwRadioEntry 15 }
aluMwRadioAlarmsWarning OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsWarning indicates the number of warning alarms
that are raised on this microwave radio."
::= { aluMwRadioEntry 16 }
aluMwRadioAlarmsInd OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsInd indicates the number of
indeterminate alarms that are raised on this microwave radio."
::= { aluMwRadioEntry 17 }
aluMwRadioAlarmsCommunication OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsCommunication indicates the number of alarms
related to radio communications that are raised on this microwave radio."
::= { aluMwRadioEntry 18 }
aluMwRadioAlarmsEquipment OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioAlarmsEquipment indicates the number of alarms
related to equipment that are raised on this microwave radio."
::= { aluMwRadioEntry 19 }
aluMwRadioTxMuted OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
none (1),
manual (2),
auto (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioTxMuted indicates the current state of the transmitter."
DEFVAL { none }
::= { aluMwRadioEntry 20 }
aluMwRadioReboot OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioReboot performs a reset of the radio device."
DEFVAL { notApplicable }
::= { aluMwRadioEntry 21 }
aluMwRadioLastStateChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aluMwRadioLastStateChange variable contains the
value of the sysUpTime the last time the operational status
of the radio link changed state."
::= { aluMwRadioEntry 22 }
aluMwRadioCommEstablished OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aluMwRadioCommEstablished variable contains the
value of the sysUpTime the last time the radio managment
communications was established."
::= { aluMwRadioEntry 23 }
aluMwRadioCommLost OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aluMwRadioCommLost variable contains the
value of the sysUpTime the last time the radio managment
communications was lost."
::= { aluMwRadioEntry 24 }
aluMwRadioSwState OBJECT-TYPE
SYNTAX AluMwRadioSwState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioSwState indicates the state of software on
the MPT."
::= { aluMwRadioEntry 25 }
aluMwRadioSwDnldProgress OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioSwDnldProgress indicates the progress percentage of an in-progress
software download to the MPT."
::= { aluMwRadioEntry 26 }
aluMwRadioRslHistoryUrl OBJECT-TYPE
SYNTAX TmnxDisplayStringURL
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioRslHistoryUrl specifies the URL of the radio's RSL history.
This file must be located on the local compact flash."
::= { aluMwRadioEntry 27 }
aluMwRadioRslHistoryClear OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"aluMwRadioRslHistoryClear performs a clear of the MPT RSL history."
DEFVAL { notApplicable }
::= { aluMwRadioEntry 28 }
aluMwRadioFfdSuppressFlags OBJECT-TYPE
SYNTAX BITS {
allfaults (0), -- All Mpt faults
highBer (1), -- High bit error rate
di (2), -- DI
rslThreshold (3) -- RSL Threshold
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object specifies the MPT radio fault conditions which can
be suppressed."
::= { aluMwRadioEntry 29 }
aluMwRadioPMG826Enable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables normalized G.826 performance monitoring statistics
to be collected."
DEFVAL { false }
::= { aluMwRadioEntry 30 }
aluMwRadioPMG826OperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of normalized G.826 performance monitoring
statistics."
DEFVAL { false }
::= { aluMwRadioEntry 31 }
aluMwRadioPMG826Clear OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Clears the recorded current and historical normalized G.826 statistics."
DEFVAL { notApplicable }
::= { aluMwRadioEntry 32 }
aluMwRadioPMACMEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables Adaptive Coding and Modulation performance monitoring
statistics to be collected."
DEFVAL { false }
::= { aluMwRadioEntry 33 }
aluMwRadioPMACMOperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of Adaptive Coding and Modulation performance
monitoring statistics."
DEFVAL { false }
::= { aluMwRadioEntry 34 }
aluMwRadioPMACMClear OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Clears the recorded current and historical Adaptive Coding and Modulation
statistics."
DEFVAL { notApplicable }
::= { aluMwRadioEntry 35 }
aluMwRadioPMPowerEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object enables RX and TX power performance monitoring statistics
to be collected."
DEFVAL { false }
::= { aluMwRadioEntry 36 }
aluMwRadioPMPowerOperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational status of RX and TX power performance monitoring
statistics."
DEFVAL { false }
::= { aluMwRadioEntry 37 }
aluMwRadioPMPowerClear OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Clears the recorded current and historical RX and TX power statistics."
DEFVAL { notApplicable }
::= { aluMwRadioEntry 38 }
--
-- Microwave Radio Power Measures Table
--
aluMwRadioPowerMeasuresTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioPowerMeasuresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table contains the radio analogue measurements. "
::= { aluMwObjs 3 }
aluMwRadioPowerMeasuresEntry OBJECT-TYPE
SYNTAX AluMwRadioPowerMeasuresEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of the analogue measurements table. Each entry corresponds to a Radio
Synchronous or Plesiochronous Physical Interface (RSPI or RPPI). "
INDEX { tmnxChassisIndex, aluMwRadioPortID }
::= { aluMwRadioPowerMeasuresTable 1 }
AluMwRadioPowerMeasuresEntry ::= SEQUENCE {
aluMwRadioLocalTxPower Integer32,
aluMwRadioLocalRxMainPower Integer32,
aluMwRadioRemoteTxPower Integer32,
aluMwRadioRemoteRxMainPower Integer32,
aluMwRadioLocalDiversityPower Integer32,
aluMwRadioRemoteDiversityPower Integer32
}
aluMwRadioLocalTxPower OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the local transmitted power level.
It is an integer with associated measure unit expressed in decade of dBm. "
::= { aluMwRadioPowerMeasuresEntry 1 }
aluMwRadioLocalRxMainPower OBJECT-TYPE
SYNTAX Integer32 (-1000..0)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This object represents the local received power level. In case of space diversity configuration
with combiner function in base band it is used to represent the power at the input of the local
main receiver.
It is a negative integer with associated measure unit expressed in decade of dBm. "
::= { aluMwRadioPowerMeasuresEntry 2 }
aluMwRadioRemoteTxPower OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the remote transmitted power level.
It is an integer with associated measure unit expressed in decade of dBm. "
::= { aluMwRadioPowerMeasuresEntry 3 }
aluMwRadioRemoteRxMainPower OBJECT-TYPE
SYNTAX Integer32 (-1000..0)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the remote received power level. In case of space diversity configuration
with combiner function in base band it is used to represent the power at the input of the remote
main receiver.
It is a negative integer with associated measure unit expressed in decade of dBm. "
::= { aluMwRadioPowerMeasuresEntry 4 }
aluMwRadioLocalDiversityPower OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the local RSL power for SD (combiner) module input.
It is an integer with associated measure unit expressed in decade of dBm."
::= { aluMwRadioPowerMeasuresEntry 5 }
aluMwRadioRemoteDiversityPower OBJECT-TYPE
SYNTAX Integer32 (-1000..0)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represents the remote RSL power for SD (combiner) module input.
It is a negative integer with associated measure unit expressed in decade of dBm."
::= { aluMwRadioPowerMeasuresEntry 6 }
--
-- Microwave Radio Alarms Table
--
aluMwRadioAlarmsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioAlarmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table contains the radio alarm conditions. "
::= { aluMwObjs 4 }
aluMwRadioAlarmsEntry OBJECT-TYPE
SYNTAX AluMwRadioAlarmsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of the alarms table. Each entry corresponds to a Radio
alarm conditions that is currently raised or cleared."
INDEX { tmnxChassisIndex, aluMwRadioPortID, aluMwRadioAlarmID }
::= { aluMwRadioAlarmsTable 1 }
AluMwRadioAlarmsEntry ::= SEQUENCE {
aluMwRadioAlarmID INTEGER,
aluMwRadioAlarmTime DateAndTime,
aluMwRadioAlarmName DisplayString,
aluMwRadioAlarmSeverity INTEGER,
aluMwRadioAlarmSpecProblem DisplayString,
aluMwRadioAlarmType INTEGER,
aluMwRadioAlarmObject DisplayString,
aluMwRadioAlarmSubObject DisplayString
}
aluMwRadioAlarmID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
identifier of an alarm condition on the radio device."
::= { aluMwRadioAlarmsEntry 1 }
aluMwRadioAlarmTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
time at which the event occured on the radio device."
::= { aluMwRadioAlarmsEntry 2 }
aluMwRadioAlarmName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the alarm name of the condition."
::= { aluMwRadioAlarmsEntry 3 }
aluMwRadioAlarmSeverity OBJECT-TYPE
SYNTAX INTEGER {
critical(1),
major(2),
minor(3),
warning(4),
indeterminate(5),
cleared(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
severity of an alarm condition on the radio device."
::= { aluMwRadioAlarmsEntry 4 }
aluMwRadioAlarmSpecProblem OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains the alarm specific problem description.
Indicates further refinements to the problem identified
by the alarm type. If more than one specific problem
is described in this object, the problem descriptions are
separated by <;> characters. The format of the DisplayString
is defined as follow:
String | OID | ({String;}((OID | Integer);)*)"
::= { aluMwRadioAlarmsEntry 5 }
aluMwRadioAlarmType OBJECT-TYPE
SYNTAX INTEGER {
communication (1),
qos (2),
processing (3),
equipment (4),
environment (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
type of alarm condition on the radio device."
::= { aluMwRadioAlarmsEntry 6 }
aluMwRadioAlarmObject OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
object on the radio device that has the alarm condition."
::= { aluMwRadioAlarmsEntry 7 }
aluMwRadioAlarmSubObject OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
sub-object on the radio device that has the alarm condition."
::= { aluMwRadioAlarmsEntry 8 }
--
-- MW Link Statistics Table
--
aluMwLinkStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwLinkStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The aluMwLinkStatisticsTable has an entry for each Packet Microwave Link in the system."
::= { aluMwObjs 5 }
aluMwLinkStatisticsEntry OBJECT-TYPE
SYNTAX AluMwLinkStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a Packet Microwave Link that is provisioned on the system."
INDEX { tmnxChassisIndex, aluMwLinkID }
::= { aluMwLinkStatisticsTable 1 }
AluMwLinkStatisticsEntry ::=
SEQUENCE {
aluMwLinkAggrFramesTx Counter64,
aluMwLinkAggrOctetsTx Counter64,
aluMwLinkAggrDiscardedTx Counter64,
aluMwLinkQueue1FramesTx Counter64,
aluMwLinkQueue1OctetsTx Counter64,
aluMwLinkQueue1DiscardedTx Counter64,
aluMwLinkQueue2FramesTx Counter64,
aluMwLinkQueue2OctetsTx Counter64,
aluMwLinkQueue2DiscardedTx Counter64,
aluMwLinkQueue3FramesTx Counter64,
aluMwLinkQueue3OctetsTx Counter64,
aluMwLinkQueue3DiscardedTx Counter64,
aluMwLinkQueue4FramesTx Counter64,
aluMwLinkQueue4OctetsTx Counter64,
aluMwLinkQueue4DiscardedTx Counter64,
aluMwLinkQueue5FramesTx Counter64,
aluMwLinkQueue5OctetsTx Counter64,
aluMwLinkQueue5DiscardedTx Counter64
}
aluMwLinkAggrFramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAggrFramesTx specifies the number of ethernet
frames to be transmitted over radio link."
::= { aluMwLinkStatisticsEntry 1 }
aluMwLinkAggrOctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAggrOctetsTx specifies the number of octets
to be transmitted over radio link."
::= { aluMwLinkStatisticsEntry 2 }
aluMwLinkAggrDiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkAggrDiscardedTx specifies the number of frames
discarded on the radio before transmission."
::= { aluMwLinkStatisticsEntry 3 }
aluMwLinkQueue1FramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue1FramesTx specifies the number of ethernet
frames to be transmitted from queue 1 over radio link."
::= { aluMwLinkStatisticsEntry 4 }
aluMwLinkQueue1OctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue1OctetsTx specifies the number of octets
to be transmitted from queue 1 over radio link."
::= { aluMwLinkStatisticsEntry 5 }
aluMwLinkQueue1DiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue1DiscardedTx specifies the number of frames
discarded on the radio from queue 1 before transmission."
::= { aluMwLinkStatisticsEntry 6 }
aluMwLinkQueue2FramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue2FramesTx specifies the number of ethernet
frames to be transmitted from queue 2 over radio link."
::= { aluMwLinkStatisticsEntry 7 }
aluMwLinkQueue2OctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue2OctetsTx specifies the number of octets
transmitted to be from queue 2 over radio link."
::= { aluMwLinkStatisticsEntry 8 }
aluMwLinkQueue2DiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue2DiscardedTx specifies the number of frames
discarded on the radio from queue 2 before transmission."
::= { aluMwLinkStatisticsEntry 9 }
aluMwLinkQueue3FramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue3FramesTx specifies the number of ethernet
frames to be transmitted from queue 3 over radio link."
::= { aluMwLinkStatisticsEntry 10 }
aluMwLinkQueue3OctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue3OctetsTx specifies the number of octets
to be transmitted from queue 3 over radio link."
::= { aluMwLinkStatisticsEntry 11 }
aluMwLinkQueue3DiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue3DiscardedTx specifies the number of frames
discarded on the radio from queue 3 before transmission."
::= { aluMwLinkStatisticsEntry 12 }
aluMwLinkQueue4FramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue4FramesTx specifies the number of ethernet
frames to be transmitted from queue 4 over radio link."
::= { aluMwLinkStatisticsEntry 13 }
aluMwLinkQueue4OctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue4OctetsTx specifies the number of octets
to be transmitted from queue 4 over radio link."
::= { aluMwLinkStatisticsEntry 14 }
aluMwLinkQueue4DiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue4DiscardedTx specifies the number of frames
discarded on the radio from queue 4 before transmission."
::= { aluMwLinkStatisticsEntry 15 }
aluMwLinkQueue5FramesTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue5FramesTx specifies the number of ethernet
frames to be transmitted from queue 5 over radio link."
::= { aluMwLinkStatisticsEntry 16 }
aluMwLinkQueue5OctetsTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue5OctetsTx specifies the number of octets
to be transmitted from queue 5 over radio link."
::= { aluMwLinkStatisticsEntry 17 }
aluMwLinkQueue5DiscardedTx OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkQueue5DiscardedTx specifies the number of frames
discarded on the radio from queue 5 before transmission."
::= { aluMwLinkStatisticsEntry 18 }
--
-- Microwave Radio Info Table
--
aluMwRadioInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The aluMwRadioInfoTable has an entry for each Microwave Radio in the system."
::= { aluMwObjs 6 }
aluMwRadioInfoEntry OBJECT-TYPE
SYNTAX AluMwRadioInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a Microwave Radio that is connected off a physical port
on the system. The aluMwRadioPortID contains this port encoded in it."
INDEX { tmnxChassisIndex, aluMwRadioPortID }
::= { aluMwRadioInfoTable 1 }
AluMwRadioInfoEntry ::=
SEQUENCE {
aluMwRadioInfoValid TruthValue,
aluMwRadioCompanyId SnmpAdminString,
aluMwRadioMnemonic SnmpAdminString,
aluMwRadioCLEI SnmpAdminString,
aluMwRadioHwPartNumber SnmpAdminString,
aluMwRadioSwPartNumber SnmpAdminString,
aluMwRadioFactoryId SnmpAdminString,
aluMwRadioSerialNumber SnmpAdminString,
aluMwRadioMfgDateId SnmpAdminString,
aluMwRadioMfgDate SnmpAdminString,
aluMwRadioCustomerField SnmpAdminString,
aluMwRadioTemperature INTEGER
}
aluMwRadioInfoValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioInfoValid indicates whether the info of the MPT is valid."
::= { aluMwRadioInfoEntry 1 }
aluMwRadioCompanyId OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory company identifier for the microwave radio."
::= { aluMwRadioInfoEntry 2 }
aluMwRadioMnemonic OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mnemonic inventory value for the microwave radio."
::= { aluMwRadioInfoEntry 3 }
aluMwRadioCLEI OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..10))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory CLEI value for the microwave radio."
::= { aluMwRadioInfoEntry 4 }
aluMwRadioHwPartNumber OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory Hardware Part + ICS value for the microwave radio."
::= { aluMwRadioInfoEntry 5 }
aluMwRadioSwPartNumber OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory Software Part number for the microwave radio."
::= { aluMwRadioInfoEntry 6 }
aluMwRadioFactoryId OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory factory identifier for the microwave radio."
::= { aluMwRadioInfoEntry 7 }
aluMwRadioSerialNumber OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique inventory serial number for the microwave radio."
::= { aluMwRadioInfoEntry 8 }
aluMwRadioMfgDateId OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory manufacturing date identifier for the microwave radio."
::= { aluMwRadioInfoEntry 9 }
aluMwRadioMfgDate OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory manufacturing date for the microwave radio."
::= { aluMwRadioInfoEntry 10 }
aluMwRadioCustomerField OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(0..46))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inventory customer field for the microwave radio."
::= { aluMwRadioInfoEntry 11 }
aluMwRadioTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwRadioTemperature indicates the temperature of the MPT."
::= { aluMwRadioInfoEntry 12 }
--
-- Microwave (System) Table
--
aluMwTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The aluMwTable has system information for microwave."
::= { aluMwObjs 7 }
aluMwEntry OBJECT-TYPE
SYNTAX AluMwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry represents a Microwave System."
INDEX { tmnxChassisIndex }
::= { aluMwTable 1 }
AluMwEntry ::=
SEQUENCE {
aluMwSwPackageValid TruthValue,
aluMwSwDownloadTool INTEGER,
aluMwSwDownloadState INTEGER
}
aluMwSwPackageValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwSwPackageValid indicates whether SAR has detected a valid
Software package for managed radios."
::= { aluMwEntry 1 }
aluMwSwDownloadTool OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
startDownload (1),
startForcedDownload (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"aluMwSwDownloadTool is used to initiate a software download
of radio software to all managed radios."
::= { aluMwEntry 2 }
aluMwSwDownloadState OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
noSoftwarePackage (1),
ready (2),
downloadInProgress (3),
downloadFailed (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwSwDownloadState is used to indicate the state of the
of radio software to all managed radios.
noSoftwarePackage - No Valid Software Package Found
ready - Software is Ready
downloadInProgress - Software Tool Download
downloadFailed - Software Tool Failed"
::= { aluMwEntry 3 }
--
-- Microwave Link TDA Status
--
aluMwLinkTdaStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwLinkTdaStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This table contains the MW link Transmit Diversity Antenna status. "
::= { aluMwObjs 8 }
aluMwLinkTdaStatusEntry OBJECT-TYPE
SYNTAX AluMwLinkTdaStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of the Transmit Diversity Antenna status table."
INDEX { tmnxChassisIndex, aluMwLinkID }
::= { aluMwLinkTdaStatusTable 1 }
AluMwLinkTdaStatusEntry ::= SEQUENCE {
aluMwLinkTdaCmdState INTEGER,
aluMwLinkTdaManualCmdStatus INTEGER,
aluMwLinkTdaSwitchPosition INTEGER
}
aluMwLinkTdaCmdState OBJECT-TYPE
SYNTAX INTEGER {
disabled (0),
enabled (1),
error (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkTdaCmdState is used to get the TDA command state."
::= { aluMwLinkTdaStatusEntry 1 }
aluMwLinkTdaManualCmdStatus OBJECT-TYPE
SYNTAX INTEGER {
notForced (0),
main (1),
diversity (2),
error (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkTdaManualCmdStatus is used to get the TDA manual command status."
::= { aluMwLinkTdaStatusEntry 2 }
aluMwLinkTdaSwitchPosition OBJECT-TYPE
SYNTAX INTEGER {
main (0),
diversity (1),
error (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"aluMwLinkTdaSwitchPosition is used to get the TDA switch position."
::= { aluMwLinkTdaStatusEntry 3 }
aluMwRadioPMG826Table OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioPMG826Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the current and historic normalized G.826
performance monitoring statistics for the given radio."
::= { aluMwObjs 9 }
aluMwRadioPMG826Entry OBJECT-TYPE
SYNTAX AluMwRadioPMG826Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the microwave radio G.826 performance monitoring table."
INDEX { tmnxChassisIndex, aluMwRadioPortID, aluMwPMG826Section,
aluMwPMG826Period, aluMwPMG826Bin }
::= { aluMwRadioPMG826Table 1 }
AluMwRadioPMG826Entry ::= SEQUENCE {
aluMwPMG826Section AluMwPerfMonSection,
aluMwPMG826Period AluMwPerfMonPeriod,
aluMwPMG826Bin AluMwPerfMonBin,
aluMwPMG826Date INTEGER,
aluMwPMG826Duration INTEGER,
aluMwPMG826EPSState AluMwPerfMonEPSState,
aluMwPMG826Suspect TruthValue,
aluMwPMG826ES Unsigned32,
aluMwPMG826SES Unsigned32,
aluMwPMG826BBE Unsigned32,
aluMwPMG826UAS Unsigned32
}
aluMwPMG826Section OBJECT-TYPE
SYNTAX AluMwPerfMonSection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the radio link or radio hop."
::= { aluMwRadioPMG826Entry 1 }
aluMwPMG826Period OBJECT-TYPE
SYNTAX AluMwPerfMonPeriod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the 15 minute or 24 hour counters."
::= { aluMwRadioPMG826Entry 2 }
aluMwPMG826Bin OBJECT-TYPE
SYNTAX AluMwPerfMonBin
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the current (0) or historic counters."
::= { aluMwRadioPMG826Entry 3 }
aluMwPMG826Date OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since midnight, January 1st 1970
to the start of this counting period (even 15 minutes or
beginning of day, depending on selected period)."
::= { aluMwRadioPMG826Entry 4 }
aluMwPMG826Duration OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds recorded in this period."
::= { aluMwRadioPMG826Entry 5 }
aluMwPMG826EPSState OBJECT-TYPE
SYNTAX AluMwPerfMonEPSState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The EPS state at the time of recording this period."
::= { aluMwRadioPMG826Entry 6 }
aluMwPMG826Suspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the stats are incomplete for this period, they
will be considered suspect."
::= { aluMwRadioPMG826Entry 7 }
aluMwPMG826ES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of errored seconds."
::= { aluMwRadioPMG826Entry 8 }
aluMwPMG826SES OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number severely errored seconds."
::= { aluMwRadioPMG826Entry 9 }
aluMwPMG826BBE OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of background block errors."
::= { aluMwRadioPMG826Entry 10 }
aluMwPMG826UAS OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of unavailable seconds."
::= { aluMwRadioPMG826Entry 11 }
aluMwRadioPMACMTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioPMACMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the current and historic adaptive coding
and modulation performance monitoring statistics for the given
radio."
::= { aluMwObjs 10 }
aluMwRadioPMACMEntry OBJECT-TYPE
SYNTAX AluMwRadioPMACMEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the microwave ACM performance monitoring table."
INDEX { tmnxChassisIndex, aluMwRadioPortID, aluMwPMACMPeriod,
aluMwPMACMBin, aluMwPMACMModulation }
::= { aluMwRadioPMACMTable 1 }
AluMwRadioPMACMEntry ::= SEQUENCE {
aluMwPMACMPeriod AluMwPerfMonPeriod,
aluMwPMACMBin AluMwPerfMonBin,
aluMwPMACMModulation INTEGER,
aluMwPMACMDate INTEGER,
aluMwPMACMDuration INTEGER,
aluMwPMACMSuspect TruthValue,
aluMwPMACMTimeSpent Unsigned32
}
aluMwPMACMPeriod OBJECT-TYPE
SYNTAX AluMwPerfMonPeriod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the 15 minute or 24 hour counters."
::= { aluMwRadioPMACMEntry 1 }
aluMwPMACMBin OBJECT-TYPE
SYNTAX AluMwPerfMonBin
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the current (0) or historic counters."
::= { aluMwRadioPMACMEntry 2 }
aluMwPMACMModulation OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the modulation ID."
::= { aluMwRadioPMACMEntry 3}
aluMwPMACMDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since midnight, January 1st 1970
to the start of this counting period (even 15 minutes or
beginning of day, depending on selected period)."
::= { aluMwRadioPMACMEntry 4 }
aluMwPMACMDuration OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds recorded in this period."
::= { aluMwRadioPMACMEntry 5 }
aluMwPMACMSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the stats are incomplete for this period, they
will be considered suspect."
::= { aluMwRadioPMACMEntry 6 }
aluMwPMACMTimeSpent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of milliseconds spent at this modulation."
::= { aluMwRadioPMACMEntry 7 }
aluMwRadioPMPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AluMwRadioPMPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the current and historic RX and TX power
performance monitoring statistics for the given radio."
::= { aluMwObjs 11 }
aluMwRadioPMPowerEntry OBJECT-TYPE
SYNTAX AluMwRadioPMPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the microwave Power performance monitoring table."
INDEX { tmnxChassisIndex, aluMwRadioPortID, aluMwPMPowerDirection,
aluMwPMPowerSection, aluMwPMPowerPeriod, aluMwPMPowerBin }
::= { aluMwRadioPMPowerTable 1 }
AluMwRadioPMPowerEntry ::= SEQUENCE {
aluMwPMPowerDirection INTEGER,
aluMwPMPowerSection AluMwPerfMonSection,
aluMwPMPowerPeriod AluMwPerfMonPeriod,
aluMwPMPowerBin AluMwPerfMonBin,
aluMwPMPowerDate INTEGER,
aluMwPMPowerDuration INTEGER,
aluMwPMPowerEPSState AluMwPerfMonEPSState,
aluMwPMPowerSuspect TruthValue,
aluMwPMPowerMinPowerLevel Integer32,
aluMwPMPowerMaxPowerLevel Integer32,
aluMwPMPowerMeanPowerLevel Integer32
}
aluMwPMPowerDirection OBJECT-TYPE
SYNTAX INTEGER {
rx (0),
tx (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the received or transmitted power levels."
::= { aluMwRadioPMPowerEntry 1 }
aluMwPMPowerSection OBJECT-TYPE
SYNTAX AluMwPerfMonSection
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the radio link or radio hop. Radio link
is not applicable when the direction is tx."
::= { aluMwRadioPMPowerEntry 2 }
aluMwPMPowerPeriod OBJECT-TYPE
SYNTAX AluMwPerfMonPeriod
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the 15 minute or 24 hour counters."
::= { aluMwRadioPMPowerEntry 3 }
aluMwPMPowerBin OBJECT-TYPE
SYNTAX AluMwPerfMonBin
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index to select the current (0) or historic counters."
::= { aluMwRadioPMPowerEntry 4 }
aluMwPMPowerDate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds since midnight, January 1st 1970
to the start of this counting period (even 15 minutes or
beginning of day, depending on selected period)."
::= { aluMwRadioPMPowerEntry 5 }
aluMwPMPowerDuration OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of seconds recorded in this period."
::= { aluMwRadioPMPowerEntry 6 }
aluMwPMPowerEPSState OBJECT-TYPE
SYNTAX AluMwPerfMonEPSState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The EPS state at the time of recording this period. If
the direction is tx, EPS state is always notRelevant."
::= { aluMwRadioPMPowerEntry 7 }
aluMwPMPowerSuspect OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the stats are incomplete for this period, they
will be considered suspect."
::= { aluMwRadioPMPowerEntry 8 }
aluMwPMPowerMinPowerLevel OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum power level."
::= { aluMwRadioPMPowerEntry 9 }
aluMwPMPowerMaxPowerLevel OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum power level."
::= { aluMwRadioPMPowerEntry 10 }
aluMwPMPowerMeanPowerLevel OBJECT-TYPE
SYNTAX Integer32 (-1000..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average power level."
::= { aluMwRadioPMPowerEntry 11 }
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- Notification Definition section
--
-- Notification Objects
--
aluMwNotifyRadioPortID OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
port id where a radio is connected."
::= { aluMwNotifyObjs 1 }
aluMwNotifyAlarmTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
time at which the event occured on the radio device."
::= { aluMwNotifyObjs 2 }
aluMwNotifyAlarmId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
identifier of an alarm condition on the radio device."
::= { aluMwNotifyObjs 3 }
aluMwNotifyAlarmName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object contains the alarm name of the condition."
::= { aluMwNotifyObjs 4 }
aluMwNotifyAlarmSpecProblem OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object contains the alarm specific problem description.
Indicates further refinements to the problem identified
by the alarm type. If more than one specific problem
is described in this object, the problem descriptions are
separated by <;> characters. The format of the DisplayString
is defined as follow:
String | OID | ({String;}((OID | Integer);)*)"
::= { aluMwNotifyObjs 5 }
aluMwNotifyAlarmType OBJECT-TYPE
SYNTAX INTEGER {
communication (1),
qos (2),
processing (3),
equipment (4),
environment (5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
type of alarm condition on the radio device."
::= { aluMwNotifyObjs 6 }
aluMwNotifyAlarmObject OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
object on the radio device that has the alarm condition."
::= { aluMwNotifyObjs 7 }
aluMwNotifyAlarmSubObject OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
sub-object on the radio device that has the alarm condition."
::= { aluMwNotifyObjs 8 }
aluMwNotifyTxMute OBJECT-TYPE
SYNTAX INTEGER {
noMute (1),
mute (2)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
type of mute on the radio transmitter."
::= { aluMwNotifyObjs 9 }
aluMwNotifyLinkPortID OBJECT-TYPE
SYNTAX TmnxPortID
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
port id where a microwave link."
::= { aluMwNotifyObjs 10 }
aluMwNotifyLinkActivity OBJECT-TYPE
SYNTAX INTEGER {
main (1),
spare (2),
both (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
the activity of the link of a protection scheme."
::= { aluMwNotifyObjs 11 }
aluMwNotifyLinkProtectionType OBJECT-TYPE
SYNTAX INTEGER {
eps (1),
tps (2),
rps (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
the type of protection."
::= { aluMwNotifyObjs 12 }
aluMwNotifyRadioSwState OBJECT-TYPE
SYNTAX AluMwRadioSwState
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Used by Microwave notifications, the OID indicates the
the state of radio software."
::= { aluMwNotifyObjs 13 }
aluMwRadioLinkUp NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave radio link goes up."
::= { aluMwNotification 1 }
aluMwRadioLinkDown NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave radio link goes down."
::= { aluMwNotification 2 }
aluMwRadioPresent NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave radio device is detected."
::= { aluMwNotification 3 }
aluMwRadioNotPresent NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave radio device is no longer detected."
::= { aluMwNotification 4 }
aluMwRadioSwPackageMissing NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Generated when a valid microwave radio software package is not present at startup."
::= { aluMwNotification 5 }
aluMwRadioDatabaseUpdated NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave radio database has been updated."
::= { aluMwNotification 6 }
aluMwRadioCriticalAlarmRaise NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports the critical radio defect raise."
::= { aluMwNotification 7 }
aluMwRadioCriticalAlarmClear NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports critical defect radio clear."
::= { aluMwNotification 8 }
aluMwRadioMajorAlarmRaise NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports the major radio defect raise."
::= { aluMwNotification 9 }
aluMwRadioMajorAlarmClear NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports major defect radio clear."
::= { aluMwNotification 10 }
aluMwRadioMinorAlarmRaise NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports the minor radio defect raise."
::= { aluMwNotification 11 }
aluMwRadioMinorAlarmClear NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports minor defect radio clear."
::= { aluMwNotification 12 }
aluMwRadioWarningAlarmRaise NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports the warning radio defect raise."
::= { aluMwNotification 13 }
aluMwRadioWarningAlarmClear NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports warning defect radio clear."
::= { aluMwNotification 14 }
aluMwRadioIndetermAlarmRaise NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports the indeterminate radio
defect raise."
::= { aluMwNotification 15 }
aluMwRadioIndetermAlarmClear NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject
}
STATUS current
DESCRIPTION
"This notification reports indeterminate defect radio
clear."
::= { aluMwNotification 16 }
aluMwRadioTxChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyTxMute
}
STATUS current
DESCRIPTION
"Generated when a microwave radio transmitter changes state."
::= { aluMwNotification 17 }
aluMwLinkEPSActivityChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyLinkPortID,
aluMwNotifyLinkActivity
}
STATUS current
DESCRIPTION
"Generated when a microwave link changes activity for EPS."
::= { aluMwNotification 18 }
aluMwLinkTPSActivityChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyLinkPortID,
aluMwNotifyLinkActivity
}
STATUS current
DESCRIPTION
"Generated when a microwave link changes activity for TPS."
::= { aluMwNotification 19 }
aluMwLinkRPSActivityChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyLinkPortID,
aluMwNotifyLinkActivity
}
STATUS current
DESCRIPTION
"Generated when a microwave link changes activity for RPS."
::= { aluMwNotification 20 }
aluMwLinkMaintenanceChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyLinkPortID,
aluMwNotifyLinkProtectionType
}
STATUS current
DESCRIPTION
"Generated when a microwave link maintenance command changes."
::= { aluMwNotification 21 }
aluMwLinkPeerChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyLinkPortID
}
STATUS current
DESCRIPTION
"Generated when a microwave link discovered peer changes."
::= { aluMwNotification 22 }
aluMwRadioSwStateChange NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID,
aluMwNotifyRadioSwState
}
STATUS current
DESCRIPTION
"Generated when on microwave radio software state changes."
::= { aluMwNotification 23 }
aluMwRadioRslHistoryUploadFail NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio RSL History upload fails."
::= { aluMwNotification 24 }
aluMwMptSwReconcileFail NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Generated when microwave MPT sw reconcile fails."
::= { aluMwNotification 25 }
aluMwRadioRslHistoryCleared NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Generated when microwave radio RSL History is cleared."
::= { aluMwNotification 26 }
aluMwRadioPMG826OperUp NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio G826 PM becomes operationally up."
::= { aluMwNotification 27 }
aluMwRadioPMG826OperDown NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio G826 PM becomes operationally down."
::= { aluMwNotification 28 }
aluMwRadioPMACMOperUp NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio ACM PM becomes operationally up."
::= { aluMwNotification 29 }
aluMwRadioPMACMOperDown NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio ACM PM becomes operationally down."
::= { aluMwNotification 30 }
aluMwRadioPMPowerOperUp NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio power PM becomes operationally up."
::= { aluMwNotification 31 }
aluMwRadioPMPowerOperDown NOTIFICATION-TYPE
OBJECTS {
aluMwNotifyRadioPortID
}
STATUS current
DESCRIPTION
"Generated when microwave radio power PM becomes operationally down."
::= { aluMwNotification 32 }
--%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
--
-- The compliance specifications.
--
aluMwCompliances OBJECT IDENTIFIER ::= { aluMwConformance 1 }
aluMwGroups OBJECT IDENTIFIER ::= { aluMwConformance 2 }
aluMwComp7705 OBJECT IDENTIFIER ::= { aluMwCompliances 1 }
-- aluMwComp7705V1v0 OBJECT IDENTIFIER ::= { aluMwComp7705 1}
aluMwComp7705V1v0 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for revision 1.0 of ALU-MICROWAVE-MIB."
MODULE -- this module
MANDATORY-GROUPS {
aluMwGroup,
aluMwNotificationGroup,
aluMwPeerDiscoveryGroup,
aluMwAlarmGroup
}
::= { aluMwComp7705 1 }
-- units of conformance
aluMwGroup OBJECT-GROUP
OBJECTS { aluMwRadioRowStatus,
aluMwRadioMode,
aluMwRadioMwLinkID,
aluMwRadioOperStatus,
aluMwRadioOperFlags,
aluMwLinkRowStatus,
aluMwLinkOperFlags,
aluMwLinkRadioScheme,
aluMwLinkEPSActivity,
aluMwLinkRPSActivity,
aluMwLinkTPSActivity,
aluMwLinkEPSRevertiveness,
aluMwLinkTPSRevertiveness,
aluMwLinkRPSRevertiveness,
aluMwLinkEPSMainMaintOp,
aluMwLinkEPSSpareMaintOp,
aluMwLinkTPSMainMaintOp,
aluMwLinkTPSSpareMaintOp,
aluMwLinkRPSMainMaintOp,
aluMwLinkRPSSpareMaintOp,
aluMwLinkPeerID,
aluMwLinkPeerNEIpAddress,
aluMwLinkClearStatistics,
aluMwRadioStandalone,
aluMwRadioName,
aluMwRadioDatabaseFilename,
aluMwRadioType,
aluMwRadioFrequency,
aluMwRadioCompanyId,
aluMwRadioMnemonic,
aluMwRadioCLEI,
aluMwRadioHwPartNumber,
aluMwRadioSwPartNumber,
aluMwRadioFactoryId,
aluMwRadioSerialNumber,
aluMwRadioMfgDateId,
aluMwRadioMfgDate,
aluMwRadioCustomerField,
aluMwRadioAlarmState,
aluMwRadioAlarmsCritical,
aluMwRadioAlarmsMajor,
aluMwRadioAlarmsMinor,
aluMwRadioAlarmsWarning,
aluMwRadioAlarmsInd,
aluMwRadioAlarmsCommunication,
aluMwRadioAlarmsEquipment,
aluMwRadioTxMuted,
aluMwRadioReboot,
aluMwRadioLastStateChange,
aluMwRadioInfoValid,
aluMwRadioTemperature,
aluMwRadioCommEstablished,
aluMwRadioLocalTxPower,
aluMwRadioLocalRxMainPower,
aluMwRadioRemoteTxPower,
aluMwRadioRemoteRxMainPower,
aluMwLinkAggrFramesTx,
aluMwLinkAggrOctetsTx,
aluMwLinkAggrDiscardedTx,
aluMwLinkQueue1FramesTx,
aluMwLinkQueue1OctetsTx,
aluMwLinkQueue1DiscardedTx,
aluMwLinkQueue2FramesTx,
aluMwLinkQueue2OctetsTx,
aluMwLinkQueue2DiscardedTx,
aluMwLinkQueue3FramesTx,
aluMwLinkQueue3OctetsTx,
aluMwLinkQueue3DiscardedTx,
aluMwLinkQueue4FramesTx,
aluMwLinkQueue4OctetsTx,
aluMwLinkQueue4DiscardedTx,
aluMwLinkQueue5FramesTx,
aluMwLinkQueue5OctetsTx,
aluMwLinkQueue5DiscardedTx,
aluMwSwPackageValid,
aluMwSwDownloadTool,
aluMwRadioSwState,
aluMwRadioSwDnldProgress,
aluMwSwDownloadState,
aluMwRadioRslHistoryUrl,
aluMwRadioRslHistoryClear,
aluMwLinkTdaCmdState,
aluMwLinkTdaManualCmdStatus,
aluMwLinkTdaSwitchPosition,
aluMwRadioLocalDiversityPower,
aluMwRadioRemoteDiversityPower,
aluMwRadioFfdSuppressFlags,
aluMwRadioPMG826Enable,
aluMwRadioPMG826OperStatus,
aluMwRadioPMG826Clear,
aluMwRadioPMACMEnable,
aluMwRadioPMACMOperStatus,
aluMwRadioPMACMClear,
aluMwRadioPMPowerEnable,
aluMwRadioPMPowerOperStatus,
aluMwRadioPMPowerClear,
aluMwPMG826Section,
aluMwPMG826Period,
aluMwPMG826Bin,
aluMwPMG826Date,
aluMwPMG826Duration,
aluMwPMG826EPSState,
aluMwPMG826Suspect,
aluMwPMG826ES,
aluMwPMG826SES,
aluMwPMG826BBE,
aluMwPMG826UAS,
aluMwPMACMPeriod,
aluMwPMACMBin,
aluMwPMACMModulation,
aluMwPMACMDate,
aluMwPMACMDuration,
aluMwPMACMSuspect,
aluMwPMACMTimeSpent,
aluMwPMPowerDirection,
aluMwPMPowerSection,
aluMwPMPowerPeriod,
aluMwPMPowerBin,
aluMwPMPowerDate,
aluMwPMPowerDuration,
aluMwPMPowerEPSState,
aluMwPMPowerSuspect,
aluMwPMPowerMinPowerLevel,
aluMwPMPowerMaxPowerLevel,
aluMwPMPowerMeanPowerLevel
}
STATUS current
DESCRIPTION
"The group of objects supporting management of the microwave
aware ports for the remote management of Microwave Awareness
on Nokia SAR series systems."
::= { aluMwGroups 1 }
aluMwNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { aluMwRadioLinkUp,
aluMwRadioLinkDown,
aluMwRadioPresent,
aluMwRadioNotPresent,
aluMwRadioSwPackageMissing,
aluMwRadioDatabaseUpdated,
aluMwRadioCriticalAlarmRaise,
aluMwRadioCriticalAlarmClear,
aluMwRadioMajorAlarmRaise,
aluMwRadioMajorAlarmClear,
aluMwRadioMinorAlarmRaise,
aluMwRadioMinorAlarmClear,
aluMwRadioWarningAlarmRaise,
aluMwRadioWarningAlarmClear,
aluMwRadioIndetermAlarmRaise,
aluMwRadioIndetermAlarmClear,
aluMwRadioTxChange,
aluMwLinkEPSActivityChange,
aluMwLinkTPSActivityChange,
aluMwLinkRPSActivityChange,
aluMwLinkMaintenanceChange,
aluMwLinkPeerChange,
aluMwRadioSwStateChange,
aluMwRadioRslHistoryUploadFail,
aluMwMptSwReconcileFail,
aluMwRadioRslHistoryCleared,
aluMwRadioPMG826OperUp,
aluMwRadioPMG826OperDown,
aluMwRadioPMACMOperUp,
aluMwRadioPMACMOperDown,
aluMwRadioPMPowerOperUp,
aluMwRadioPMPowerOperDown
}
STATUS current
DESCRIPTION
"The group of notifications supporting the management of
microwave awareness on Nokia SAR series systems."
::= { aluMwGroups 2 }
aluMwNotificationObjsGroup OBJECT-GROUP
OBJECTS { aluMwNotifyRadioPortID,
aluMwNotifyAlarmId,
aluMwNotifyAlarmTime,
aluMwNotifyAlarmName,
aluMwNotifyAlarmSpecProblem,
aluMwNotifyAlarmType,
aluMwNotifyAlarmObject,
aluMwNotifyAlarmSubObject,
aluMwNotifyTxMute,
aluMwNotifyLinkPortID,
aluMwNotifyLinkActivity,
aluMwNotifyLinkProtectionType,
aluMwNotifyRadioSwState
}
STATUS current
DESCRIPTION
"The group of notifications objs supporting the management of
microwave awareness on Nokia SAR series systems."
::= { aluMwGroups 3 }
aluMwPeerDiscoveryGroup OBJECT-GROUP
OBJECTS { aluMwLinkPeerDiscovery
}
STATUS current
DESCRIPTION
"The group of objects supporting management of the peer discovery
management of Microwave Awareness on Nokia SAR series systems."
::= { aluMwGroups 4 }
aluMwAlarmGroup OBJECT-GROUP
OBJECTS {
aluMwLinkAlarmState,
aluMwLinkAlarmsCommunication,
aluMwLinkAlarmsCritical,
aluMwLinkAlarmsEquipment,
aluMwLinkAlarmsInd,
aluMwLinkAlarmsMajor,
aluMwLinkAlarmsMinor,
aluMwLinkAlarmsWarning,
aluMwRadioAlarmName,
aluMwRadioAlarmObject,
aluMwRadioAlarmSeverity,
aluMwRadioAlarmSpecProblem,
aluMwRadioAlarmSubObject,
aluMwRadioAlarmTime,
aluMwRadioAlarmType,
aluMwRadioCommLost
}
STATUS current
DESCRIPTION
"The group of objects supporting management of the alarm
management of Microwave Awareness on Nokia SAR series systems."
::= { aluMwGroups 5 }
END
|