1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
|
TIMETRA-LOG-MIB DEFINITIONS ::= BEGIN
IMPORTS
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB
SnmpAdminString,
SnmpMessageProcessingModel,
SnmpSecurityLevel
FROM SNMP-FRAMEWORK-MIB
snmpNotifyEntry
FROM SNMP-NOTIFICATION-MIB
MODULE-COMPLIANCE, NOTIFICATION-GROUP,
OBJECT-GROUP
FROM SNMPv2-CONF
sysDescr, sysObjectID
FROM SNMPv2-MIB
Counter32, Counter64, Integer32,
IpAddress, MODULE-IDENTITY,
NOTIFICATION-TYPE, OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI
DateAndTime, DisplayString, RowStatus,
StorageType, TEXTUAL-CONVENTION,
TimeStamp, TruthValue
FROM SNMPv2-TC
TFilterAction, TFilterActionOrDefault
FROM TIMETRA-FILTER-MIB
timetraSRMIBModules, tmnxSRConfs,
tmnxSRNotifyPrefix, tmnxSRObjs
FROM TIMETRA-GLOBAL-MIB
THsmdaCounterIdOrZero,
THsmdaCounterIdOrZeroOrAll,
TItemDescription, TLNamedItemOrEmpty,
TNamedItem, TNamedItemOrEmpty, TQueueId,
TQueueIdOrAll, TmnxAccPlcyAACounters,
TmnxAccPlcyAASubAttributes,
TmnxAccPlcyOECounters,
TmnxAccPlcyOICounters,
TmnxAccPlcyPolicerECounters,
TmnxAccPlcyPolicerICounters,
TmnxAccPlcyQECounters,
TmnxAccPlcyQICounters, TmnxActionType,
TmnxAdminState, TmnxOperState,
TmnxSyslogFacility, TmnxSyslogSeverity,
TmnxUdpPort
FROM TIMETRA-TC-MIB
;
timetraLogMIBModule MODULE-IDENTITY
LAST-UPDATED "202007140000Z"
ORGANIZATION "Nokia"
CONTACT-INFO
"Nokia SROS Support
Web: http://www.nokia.com"
DESCRIPTION
"This document is the SNMP MIB module to manage and provision the Nokia
SROS Logging utility.
Copyright 2003-2020 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 "202007140000Z"
DESCRIPTION
"Rev 20 14 Jul 2020 00:00
Release 20 of the TIMETRA-LOG-MIB."
REVISION "201904010000Z"
DESCRIPTION
"Rev 19 1 April 2019 00:00
Release 19 of the TIMETRA-LOG-MIB."
REVISION "201706300000Z"
DESCRIPTION
"Rev 15.1 30 Jun 2017 00:00
15.1 release of the TIMETRA-LOG-MIB."
REVISION "201703010000Z"
DESCRIPTION
"Rev 15.0 01 Mar 2017 00:00
15.0 release of the TIMETRA-LOG-MIB."
REVISION "201601010000Z"
DESCRIPTION
"Rev 14.0 01 Jan 2016 00:00
14.0 release of the TIMETRA-LOG-MIB."
REVISION "201501010000Z"
DESCRIPTION
"Rev 13.0 01 Jan 2015 00:00
13.0 release of the TIMETRA-LOG-MIB."
REVISION "201401010000Z"
DESCRIPTION
"Rev 12.0 01 Jan 2014 00:00
12.0 release of the TIMETRA-LOG-MIB."
REVISION "201102010000Z"
DESCRIPTION
"Rev 9.0 01 Feb 2011 00:00
9.0 release of the TIMETRA-LOG-MIB."
REVISION "200902280000Z"
DESCRIPTION
"Rev 7.0 28 Feb 2009 00:00
7.0 release of the TIMETRA-LOG-MIB."
REVISION "200801010000Z"
DESCRIPTION
"Rev 6.0 01 Jan 2008 00:00
6.0 release of the TIMETRA-LOG-MIB."
REVISION "200701010000Z"
DESCRIPTION
"Rev 5.0 01 Jan 2007 00:00
5.0 release of the TIMETRA-LOG-MIB."
REVISION "200603150000Z"
DESCRIPTION
"Rev 4.0 15 Mar 2006 00:00
4.0 release of the TIMETRA-LOG-MIB."
REVISION "200501240000Z"
DESCRIPTION
"Rev 2.1 24 Jan 2005 00:00
2.1 release of the TIMETRA-LOG-MIB."
REVISION "200405270000Z"
DESCRIPTION
"Rev 2.1 27 May 2004 00:00
2.1 release of the TIMETRA-LOG-MIB."
REVISION "200401150000Z"
DESCRIPTION
"Rev 2.0 15 Jan 2004 00:00
2.0 release of the TIMETRA-LOG-MIB."
REVISION "200308150000Z"
DESCRIPTION
"Rev 1.2 15 Aug 2003 00:00
1.2 release of the TIMETRA-LOG-MIB."
REVISION "200301200000Z"
DESCRIPTION
"Rev 1.0 20 Jan 2003 00:00
1.0 Release of the TIMETRA-LOG-MIB."
REVISION "200111100000Z"
DESCRIPTION
"Rev 0.1 10 Nov 2001 00:00
Initial version of the TIMETRA-LOG-MIB."
::= { timetraSRMIBModules 12 }
TmnxPerceivedSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"ITU perceived severity values as per M.3100 and X.733"
SYNTAX INTEGER {
none (0),
cleared (1),
indeterminate (2),
critical (3),
major (4),
minor (5),
warning (6)
}
TmnxSyslogId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxSyslogId uniquely identifies an entry in the
tmnxSyslogTargetTable to be used for the syslog collector target
information when creating a log file where tmnxLogIdDestination has a
value of 'syslog (2)'."
SYNTAX Integer32 (1..40)
TmnxSyslogIdOrEmpty ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxSyslogIdOrEmpty uniquely identifies an entry in the
tmnxSyslogTargetTable to be used for the syslog collector target
information when creating a log file where tmnxLogIdDestination
has a value of 'syslog (2)'. The value of 0 is used when no
entry exists in the tmnxSyslogTargetTable."
SYNTAX Integer32 (0 | 1..40)
TmnxLogFileId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxLogFileId uniquely identifies a file-id to be
used when creating a log or accounting file. A value of zero (0)
indicates none specified and is invalid when used as an index
for the tmnxLogFileIdTable."
SYNTAX Integer32 (0..99)
TmnxLogFileType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxLogFileType indicates the type of information that
will be written to this file."
SYNTAX INTEGER {
none (0),
eventLog (1),
accountingPolicy (2)
}
TmnxLogIdIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of tmnxLogIdIndex uniquely identifies an event stream log.
Note that 3 default TmnxLogIdEntry rows are created by the agent using
TmnxLogIdIndex values 99, 100 and 101."
SYNTAX Integer32 (1..101)
TmnxStgIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxStgIndex uniquely identifies an event stream log. It
is the same as an TmnxLogIdIndex but with a limited range."
SYNTAX Integer32 (1..100)
TmnxCFlash ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxCFlash uniquely identifies a compact flash
module on the active CPM card. A value of zero (0) indicates
none specified."
SYNTAX Unsigned32
TmnxLogFilterId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxLogFilterId is the identification number of an
event log filter. The value of zero indicates none specified.
The value of zero (0) is invalid when used as an index for the
tmnxLogFilterTable. Filter entry 1001 is created by the agent."
SYNTAX Unsigned32 (0..1500)
TmnxLogFilterEntryId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxLogFilterEntryId is the identification number of an
event log filter entry."
SYNTAX Unsigned32 (1..999)
TmnxLogFilterOperator ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"When TmnxLogFilterOperator has a value of 'off', the item is not
matched. Otherwise the value of TmnxLogFilterOperator determines
the comparison operator to be used as the parameter match criterion."
SYNTAX INTEGER {
off (1),
equal (2),
notEqual (3),
lessThan (4),
lessThanOrEqual (5),
greaterThan (6),
greaterThanOrEqual (7)
}
TmnxEventNumber ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Each log event type has a unique identifying number. This number is
unique within a particular software application, such as IP, MPLS,
OSPF, etc.; but it is not necessarily unique across different software
applications. That is MPLS event #1001 may be different from OSPF
event #1001."
SYNTAX Unsigned32
TmnxLogExRbkOperationType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of TmnxLogExRbkOperationType specifies the type of operation
being performed."
SYNTAX INTEGER {
unknown (0),
exec (1),
rollback (2),
vsd (3),
load (4)
}
LogStorageType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
""
SYNTAX StorageType
tmnxLogObjs OBJECT IDENTIFIER ::= { tmnxSRObjs 12 }
tmnxLogNotificationObjects OBJECT IDENTIFIER ::= { tmnxLogObjs 1 }
tmnxLogFileDeletedLogId OBJECT-TYPE
SYNTAX TmnxLogIdIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedLogId indicates with which event log-id
or accounting-policy-id the deleted file was associated. Note the
corresponding entry in the tmnxLogIdTable or tmnxLogApTable may no
longer exist."
::= { tmnxLogNotificationObjects 1 }
tmnxLogFileDeletedFileId OBJECT-TYPE
SYNTAX TmnxLogFileId
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedFileId indicates with which event
log-id or accounting-policy-id the deleted file was associated. Note
that the corresponding entry in the tmnxLogFileIdTable may no longer
exist."
::= { tmnxLogNotificationObjects 2 }
tmnxLogFileDeletedLogType OBJECT-TYPE
SYNTAX TmnxLogFileType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedLogType indicates whether the deleted
file was an 'eventLog' or 'accountingPolicy'."
::= { tmnxLogNotificationObjects 3 }
tmnxLogFileDeletedLocation OBJECT-TYPE
SYNTAX TmnxCFlash
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedLocation indicates on which compact
flash device the event log or accounting policy file that has been
deleted was located. "
::= { tmnxLogNotificationObjects 4 }
tmnxLogFileDeletedName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedName indicates the pathname of an event
log or accounting policy file that has been deleted because of space
contention on a compact flash device."
::= { tmnxLogNotificationObjects 5 }
tmnxLogFileDeletedCreateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogFileDeletedCreateTime indicates the date and time
when the deleted file had been created."
::= { tmnxLogNotificationObjects 6 }
tmnxLogTraceErrorTitle OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..50))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogTraceErrorTitle indicates the title string of the
trace error event that generated the tmnxLogTraceError notification."
::= { tmnxLogNotificationObjects 7 }
tmnxLogTraceErrorSubject OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..50))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogTraceErrorSubject indicates the subject string of
the trace error event that generated the tmnxLogTraceError
notification.
The subject is the entity that originated the event, such as the Slot
ID."
::= { tmnxLogNotificationObjects 8 }
tmnxLogTraceErrorMessage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogTraceErrorMessage indicates the message text
string of the trace error event that generated the tmnxLogTraceError
notification."
::= { tmnxLogNotificationObjects 9 }
tmnxLogThrottledEventID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"tmnxLogThrottledEventID is used by the tmnxLogEventThrottled
notification to indicate the NOTIFICATION-TYPE object identifier of
the throttled event."
::= { tmnxLogNotificationObjects 10 }
tmnxLogThrottledEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"tmnxLogThrottledEvents is used by the tmnxLogEventThrottled
notification to indicate the number of events dropped because of event
throttling during the last throttle interval."
::= { tmnxLogNotificationObjects 11 }
tmnxSysLogTargetId OBJECT-TYPE
SYNTAX TmnxSyslogId
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"tmnxSysLogTargetId is used by the tmnxSysLogTargetProblem notification
to indicate the involved TmnxSyslogId."
::= { tmnxLogNotificationObjects 12 }
tmnxSysLogTargetProblemDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxSysLogTargetProblemDescr indicates the type of error
encountered when trying to deliver events to the destination specified
in the TmnxSyslogId."
::= { tmnxLogNotificationObjects 13 }
tmnxLogNotifyApInterval OBJECT-TYPE
SYNTAX Integer32 (5..120)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogNotifyApInterval indicates how frequently the
statistics are collected and written to their destination."
::= { tmnxLogNotificationObjects 14 }
tmnxStdReplayStartEvent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxStdReplayStartEvent indicates the SNMP notification
request ID of the first missed event that was replayed when an SNMP
notification target address was readded to the RTM following a period
when the target address had been removed. It is used by the
tmnxStdEventsReplayed notification."
::= { tmnxLogNotificationObjects 15 }
tmnxStdReplayEndEvent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxStdReplayEndEvent indicates the SNMP notification
request ID of the last missed event that was replayed when an SNMP
notification target address was readded to the RTM following a period
when the target address had been removed. It is used by the
tmnxStdEventsReplayed notification."
::= { tmnxLogNotificationObjects 16 }
tmnxEhsHEntryMinDelayInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..604800)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryMinDelayInterval indicates the difference
between the current time and the time as mentioned in
tmnxEhsHEntryLastExecuted."
::= { tmnxLogNotificationObjects 17 }
tmnxLogMaxLogs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "logs"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of concurrent active Logs that are allowed. A value
of zero (0) for this object implies that there is no limit for the
number of concurrent active logs in effect.
The maximum number of logs in the Base context is restricted to 30 and
in the VPRN context to 30."
DEFVAL { 60 }
::= { tmnxLogObjs 2 }
tmnxLogFileIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogFileIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the Nokia SROS series Log File ID Table for providing, via
SNMP, the capability of defining the characteristics for log and
accounting files and associating them with a file-id. The actual file
is not created until the file-id is used in a log or accounting file
configuration."
::= { tmnxLogObjs 3 }
tmnxLogFileIdEntry OBJECT-TYPE
SYNTAX TmnxLogFileIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the tmnxLogFileIdTable. Entries are created
and deleted in this table by SNMP sets to tmnxLogFileIdRowStatus."
INDEX { tmnxLogFileId }
::= { tmnxLogFileIdTable 1 }
TmnxLogFileIdEntry ::= SEQUENCE
{
tmnxLogFileId TmnxLogFileId,
tmnxLogFileIdRowStatus RowStatus,
tmnxLogFileIdStorageType StorageType,
tmnxLogFileIdRolloverTime Integer32,
tmnxLogFileIdRetainTime Integer32,
tmnxLogFileIdAdminLocation TmnxCFlash,
tmnxLogFileIdOperLocation TmnxCFlash,
tmnxLogFileIdDescription TItemDescription,
tmnxLogFileIdLogType TmnxLogFileType,
tmnxLogFileIdLogId Integer32,
tmnxLogFileIdPathName DisplayString,
tmnxLogFileIdCreateTime DateAndTime,
tmnxLogFileIdBackupLoc TmnxCFlash,
tmnxLogFileIdName TLNamedItemOrEmpty
}
tmnxLogFileId OBJECT-TYPE
SYNTAX TmnxLogFileId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value tmnxLogFileId uniquely identifies a file-id to be used
when creating a log or accounting file."
::= { tmnxLogFileIdEntry 1 }
tmnxLogFileIdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted
in the tmnxLogFileIdTable. Deletion of an entry in this
table will not succeed if it is currently used by any log
or accounting file."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxLogFileIdEntry 2 }
tmnxLogFileIdStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row. Conceptual rows having the
value 'permanent' need not allow write access to any columnar objects
in the row."
DEFVAL { nonVolatile }
::= { tmnxLogFileIdEntry 3 }
tmnxLogFileIdRolloverTime OBJECT-TYPE
SYNTAX Integer32 (5..10080)
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdRolloverTime specifies how often, in
minutes, a new log or accounting file will be created. If the value
of tmnxLogFileIdLogType is not 'rollover', then the value of this
object is irrelevant."
DEFVAL { 1440 }
::= { tmnxLogFileIdEntry 4 }
tmnxLogFileIdRetainTime OBJECT-TYPE
SYNTAX Integer32 (1..500)
UNITS "hours"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdRetainTime specifies the minimum time,
in hours, that a file is retained on the media. Once this time
period has expired the file is deleted."
DEFVAL { 12 }
::= { tmnxLogFileIdEntry 5 }
tmnxLogFileIdAdminLocation OBJECT-TYPE
SYNTAX TmnxCFlash
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdAdminLocation specifies where the log
or accounting file should be created. The file location should be a
compact flash on the primary CPM. When the secondary CPM becomes
the primary CPM after a failure, the same log file policies will
be activated. Thus it is recommended that the same media is
available to both secondary and primary CPMs.
If no location is specified, 0, the compact flash cf1: is used to
store the log files or cf2: is used to store accounting files."
DEFVAL { 0 }
::= { tmnxLogFileIdEntry 6 }
tmnxLogFileIdOperLocation OBJECT-TYPE
SYNTAX TmnxCFlash
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdOperLocation indicates where the log
or accounting file has been created. The file location should be a
compact flash on the primary CPM. When the secondary CPM becomes
the primary CPM after a failure, the same log file policies will
be activated. Thus it is recommended that the same media is
available to both secondary and primary CPMs."
::= { tmnxLogFileIdEntry 7 }
tmnxLogFileIdDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdDescription is a user provided description
string for this log file-id entry. It can consist of any printable,
seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''h }
::= { tmnxLogFileIdEntry 8 }
tmnxLogFileIdLogType OBJECT-TYPE
SYNTAX TmnxLogFileType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdLogType indicates the type of information
that will be written to this file."
::= { tmnxLogFileIdEntry 9 }
tmnxLogFileIdLogId OBJECT-TYPE
SYNTAX Integer32 (0..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdLogId indicates the ID index of the log or
accounting policy this file is attached to. A value of zero (0)
indicates that this file definition is not currently used by any
log or accounting policy."
::= { tmnxLogFileIdEntry 10 }
tmnxLogFileIdPathName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdPathName is the pathname of the currently
opened file used by this file-id entry. The value of
tmnxLogFileIdPathName is affected by the value of stiPreferLocalTime."
::= { tmnxLogFileIdEntry 11 }
tmnxLogFileIdCreateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdCreateTime is the time the currently opened
file version used by this file-id entry was created. The value of
tmnxLogFileIdCreateTime is affected by the value of
stiPreferLocalTime."
::= { tmnxLogFileIdEntry 12 }
tmnxLogFileIdBackupLoc OBJECT-TYPE
SYNTAX TmnxCFlash
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdBackupLoc specifies where the log
or accounting file should be created if it cannot be created in
the location specified by tmnxLogFileIdAdminLocation. The file
location should be a compact flash on the primary CPM. When the
secondary CPM becomes the primary CPM after a failure, the same
log file policies will be activated. Thus it is recommended that
the same media is available to both secondary and primary CPMs.
If no backup location is specified, 0, and the log or accounting file
could not be created in the location specified by
tmnxLogFileIdAdminLocation or the file creation at the specified
backup location fails, a file create failure trap is issued and the
associated log or accounting policy is marked as operationally
'outOfService'."
DEFVAL { 0 }
::= { tmnxLogFileIdEntry 13 }
tmnxLogFileIdName OBJECT-TYPE
SYNTAX TLNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFileIdName specifies particular entry in the
tmnxLogFileIdTable."
DEFVAL { "" }
::= { tmnxLogFileIdEntry 14 }
tmnxLogApTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series Log Accounting Policy Table contains an entry
for each accounting policy that specifies the characteristics of the
accounting records associated with an accounting policy."
::= { tmnxLogObjs 4 }
tmnxLogApEntry OBJECT-TYPE
SYNTAX TmnxLogApEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the tmnxLogApTable. Entries in the
tmnxLogApTable are created and destroyed via SNMP Set
requests to tmnxLogApRowStatus."
INDEX { tmnxLogApPolicyId }
::= { tmnxLogApTable 1 }
TmnxLogApEntry ::= SEQUENCE
{
tmnxLogApPolicyId Integer32,
tmnxLogApRowStatus RowStatus,
tmnxLogApStorageType LogStorageType,
tmnxLogApAdminStatus TmnxAdminState,
tmnxLogApOperStatus TmnxOperState,
tmnxLogApInterval Integer32,
tmnxLogApDescription TItemDescription,
tmnxLogApDefault TruthValue,
tmnxLogApRecord INTEGER,
tmnxLogApToFileId TmnxLogFileId,
tmnxLogApPortType INTEGER,
tmnxLogApDefaultInterval TruthValue,
tmnxLogApDataLossCount Counter32,
tmnxLogApLastDataLossTimeStamp TimeStamp,
tmnxLogApToFileType INTEGER,
tmnxLogApIncludeSystemInfo TruthValue,
tmnxLogApAlign TruthValue
}
tmnxLogApPolicyId OBJECT-TYPE
SYNTAX Integer32 (1..99)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogApPolicyId uniquely identifies an accounting
policy to be used for creating accounting records. A specific
accounting policy can be applied to one or more service access
points (SAPs). Any changes made to an existing policy is applied
immediately to all SAPs where this policy is applied."
::= { tmnxLogApEntry 1 }
tmnxLogApRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted
in the tmnxLogApTable. Deletion of an entry in this
table will not succeed if it is currently applied to any
service access point (SAP)."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxLogApEntry 2 }
tmnxLogApStorageType OBJECT-TYPE
SYNTAX LogStorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row. Conceptual rows having the
value 'permanent' need not allow write access to any columnar objects
in the row."
DEFVAL { nonVolatile }
::= { tmnxLogApEntry 3 }
tmnxLogApAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApAdminStatus specifies the desired administrative
state for this accounting policy."
DEFVAL { outOfService }
::= { tmnxLogApEntry 4 }
tmnxLogApOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApOperStatus indicates the current operational
status of this accounting policy."
::= { tmnxLogApEntry 5 }
tmnxLogApInterval OBJECT-TYPE
SYNTAX Integer32 (1..120)
UNITS "minutes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApInterval determines how frequently the
statistics are collected and written to their destination.
If no record is specified, default value for tmnxLogApInterval is 5
minutes. For service and network types of record, default values are 5
minutes and 15 minutes respectively.
For an accounting policy with one of the following record type
(i.e. tmnxLogApRecord) values, the minimum interval is one minute:
completeOamPm(56),
completeSvcActivTestHead(76),
saa(32).
Otherwise the minimum interval is five minutes."
DEFVAL { 5 }
::= { tmnxLogApEntry 6 }
tmnxLogApDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApDescription is a user provided description
string for this accounting policy. It can consist of any printable,
seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''h }
::= { tmnxLogApEntry 7 }
tmnxLogApDefault OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When tmnxLogApDefault has a value of 'true', it specifies that
this accounting policy is applied to all service access points (SAPs)
that do not have an explicit accounting policy applied. If no
accounting policy is associated with a SAP accounting records are
produced in accordance with the default policy.
Only one accounting policy entry in the tmnxLogApTable can have
tmnxLogApDefault set to 'true'. If there is no entry in the
tmnxLogApTable with tmnxLogApDefault set to 'true', then the
only accounting records collected are those explicitly configured
accounting policies."
DEFVAL { false }
::= { tmnxLogApEntry 8 }
tmnxLogApRecord OBJECT-TYPE
SYNTAX INTEGER {
none (0),
svcIngressOctet (1),
svcEgressOctet (2),
svcIngressPkt (3),
svcEgressPkt (4),
netIngressOctet (5),
netEgressOctet (6),
netIngressPkt (7),
netEgressPkt (8),
compactSvcInOctet (9),
combinedSvcIngress (10),
combinedNetInEgOctet (11),
combinedSvcInEgOctet (12),
completeSvcInEg (13),
combinedSvcSdpInEg (14),
completeSvcSdpInEg (15),
completeSubscrIngrEgr (16),
bsxProtocol (17),
bsxApplication (18),
bsxAppGroup (19),
bsxSubscriberProtocol (20),
bsxSubscriberApplication (21),
bsxSubscriberAppGroup (22),
customRecordSubscriber (23),
customRecordService (24),
customRecordAa (25),
queueGroupOctets (26),
queueGroupPackets (27),
combinedQueueGroup (28),
combinedMplsLspIngress (29),
combinedMplsLspEgress (30),
combinedLdpLspEgress (31),
saa (32),
video (33),
kpiSystem (34),
kpiBearerMgmt (35),
kpiBearerTraffic (36),
kpiRefPoint (37),
kpiPathMgmt (38),
kciIom3 (39),
kciSystem (40),
kciBearerMgmt (41),
kciPathMgmt (42),
completeKpi (43),
completeKci (44),
kpiBearerGroup (45),
kpiRefPathGroup (46),
kpiKciBearerMgmt (47),
kpiKciPathMgmt (48),
kpiKciSystem (49),
completeKpiKci (50),
aaPerformance (51),
completeEthernetPort (52),
extendedSvcIngrEgr (53),
completeNetIngrEgr (54),
aaPartition (55),
completeOamPm (56),
kpiRefPtSecErrorCauseCode (57),
kpiBearerTrafficGtpEndpoint (58),
kpiIpReas (59),
kpiRadiusGroup (60),
kpiRefPtFailureCauseCode (61),
kpiDhcpGroup (62),
aaAdmitDeny (63),
netIntfIngressOctet (65),
netIntfEgressOctet (66),
netIntfIngressPkt (67),
netIntfEgressPkt (68),
combinedNetIntfIngress (69),
combinedNetIntfEgress (70),
completeNetIntfIngrEgr (71),
accessEgressOctets (72),
accessEgressPackets (73),
combinedAccessEgress (74),
combinedNetworkEgress (75),
completeSvcActivTestHead (76),
combinedMplsSrteEgress (77)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApRecord specifies the type of predefined
accounting record type to be written to the accounting file.
The value 'bsxSubscriberAppGroup (22)' was made obsolete in release
7.0 and replaced by 'customRecordAa (25).'"
DEFVAL { none }
::= { tmnxLogApEntry 9 }
tmnxLogApToFileId OBJECT-TYPE
SYNTAX TmnxLogFileId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApToFileId is the index to the entry in the
tmnxLogFileIdTable that specifies the file characteristics to be
used for the destination of the accounting policy records collected
by this accounting policy. The file itself is created the first
time this accounting policy is applied to a service access point
(SAP).
tmnxLogApToFileId must be set along with tmnxLogApToFileType to
indicate whether the records will be stored in a file or not.
When a destination file is specified, the value of the file is
specified by tmnxLogApToFileId and the value of tmnxLogApToFileType
should be 'fileId'.
When the destination file is not specified, the value of
tmnxLogApToFileId should be zero and the value of tmnxLogApToFileType
should be 'noFile'."
::= { tmnxLogApEntry 10 }
tmnxLogApPortType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
access (1),
network (2),
sdp (3),
subscriber (4),
appAssure (5),
qgrp (6),
saa (7),
mplsLspIngr (8),
mplsLspEgr (9),
ldpLspEgr (10),
video (11),
mobileGateway (12),
ethernet (13),
oamPm (14),
networkIntf (16),
accessPort (17),
svcActvTest (18),
mplsSrteEgr (19)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApPortType indicates the type of facility
associated with the specified accounting policy's record type (i.e.
tmnxLogApRecord)."
::= { tmnxLogApEntry 11 }
tmnxLogApDefaultInterval OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"When tmnxLogApDefaultInterval has a value of 'true', it specifies that
tmnxLogApInterval will have a default value.
When tmnxLogApDefaultInterval has a value of 'false', user can set the
value of tmnxLogApInterval manually."
DEFVAL { true }
::= { tmnxLogApEntry 12 }
tmnxLogApDataLossCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApDataLossCount indicates the number of times a
tmnxLogAccountingDataLoss trap was raised against this application
policy."
::= { tmnxLogApEntry 13 }
tmnxLogApLastDataLossTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApLastDataLossTimeStamp indicates the last time,
since system startup that a tmnxLogAccountingDataLoss trap was raised
against this application policy."
::= { tmnxLogApEntry 14 }
tmnxLogApToFileType OBJECT-TYPE
SYNTAX INTEGER {
fileId (0),
noFile (1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApToFileType specifies where records of an
accounting policy are stored. It should be set along with
tmnxLogApToFileId which specifies the destination file index where the
accounting records are stored.
When the value of tmnxLogApToFileType is 'noFile', it indicates that
the accounting records will not to be stored in a file and the value
of tmnxLogApToFileId should be set to zero.
When the value of tmnxLogApToFileType is 'fileId', it indicates that
the accounting records will be stored in a file specified by
tmnxLogApToFileId.
tmnxLogApOperStatus will transition to 'inService' when the
tmnxLogApToFileType is set to 'noFile' or 'fileId'."
DEFVAL { fileId }
::= { tmnxLogApEntry 15 }
tmnxLogApIncludeSystemInfo OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApIncludeSystemInfo specifies whether or not to
include system information at the top of each accounting file
generated for a given accounting policy."
DEFVAL { false }
::= { tmnxLogApEntry 16 }
tmnxLogApAlign OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If true generation of accounting statistics is aligned with absolute
time. First statistics are generated when absolute time is dividable
by collection-interval value. After that it continues with
collection-interval. This is important for synchronization of
statistics interval between various nodes in network. If false,
generation of accounting statistis is triggered right after command
execution and continues after configured collection-interval. type
that do not have an accounting policy."
DEFVAL { false }
::= { tmnxLogApEntry 17 }
tmnxLogIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series Log Identification Table contains an entry for
each log that specifies the characteristics of that log associated
with a log-id number."
::= { tmnxLogObjs 5 }
tmnxLogIdEntry OBJECT-TYPE
SYNTAX TmnxLogIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the tmnxLogIdTable. Entries in the
tmnxLogIdTable are created and destroyed via SNMP Set
requests to tmnxLogIdRowStatus. Default log entries 99,
and 100 are created by the agent."
INDEX { tmnxLogIdIndex }
::= { tmnxLogIdTable 1 }
TmnxLogIdEntry ::= SEQUENCE
{
tmnxLogIdIndex TmnxLogIdIndex,
tmnxLogIdRowStatus RowStatus,
tmnxLogIdStorageType LogStorageType,
tmnxLogIdAdminStatus TmnxAdminState,
tmnxLogIdOperStatus TmnxOperState,
tmnxLogIdDescription TItemDescription,
tmnxLogIdFilterId TmnxLogFilterId,
tmnxLogIdSource BITS,
tmnxLogIdDestination INTEGER,
tmnxLogIdFileId TmnxLogFileId,
tmnxLogIdSyslogId TmnxSyslogIdOrEmpty,
tmnxLogIdMaxMemorySize Unsigned32,
tmnxLogIdConsoleSession TruthValue,
tmnxLogIdForwarded Counter64,
tmnxLogIdDropped Counter64,
tmnxLogIdTimeFormat INTEGER,
tmnxLogIdPythonPolicy TNamedItemOrEmpty,
tmnxLogIdOperDestination INTEGER,
tmnxLogIdNetconfStream TNamedItemOrEmpty,
tmnxLogIdName TLNamedItemOrEmpty
}
tmnxLogIdIndex OBJECT-TYPE
SYNTAX TmnxLogIdIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogIdIndex uniquely identifies an event stream log."
::= { tmnxLogIdEntry 1 }
tmnxLogIdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows entries to be created and deleted
in the tmnxLogIdTable. Deletion of an entry in this
table will not succeed if tmnxLogIdOperStatus is not
'outOfService'. tmnxLogIdOperStatus will not transition
to 'inService' if tmnxLogIdSource and tmnxLogIdDestination
and their associated objects have not been set to valid values."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxLogIdEntry 2 }
tmnxLogIdStorageType OBJECT-TYPE
SYNTAX LogStorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row. Conceptual rows having the
value 'permanent' need not allow write access to any columnar objects
in the row."
DEFVAL { nonVolatile }
::= { tmnxLogIdEntry 3 }
tmnxLogIdAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdAdminStatus specifies the desired administrative
state for this log."
DEFVAL { inService }
::= { tmnxLogIdEntry 4 }
tmnxLogIdOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogIdOperStatus indicates the current operational
status of this log."
::= { tmnxLogIdEntry 5 }
tmnxLogIdDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdDescription is a user provided description
string for this log. It can consist of any printable,
seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''h }
::= { tmnxLogIdEntry 6 }
tmnxLogIdFilterId OBJECT-TYPE
SYNTAX TmnxLogFilterId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdFilterId is the index into the
tmnxLogFilterTable to the entry the defines a filter to be
applied to this log's source event stream to limit the events
output to this log's destination. If tmnxLogIdFilterId has a
value of 0, then all events in the source log are forwarded
to the destination."
DEFVAL { 0 }
::= { tmnxLogIdEntry 7 }
tmnxLogIdSource OBJECT-TYPE
SYNTAX BITS {
main (0),
security (1),
change (2),
debugTrace (3),
li (4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdSource is a bit mask that specifies the
log event source stream(s) to be forwarded to the destination
specified in tmnxLogIdDestination. Events from more than one
source may be forwarded to the log destination.
The 'main' event stream consists of all events that are not explicitly
directed to any other event stream.
The 'security' event stream contains all events that affect attempts
to breach system security such as failed login attempts, attempts to
access SNMP MIB tables to which the user has not been granted access,
or attempts to enter a branch of the CLI for which the user is not
authorized.
The 'user' activity event stream contains all events that directly
affect the configuration or operation of the system.
The 'debugTrace' event stream contains all events configured for
application or protocol tracing.
The 'li' event stream contains all events configured for Lawful
Intercept activities. An attempt to set the 'li' event stream
will fail with an inconsistentValue error if the requestor does
not have access to the 'li' context. An attempt to set the 'li'
event stream will fail with an inconsistentValue error if
tmnxLogIdDestination has the value 'syslog' or 'file'."
DEFVAL { {} }
::= { tmnxLogIdEntry 8 }
tmnxLogIdDestination OBJECT-TYPE
SYNTAX INTEGER {
none (0),
console (1),
syslog (2),
snmpTraps (3),
file (4),
memory (5),
netconf (7),
subscribedCli (8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdDestination specifies the event log stream
destination. Once this object has been set to a value other than
the default 'none' it cannot be modified and attempts to reset
it to another value will fail with an INCONSISTENT VALUE error.
The 'console' destination causes all selected log events to be
directed to the system console. If the console is not connected
then all entries are dropped.
The 'syslog' destination sends all selected log events to the
syslog address configured in tmnxSyslogTargetAddress and
tmnxSyslogTargetUdpPort in the tmnxSyslogTargetTable row entry
pointed to by the value of tmnxLogIdSyslogId. An attempt to
set this object to 'syslog' will fail with an inconsistentValue
error if tmnxLogIdSource has the value 'li' set.
The 'snmpTraps' destination causes events defined as SNMP traps
to be sent to the configured SNMP trap destinations and also to
be logged in the NOTIFICATION-LOG-MIB tables. The allocated memory
size for the log of transmitted traps is specified in
tmnxLogIdMaxMemorySize. The events are logged to memory in a circular
fashion. Once the space is full, the oldest entry is replaced with
a new entry.
The 'file' destination causes all selected log events to be
directed to a file on one of the CPM's compact flash discs.
Details of the file's configuration are in the tmnxLogFileIdTable
entry pointed to by the value of tmnxLogIdFileId. An attempt to
set this object to 'file' will fail with an inconsistentValue
error if tmnxLogIdSource has the value 'li' set.
The 'memory' destination causes all selected log events to be
directed to an in memory storage area. The allocated memory size
for the log is specified in tmnxLogIdMaxMemorySize. The events are
logged to memory in a circular fashion. Once the space is full,
the oldest entry is replaced with a new entry."
DEFVAL { none }
::= { tmnxLogIdEntry 9 }
tmnxLogIdFileId OBJECT-TYPE
SYNTAX TmnxLogFileId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdFileId is the index to the entry in the
tmnxLogFileIdTable that specifies the file characteristics to be used
for the destination of the log events written to this log.
tmnxLogIdOperStatus will not transition to 'inService' until a
valid value has been set for tmnxLogIdFileId. This object is
valid only if tmnxLogIdDestination is set to 'file'.
This object can be set only once together with tmnxLogIdDestination
value of 'file'. "
::= { tmnxLogIdEntry 10 }
tmnxLogIdSyslogId OBJECT-TYPE
SYNTAX TmnxSyslogIdOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdSyslogId is the index into the
tmnxSyslogTargetTable for the row entry with the information to format
event messages to be sent to a specific syslog collector target.
This object is valid only when tmnxLogIdDestination has a value of
'syslog'. If this object has a value of zero (0), then no collector
is specified and no messages are sent.
This object can be set only once together with tmnxLogIdDestination
value of 'syslog'."
DEFVAL { 0 }
::= { tmnxLogIdEntry 11 }
tmnxLogIdMaxMemorySize OBJECT-TYPE
SYNTAX Unsigned32 (0 | 50..3000)
UNITS "events"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdMaxMemorySize specifies the amount of memory to
allocate for this log. This object can be set only once together with
tmnxLogIdDestination has a value of 'memory', 'netconf', 'snmpTraps' or 'subscribedCli'.
For any other value of tmnxLogIdDestination, a read of this object will return zero (0).
Once a memory size has been specified and the log created, any attempt
to modify this object will fail with an INCONSISTENT VALUE error."
DEFVAL { 100 }
::= { tmnxLogIdEntry 12 }
tmnxLogIdConsoleSession OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"This object exists for the convenience of the Nokia SROS CLI.
When set to 'true' it indicates that the 'CONSOLE' log output
should be printed to the Telnet session instead of the CONSOLE
device. When a tmnxLogIdEntry is created directly via SNMP,
setting this object has no meaning and the 'CONSOLE' log output
will always be sent to the CONSOLE device. This object is obsoleted
in 15.0 Release."
DEFVAL { false }
::= { tmnxLogIdEntry 13 }
tmnxLogIdForwarded OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogIdForwarded is the count of the number of events
that have been forwarded to this log's destination. This counter is
incremented after an event has been selected by the log filter defined
in tmnxLogIdFilterId."
::= { tmnxLogIdEntry 14 }
tmnxLogIdDropped OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogIdDropped is the count of the number of events
that have been sent to this logs source(s) and that have not been
forwarded to the log destination because they were filtered out by the
log filter defined in tmnxLogIdFilterId."
::= { tmnxLogIdEntry 15 }
tmnxLogIdTimeFormat OBJECT-TYPE
SYNTAX INTEGER {
utc (1),
local (2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdTimeFormat specifies the type of timestamp
format for events sent to logs where tmnxLogIdDestination has a value
of either 'syslog (2)' or 'file (4)'.
When tmnxLogIdTimeFormat has a value of 'utc (1)' timestamps are
written using the Coordinated Universal Time value. When
tmnxLogIdTimeFormat has a value of 'local (2)' timestamps are
written in the system's local time."
DEFVAL { utc }
::= { tmnxLogIdEntry 16 }
tmnxLogIdPythonPolicy OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdPythonPolicy specifies the name of a Python
policy.
The name refers to a conceptual row in the
TIMETRA-PYTHON-MIB::tmnxPythonPolicyTable. The Python policy should
have Python scripts to modify the log message text.
While the value of tmnxLogIdAdminStatus is equal to 'inService', a
non-empty value for this object is only allowed if the value of
tmnxLogIdDestination is equal to 'syslog'."
DEFVAL { ''h }
::= { tmnxLogIdEntry 17 }
tmnxLogIdOperDestination OBJECT-TYPE
SYNTAX INTEGER {
none (0),
console (1),
syslog (2),
snmpTraps (3),
file (4),
memory (5),
cliSession (6),
netconf (7),
subscribedCli (8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogIdOperDestination indicates the operational value
of event log stream destination.
The 'console' destination indicates all selected log events will be
directed to the system console.
The 'syslog' destination indicates all selected log events will be
directed to the syslog address configured in tmnxSyslogTargetAddress
and tmnxSyslogTargetUdpPort in the tmnxSyslogTargetTable row entry
pointed to by the value of tmnxLogIdSyslogId.
The 'snmpTraps' destination indicates events defined as SNMP traps
will be sent to the configured SNMP trap destinations and also to be
logged in the NOTIFICATION-LOG-MIB tables.
The 'file' destination indicates all selected log events will be
directed to a file on one of the CPM's compact flash discs.
The 'memory' destination indicates all selected log events will be
directed to an in memory storage area.
The 'cliSession' destination indicates all selected log events will be
directed to a cli session. tmnxLogIdDestination will have a value
'none' in this case."
DEFVAL { none }
::= { tmnxLogIdEntry 18 }
tmnxLogIdNetconfStream OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdNetconfStream specifies the name of the NETCONF
stream associated with this log.
A non-empty value for this object is only allowed if the value of
tmnxLogIdDestination is equal to 'netconf'."
DEFVAL { "" }
::= { tmnxLogIdEntry 19 }
tmnxLogIdName OBJECT-TYPE
SYNTAX TLNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogIdName specifies an event stream log."
DEFVAL { "" }
::= { tmnxLogIdEntry 20 }
tmnxLogFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { tmnxLogObjs 6 }
tmnxLogFilterEntry OBJECT-TYPE
SYNTAX TmnxLogFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Log Filter entry.
Entries are created by user. Entries are deleted by user. Entry 1001
is created by the agent for default TmnxLogIdIndex 100.
There is no StorageType object. Entries have a presumed
StorageType of nonVolatile."
INDEX { tmnxLogFilterId }
::= { tmnxLogFilterTable 1 }
TmnxLogFilterEntry ::= SEQUENCE
{
tmnxLogFilterId TmnxLogFilterId,
tmnxLogFilterRowStatus RowStatus,
tmnxLogFilterDescription TItemDescription,
tmnxLogFilterDefaultAction TFilterAction,
tmnxLogFilterInUse TruthValue,
tmnxLogFilterName TLNamedItemOrEmpty
}
tmnxLogFilterId OBJECT-TYPE
SYNTAX TmnxLogFilterId (1..1500)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogFilterId is a unique index that identifies a
particular entry in the tmnxLogFilterTable."
::= { tmnxLogFilterEntry 1 }
tmnxLogFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row entries in this table are created and destroyed via SNMP set
requests."
::= { tmnxLogFilterEntry 2 }
tmnxLogFilterDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterDescription is a user provided description
string for this log filter. It can consist of any printable,
seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''H }
::= { tmnxLogFilterEntry 3 }
tmnxLogFilterDefaultAction OBJECT-TYPE
SYNTAX TFilterAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The action to take for packets that do not match any filter entries.
the values default(3), and nat(5) are not allowed."
DEFVAL { forward }
::= { tmnxLogFilterEntry 4 }
tmnxLogFilterInUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When tmnxLogFilterInUse has a value of 'true', this filter is
attached to a log file configuration. The same tmnxLogFilterEntry
can be attached to more than one log file."
::= { tmnxLogFilterEntry 5 }
tmnxLogFilterName OBJECT-TYPE
SYNTAX TLNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterName specifies particular entry in the
tmnxLogFilterTable."
DEFVAL { "" }
::= { tmnxLogFilterEntry 6 }
tmnxLogFilterParamsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all log filter match entries for all log filters."
::= { tmnxLogObjs 7 }
tmnxLogFilterParamsEntry OBJECT-TYPE
SYNTAX TmnxLogFilterParamsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Log Filter Parameter entry. Every Log
Filter can have zero or more Log Filter Parameter match entries.
The Log Filter parameter entries are checked in ascending order by
their index value, tmnxLogFilterParamsIndex. Upon the first successful
match, the specified actions are applied as indicated by the value of
tmnxLogFilterParamsAction. No further checking against
remaining tmnxLogFilterParamsEntry rows is done. Therefore, entries
in this table should be sequenced from most to least explicit match
criterion. It is recommended that multiple parameter entries for a log
filter should be created with gaps between their index values. This
allows a new entry to be inserted into an existing filter policy
without needing to renumber the already existing filter parameters
entries.
A log filter entry in the tmnxLogFilterTable with no entry in the
tmnxLogFilterParamsTable to define its match criteria set will match
every log event, and the default action specified by
tmnxLogFilterDefaultAction will be taken.
Entries are created by user. Entries are deleted by user.
There is no StorageType object, entries have a presumed StorageType of
nonVolatile."
INDEX {
tmnxLogFilterId,
tmnxLogFilterParamsIndex
}
::= { tmnxLogFilterParamsTable 1 }
TmnxLogFilterParamsEntry ::= SEQUENCE
{
tmnxLogFilterParamsIndex TmnxLogFilterEntryId,
tmnxLogFilterParamsRowStatus RowStatus,
tmnxLogFilterParamsDescription TItemDescription,
tmnxLogFilterParamsAction TFilterActionOrDefault,
tmnxLogFilterParamsApplication TNamedItemOrEmpty,
tmnxLogFilterParamsApplOperator TmnxLogFilterOperator,
tmnxLogFilterParamsNumber TmnxEventNumber,
tmnxLogFilterParamsNumberOperator TmnxLogFilterOperator,
tmnxLogFilterParamsSeverity TmnxPerceivedSeverity,
tmnxLogFilterParamsSeverityOperator TmnxLogFilterOperator,
tmnxLogFilterParamsSubject TNamedItemOrEmpty,
tmnxLogFilterParamsSubjectOperator TmnxLogFilterOperator,
tmnxLogFilterParamsSubjectRegexp TruthValue,
tmnxLogFilterParamsRouter TNamedItemOrEmpty,
tmnxLogFilterParamsRouterOperator TmnxLogFilterOperator,
tmnxLogFilterParamsRouterRegexp TruthValue,
tmnxLogFilterParamsMsg OCTET STRING,
tmnxLogFilterParamsMsgOperator TmnxLogFilterOperator,
tmnxLogFilterParamsMsgRegexp TruthValue,
tmnxLogFilterParamsName TLNamedItemOrEmpty
}
tmnxLogFilterParamsIndex OBJECT-TYPE
SYNTAX TmnxLogFilterEntryId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { tmnxLogFilterParamsEntry 1 }
tmnxLogFilterParamsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status for this Log filter's parameter entry."
::= { tmnxLogFilterParamsEntry 2 }
tmnxLogFilterParamsDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsDescription is a user provided
description string for this log filter match entry. It can consist
of any printable, seven-bit ASCII characters up to 80 characters in
length."
DEFVAL { ''H }
::= { tmnxLogFilterParamsEntry 3 }
tmnxLogFilterParamsAction OBJECT-TYPE
SYNTAX TFilterActionOrDefault
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"the action to take for log events that match this filter entry.
the value default(3) is allowed. If tmnxLogFilterParamsAction
has the value 'default', the action specified by the value
of tmnxLogFilterDefaultAction is applied to events that match
this filter entry. The value nat(5) is not allowed."
DEFVAL { default }
::= { tmnxLogFilterParamsEntry 4 }
tmnxLogFilterParamsApplication OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Matches log events with the specified application name. An
application is the software entity the reports the log event and
includes IP, MPLS, OSPF, CLI, SERVICES, etc."
DEFVAL { ''H }
::= { tmnxLogFilterParamsEntry 5 }
tmnxLogFilterParamsApplOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsApplOperator is the comparison
operator to use to determine if the log event matches the value
of tmnxLogFilterParamsApplication. The only valid values from
TmnxLogFilterOperator are 'off', 'equal', and 'notEqual'."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 6 }
tmnxLogFilterParamsNumber OBJECT-TYPE
SYNTAX TmnxEventNumber
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsNumber is the log event number to
be matched. Event numbers uniquely identify a certain event within
an application but not across applications."
DEFVAL { 0 }
::= { tmnxLogFilterParamsEntry 7 }
tmnxLogFilterParamsNumberOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsNumberOperator is the comparison
operator to use to determine if the log event matches the value of
tmnxLogFilterParamsNumber."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 8 }
tmnxLogFilterParamsSeverity OBJECT-TYPE
SYNTAX TmnxPerceivedSeverity
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsSeverity is the log event severity
level to be matched."
DEFVAL { none }
::= { tmnxLogFilterParamsEntry 9 }
tmnxLogFilterParamsSeverityOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsSeverityOperator is the comparison
operator to use to determine if the log event matches the value of
tmnxLogFilterParamsSeverity."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 10 }
tmnxLogFilterParamsSubject OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsSubject is the log event subject
string to be matched. The subject is the entity that the event is
reported for, such as a port ID."
DEFVAL { ''H }
::= { tmnxLogFilterParamsEntry 11 }
tmnxLogFilterParamsSubjectOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsSubjectOperator is the comparison
operator to use to determine if the log event matches the value
of tmnxLogFilterParamsSubject. The only valid values of
TmnxLogFilterOperator to use for the subject string comparison are
'off', 'equal', and 'notEqual'."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 12 }
tmnxLogFilterParamsSubjectRegexp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsSubjectRegexp specifies the type
of string comparison to use to determine if the log event matches
the value of tmnxLogFilterParamsSubject. When the value of
tmnxLogFilterParamsSubjectRegexp is 'true', the string in
tmnxLogFilterParamsSubject is a regular expression string to be
matched against the subject string in the log event being filtered.
When it has a value of 'false', the string in
tmnxLogFilterParamsSubject is matched exactly by the event
filter."
DEFVAL { false }
::= { tmnxLogFilterParamsEntry 13 }
tmnxLogFilterParamsRouter OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsRouter is the log event router context
name string to be matched."
DEFVAL { ''H }
::= { tmnxLogFilterParamsEntry 14 }
tmnxLogFilterParamsRouterOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsRouterOperator is the comparison
operator to use to determine if the log event matches the value
of tmnxLogFilterParamsRouter. The only valid values of
TmnxLogFilterOperator to use for the router name string comparison
are 'off', 'equal', and 'notEqual'."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 15 }
tmnxLogFilterParamsRouterRegexp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsRouterRegexp specifies the type
of string comparison to use to determine if the log event matches
the value of tmnxLogFilterParamsRouter. When the value of
tmnxLogFilterParamsRouterRegexp is 'true', the string in
tmnxLogFilterParamsRouter is a regular expression string to be
matched against the router name string in the log event being
filtered. When it has a value of 'false', the string in
tmnxLogFilterParamsRouter is matched exactly by the event
filter."
DEFVAL { false }
::= { tmnxLogFilterParamsEntry 16 }
tmnxLogFilterParamsMsg OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0|1..400))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsMsg specifies the log event message
string to be matched. Matching result is determined based on value of
tmnxLogFilterParamsMsgOperator. Matching type is determined based on
value of tmnxLogFilterParamsMsgRegexp"
DEFVAL { ''H }
::= { tmnxLogFilterParamsEntry 17 }
tmnxLogFilterParamsMsgOperator OBJECT-TYPE
SYNTAX TmnxLogFilterOperator
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsMsgOperator specifies the comparison
operator used to determine if the log event matches the value
of tmnxLogFilterParamsMsg. The only valid values of tmnxLogFilterParamsMsgOperator
to use for the string comparison are 'off', 'equal', and 'notEqual'."
DEFVAL { off }
::= { tmnxLogFilterParamsEntry 18 }
tmnxLogFilterParamsMsgRegexp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsMsgRegexp specifies the type
of string comparison to use to determine if the log event matches
the value of tmnxLogFilterParamsMsg. When the value of
tmnxLogFilterParamsMsgRegexp is 'true', the string in
tmnxLogFilterParamsMsg is a regular expression string to be
matched against the message string in the log event being filtered.
When it has a value of 'false', the string in
tmnxLogFilterParamsMsg is matched as substring by the event
filter."
DEFVAL { false }
::= { tmnxLogFilterParamsEntry 19 }
tmnxLogFilterParamsName OBJECT-TYPE
SYNTAX TLNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogFilterParamsName specifies particular entry in the
tmnxLogFilterParamsTable."
DEFVAL { "" }
::= { tmnxLogFilterParamsEntry 20 }
tmnxSyslogTargetTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSyslogTargetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all remote syslog collectors that this agent is configured
to send syslog messages to."
::= { tmnxLogObjs 8 }
tmnxSyslogTargetEntry OBJECT-TYPE
SYNTAX TmnxSyslogTargetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Syslog Target entry.
Entries are created by user. Entries are deleted by user.
There is no StorageType object, entries have a presumed StorageType of
nonVolatile. "
INDEX { tmnxSyslogTargetIndex }
::= { tmnxSyslogTargetTable 1 }
TmnxSyslogTargetEntry ::= SEQUENCE
{
tmnxSyslogTargetIndex TmnxSyslogId,
tmnxSyslogTargetRowStatus RowStatus,
tmnxSyslogTargetDescription TItemDescription,
tmnxSyslogTargetAddress IpAddress,
tmnxSyslogTargetUdpPort TmnxUdpPort,
tmnxSyslogTargetFacility TmnxSyslogFacility,
tmnxSyslogTargetSeverity TmnxSyslogSeverity,
tmnxSyslogTargetMessagePrefix TNamedItemOrEmpty,
tmnxSyslogTargetMessagesDropped Counter32,
tmnxSyslogTargetAddrType InetAddressType,
tmnxSyslogTargetAddr InetAddress,
tmnxSyslogTargetName TLNamedItemOrEmpty,
tmnxSyslogTlsClntProfileName TNamedItemOrEmpty
}
tmnxSyslogTargetIndex OBJECT-TYPE
SYNTAX TmnxSyslogId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetIndex is a unique arbitrary identifier
for this syslog collector target.
The maximum value of tmnxSyslogTargetIndex is limited to 10 for the
Base router context and to 30 for the VPRN context."
::= { tmnxSyslogTargetEntry 1 }
tmnxSyslogTargetRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tmnxSyslogTargetRowStatus object allows for dynamic creation and
deletion of row entries in the tmnxSyslogTargetTable as well as the
activation and deactivation of these entries.
When this object's value is set to 'notInService (2)', no messages
will be sent to this target collector and none of its counters will be
incremented.
Refer to the RowStatus convention for further details on the behavior
of this object."
REFERENCE
"RFC2579 (Textual Conventions for SMIv2)"
::= { tmnxSyslogTargetEntry 2 }
tmnxSyslogTargetDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetDescription is an administratively
assigned textual description of this syslog collector target."
DEFVAL { ''H }
::= { tmnxSyslogTargetEntry 3 }
tmnxSyslogTargetAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxSyslogTargetAddress is the IPv4 address for
this syslog message collector target. If the value of this
object is '0.0.0.0', then no messages will be sent, nor will
any counters be incremented.
This object was made obsolete in release 5.0. It is replaced
by the InetAddress pair tmnxSyslogTargetAddrType and
tmnxSyslogTargetAddr."
DEFVAL { '00000000'h }
::= { tmnxSyslogTargetEntry 4 }
tmnxSyslogTargetUdpPort OBJECT-TYPE
SYNTAX TmnxUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetUdpPort is the UDP port number that is
used to send messages to this syslog collector target."
DEFVAL { 514 }
::= { tmnxSyslogTargetEntry 5 }
tmnxSyslogTargetFacility OBJECT-TYPE
SYNTAX TmnxSyslogFacility
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetFacility is the syslog facility number
that will be encoded in messages sent to this syslog collector target."
DEFVAL { local7 }
::= { tmnxSyslogTargetEntry 6 }
tmnxSyslogTargetSeverity OBJECT-TYPE
SYNTAX TmnxSyslogSeverity
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetSeverity is the maximum severity level
of the messages that SHOULD be forwarded to this syslog collector
target. The higher the level, the lower the severity."
DEFVAL { info }
::= { tmnxSyslogTargetEntry 7 }
tmnxSyslogTargetMessagePrefix OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetMessagePrefix is a string of ABNF
alphanumeric characters to be prepended as the MSG TAG to the syslog
MSG CONTENT string and separated from it with a colon and space, ': '."
DEFVAL { "TMNX" }
::= { tmnxSyslogTargetEntry 8 }
tmnxSyslogTargetMessagesDropped OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetMessagesDropped is a count of messages
not sent to this syslog collector target because the severity level of
the message was above tmnxSyslogTargetSeverity; the higher the level,
the lower the severity."
::= { tmnxSyslogTargetEntry 9 }
tmnxSyslogTargetAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetAddrType specifies the type of host
address to be used for the syslog message collector target. This
object indicates the type of address stored in the corresponding
tmnxSyslogTargetAddr object.
Only 'ipv4', 'ipv6', and 'ipv6z' address types are supported."
DEFVAL { unknown }
::= { tmnxSyslogTargetEntry 10 }
tmnxSyslogTargetAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (0|4|16|20))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetAddr specifies the IP host address
to be used for the syslog message collector target. If no address
is specified, ''H, then no messages will be sent nor will
any counters be incremented.
The syslog target address type is determined by the value of the
corresponding tmnxSyslogTargetAddrType object."
DEFVAL { ''H }
::= { tmnxSyslogTargetEntry 11 }
tmnxSyslogTargetName OBJECT-TYPE
SYNTAX TLNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSyslogTargetName specifies particular entry in the
tmnxSyslogTargetTable."
DEFVAL { "" }
::= { tmnxSyslogTargetEntry 12 }
tmnxSyslogTlsClntProfileName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object tmnxSyslogTlsClntProfileName specifies the
name for a TLS client profile. If configured, syslog uses TLS."
DEFVAL { "" }
::= { tmnxSyslogTargetEntry 13 }
tmnxEventAppTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEventAppEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all applications that generate TiMOS logger events."
::= { tmnxLogObjs 9 }
tmnxEventAppEntry OBJECT-TYPE
SYNTAX TmnxEventAppEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular application entry.
Entries are created by the agent when the system initializes.
There is no StorageType object, entries have a presumed StorageType of
permanent. "
INDEX { tmnxEventAppIndex }
::= { tmnxEventAppTable 1 }
TmnxEventAppEntry ::= SEQUENCE
{
tmnxEventAppIndex Unsigned32,
tmnxEventAppName TNamedItem
}
tmnxEventAppIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxEventAppIndex is a unique arbitrary identifier for
this application event generator."
::= { tmnxEventAppEntry 1 }
tmnxEventAppName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventAppName is the name string that is used in TiMOS
log messages as the application that generated the logged event."
::= { tmnxEventAppEntry 2 }
tmnxEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all TiMOS events that can be generated."
::= { tmnxLogObjs 10 }
tmnxEventEntry OBJECT-TYPE
SYNTAX TmnxEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular TiMOS event type entry. Entries are
created by the agent when the system initializes. There is no
StorageType object, entries have a presumed StorageType of permanent. "
INDEX {
tmnxEventAppIndex,
tmnxEventID
}
::= { tmnxEventTable 1 }
TmnxEventEntry ::= SEQUENCE
{
tmnxEventID Unsigned32,
tmnxEventName TNamedItem,
tmnxEventSeverity TmnxPerceivedSeverity,
tmnxEventControl TruthValue,
tmnxEventCounter Counter32,
tmnxEventDropCount Counter32,
tmnxEventReset TmnxActionType,
tmnxEventThrottle TruthValue,
tmnxEventSpecThrottle TruthValue,
tmnxEventSpecThrottleLimit Unsigned32,
tmnxEventSpecThrottleIntval Unsigned32,
tmnxEventSpecThrottleDef TruthValue,
tmnxEventSpecThrottleLimitDef Unsigned32,
tmnxEventSpecThrottleIntvalDef Unsigned32,
tmnxEventRepeat TruthValue
}
tmnxEventID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxEventID is a unique arbitrary identifier for indexing
event type entries within an event generator application as identified
by the value of tmnxEventAppIndex."
::= { tmnxEventEntry 1 }
tmnxEventName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventName is a short name string used to describe
this event type."
::= { tmnxEventEntry 2 }
tmnxEventSeverity OBJECT-TYPE
SYNTAX TmnxPerceivedSeverity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventSeverity specifies the severity level that will
be associated with this type of event when it is generated."
::= { tmnxEventEntry 3 }
tmnxEventControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventControl determines whether or not events
of this type will be generated or suppressed. When it has a value
of 'true', the event is generated and tmnxEventCounter is incremented.
When it has a value of 'false', the event is suppressed and
tmnxEventDropCount is incremented."
::= { tmnxEventEntry 4 }
tmnxEventCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventCounter is the number of times an event of this
type has been generated."
::= { tmnxEventEntry 5 }
tmnxEventDropCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventDropCount is the number of times and event
of this type has been suppressed because tmnxEventControl is set to
'false'. When tmnxEventControl is set to 'true', tmnxEventDropCount
indicates the number of events dropped because of logger input
queue size overrun or dropped because of throttling when
tmnxEventThrottle is set to 'true'."
::= { tmnxEventEntry 6 }
tmnxEventReset OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting tmnxEventReset to 'doAction (1)' causes the agent to reset the
values of tmnxEventSeverity and tmnxEventControl to the default values
for this event type."
DEFVAL { notApplicable }
::= { tmnxEventEntry 7 }
tmnxEventThrottle OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventThrottle determines whether or not events
of this type will be throttled. When it has a value
of 'true', the event is throttled at the rate indicated by the
value of tmnxEventThrottleLimit and tmnxEventThrottleInterval.
When it has a value of 'false', no event throttling is applied."
DEFVAL { false }
::= { tmnxEventEntry 8 }
tmnxEventSpecThrottle OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottle specifies if events of this type
will be throttled using the parameters specific for this event.
When the value of tmnxEventSpecThrottle is equal to 'true', the event
is throttled at the rate indicated by the value of
tmnxEventSpecThrottleLimit and tmnxEventSpecThrottleIntval.
When it has a value of 'false', no event-specific throttling is
applied.
The default value depends on the event."
::= { tmnxEventEntry 9 }
tmnxEventSpecThrottleLimit OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..20000)
UNITS "events"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottleLimit specifies the number of times
that this event can be logged within the tmnxEventSpecThrottleIntval.
Once this limit has been reached, any additional events of this type
will be dropped, i.e. tmnxEventDropCount will be incremented.
At the end of the specific throttle interval if any events have been
dropped a tmnxLogEventThrottled notification will be sent if the rate
is applied to the whole stream of log events of this type; otherwise,
if the rate is applied to each source of this type of event, the
TIMETRA-SYSTEM-MIB::tmnxTrapDropped will be sent.
The value must be zero while the value of tmnxEventSpecThrottle is
'false'.
The default value depends on the event type."
::= { tmnxEventEntry 10 }
tmnxEventSpecThrottleIntval OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..1200)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottleIntval specifies the number of
seconds that the event-specific throttling interval lasts.
The value must be zero while the value of tmnxEventSpecThrottle is
'false'.
The default value depends on the event type."
::= { tmnxEventEntry 11 }
tmnxEventSpecThrottleDef OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottleDef indicates the default value of
tmnxEventSpecThrottle."
::= { tmnxEventEntry 12 }
tmnxEventSpecThrottleLimitDef OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..20000)
UNITS "events"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottleLimitDef indicates the default value
of the object tmnxEventSpecThrottleLimit.
The value zero indicates that there is by default no event-specific
throttling for this event."
::= { tmnxEventEntry 13 }
tmnxEventSpecThrottleIntvalDef OBJECT-TYPE
SYNTAX Unsigned32 (0 | 1..1200)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEventSpecThrottleIntvalDef indicates the default
value of tmnxEventSpecThrottleIntval.
The value zero indicates that there is by default no event-specific
throttling for this type of event."
::= { tmnxEventEntry 14 }
tmnxEventRepeat OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"repeat"
DEFVAL { false }
::= { tmnxEventEntry 15 }
tmnxSnmpTrapGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSnmpTrapGroupEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"A table of all remote SNMP trap collectors to which this agent is
configured to send SNMP notifications messages.
This table was made obsolete in the 5.0 release and is replaced with
tmnxSnmpTrapDestTable."
::= { tmnxLogObjs 11 }
tmnxSnmpTrapGroupEntry OBJECT-TYPE
SYNTAX TmnxSnmpTrapGroupEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Information about a particular SNMP trap destination entry. The first
index instance creates and snmp trap group to be associated with the
event log with the same value for tmnxLogIdIndex. The second and third
indexes specify a remote SNMP trap destination that will be sent SNMP
notification messages from the associated event log.
Entries are created by user. Entries are deleted by user.
There is no StorageType object, entries have a presumed StorageType of
nonVolatile.
This table was made obsolete in the 5.0 release and is replaced with
the tmnxSnmpTrapDestTable."
INDEX {
tmnxStgIndex,
tmnxStgDestAddress,
tmnxStgDestPort
}
::= { tmnxSnmpTrapGroupTable 1 }
TmnxSnmpTrapGroupEntry ::= SEQUENCE
{
tmnxStgIndex TmnxStgIndex,
tmnxStgDestAddress IpAddress,
tmnxStgDestPort TmnxUdpPort,
tmnxStgRowStatus RowStatus,
tmnxStgDescription TItemDescription,
tmnxStgVersion SnmpMessageProcessingModel,
tmnxStgNotifyCommunity OCTET STRING,
tmnxStgSecurityLevel SnmpSecurityLevel
}
tmnxStgIndex OBJECT-TYPE
SYNTAX TmnxStgIndex
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The value of tmnxStgIndex specifies an snmp trap group to be
associated with the event log with the same value for tmnxLogIdIndex.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdIndex."
::= { tmnxSnmpTrapGroupEntry 1 }
tmnxStgDestAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The value of tmnxStgDestAddress is the IPv4 address for
this remote snmp notification destination. If the value of this
object is '0.0.0.0', then no messages will be sent, nor will
any counters be incremented.
This object was made obsolete in the 5.0 release. It is
replaced by the InetAddressType/InetAddress objects
tmnxStdDestAddrType and tmnxStdDestAddr."
DEFVAL { '00000000'h }
::= { tmnxSnmpTrapGroupEntry 2 }
tmnxStgDestPort OBJECT-TYPE
SYNTAX TmnxUdpPort
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The value of tmnxStgDestPort is the UDP port number that is used to
send messages to this remote SNMP notification destination.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdDestPort."
DEFVAL { 162 }
::= { tmnxSnmpTrapGroupEntry 3 }
tmnxStgRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The tmnxStgRowStatus object allows for dynamic creation and deletion
of row entries in the tmnxSnmpTrapGroupTable as well as the activation
and deactivation of these entries.
When this object's value is set to 'notInService (2)', no messages
will be sent to this snmp trap group and none of its counters will be
incremented.
Refer to the RowStatus convention for further details on the behavior
of this object.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdRowStatus."
REFERENCE
"RFC2579 (Textual Conventions for SMIv2)"
::= { tmnxSnmpTrapGroupEntry 4 }
tmnxStgDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxStgDescription is an administratively assigned
textual description of this snmp trap destination.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdDescription."
DEFVAL { ''H }
::= { tmnxSnmpTrapGroupEntry 5 }
tmnxStgVersion OBJECT-TYPE
SYNTAX SnmpMessageProcessingModel
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxStgVersion specifies the SNMP version that will be
used to format notification messages sent to this snmp trap
destination.
The values supported by the Nokia SROS series SNMP agent are:
0 for SNMPv1
1 for SNMPv2c
3 for SNMPv3
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdVersion."
DEFVAL { 3 }
::= { tmnxSnmpTrapGroupEntry 6 }
tmnxStgNotifyCommunity OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxStgNotifyCommunity specifies the SNMPv1 or
SNMPv2c community name string or the SNMPv3 security name
used when an SNMP notification message is sent to this
trap destination. If the value of this object is the empty
string, then no messages will be sent nor will any counters be
incremented.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdVersion."
DEFVAL { ''H }
::= { tmnxSnmpTrapGroupEntry 7 }
tmnxStgSecurityLevel OBJECT-TYPE
SYNTAX SnmpSecurityLevel
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxStgSecurityLevel specifies the level of security at
which SNMP notification messages will be sent to the SNMP trap
destination when tmnxStgVersion has a value of '3' for SNMPv3.
This object was made obsolete in the 5.0 release. It is
replaced by tmnxStdSecurityLevel."
DEFVAL { noAuthNoPriv }
::= { tmnxSnmpTrapGroupEntry 8 }
tmnxEventTest OBJECT-TYPE
SYNTAX TmnxActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting tmnxEventTest to 'doAction' causes the tmnxTestEvent
notification to be generated."
DEFVAL { notApplicable }
::= { tmnxLogObjs 12 }
tmnxEventThrottleLimit OBJECT-TYPE
SYNTAX Unsigned32 (1..20000)
UNITS "events"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventThrottleLimit specifies the number of
log events that can be logged within the tmnxEventThrottleInterval
for a specific entry in the tmnxEventTable. Once the limit has
been reached, any additional events of that type will be dropped,
i.e. tmnxEventDropCount will be incremented. At the end of the
throttle interval if any events have been dropped a
tmnxLogEventThrottled notification will be sent."
DEFVAL { 2000 }
::= { tmnxLogObjs 13 }
tmnxEventThrottleInterval OBJECT-TYPE
SYNTAX Unsigned32 (1..1200)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventThrottleInterval specifies the number of seconds
that an event throttling interval lasts."
DEFVAL { 1 }
::= { tmnxLogObjs 14 }
tmnxSnmpSetErrsMax OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSnmpSetErrsMax indicates the maximum number of
entries the agent will create in the tmnxSnmpSetErrsTable. Once the
table is full the agent will delete the oldest entry in the table in
order to add new entries."
::= { tmnxLogObjs 15 }
tmnxSnmpSetErrsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSnmpSetErrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of recent SNMP SET failures. Only the SET errs from
remote SNMP manager requests are saved in this table. Only
SET errs detected by the SNMP engine in the test phase
consistency check method functions are saved. SET errors that
are caught by the preliminary access and ASN.1 decoding phase
are not saved. These are errs such as noAccess, notWritable,
wrongType, wrongLength and wrongEncoding. Note that notWritable,
wrongType, and wrongLength errs may sometimes be generated by
the consistency check; in this case they will be saved in this
table.
SET errs caused by local CLI sessions are not saved.
The tmnxSnmpSetErrsTable is intended to provide an aide to
Network Management Systems (NMS) developers. When an SNMP SET
fails during the consistency checking test phase, this table may
provide more detailed failure reason information than the simple
SNMP error code value in the SNMP response PDU."
::= { tmnxLogObjs 16 }
tmnxSnmpSetErrsEntry OBJECT-TYPE
SYNTAX TmnxSnmpSetErrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular SNMP SET error. The first two
index instances identify the SNMP manager who sent the SNMP SET
request that failed. The third index specifies the SNMP request ID
(sequence number) of the SNMP SET request that failed.
Entries are created by the agent. Entries are deleted by the agent.
There is no StorageType object, entries have a presumed StorageType of
volatile."
INDEX {
tmnxSseAddressType,
tmnxSseAddress,
tmnxSseSnmpPort,
tmnxSseRequestId
}
::= { tmnxSnmpSetErrsTable 1 }
TmnxSnmpSetErrsEntry ::= SEQUENCE
{
tmnxSseAddressType InetAddressType,
tmnxSseAddress InetAddress,
tmnxSseSnmpPort TmnxUdpPort,
tmnxSseRequestId Unsigned32,
tmnxSseVersion SnmpMessageProcessingModel,
tmnxSseSeverityLevel TmnxPerceivedSeverity,
tmnxSseModuleId Unsigned32,
tmnxSseModuleName TNamedItem,
tmnxSseErrorCode Unsigned32,
tmnxSseErrorName DisplayString,
tmnxSseErrorMsg DisplayString,
tmnxSseExtraText OCTET STRING,
tmnxSseTimestamp TimeStamp
}
tmnxSseAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxSseAddressType indicates the IP address
type of address specified in tmnxSseAddress. 'ipv4' and
'ipv6' are the only address type values supported."
::= { tmnxSnmpSetErrsEntry 1 }
tmnxSseAddress OBJECT-TYPE
SYNTAX InetAddress (SIZE (4|16))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxSseAddress is the IP address of the SNMP manager that
sent the SNMP SET request that failed for this error reason."
::= { tmnxSnmpSetErrsEntry 2 }
tmnxSseSnmpPort OBJECT-TYPE
SYNTAX TmnxUdpPort
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxSseSnmpPort is the UDP port number of the SNMP
manager that sent the SNMP SET request that failed for this error
reason."
::= { tmnxSnmpSetErrsEntry 3 }
tmnxSseRequestId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxSseRequestId indicates the request ID of the SNMP
SNMP SET request that failed for this error reason."
::= { tmnxSnmpSetErrsEntry 4 }
tmnxSseVersion OBJECT-TYPE
SYNTAX SnmpMessageProcessingModel
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseVersion indicates the SNMP version of the SNMP SET
request that failed.
The values supported by the Nokia SROS series SNMP agent are:
0 for SNMPv1
1 for SNMPv2c
3 for SNMPv3"
::= { tmnxSnmpSetErrsEntry 5 }
tmnxSseSeverityLevel OBJECT-TYPE
SYNTAX TmnxPerceivedSeverity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseSeverityLevel indicates severity level that is
associated with this type SNMP SET error."
::= { tmnxSnmpSetErrsEntry 6 }
tmnxSseModuleId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseModuleId indicates a unique arbitrary
identified for the TiMOS application module that generated
this SNMP SET error. NOTE: This is NOT the same value used
for tmnxEventAppIndex."
::= { tmnxSnmpSetErrsEntry 7 }
tmnxSseModuleName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseModuleName indicates the name string of the TiMOS
application module that generated this SNMP SET error. NOTE: This is
NOT the same value used for tmnxEventAppName."
::= { tmnxSnmpSetErrsEntry 8 }
tmnxSseErrorCode OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseErrorCode indicates the error number associated
with this SNMP SET error. The error numbers are unique within
a tmnxSseModuleId. They are not unique across all modules so
both the module name and error number are required to identify
a particular error message."
::= { tmnxSnmpSetErrsEntry 9 }
tmnxSseErrorName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseErrorName indicates the error name associated
with this SNMP SET error. The error names are unique within
a tmnxSseModuleId. They are not unique across all modules so
both the module name and error name are required to identify
a particular error message."
::= { tmnxSnmpSetErrsEntry 10 }
tmnxSseErrorMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseErrorMsg indicates the fixed error message text
associated with this SNMP SET error identified by the values of
tmnxSseModuleId and tmnxSseErrorCode."
::= { tmnxSnmpSetErrsEntry 11 }
tmnxSseExtraText OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..320))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseExtraText indicates the fixed run-time variable
message text associated with this SNMP SET error identified by the
values of tmnxSseModuleId and tmnxSseErrorCode. If the extra text
was truncated to fit into buffer size allowed, the last character
will be an asterisk (*)."
::= { tmnxSnmpSetErrsEntry 12 }
tmnxSseTimestamp OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxSseTimestamp indicates the sysUpTime value when this
tmnxSnmpSetErrsEntry was created by the agent."
::= { tmnxSnmpSetErrsEntry 13 }
tmnxSnmpTrapLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSnmpTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all remote SNMP trap logs to which this agent is configured
to send SNMP notifications messages."
::= { tmnxLogObjs 17 }
tmnxSnmpTrapLogEntry OBJECT-TYPE
SYNTAX TmnxSnmpTrapLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row entry in the tmnxSnmpTrapLogTable represents additional
columns for attributes specific to the Nokia SROS series
implementation of SNMP-NOTIFICATION-MIB::snmpNotifyTable."
AUGMENTS { snmpNotifyEntry }
::= { tmnxSnmpTrapLogTable 1 }
TmnxSnmpTrapLogEntry ::= SEQUENCE
{
tmnxSnmpTrapLogDescription TItemDescription,
snmpNotifyId TmnxLogIdIndex
}
tmnxSnmpTrapLogDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxSnmpTrapLogDescription is an administratively
assigned textual description of this snmp trap log."
DEFVAL { ''H }
::= { tmnxSnmpTrapLogEntry 1 }
snmpNotifyId OBJECT-TYPE
SYNTAX TmnxLogIdIndex (1..100)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of snmpNotifyId creates association with log with the same
value of tmnxLogIdIndex. It is number representation of
snmpNotifyName. Usage of default Netconf log 101 not allowed."
::= { tmnxSnmpTrapLogEntry 2 }
tmnxSnmpTrapDestTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxSnmpTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all remote SNMP IPv4/v6 trap collectors to which this agent
is configured to send SNMP notification messages."
::= { tmnxLogObjs 18 }
tmnxSnmpTrapDestEntry OBJECT-TYPE
SYNTAX TmnxSnmpTrapDestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular SNMP notification destination entry.
The first index instance creates an snmp notification group to be
associated with the event log with the same value for tmnxLogIdIndex.
The second index specifies an administrative name to identify a
specific SNMP notification target.
Entries are created by user. Entries are deleted by user.
There is no StorageType object, entries have a presumed StorageType of
nonVolatile."
INDEX {
tmnxStdIndex,
IMPLIED tmnxStdName
}
::= { tmnxSnmpTrapDestTable 1 }
TmnxSnmpTrapDestEntry ::= SEQUENCE
{
tmnxStdIndex TmnxStgIndex,
tmnxStdName SnmpAdminString,
tmnxStdRowStatus RowStatus,
tmnxStdRowLastChanged TimeStamp,
tmnxStdDestAddrType InetAddressType,
tmnxStdDestAddr InetAddress,
tmnxStdDestPort TmnxUdpPort,
tmnxStdDescription TItemDescription,
tmnxStdVersion SnmpMessageProcessingModel,
tmnxStdNotifyCommunity OCTET STRING,
tmnxStdSecurityLevel SnmpSecurityLevel,
tmnxStdReplay TruthValue,
tmnxStdReplayStart Unsigned32,
tmnxStdReplayLastTime TimeStamp,
tmnxStdDyingGasp TruthValue
}
tmnxStdIndex OBJECT-TYPE
SYNTAX TmnxStgIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxStdIndex specifies an snmp notification group to be
associated with the event log with the same value for tmnxLogIdIndex."
::= { tmnxSnmpTrapDestEntry 1 }
tmnxStdName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..28))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxStdName specifies the name of an snmp notification
destination within the snmp notification group specified by
tmnxLogIdIndex."
::= { tmnxSnmpTrapDestEntry 2 }
tmnxStdRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The tmnxStdRowStatus object allows for dynamic creation and deletion
of row entries in the tmnxSnmpTrapDestTable as well as the activation
and deactivation of these entries.
In order for 'createAndGo' row creation to succeed or status to
transition to 'active' a value must be set for tmnxStdNotifyCommunity.
In order for 'createAndGo' row creation to succeed or status to
transition to 'active' an entry must exist in the
SNMP-NOTIFICATION-MIB::snmpNotifyTable with an snmpNotifyName index
that is the ASCII string representation of the value of tmnxStdIndex.
When this object's value is set to 'notInService (2)', no messages
will be sent to this snmp notification collector and none of its
counters will be incremented.
Refer to the RowStatus convention for further details on the behavior
of this object."
REFERENCE
"RFC2579 (Textual Conventions for SMIv2)"
::= { tmnxSnmpTrapDestEntry 3 }
tmnxStdRowLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxStdRowLastChanged indicates the sysUpTime when the
value of a writable object in this row entry was modified."
::= { tmnxSnmpTrapDestEntry 4 }
tmnxStdDestAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdDestAddrType specifies the type of
host address to be used for the remote SNMP notification
collector. This object indicates the type of address stored
in the corresponding tmnxStdDestAddr object.
If the value of this object is 'unknown', then no messages will be
sent nor will any counters be incremented.
If tmnxStdDestAddrType is not set in the same PDU with
tmnxStdDestAddr, the set request will fail with an inconsistentValue
error."
DEFVAL { unknown }
::= { tmnxSnmpTrapDestEntry 5 }
tmnxStdDestAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (0|4|16|20))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdDestAddr specifies the IP host address to be used
for the remote SNMP notification collector.
The SNMP notification collector IP address type is determined by the
value of the corresponding tmnxStdDestAddrType object.
If the value of this object is empty or all NULLs, then no messages
will be sent nor will any counters be incremented.
If tmnxStdDestAddrType is not set in the same PDU with
tmnxStdDestAddr, the set request will fail with an inconsistentValue
error."
DEFVAL { ''H }
::= { tmnxSnmpTrapDestEntry 6 }
tmnxStdDestPort OBJECT-TYPE
SYNTAX TmnxUdpPort
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdDestPort is the UDP port number that is used to
send messages to this remote SNMP notification collector."
DEFVAL { 162 }
::= { tmnxSnmpTrapDestEntry 7 }
tmnxStdDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdDescription is an administratively assigned
textual description of this SNMP notification collector."
DEFVAL { ''H }
::= { tmnxSnmpTrapDestEntry 8 }
tmnxStdVersion OBJECT-TYPE
SYNTAX SnmpMessageProcessingModel
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdVersion specifies the SNMP version that will be
used to format notification messages sent to this SNMP notification
collector.
The values supported by the Nokia SROS series SNMP agent are:
0 for SNMPv1
1 for SNMPv2c
3 for SNMPv3"
DEFVAL { 3 }
::= { tmnxSnmpTrapDestEntry 9 }
tmnxStdNotifyCommunity OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdNotifyCommunity specifies the SNMPv1 or
SNMPv2c community name string or the SNMPv3 security name
used when an SNMP notification message is sent to this
SNMP notification collector. If the value of this object is
the empty string, then no messages will be sent nor will any
counters be incremented."
DEFVAL { ''H }
::= { tmnxSnmpTrapDestEntry 10 }
tmnxStdSecurityLevel OBJECT-TYPE
SYNTAX SnmpSecurityLevel
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdSecurityLevel specifies the level of security at
which SNMP notification messages will be sent to the SNMP notification
collector when tmnxStdVersion has a value of '3' for SNMPv3."
DEFVAL { noAuthNoPriv }
::= { tmnxSnmpTrapDestEntry 11 }
tmnxStdReplay OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdReplay specifies whether or not to resend
notifications that were generated while this notification destination
did not have a route installed for it in the route tables."
DEFVAL { false }
::= { tmnxSnmpTrapDestEntry 12 }
tmnxStdReplayStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxStdReplayStart indicates the SNMP notification
request ID of the first event that could not be generated because
there is no route to this notification target address.
Events will be resent when this notification target address is
readded to the route tables, on either an in-band or out-of-band
interface. The agent searches backwards in the event log and
begins resending events from the oldest event that has a timestamp
<= 5 centiseconds less than the timestamp of the
event with this request ID. Note that if the outage is long
and a large number of events are generated in the meantime,
it is possible that the log memory storage has wrapped and the
event data for this request ID is no longer available. In that case,
the oldest event saved in the log will be the first event resent.
A value of 0 indicates that there are no missed events waiting to be
resent."
::= { tmnxSnmpTrapDestEntry 13 }
tmnxStdReplayLastTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxStdReplayLastTime indicates the sysUpTime when
missed events were last replayed to this SNMP notification target
address. A value of 0 indicates that no missed events have been
replayed to this SNMP notification target address."
::= { tmnxSnmpTrapDestEntry 14 }
tmnxStdDyingGasp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxStdDyingGasp specifies whether the tmnxSysDyingGasp
trap message is to be sent using this SNMP notification target when
the system goes down due to power loss.
tmnxStdDyingGasp can only be set to 'true' on at most 3 SNMP
notification targets."
DEFVAL { false }
::= { tmnxSnmpTrapDestEntry 15 }
tmnxStdMaxTargets OBJECT-TYPE
SYNTAX Unsigned32 (10..100)
UNITS "trap-targets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of tmnxSnmpTrapDestTable row entries that can be
created for a specific tmnxStdIndex that represents an snmp
notification group."
DEFVAL { 25 }
::= { tmnxLogObjs 19 }
tmnxLogApCustRecordTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogApCustRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxLogApCustRecordTable augments
tmnxLogApTable. The table allows to configure the layout and setting
for a custom accounting record associated with this accounting policy."
::= { tmnxLogObjs 20 }
tmnxLogApCustRecordEntry OBJECT-TYPE
SYNTAX TmnxLogApCustRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the tmnxLogApCustRecordTable. Entries in this
table are created and destroyed via SNMP Set requests to the
tmnxLogApRowStatus object of the tmnxLogApTable."
AUGMENTS { tmnxLogApEntry }
::= { tmnxLogApCustRecordTable 1 }
TmnxLogApCustRecordEntry ::= SEQUENCE
{
tmnxLogApCrLastChanged TimeStamp,
tmnxLogApCrSignChangeDelta Unsigned32,
tmnxLogApCrSignChangeQueue TQueueIdOrAll,
tmnxLogApCrSignChangeOCntr THsmdaCounterIdOrZeroOrAll,
tmnxLogApCrSignChangeQICounters TmnxAccPlcyQICounters,
tmnxLogApCrSignChangeQECounters TmnxAccPlcyQECounters,
tmnxLogApCrSignChangeOICounters TmnxAccPlcyOICounters,
tmnxLogApCrSignChangeOECounters TmnxAccPlcyOECounters,
tmnxLogApCrSignChangeAACounters TmnxAccPlcyAACounters,
tmnxLogApCrAACounters TmnxAccPlcyAACounters,
tmnxLogApCrAASubAttributes TmnxAccPlcyAASubAttributes,
tmnxLogApCrSignChangePolicer Integer32,
tmnxLogApCrSignChangePICounters TmnxAccPlcyPolicerICounters,
tmnxLogApCrSignChangePECounters TmnxAccPlcyPolicerECounters
}
tmnxLogApCrLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApCrLastChanged indicates the sysUpTime when an
object in this table was last modified. A Value 0 means that no change
was made to this row since the box was last initialized."
::= { tmnxLogApCustRecordEntry 1 }
tmnxLogApCrSignChangeDelta OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangeDelta specifies the delta
change (significant change) that is required for the custom record
to be written to the xml file."
DEFVAL { 0 }
::= { tmnxLogApCustRecordEntry 2 }
tmnxLogApCrSignChangeQueue OBJECT-TYPE
SYNTAX TQueueIdOrAll
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangeQueue specifies the reference queue
to which the significant change defined in tmnxLogApCrSignChangeDelta
applies."
DEFVAL { 0 }
::= { tmnxLogApCustRecordEntry 3 }
tmnxLogApCrSignChangeOCntr OBJECT-TYPE
SYNTAX THsmdaCounterIdOrZeroOrAll
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrSignChangeOCntr specifies the counter-id that
will be taken as reference to which the significant change defined in
tmnxLogApCrSignChangeDelta applies."
DEFVAL { 0 }
::= { tmnxLogApCustRecordEntry 4 }
tmnxLogApCrSignChangeQICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyQICounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangeQICounters specifies the ingress
counter Ids in the queue defined by tmnxLogApCrSignChangeQueue to be
taken as reference to which the significant change defined in
tmnxLogApCrSignChangeDelta applies.
A non-zero value of this object is only allowed if the object
tmnxLogApCrSignChangeQueue has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 5 }
tmnxLogApCrSignChangeQECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyQECounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangeQECounters specifies the egress
counter Ids in the queue defined by tmnxLogApCrSignChangeQueue to be
taken as reference to which the significant change defined in
tmnxLogApCrSignChangeDelta applies.
A non-zero value of this object is only allowed if the object
tmnxLogApCrSignChangeQueue has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 6 }
tmnxLogApCrSignChangeOICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyOICounters
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrSignChangeOICounters specifies the ingress
counter Ids in the counter-group defined by tmnxLogApCrSignChangeOCntr
to be taken as reference to which the significant change defined in
tmnxLogApCrSignChangeDelta applies.
A non-zero value of this object is only allowed if the object
tmnxLogApCrSignChangeOCntr has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 7 }
tmnxLogApCrSignChangeOECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyOECounters
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrSignChangeOECounters specifies the egress
counter Ids in the counter-group defined by tmnxLogApCrSignChangeOCntr
to be taken as reference to which the significant change defined in
tmnxLogApCrSignChangeDelta applies.
A non-zero value of this object is only allowed if the object
tmnxLogApCrSignChangeOCntr has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 8 }
tmnxLogApCrSignChangeAACounters OBJECT-TYPE
SYNTAX TmnxAccPlcyAACounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangeAACounters specifies the
AA (Application assurance) counter Ids to be taken as reference to
which the significant change defined in tmnxLogApCrSignChangeDelta
applies.
A non-zero value of this object is only allowed if both the objects
tmnxLogApCrSignChangeOCntr and tmnxLogApCrSignChangeQueue are zero.
Also, a non-zero value for this object is only allowed if the object
tmnxLogApCrSignChangeDelta is either 0 or 1."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 9 }
tmnxLogApCrAACounters OBJECT-TYPE
SYNTAX TmnxAccPlcyAACounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrAACounters specifies the list of AA
(Application Assurance) counters that need to be collected in this
custom record."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 10 }
tmnxLogApCrAASubAttributes OBJECT-TYPE
SYNTAX TmnxAccPlcyAASubAttributes
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrAASubAttributes specifies the list of AA
(Application Assurance) subscriber attributes that must be included in
this custom record."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 11 }
tmnxLogApCrSignChangePolicer OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangePolicer specifies the reference
policer to which the significant change defined in
tmnxLogApCrSignChangeDelta applies.
A value of zero means that the significant change does not apply to
any policer.
A value of minus one means that the significant change applies to any
policer."
DEFVAL { 0 }
::= { tmnxLogApCustRecordEntry 12 }
tmnxLogApCrSignChangePICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyPolicerICounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangePICounters specifies the ingress
counters in the policer defined by tmnxLogApCrSignChangePolicer to
which the significant change defined in tmnxLogApCrSignChangeDelta
applies.
A non-empty value of this object is only allowed if the object
tmnxLogApCrSignChangePolicer has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 13 }
tmnxLogApCrSignChangePECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyPolicerECounters
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogApCrSignChangePECounters specifies the egress
counters in the policer defined by tmnxLogApCrSignChangePolicer to
which the significant change defined in tmnxLogApCrSignChangeDelta
applies.
A non-empty value of this object is only allowed if the object
tmnxLogApCrSignChangeQueue has a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordEntry 14 }
tmnxLogApCustRecordQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogApCustRecordQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxLogApCustRecordQueueTable allows to create
custom record queue information for a given accounting policy. Rows
can only be created for existing accounting policies (as defined in
tmnxLogApTable)."
::= { tmnxLogObjs 21 }
tmnxLogApCustRecordQueueEntry OBJECT-TYPE
SYNTAX TmnxLogApCustRecordQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the tmnxLogApCustRecordQueueTable. Entries in this
table are created and destroyed via SNMP Set requests."
INDEX {
tmnxLogApPolicyId,
tmnxLogApCrQueueId
}
::= { tmnxLogApCustRecordQueueTable 1 }
TmnxLogApCustRecordQueueEntry ::= SEQUENCE
{
tmnxLogApCrQueueId TQueueId,
tmnxLogApCrQueueRowStatus RowStatus,
tmnxLogApCrQueueLastChanged TimeStamp,
tmnxLogApCrQueueICounters TmnxAccPlcyQICounters,
tmnxLogApCrQueueECounters TmnxAccPlcyQECounters
}
tmnxLogApCrQueueId OBJECT-TYPE
SYNTAX TQueueId (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogApCrQueueId specifies the queue ID for which
counters will be collected in this custom record. The counters that
will be collected are defined in tmnxLogApCrQueueICounters and
tmnxLogApCrQueueECounters."
::= { tmnxLogApCustRecordQueueEntry 1 }
tmnxLogApCrQueueRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status of the entry. This allows creation/deletion of rows in this
table."
::= { tmnxLogApCustRecordQueueEntry 2 }
tmnxLogApCrQueueLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApCrQueueLastChanged indicates the sysUpTime when
an object in this table was last modified. A Value 0 means that no
change was made to this row since it was created."
::= { tmnxLogApCustRecordQueueEntry 3 }
tmnxLogApCrQueueICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyQICounters
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApCrQueueICounters specifies the list of ingress
counters that need to be collected in this custom record.
At least one of the objects tmnxLogApCrQueueICounters or
tmnxLogApCrQueueECounters must have a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordQueueEntry 4 }
tmnxLogApCrQueueECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyQECounters
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApCrQueueECounters specifies the list of egress
counters that need to be collected in this custom record.
At least one of the objects tmnxLogApCrQueueICounters or
tmnxLogApCrQueueECounters must have a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCustRecordQueueEntry 5 }
tmnxLogApCrOverrideCntrTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogApCrOverrideCntrEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"The Nokia SROS series tmnxLogApCrOverrideCntrTable allows to create
custom record counter override information for a given accounting
policy.
Rows can only be created for existing accounting policies (as defined
in tmnxLogApTable)."
::= { tmnxLogObjs 22 }
tmnxLogApCrOverrideCntrEntry OBJECT-TYPE
SYNTAX TmnxLogApCrOverrideCntrEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Defines an entry in the tmnxLogApCrOverrideCntrTable. Entries in this
table are created and destroyed via SNMP Set requests."
INDEX {
tmnxLogApPolicyId,
tmnxLogApCrOverrideCntrId
}
::= { tmnxLogApCrOverrideCntrTable 1 }
TmnxLogApCrOverrideCntrEntry ::= SEQUENCE
{
tmnxLogApCrOverrideCntrId THsmdaCounterIdOrZero,
tmnxLogApCrOverrideCntrRowStatus RowStatus,
tmnxLogApCrOverrideCntrLastChngd TimeStamp,
tmnxLogApCrOverrideCntrICounters TmnxAccPlcyOICounters,
tmnxLogApCrOverrideCntrECounters TmnxAccPlcyOECounters
}
tmnxLogApCrOverrideCntrId OBJECT-TYPE
SYNTAX THsmdaCounterIdOrZero (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogApCrOverrideCntrId specifies the counter group for
which counters will be collected in this custom record. The counters
that will be collected are defined in tmnxLogApCrOverrideCntrICounters
and tmnxLogApCrOverrideCntrECounters."
::= { tmnxLogApCrOverrideCntrEntry 1 }
tmnxLogApCrOverrideCntrRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"Row Status of the entry. This allows creation/deletion of rows in this
table."
::= { tmnxLogApCrOverrideCntrEntry 2 }
tmnxLogApCrOverrideCntrLastChngd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrOverrideCntrLastChngd indicates the sysUpTime
when an object in this table was last modified. A Value 0 means that
no change was made to this row since it was created."
::= { tmnxLogApCrOverrideCntrEntry 3 }
tmnxLogApCrOverrideCntrICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyOICounters
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrOverrideCntrICounters specifies the list of
ingress counters that need to be collected in this custom record.
At least one of the objects tmnxLogApCrOverrideCntrICounters or
tmnxLogApCrOverrideCntrECounters must have a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCrOverrideCntrEntry 4 }
tmnxLogApCrOverrideCntrECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyOECounters
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"The value of tmnxLogApCrOverrideCntrECounters specifies the list of
egress counters that need to be collected in this custom record.
At least one of the objects tmnxLogApCrOverrideCntrICounters or
tmnxLogApCrOverrideCntrECounters must have a non-zero value."
DEFVAL { {} }
::= { tmnxLogApCrOverrideCntrEntry 5 }
tmnxEventPrimaryRoutePref OBJECT-TYPE
SYNTAX INTEGER {
inband (1),
outband (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventPrimaryRoutePref specifies the primary routing
preference for traffic generated for SNMP notifications and syslog
messages.
A value of 'inband' specifies that the Logging utility will attempt to
use the Base routing context to send SNMP notifications and syslog
messages to remote destinations.
A value of 'outband' specifies that the Logging utility will attempt
to use the management routing context to send SNMP notifications and
syslog messages to remote destinations.
If the remote destination, as specified by tmnxStdDestAddr or
tmnxSyslogTargetAddr, is not reachable via the routing context
specified by tmnxEventPrimaryRoutePref, the secondary routing
preference as specified by tmnxEventSecondaryRoutePref will be
attempted."
DEFVAL { outband }
::= { tmnxLogObjs 23 }
tmnxEventSecondaryRoutePref OBJECT-TYPE
SYNTAX INTEGER {
inband (1),
outband (2),
none (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxEventSecondaryRoutePref specifies the secondary
routing preference for traffic generated for SNMP notifications and
syslog messages. The routing context specified by the
tmnxEventSecondaryRoutePref will be attempted if the remote
destination was not reachable by the primary routing preference,
specified by tmnxEventPrimaryRoutePref. The value specified for
tmnxEventSecondaryRoutePref must be distinct from the value for
tmnxEventPrimaryRoutePref.
A value of 'inband' specifies that the Logging utility will attempt to
use the Base routing context to send SNMP notifications and syslog
messages to remote destinations.
A value of 'outband' specifies that the Logging utility will attempt
to use the management routing context to send SNMP notifications and
syslog messages to remote destinations.
A value of 'none' specifies that no attempt will be made to send SNMP
notifications and syslog messages to remote destinations.
If the remote destination, as specified by tmnxStdDestAddr or
tmnxSyslogTargetAddr, is not reachable via the routing contexts
specified by tmnxEventPrimaryRoutePref and
tmnxEventSecondaryRoutePref, the Log utility will fail to send SNMP
notifications and syslog messages to the remote destination."
DEFVAL { inband }
::= { tmnxLogObjs 24 }
tmnxLogConfigEventsDamped OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogConfigEventsDamped specifies whether or not the
module generating tmnxConfigCreate, tmnxConfigDelete, and
tmnxConfigModify events applies a damping algorithm.
WARNING: While this event damping is original behavior
for some modules such as service manager, QoS, and filters it
can result in the NMS system database being out of sync because
of missed change events. On the other hand, if the damping
is disabled, 'false', it may take much longer for a large
CLI configuration file to be processed when manually 'exec'ed
after system bootup."
DEFVAL { true }
::= { tmnxLogObjs 25 }
tmnxLogEventHistoryObjs OBJECT IDENTIFIER ::= { tmnxLogObjs 26 }
tmnxLogEventHistGeneralObjs OBJECT IDENTIFIER ::= { tmnxLogEventHistoryObjs 1 }
tmnxLogExRbkOpTblLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxLogExRbkOpTblLastChange indicates the
value of sysUpTime at the time of the last modification of a row entry
in the tmnxLogExecRollbackOpTable."
::= { tmnxLogEventHistGeneralObjs 1 }
tmnxLogExRbkOpMaxEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the object tmnxLogExRbkOpMaxEntries specifies the maximum
number of row entries supported in the tmnxLogExecRollbackOpTable."
DEFVAL { 5 }
::= { tmnxLogEventHistGeneralObjs 2 }
tmnxLogExecRollbackOpTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogExecRollbackOpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxLogExecRollbackOpTable provides a history of
up to the last number of 'exec', 'load', rollback revert, and 'vsd'
operations specified by the value of tmnxLogExRbkOpMaxEntries.
The tmnxLogExecRollbackOpTable is intended to provide an aide to
Network Management Systems (NMS). The 'exec' or 'load' of a large
configuration file via the system's CLI, a large rollback revert
operation, or execution of 'vsd' configuration messages will generate
so many configuration change and other events in a short time that
neither the SROS's event logging utility nor the NMS can keep up with
them. This results in the SROS and/or NMS dropping events and requires
the NMS to perform a costly resynchronization of its management
database."
::= { tmnxLogEventHistoryObjs 3 }
tmnxLogExecRollbackOpEntry OBJECT-TYPE
SYNTAX TmnxLogExecRollbackOpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row entry in the tmnxLogExecRollbackOpTable. Entries in this
table are created and deleted by the agent."
INDEX { tmnxLogExRbkOpIndex }
::= { tmnxLogExecRollbackOpTable 1 }
TmnxLogExecRollbackOpEntry ::= SEQUENCE
{
tmnxLogExRbkOpIndex Unsigned32,
tmnxLogExRbkOpLastChanged TimeStamp,
tmnxLogExRbkOpType TmnxLogExRbkOperationType,
tmnxLogExRbkOpStatus INTEGER,
tmnxLogExRbkOpBegin TimeStamp,
tmnxLogExRbkOpEnd TimeStamp,
tmnxLogExRbkOpFile DisplayString,
tmnxLogExRbkOpUser TNamedItemOrEmpty,
tmnxLogExRbkOpNumEvents Unsigned32
}
tmnxLogExRbkOpIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpIndex is a unique value that indicates an
instance of an exec, load, rollback revert, or vsd operation. Only the
most recent instances are kept in this table. The maximum number of
row entries supported in this table is specified by the value of
tmnxLogExRbkOpMaxEntries."
::= { tmnxLogExecRollbackOpEntry 1 }
tmnxLogExRbkOpLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpLastChanged indicates the sysUpTime when an
object in this table was last modified. A Value 0 means that no change
was made to this row since it was created."
::= { tmnxLogExecRollbackOpEntry 2 }
tmnxLogExRbkOpType OBJECT-TYPE
SYNTAX TmnxLogExRbkOperationType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpType indicates the type of operation this
row entry represents."
::= { tmnxLogExecRollbackOpEntry 3 }
tmnxLogExRbkOpStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
inProgress (1),
success (2),
failed (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpStatus indicates the status of this exec,
load, rollback revert, or vsd operation."
::= { tmnxLogExecRollbackOpEntry 4 }
tmnxLogExRbkOpBegin OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpBegin indicates the sysUpTime when the
exec, load, rollback revert, or vsd operation began."
::= { tmnxLogExecRollbackOpEntry 5 }
tmnxLogExRbkOpEnd OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpEnd indicates the sysUpTime when the exec,
load, rollback revert, or vsd operation ended. A value of zero (0)
means that the operation has not completed."
::= { tmnxLogExecRollbackOpEntry 6 }
tmnxLogExRbkOpFile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpFile indicates the location and name of the
file used for the exec, load or rollback revert operation, otherwise
the value of this object is an empty string."
::= { tmnxLogExecRollbackOpEntry 7 }
tmnxLogExRbkOpUser OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpUser indicates the user who initiated the
exec or rollback revert operation."
::= { tmnxLogExecRollbackOpEntry 8 }
tmnxLogExRbkOpNumEvents OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkOpNumEvents indicates the number of
row entries in the associated tmnxLogExecRollbackEventTable
for this exec, load, rollback revert, or vsd operation.
It is updated only when the exec, load, rollback revert, or vsd
operation ends. A value of zero (0) means that the operatio
has not completed."
::= { tmnxLogExecRollbackOpEntry 9 }
tmnxLogExecRollbackEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogExecRollbackEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxLogExecRollbackEventTable provides a history
of mib tables modified or specific events generated during an exec,
load, rollback revert, or vsd operation."
::= { tmnxLogEventHistoryObjs 4 }
tmnxLogExecRollbackEventEntry OBJECT-TYPE
SYNTAX TmnxLogExecRollbackEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row entry in the tmnxLogExecRollbackEventTable. Each row
entry represents either an SNMP table that has been modified or a
specific event generated during an exec, load, rollback revert, or vsd
operation. Entries in this table are created and deleted by the agent."
INDEX {
tmnxLogExRbkOpIndex,
tmnxLogExRbkEventIndex
}
::= { tmnxLogExecRollbackEventTable 1 }
TmnxLogExecRollbackEventEntry ::= SEQUENCE
{
tmnxLogExRbkEventIndex Unsigned32,
tmnxLogExRbkEventOID OBJECT IDENTIFIER
}
tmnxLogExRbkEventIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkEventIndex is a unique value that indicates
an instance of an event generated during an exec, load, rollback
revert, or vsd operation."
::= { tmnxLogExecRollbackEventEntry 1 }
tmnxLogExRbkEventOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogExRbkEventOID indicates the object identifier of
either a mib table for which a generic change event was generated or
the notification object identifier of a specific event notification
generated during the the exec, load, rollback revert, or vsd
operation.
The generic change events are tmnxConfigCreate, tmnxConfigDelete,
tmnxConfigModify, and tmnxStateChange notifications. For these
event types, the value of tmnxLogExRbkEventOID is the object
identifier specified by the tmnxNotifyEntryOID varbind.
For specific events generated during an exec, load or rollback revert
or vsd, the value of this object is the notification object identifier
itself.
An object identifier will appear only once in this table."
::= { tmnxLogExecRollbackEventEntry 2 }
tmnxLogExRbkNotifyObjects OBJECT IDENTIFIER ::= { tmnxLogEventHistoryObjs 5 }
tmnxLogExecRollbackOpIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogExecRollbackOpIndex is a unique value that
indicates a row entry instance of an exec, load, rollback revert,
or vsd operation in the tmnxLogExecRollbackOpTable. It is included
in the 'exec', 'load' and rollback revert start and end notifications."
::= { tmnxLogExRbkNotifyObjects 1 }
tmnxLogExecRollbackOpType OBJECT-TYPE
SYNTAX TmnxLogExRbkOperationType
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The value of tmnxLogExecRollbackOpType indicates the type of
operation being performed. It is included in the 'exec', 'load'
and rollback revert start and end notifications."
::= { tmnxLogExRbkNotifyObjects 2 }
tmnxLogColdStartWaitTime OBJECT-TYPE
SYNTAX Unsigned32 (0..300)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogColdStartWaitTime specifies the time delay that
must pass before notifying specific CPM applications that a route is
available after a cold reboot."
DEFVAL { 0 }
::= { tmnxLogObjs 27 }
tmnxLogRouteRecoveryWaitTime OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of tmnxLogRouteRecoveryWaitTime specifies the time delay
that must pass before notifying specific CPM applications after the
recovery or change of a route during normal operation."
DEFVAL { 0 }
::= { tmnxLogObjs 28 }
tmnxEhsObjs OBJECT IDENTIFIER ::= { tmnxLogObjs 29 }
tmnxEhsGeneralObjs OBJECT IDENTIFIER ::= { tmnxEhsObjs 1 }
tmnxEhsHandlerTblLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxEhsHandlerTblLastChange indicates the
value of sysUpTime at the time of the last modification of a row in
the tmnxEhsHandlerTable."
::= { tmnxEhsGeneralObjs 1 }
tmnxEhsHandlerMaxEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the object tmnxEhsHandlerMaxEntries specifies the maximum
number of row entries supported in the tmnxEhsHandlerTable."
DEFVAL { 1500 }
::= { tmnxEhsGeneralObjs 2 }
tmnxEhsHEntryTblLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxEhsHEntryTblLastChange indicates the value
of sysUpTime at the time of the last modification of a row in the
tmnxEhsHEntryTable."
::= { tmnxEhsGeneralObjs 3 }
tmnxEhsHEntryMaxEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the object tmnxEhsHEntryMaxEntries specifies the maximum
number of row entries supported in the tmnxEhsHEntryTable."
DEFVAL { 1500 }
::= { tmnxEhsGeneralObjs 4 }
tmnxEhsTriggerTblLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxEhsTriggerTblLastChange indicates the
value of sysUpTime at the time of the last modification of a row in
the tmnxEhsTriggerTable."
::= { tmnxEhsGeneralObjs 5 }
tmnxEhsTriggerMaxEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the object tmnxEhsTriggerMaxEntries specifies the maximum
number of rows supported in the tmnxEhsTriggerTable."
DEFVAL { 1500 }
::= { tmnxEhsGeneralObjs 6 }
tmnxEhsTEntryTblLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxEhsTEntryTblLastChange indicates the value
of sysUpTime at the time of the last modification of a row entry in
the tmnxEhsTEntryTable."
::= { tmnxEhsGeneralObjs 7 }
tmnxEhsTEntryMaxEntries OBJECT-TYPE
SYNTAX Unsigned32 (0..5000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the object tmnxEhsTEntryMaxEntries specifies the maximum
number of row entries supported in the tmnxEhsTEntryTable."
DEFVAL { 1500 }
::= { tmnxEhsGeneralObjs 8 }
tmnxEhsHandlerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsHandlerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsHandlerTable contains a list of Event Handlers used by the
Event Handling System (EHS) Event Triggers."
::= { tmnxEhsObjs 2 }
tmnxEhsHandlerEntry OBJECT-TYPE
SYNTAX TmnxEhsHandlerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row entry in the tmnxEhsHandlerTable. Each entry
contains information about a specific Event Handling System (EHS)
Event Handler.
Rows are created and deleted via SNMP SET operations using
tmnxEhsHandlerRowStatus."
INDEX { tmnxEhsHandlerName }
::= { tmnxEhsHandlerTable 1 }
TmnxEhsHandlerEntry ::= SEQUENCE
{
tmnxEhsHandlerName TNamedItem,
tmnxEhsHandlerRowStatus RowStatus,
tmnxEhsHandlerDescription TItemDescription,
tmnxEhsHandlerLastChange TimeStamp,
tmnxEhsHandlerAdminStatus TmnxAdminState,
tmnxEhsHandlerOperStatus TmnxOperState
}
tmnxEhsHandlerName OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerName specifies the name of an Event
Handling System (EHS) Event Handler represented by this row in the
tmnxEhsHandlerTable."
::= { tmnxEhsHandlerEntry 1 }
tmnxEhsHandlerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerRowStatus specifies
the row status. It allows rows to be created
and deleted in the tmnxEhsHandlerTable.
If any associated rows exist in the tmnxEhsHEntryTable,
'destroy' will fail. All associated rows must be
destroyed first."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxEhsHandlerEntry 2 }
tmnxEhsHandlerDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerDescription specifies a user provided
description string for an EHS Handler. It can consist of any
printable, seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''H }
::= { tmnxEhsHandlerEntry 3 }
tmnxEhsHandlerLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerLastChange indicates the time this row
entry was last changed."
::= { tmnxEhsHandlerEntry 4 }
tmnxEhsHandlerAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerAdminStatus specifies the administrative
state of the EHS Event Handler."
DEFVAL { outOfService }
::= { tmnxEhsHandlerEntry 5 }
tmnxEhsHandlerOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerOperStatus indicates the operational state
of the EHS Event Handler."
::= { tmnxEhsHandlerEntry 6 }
tmnxEhsHandlerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsHandlerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsHandlerStatsTable contains operational data for Event
handlers used by the EHS Event Triggers."
::= { tmnxEhsObjs 3 }
tmnxEhsHandlerStatsEntry OBJECT-TYPE
SYNTAX TmnxEhsHandlerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsHandlerStatsTable. Each row contains
operational information about a specific EHS Event Handler.
Rows are created and deleted by the system as rows are created and
deleted in the tmnxEhsHandlerTable."
AUGMENTS { tmnxEhsHandlerEntry }
::= { tmnxEhsHandlerStatsTable 1 }
TmnxEhsHandlerStatsEntry ::= SEQUENCE
{
tmnxEhsHandlerStatsSuccess Unsigned32,
tmnxEhsHandlerStatsErrNoEntry Unsigned32,
tmnxEhsHandlerStatsErrAdmStatus Unsigned32
}
tmnxEhsHandlerStatsSuccess OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerStatsSuccess indicates the number of times
the EHS system triggers a handler, which can take corresponding action
specified in handler's entries"
::= { tmnxEhsHandlerStatsEntry 1 }
tmnxEhsHandlerStatsErrNoEntry OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerStatsErrNoEntry indicates the number of
times the EHS system triggers a handler, which can not take
corresponding action as there is no handler's entry specifying an
operation to perform."
::= { tmnxEhsHandlerStatsEntry 2 }
tmnxEhsHandlerStatsErrAdmStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHandlerStatsErrAdmStatus indicates the number of
times the EHS system triggers a handler, which can not take
corresponding action due to admin state of the handler.
The handler may be out-of-service due to tmnxEhsHandlerAdminStatus
being set to 'outOfService (3)'."
::= { tmnxEhsHandlerStatsEntry 3 }
tmnxEhsHEntryTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsHEntryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsHEntryTable contains a list of Event Handler Entries in an
EHS Event Handler."
::= { tmnxEhsObjs 4 }
tmnxEhsHEntryEntry OBJECT-TYPE
SYNTAX TmnxEhsHEntryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsHEntryTable. Each row
contains information about a specific Handler Entry.
Rows are created and deleted via SNMP SET operations using
tmnxEhsHEntryRowStatus."
INDEX {
tmnxEhsHandlerName,
tmnxEhsHEntryId
}
::= { tmnxEhsHEntryTable 1 }
TmnxEhsHEntryEntry ::= SEQUENCE
{
tmnxEhsHEntryId Unsigned32,
tmnxEhsHEntryRowStatus RowStatus,
tmnxEhsHEntryDescription TItemDescription,
tmnxEhsHEntryLastChange TimeStamp,
tmnxEhsHEntryAdminStatus TmnxAdminState,
tmnxEhsHEntryOperStatus TmnxOperState,
tmnxEhsHEntryScriptPlcyName TNamedItemOrEmpty,
tmnxEhsHEntryScriptPlcyOwner TNamedItemOrEmpty,
tmnxEhsHEntryMinDelay Unsigned32,
tmnxEhsHEntryLastExecuted TimeStamp
}
tmnxEhsHEntryId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryId specifies the index of an Event Entry in
the EHS Event Handler indicated by the value of tmnxEhsHandlerName."
::= { tmnxEhsHEntryEntry 1 }
tmnxEhsHEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryRowStatus specifies
the row status. It allows rows to be created
and deleted in the tmnxEhsHEntryTable.
If an associated row does not exist in the tmnxEhsHandlerTable, a
attempt to create a row will fail."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxEhsHEntryEntry 2 }
tmnxEhsHEntryDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryDescription specifies a user provided
description string for EHS Event Handler Entry. It can consist of any
printable, seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''H }
::= { tmnxEhsHEntryEntry 3 }
tmnxEhsHEntryLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryLastChange indicates the time this row was
last changed."
::= { tmnxEhsHEntryEntry 4 }
tmnxEhsHEntryAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryAdminStatus specifies the administrative
state of the EHS Event Handler Entry."
DEFVAL { inService }
::= { tmnxEhsHEntryEntry 5 }
tmnxEhsHEntryOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryOperStatus indicates the operational state
of the EHS Event Handler Entry."
::= { tmnxEhsHEntryEntry 6 }
tmnxEhsHEntryScriptPlcyName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryScriptPlcyName in combination with the value
of tmnxEhsHEntryScriptPlcyOwner specifies the script policy that can
be launched from this tmnxEhsHEntryTable row. The zero-length string
may be used to point to a non-existing script policy."
DEFVAL { ''H }
::= { tmnxEhsHEntryEntry 7 }
tmnxEhsHEntryScriptPlcyOwner OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryScriptPlcyOwner in combination with the
value of tmnxEhsHEntryScriptPlcyName specifies the script policy that
can be launched from this tmnxEhsHEntryTable row. The zero-length
string may be used to point to a non-existing script policy."
DEFVAL { ''H }
::= { tmnxEhsHEntryEntry 8 }
tmnxEhsHEntryMinDelay OBJECT-TYPE
SYNTAX Unsigned32 (0..604800)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryMinDelay specifies the minimum
time, in seconds, between executions of the script policy
specified by this EHS Event Handler Entry. A '0' value means
no delay is imposed."
DEFVAL { 0 }
::= { tmnxEhsHEntryEntry 9 }
tmnxEhsHEntryLastExecuted OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryLastExecuted indicates the time when handler
entry launch execution of action."
::= { tmnxEhsHEntryEntry 10 }
tmnxEhsHEntryStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsHEntryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsHEntryStatsTable contains operational data for Event
Handler Entries used by an EHS Event Handler."
::= { tmnxEhsObjs 5 }
tmnxEhsHEntryStatsEntry OBJECT-TYPE
SYNTAX TmnxEhsHEntryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row entry in the tmnxEhsHEntryStatsTable. Each row contains
operational information about a specific EHS Event Handler Entry.
Rows are created and deleted by the system as rows are created and
deleted in the tmnxEhsHEntryTable."
AUGMENTS { tmnxEhsHEntryEntry }
::= { tmnxEhsHEntryStatsTable 1 }
TmnxEhsHEntryStatsEntry ::= SEQUENCE
{
tmnxEhsHEntryStatsLaunchSuccess Unsigned32,
tmnxEhsHEntryStatsErrMinDelay Unsigned32,
tmnxEhsHEntryStatsErrLaunch Unsigned32,
tmnxEhsHEntryStatsErrAdmStatus Unsigned32
}
tmnxEhsHEntryStatsLaunchSuccess OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryStatsLaunchSuccess indicates the number of
successfully queued scripts by EHS handler entry."
::= { tmnxEhsHEntryStatsEntry 1 }
tmnxEhsHEntryStatsErrMinDelay OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryStatsErrMinDelay indicates the number of
cancelled script executions due to tmnxEhsHEntryMinDelay."
::= { tmnxEhsHEntryStatsEntry 2 }
tmnxEhsHEntryStatsErrLaunch OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryStatsErrLaunch indicates the number of
cancelled script executions due to launch failure."
::= { tmnxEhsHEntryStatsEntry 3 }
tmnxEhsHEntryStatsErrAdmStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsHEntryStatsErrAdmStatus indicates the number of
cancelled script executions due to admin state of the handler entry.
The handler entry may be out-of-service due to
tmnxEhsHEntryAdminStatus being set to 'outOfService (3)'."
::= { tmnxEhsHEntryStatsEntry 4 }
tmnxEhsTriggerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsTriggerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsTriggerTable contains a list of Event Triggers used by the
Event Handling System (EHS)."
::= { tmnxEhsObjs 6 }
tmnxEhsTriggerEntry OBJECT-TYPE
SYNTAX TmnxEhsTriggerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsTriggerTable. Each row
contains information about a specific Event Handling
system (EHS) Event Trigger.
Rows are created and deleted via SNMP SET operations using
tmnxEhsTriggerRowStatus."
INDEX {
tmnxEventAppIndex,
tmnxEventID
}
::= { tmnxEhsTriggerTable 1 }
TmnxEhsTriggerEntry ::= SEQUENCE
{
tmnxEhsTriggerRowStatus RowStatus,
tmnxEhsTriggerDescription TItemDescription,
tmnxEhsTriggerLastChange TimeStamp,
tmnxEhsTriggerAdminStatus TmnxAdminState,
tmnxEhsTriggerOperStatus TmnxOperState
}
tmnxEhsTriggerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerRowStatus specifies
the row status. It allows rows to be created
and deleted in the tmnxEhsTriggerTable.
If any associated rows exist in the tmnxEhsTEntryTable, 'destroy' will
fail with an 'inconsistentValue' error. All associated rows in the
tmnxEhsTEntryTable must be destroyed first."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxEhsTriggerEntry 1 }
tmnxEhsTriggerDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerDescription specifies a user provided
description string for an EHS Event Trigger. It can consist of any
printable, seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''H }
::= { tmnxEhsTriggerEntry 2 }
tmnxEhsTriggerLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerLastChange indicates the time this row was
last changed."
::= { tmnxEhsTriggerEntry 3 }
tmnxEhsTriggerAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerAdminStatus specifies the administrative
state of the EHS Event Trigger."
DEFVAL { outOfService }
::= { tmnxEhsTriggerEntry 4 }
tmnxEhsTriggerOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerOperStatus indicates the operational state
of the EHS Event Trigger."
::= { tmnxEhsTriggerEntry 5 }
tmnxEhsTriggerStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsTriggerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsTriggerStatsTable contains operational data for Event
Triggers used by the Event Handling System (EHS)."
::= { tmnxEhsObjs 7 }
tmnxEhsTriggerStatsEntry OBJECT-TYPE
SYNTAX TmnxEhsTriggerStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsTriggerStatsTable. Each row contains
operational information about a specific EHS Event Trigger.
Rows are created and deleted by the system as rows are created and
deleted in the tmnxEhsTriggerTable."
AUGMENTS { tmnxEhsTriggerEntry }
::= { tmnxEhsTriggerStatsTable 1 }
TmnxEhsTriggerStatsEntry ::= SEQUENCE
{
tmnxEhsTriggerStatsSuccess Unsigned32,
tmnxEhsTriggerStatsErrNoEntry Unsigned32,
tmnxEhsTriggerStatsErrAdmStatus Unsigned32
}
tmnxEhsTriggerStatsSuccess OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerStatsSuccess indicates the number of not
ignored logger event occurrences associated with EHS trigger."
::= { tmnxEhsTriggerStatsEntry 1 }
tmnxEhsTriggerStatsErrNoEntry OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerStatsErrNoEntry indicates the number of
ignored logger event occurrences associated with EHS trigger. Event is
ignored due to no trigger entry configured for this trigger."
::= { tmnxEhsTriggerStatsEntry 2 }
tmnxEhsTriggerStatsErrAdmStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTriggerStatsErrAdmStatus indicates the number of
ignored logger event occurrences associated with EHS trigger. Event is
ignored due to admin state of the trigger.
The trigger may be out-of-service due to tmnxEhsTriggerAdminStatus
being set to 'outOfService (3)'."
::= { tmnxEhsTriggerStatsEntry 3 }
tmnxEhsTEntryTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsTEntryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxEhsTEntryTable contains a list of Event Trigger Entries in an
EHS Event Trigger."
::= { tmnxEhsObjs 8 }
tmnxEhsTEntryEntry OBJECT-TYPE
SYNTAX TmnxEhsTEntryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsTEntryTable. Each row
contains information about a specific EHS Event Trigger
Entry.
Rows are created and deleted via SNMP SET operations using
tmnxEhsTEntryRowStatus."
INDEX {
tmnxEventAppIndex,
tmnxEventID,
tmnxEhsTEntryId
}
::= { tmnxEhsTEntryTable 1 }
TmnxEhsTEntryEntry ::= SEQUENCE
{
tmnxEhsTEntryId Unsigned32,
tmnxEhsTEntryRowStatus RowStatus,
tmnxEhsTEntryDescription TItemDescription,
tmnxEhsTEntryLastChange TimeStamp,
tmnxEhsTEntryAdminStatus TmnxAdminState,
tmnxEhsTEntryOperStatus TmnxOperState,
tmnxEhsTEntryLogFilterId TmnxLogFilterId,
tmnxEhsTEntryHandlerName TNamedItemOrEmpty,
tmnxEhsTEntryDebounceVal Unsigned32,
tmnxEhsTEntryDebounceTime Unsigned32
}
tmnxEhsTEntryId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryId specifies the index of a Trigger Entry in
the EHS Event Trigger indicated by the value of tmnxEventAppIndex and
tmnxEventID."
::= { tmnxEhsTEntryEntry 1 }
tmnxEhsTEntryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryRowStatus specifies
the row status. It allows entries to be created
and deleted in the tmnxEhsTEntryTable.
If an associated row does not exist in the tmnxEhsTriggerTable, an
attempt to create this row entry will fail."
REFERENCE
"See definition of RowStatus in RFC 2579, 'Textual
Conventions for SMIv2.'"
::= { tmnxEhsTEntryEntry 2 }
tmnxEhsTEntryDescription OBJECT-TYPE
SYNTAX TItemDescription
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryDescription specifies a user provided
description string for EHS Event Trigger Entry. It can consist of any
printable, seven-bit ASCII characters up to 80 characters in length."
DEFVAL { ''H }
::= { tmnxEhsTEntryEntry 3 }
tmnxEhsTEntryLastChange OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryLastChange indicates the time this row entry
was last changed."
::= { tmnxEhsTEntryEntry 4 }
tmnxEhsTEntryAdminStatus OBJECT-TYPE
SYNTAX TmnxAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryAdminStatus specifies the administrative
state of the EHS Event Trigger Entry."
DEFVAL { inService }
::= { tmnxEhsTEntryEntry 5 }
tmnxEhsTEntryOperStatus OBJECT-TYPE
SYNTAX TmnxOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryOperStatus indicates the operational state
of the EHS Event Trigger Entry."
::= { tmnxEhsTEntryEntry 6 }
tmnxEhsTEntryLogFilterId OBJECT-TYPE
SYNTAX TmnxLogFilterId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryLogFilterId specifies the logger filter
to apply to a generated logger event. If the logger filter match
succeeds, the actions indicated in the associated EHS Event Handler,
indicated by the value of tmnxEhsTEntryHandlerName, are applied.
A value of 0 indicates there is no associated logger filter and
therefore the associated EHS Event Handler is always applied."
DEFVAL { 0 }
::= { tmnxEhsTEntryEntry 7 }
tmnxEhsTEntryHandlerName OBJECT-TYPE
SYNTAX TNamedItemOrEmpty
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryHandlerName specifies the EHS Event Handler
to be applied. The zero-length string may be used to point to a
non-existing Event Handler."
DEFVAL { ''H }
::= { tmnxEhsTEntryEntry 8 }
tmnxEhsTEntryDebounceVal OBJECT-TYPE
SYNTAX Unsigned32 (0 | 2..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryDebounceVal specifies the number of times an
event has to occur within a specific time window given by
tmnxEhsTEntryDebounceTime for EHS Event to trigger a response."
DEFVAL { 0 }
::= { tmnxEhsTEntryEntry 9 }
tmnxEhsTEntryDebounceTime OBJECT-TYPE
SYNTAX Unsigned32 (0..604800)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryDebounceTime specifies the time window
within which a specific event must occur more than the value specified
by tmnxEhsTEntryDebounceVal for EHS to trigger a response."
DEFVAL { 0 }
::= { tmnxEhsTEntryEntry 10 }
tmnxEhsTEntryStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxEhsTEntryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxEhsTEntryStatsTable contains operational
data for Event Trigger Entries used by an EHS Event Trigger."
::= { tmnxEhsObjs 9 }
tmnxEhsTEntryStatsEntry OBJECT-TYPE
SYNTAX TmnxEhsTEntryStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines a row in the tmnxEhsTEntryStatsTable. Each row contains
operational information about a specific EHS Event Trigger Entry.
Rows are created and deleted by the system as row are created and
deleted in the tmnxEhsTEntryTable."
AUGMENTS { tmnxEhsTEntryEntry }
::= { tmnxEhsTEntryStatsTable 1 }
TmnxEhsTEntryStatsEntry ::= SEQUENCE
{
tmnxEhsTEntryStatsFilterMatch Unsigned32,
tmnxEhsTEntryStatsFilterFail Unsigned32,
tmnxEhsTEntryStatsErrAdminStatus Unsigned32,
tmnxEhsTEntryStatsErrFilter Unsigned32,
tmnxEhsTEntryStatsErrHandler Unsigned32,
tmnxEhsTEntryStatsTriggerCount Unsigned32,
tmnxEhsTEntryStatsDebounce Unsigned32
}
tmnxEhsTEntryStatsFilterMatch OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsFilterMatch indicates the number of
times a filter, for the specified trigger entry, matches an logger
event."
::= { tmnxEhsTEntryStatsEntry 1 }
tmnxEhsTEntryStatsFilterFail OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsFilterFail indicates the number of
times a filter, for the specified trigger entry, does not match an
logger event."
::= { tmnxEhsTEntryStatsEntry 2 }
tmnxEhsTEntryStatsErrAdminStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsErrAdminStatus indicates the number of
times the logger event will be ignored due to admin state of EHS
trigger entry.
The trigger entry may be out-of-service due to
tmnxEhsTEntryAdminStatus being set to 'outOfService (3)'."
::= { tmnxEhsTEntryStatsEntry 3 }
tmnxEhsTEntryStatsErrFilter OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsErrFilter indicates the number of times
the logger event will be ignored due to filter is not operational or
is not configured in EHS trigger entry."
::= { tmnxEhsTEntryStatsEntry 4 }
tmnxEhsTEntryStatsErrHandler OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsErrHandler indicates the number of
times the logger event will be ignored due to filter is not
operational or is not configured in EHS trigger entry."
::= { tmnxEhsTEntryStatsEntry 5 }
tmnxEhsTEntryStatsTriggerCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxEhsTEntryStatsTriggerCount indicates the number of
times script execution is triggered after filter match."
::= { tmnxEhsTEntryStatsEntry 6 }
tmnxEhsTEntryStatsDebounce OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the tmnxEhsTEntryStatsDebounce indicates the number of
times script is not executed due to debounce rule."
::= { tmnxEhsTEntryStatsEntry 7 }
tmnxLogCliSubscrTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogCliSubscrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tmnxLogCliSubscrTable contains information about CLI user session
subscriptions to logs."
::= { tmnxLogObjs 30 }
tmnxLogCliSubscrEntry OBJECT-TYPE
SYNTAX TmnxLogCliSubscrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each conceptual row represents information about a subscription of a
particular CLI user session to a particular log.
Entries in this table are created and destroyed automatically by the
system."
INDEX {
tmnxLogCliSubscrSession,
tmnxLogCliSubscrLog
}
::= { tmnxLogCliSubscrTable 1 }
TmnxLogCliSubscrEntry ::= SEQUENCE
{
tmnxLogCliSubscrSession Unsigned32,
tmnxLogCliSubscrLog TmnxLogIdIndex,
tmnxLogCliSubscrType INTEGER,
tmnxLogCliSubscrUser TNamedItem,
tmnxLogCliSubscrUserLoginTime DateAndTime,
tmnxLogCliSubscrUserIpAddrType InetAddressType,
tmnxLogCliSubscrUserIpAddr InetAddress
}
tmnxLogCliSubscrSession OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object tmnxLogCliSubscrSession indicates the unique
identifier of a CLI user session."
::= { tmnxLogCliSubscrEntry 1 }
tmnxLogCliSubscrLog OBJECT-TYPE
SYNTAX TmnxLogIdIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogCliSubscrLog indicates the unique identifier of an
event stream log.
It refers to a conceptual row in the tmnxLogIdTable."
::= { tmnxLogCliSubscrEntry 2 }
tmnxLogCliSubscrType OBJECT-TYPE
SYNTAX INTEGER {
telnet (1),
console (2),
ssh (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxLogCliSubscrType indicates the type of
session."
::= { tmnxLogCliSubscrEntry 3 }
tmnxLogCliSubscrUser OBJECT-TYPE
SYNTAX TNamedItem
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxLogCliSubscrUser indicates the name of the
user associated with the CLI session."
::= { tmnxLogCliSubscrEntry 4 }
tmnxLogCliSubscrUserLoginTime OBJECT-TYPE
SYNTAX DateAndTime (SIZE (11))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogCliSubscrUserLoginTime indicates the time the user
logged in."
::= { tmnxLogCliSubscrEntry 5 }
tmnxLogCliSubscrUserIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogCliSubscrUserIpAddrType indicates the address type
of tmnxLogCliSubscrUserIpAddr."
::= { tmnxLogCliSubscrEntry 6 }
tmnxLogCliSubscrUserIpAddr OBJECT-TYPE
SYNTAX InetAddress (SIZE (0|4|16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the object tmnxLogCliSubscrUserIpAddr indicates
the IP address of the user."
::= { tmnxLogCliSubscrEntry 7 }
tmnxLogApCustRecordPolicerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmnxLogApCustRecordPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Nokia SROS series tmnxLogApCustRecordPolicerTable allows to create
custom record policer information for a given accounting policy. Rows
can only be created for existing accounting policies (as defined in
tmnxLogApTable)."
::= { tmnxLogObjs 31 }
tmnxLogApCustRecordPolicerEntry OBJECT-TYPE
SYNTAX TmnxLogApCustRecordPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row contains the specification of the counters that must
be collected for a particular policer and accounting policy.
A conceptual row can be created and destroyed by means of the
tmnxLogApCrPolicerRowStatus object."
INDEX {
tmnxLogApPolicyId,
tmnxLogApCrPolicerId
}
::= { tmnxLogApCustRecordPolicerTable 1 }
TmnxLogApCustRecordPolicerEntry ::= SEQUENCE
{
tmnxLogApCrPolicerId Unsigned32,
tmnxLogApCrPolicerLastChanged TimeStamp,
tmnxLogApCrPolicerRowStatus RowStatus,
tmnxLogApCrPolicerICounters TmnxAccPlcyPolicerICounters,
tmnxLogApCrPolicerECounters TmnxAccPlcyPolicerECounters
}
tmnxLogApCrPolicerId OBJECT-TYPE
SYNTAX Unsigned32 (1..63)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of tmnxLogApCrPolicerId specifies the policer ID for which
counters will be collected in this custom record.
The counters that will be collected are defined in
tmnxLogApCrPolicerICounters and tmnxLogApCrPolicerECounters."
::= { tmnxLogApCustRecordPolicerEntry 1 }
tmnxLogApCrPolicerLastChanged OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of tmnxLogApCrPolicerLastChanged indicates the sysUpTime
when an object in this table was last modified.
A value of zero means that no change was made to this row since it was
created."
::= { tmnxLogApCustRecordPolicerEntry 2 }
tmnxLogApCrPolicerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row Status of the entry. This allows creation/deletion of rows in this
table."
::= { tmnxLogApCustRecordPolicerEntry 3 }
tmnxLogApCrPolicerICounters OBJECT-TYPE
SYNTAX TmnxAccPlcyPolicerICounters
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApCrPolicerICounters specifies the list of ingress
counters that need to be collected in this custom record."
DEFVAL { {} }
::= { tmnxLogApCustRecordPolicerEntry 4 }
tmnxLogApCrPolicerECounters OBJECT-TYPE
SYNTAX TmnxAccPlcyPolicerECounters
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of tmnxLogApCrPolicerECounters specifies the list of egress
counters that need to be collected in this custom record."
DEFVAL { {} }
::= { tmnxLogApCustRecordPolicerEntry 5 }
tmnxLogConformance OBJECT IDENTIFIER ::= { tmnxSRConfs 12 }
tmnxLogCompliances OBJECT IDENTIFIER ::= { tmnxLogConformance 1 }
tmnxLogV4v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 4.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV4v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogGroup,
tmnxSnmpTrapGroup,
tmnxLogEventsR2r1Group,
tmnxLogNotificationR3r0Group
}
::= { tmnxLogCompliances 4 }
tmnxLogV5v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 5.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV5v0Group
}
::= { tmnxLogCompliances 5 }
tmnxLogV6v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 6.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group
}
::= { tmnxLogCompliances 6 }
tmnxLogV6v1Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 6.1 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogAccountingPolicyV6v1Group
}
::= { tmnxLogCompliances 7 }
tmnxLogV7v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 7.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogRoutePreferenceV7v0Group
}
::= { tmnxLogCompliances 8 }
tmnxLogV9v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 9.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group
}
::= { tmnxLogCompliances 9 }
tmnxLogV8v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 7.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group
}
::= { tmnxLogCompliances 10 }
tmnxLogV10v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 10.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup
}
::= { tmnxLogCompliances 11 }
tmnxLogV11v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 11.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogEventsV11v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup,
tmnxLogApExtGroup,
tmnxLogAppRouteNotifV10v0Group,
tmnxLogApV11v0Group,
tmnxLogApCrV11v0Group
}
::= { tmnxLogCompliances 12 }
tmnxLogV13v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 13.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyV6v1Group,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogEventsV11v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup,
tmnxLogApExtGroup,
tmnxLogAppRouteNotifV10v0Group,
tmnxLogApV11v0Group,
tmnxLogApCrV11v0Group,
tmnxLogFilterMsgV13v0Group,
tmnxLogEHSV13v0Group
}
::= { tmnxLogCompliances 13 }
tmnxLogV14v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 14.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogEHSV14v0Group
}
::= { tmnxLogCompliances 14 }
tmnxLogV15v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 15.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogEventsV11v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup,
tmnxLogApExtGroup,
tmnxLogAppRouteNotifV10v0Group,
tmnxLogApV11v0Group,
tmnxLogApCrV11v0Group,
tmnxLogFilterMsgV13v0Group,
tmnxLogEHSV13v0Group,
tmnxLogEHSV14v0Group,
tmnxLogPythonGroup,
tmnxLogToSessionGroup,
tmnxLogToNetconfGroup
}
::= { tmnxLogCompliances 15 }
tmnxLogV16v0Compliance MODULE-COMPLIANCE
STATUS obsolete
DESCRIPTION
"The compliance statement for revision 16.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogEventsV11v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup,
tmnxLogApExtGroup,
tmnxLogAppRouteNotifV10v0Group,
tmnxLogApV11v0Group,
tmnxLogApCrV11v0Group,
tmnxLogFilterMsgV13v0Group,
tmnxLogEHSV13v0Group,
tmnxLogEHSV14v0Group,
tmnxLogPythonGroup,
tmnxLogToSessionGroup,
tmnxLogToNetconfGroup,
tmnxLogEventsV16v0Group,
tmnxLogCliSubscrGroup
}
::= { tmnxLogCompliances 16 }
tmnxLogV19v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for revision 19.0 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogGlobalGroup,
tmnxLogV5v0Group,
tmnxLogAccountingPolicyGroup,
tmnxLogAccountingPolicyCRV7v0Group,
tmnxLogFileIdGroup,
tmnxLogSyslogV5v0Group,
tmnxSnmpTrapV5v0Group,
tmnxSnmpTrapDestV6v0Group,
tmnxSnmpSetErrsGroup,
tmnxLogEventsV5v0Group,
tmnxLogEventsV11v0Group,
tmnxLogNotificationV6v0Group,
tmnxLogNotificationV9v0Group,
tmnxLogRoutePreferenceV7v0Group,
tmnxLogEventDampedV8v0Group,
tmnxLogApV9v0Group,
tmnxLogExRbkOpGroup,
tmnxLogApExtGroup,
tmnxLogAppRouteNotifV10v0Group,
tmnxLogApV11v0Group,
tmnxLogApCrV11v0Group,
tmnxLogFilterMsgV13v0Group,
tmnxLogEHSV13v0Group,
tmnxLogEHSV14v0Group,
tmnxLogPythonGroup,
tmnxLogToSessionGroup,
tmnxLogToNetconfGroup,
tmnxLogEventsV16v0Group,
tmnxLogCliSubscrGroup,
tmnxLogAcctPolicyCrV19v0Group,
tmnxLogApV19v0Group
}
::= { tmnxLogCompliances 17 }
tmnxLogV20v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for revision 20 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxLogNameGroup,
tmnxLogFilterNameGroup,
tmnxLogSnmpTrapGroupNameGroup,
tmnxLogFilterParamsNameGroup,
tmnxSyslogTargetNameGroup
}
::= { tmnxLogCompliances 18 }
tmnxLogV21v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for revision 21 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxSyslogTlsClntProfilNameGroup,
tmnxLogFileNameGroup
}
::= { tmnxLogCompliances 19 }
tmnxLogV22v0Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for revision 22 of TIMETRA-LOG-MIB."
MODULE
MANDATORY-GROUPS {
tmnxSnmpTrapDestV22v0Group
}
::= { tmnxLogCompliances 20 }
tmnxLogGroups OBJECT IDENTIFIER ::= { tmnxLogConformance 2 }
tmnxLogGlobalGroup OBJECT-GROUP
OBJECTS {
tmnxLogMaxLogs
}
STATUS current
DESCRIPTION
"The group of objects supporting management of event logging
capabilities on Nokia SROS series systems."
::= { tmnxLogGroups 1 }
tmnxLogAccountingPolicyGroup OBJECT-GROUP
OBJECTS {
tmnxLogApRowStatus,
tmnxLogApStorageType,
tmnxLogApAdminStatus,
tmnxLogApOperStatus,
tmnxLogApInterval,
tmnxLogApDescription,
tmnxLogApDefault,
tmnxLogApRecord,
tmnxLogApToFileId,
tmnxLogApPortType,
tmnxLogApAlign
}
STATUS current
DESCRIPTION
"The group of objects supporting management of accounting policies
capabilities on Nokia SROS series systems."
::= { tmnxLogGroups 3 }
tmnxLogFileIdGroup OBJECT-GROUP
OBJECTS {
tmnxLogFileIdRowStatus,
tmnxLogFileIdStorageType,
tmnxLogFileIdRolloverTime,
tmnxLogFileIdRetainTime,
tmnxLogFileIdAdminLocation,
tmnxLogFileIdOperLocation,
tmnxLogFileIdDescription,
tmnxLogFileIdLogType,
tmnxLogFileIdLogId,
tmnxLogFileIdPathName,
tmnxLogFileIdCreateTime,
tmnxLogFileIdBackupLoc
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log File destinations on
Nokia SROS series systems."
::= { tmnxLogGroups 4 }
tmnxLogSyslogGroup OBJECT-GROUP
OBJECTS {
tmnxSyslogTargetRowStatus,
tmnxSyslogTargetDescription,
tmnxSyslogTargetAddress,
tmnxSyslogTargetUdpPort,
tmnxSyslogTargetFacility,
tmnxSyslogTargetSeverity,
tmnxSyslogTargetMessagePrefix,
tmnxSyslogTargetMessagesDropped
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log Syslog destinations
on Nokia SROS series systems."
::= { tmnxLogGroups 5 }
tmnxSnmpTrapGroup OBJECT-GROUP
OBJECTS {
tmnxStgRowStatus,
tmnxStgDescription,
tmnxStgVersion,
tmnxStgNotifyCommunity,
tmnxStgSecurityLevel
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log SNMP notification
destinations on Nokia SROS series systems."
::= { tmnxLogGroups 6 }
tmnxLogEventsR2r1Group OBJECT-GROUP
OBJECTS {
tmnxEventAppName,
tmnxEventName,
tmnxEventSeverity,
tmnxEventControl,
tmnxEventCounter,
tmnxEventDropCount,
tmnxEventReset,
tmnxEventTest
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log Events on Nokia SROS
series systems release 2.1."
::= { tmnxLogGroups 10 }
tmnxLogNotifyObjsR3r0Group OBJECT-GROUP
OBJECTS {
tmnxLogFileDeletedLogId,
tmnxLogFileDeletedFileId,
tmnxLogFileDeletedLogType,
tmnxLogFileDeletedLocation,
tmnxLogFileDeletedName,
tmnxLogFileDeletedCreateTime,
tmnxLogTraceErrorTitle,
tmnxLogTraceErrorMessage
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log notifications on
Nokia SROS series systems."
::= { tmnxLogGroups 13 }
tmnxLogNotificationR3r0Group NOTIFICATION-GROUP
NOTIFICATIONS {
tmnxLogSpaceContention,
tmnxLogAdminLocFailed,
tmnxLogBackupLocFailed,
tmnxLogFileRollover,
tmnxLogFileDeleted,
tmnxTestEvent,
tmnxLogTraceError
}
STATUS obsolete
DESCRIPTION
"The group of notifications supporting the Log feature on Nokia SROS
series systems release 3.0."
::= { tmnxLogGroups 14 }
tmnxLogV4v0Group OBJECT-GROUP
OBJECTS {
tmnxLogIdRowStatus,
tmnxLogIdStorageType,
tmnxLogIdAdminStatus,
tmnxLogIdOperStatus,
tmnxLogIdDescription,
tmnxLogIdFilterId,
tmnxLogIdSource,
tmnxLogIdDestination,
tmnxLogIdFileId,
tmnxLogIdSyslogId,
tmnxLogIdMaxMemorySize,
tmnxLogIdConsoleSession,
tmnxLogIdForwarded,
tmnxLogIdDropped,
tmnxLogIdTimeFormat,
tmnxLogFilterRowStatus,
tmnxLogFilterDescription,
tmnxLogFilterDefaultAction,
tmnxLogFilterInUse,
tmnxLogFilterParamsRowStatus,
tmnxLogFilterParamsDescription,
tmnxLogFilterParamsAction,
tmnxLogFilterParamsApplication,
tmnxLogFilterParamsApplOperator,
tmnxLogFilterParamsNumber,
tmnxLogFilterParamsNumberOperator,
tmnxLogFilterParamsSeverity,
tmnxLogFilterParamsSeverityOperator,
tmnxLogFilterParamsSubject,
tmnxLogFilterParamsSubjectOperator,
tmnxLogFilterParamsSubjectRegexp
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of event logs on Nokia SROS
series systems."
::= { tmnxLogGroups 15 }
tmnxSnmpSetErrsGroup OBJECT-GROUP
OBJECTS {
tmnxSnmpSetErrsMax,
tmnxSseVersion,
tmnxSseSeverityLevel,
tmnxSseModuleId,
tmnxSseModuleName,
tmnxSseErrorCode,
tmnxSseErrorName,
tmnxSseErrorMsg,
tmnxSseExtraText,
tmnxSseTimestamp
}
STATUS current
DESCRIPTION
"The group of objects supporting management of SNMP SET failure error
messages."
::= { tmnxLogGroups 16 }
tmnxLogEventsV5v0Group OBJECT-GROUP
OBJECTS {
tmnxEventAppName,
tmnxEventName,
tmnxEventSeverity,
tmnxEventControl,
tmnxEventCounter,
tmnxEventDropCount,
tmnxEventReset,
tmnxEventThrottle,
tmnxEventTest,
tmnxEventThrottleLimit,
tmnxEventThrottleInterval
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log Events on Nokia SROS
series systems release 5.0."
::= { tmnxLogGroups 17 }
tmnxLogNotifyObjsV5v0Group OBJECT-GROUP
OBJECTS {
tmnxLogFileDeletedLogId,
tmnxLogFileDeletedFileId,
tmnxLogFileDeletedLogType,
tmnxLogFileDeletedLocation,
tmnxLogFileDeletedName,
tmnxLogFileDeletedCreateTime,
tmnxLogTraceErrorTitle,
tmnxLogTraceErrorMessage,
tmnxLogThrottledEventID,
tmnxLogThrottledEvents,
tmnxSysLogTargetId,
tmnxSysLogTargetProblemDescr
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log notifications on
Nokia SROS series systems release 5.0."
::= { tmnxLogGroups 18 }
tmnxLogNotificationV5v0Group NOTIFICATION-GROUP
NOTIFICATIONS {
tmnxLogSpaceContention,
tmnxLogAdminLocFailed,
tmnxLogBackupLocFailed,
tmnxLogFileRollover,
tmnxLogFileDeleted,
tmnxTestEvent,
tmnxLogTraceError,
tmnxLogEventThrottled,
tmnxSysLogTargetProblem
}
STATUS obsolete
DESCRIPTION
"The group of notifications supporting the Log feature on Nokia SROS
series systems release 5.0."
::= { tmnxLogGroups 19 }
tmnxLogSyslogV5v0Group OBJECT-GROUP
OBJECTS {
tmnxSyslogTargetRowStatus,
tmnxSyslogTargetDescription,
tmnxSyslogTargetUdpPort,
tmnxSyslogTargetFacility,
tmnxSyslogTargetSeverity,
tmnxSyslogTargetMessagePrefix,
tmnxSyslogTargetMessagesDropped,
tmnxSyslogTargetAddrType,
tmnxSyslogTargetAddr
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log Syslog destinations
on Nokia SROS series systems release 5.0."
::= { tmnxLogGroups 20 }
tmnxSnmpTrapV5v0Group OBJECT-GROUP
OBJECTS {
tmnxSnmpTrapLogDescription,
tmnxStdRowStatus,
tmnxStdRowLastChanged,
tmnxStdDestAddrType,
tmnxStdDestAddr,
tmnxStdDestPort,
tmnxStdDescription,
tmnxStdVersion,
tmnxStdNotifyCommunity,
tmnxStdSecurityLevel,
tmnxStdMaxTargets
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log SNMP notification
destinations on Nokia SROS series systems for release 5.0."
::= { tmnxLogGroups 21 }
tmnxLogV5v0Group OBJECT-GROUP
OBJECTS {
tmnxLogIdRowStatus,
tmnxLogIdStorageType,
tmnxLogIdAdminStatus,
tmnxLogIdOperStatus,
tmnxLogIdDescription,
tmnxLogIdFilterId,
tmnxLogIdSource,
tmnxLogIdDestination,
tmnxLogIdFileId,
tmnxLogIdSyslogId,
tmnxLogIdMaxMemorySize,
tmnxLogIdConsoleSession,
tmnxLogIdForwarded,
tmnxLogIdDropped,
tmnxLogIdTimeFormat,
tmnxLogFilterRowStatus,
tmnxLogFilterDescription,
tmnxLogFilterDefaultAction,
tmnxLogFilterInUse,
tmnxLogFilterParamsRowStatus,
tmnxLogFilterParamsDescription,
tmnxLogFilterParamsAction,
tmnxLogFilterParamsApplication,
tmnxLogFilterParamsApplOperator,
tmnxLogFilterParamsNumber,
tmnxLogFilterParamsNumberOperator,
tmnxLogFilterParamsSeverity,
tmnxLogFilterParamsSeverityOperator,
tmnxLogFilterParamsSubject,
tmnxLogFilterParamsSubjectOperator,
tmnxLogFilterParamsSubjectRegexp,
tmnxLogFilterParamsRouter,
tmnxLogFilterParamsRouterOperator,
tmnxLogFilterParamsRouterRegexp
}
STATUS current
DESCRIPTION
"The group of objects supporting management of event logs on Nokia SROS
series systems in release 5.0."
::= { tmnxLogGroups 22 }
tmnxLogObsoleteObjsV5v0Group OBJECT-GROUP
OBJECTS {
tmnxSyslogTargetAddress,
tmnxStgRowStatus,
tmnxStgDescription,
tmnxStgVersion,
tmnxStgNotifyCommunity,
tmnxStgSecurityLevel
}
STATUS current
DESCRIPTION
"The group of objects supporting management of TiMOS logs obsoleted on
Nokia SROS series systems in release 5.0."
::= { tmnxLogGroups 23 }
tmnxLogNotifyObjsV6v0Group OBJECT-GROUP
OBJECTS {
tmnxLogFileDeletedLogId,
tmnxLogFileDeletedFileId,
tmnxLogFileDeletedLogType,
tmnxLogFileDeletedLocation,
tmnxLogFileDeletedName,
tmnxLogFileDeletedCreateTime,
tmnxLogTraceErrorTitle,
tmnxLogTraceErrorMessage,
tmnxLogThrottledEventID,
tmnxLogThrottledEvents,
tmnxSysLogTargetId,
tmnxSysLogTargetProblemDescr,
tmnxLogNotifyApInterval,
tmnxStdReplayStartEvent,
tmnxStdReplayEndEvent
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of Log notifications on
Nokia SROS series systems release 6.0."
::= { tmnxLogGroups 24 }
tmnxLogNotificationV6v0Group NOTIFICATION-GROUP
NOTIFICATIONS {
tmnxLogSpaceContention,
tmnxLogAdminLocFailed,
tmnxLogBackupLocFailed,
tmnxLogFileRollover,
tmnxLogFileDeleted,
tmnxTestEvent,
tmnxLogTraceError,
tmnxLogEventThrottled,
tmnxSysLogTargetProblem,
tmnxLogAccountingDataLoss,
tmnxStdEventsReplayed
}
STATUS current
DESCRIPTION
"The group of notifications supporting the Log feature on Nokia SROS
series systems release 6.0."
::= { tmnxLogGroups 25 }
tmnxSnmpTrapDestV6v0Group OBJECT-GROUP
OBJECTS {
tmnxStdReplay,
tmnxStdReplayStart,
tmnxStdReplayLastTime
}
STATUS current
DESCRIPTION
"The group of objects added to support SNMP trap destinations in the
Nokia SROS series systems release 6.0."
::= { tmnxLogGroups 26 }
tmnxLogAccountingPolicyV6v1Group OBJECT-GROUP
OBJECTS {
tmnxLogApDefaultInterval
}
STATUS obsolete
DESCRIPTION
"The group of objects supporting management of accounting policies
capabilities on Nokia SROS series systems release 6.1."
::= { tmnxLogGroups 27 }
tmnxLogAccountingPolicyCRV7v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApCrLastChanged,
tmnxLogApCrSignChangeDelta,
tmnxLogApCrSignChangeQueue,
tmnxLogApCrSignChangeQICounters,
tmnxLogApCrSignChangeQECounters,
tmnxLogApCrSignChangeAACounters,
tmnxLogApCrAACounters,
tmnxLogApCrQueueRowStatus,
tmnxLogApCrQueueLastChanged,
tmnxLogApCrQueueICounters,
tmnxLogApCrQueueECounters
}
STATUS current
DESCRIPTION
"The group of objects supporting the creation of a custom record inside
a accounting policy on Nokia SROS series systems."
::= { tmnxLogGroups 28 }
tmnxLogRoutePreferenceV7v0Group OBJECT-GROUP
OBJECTS {
tmnxEventPrimaryRoutePref,
tmnxEventSecondaryRoutePref
}
STATUS current
DESCRIPTION
"The group of objects supporting routing preferences of Log Events on
Nokia SROS series systems release 7.0."
::= { tmnxLogGroups 29 }
tmnxLogNotifyObjsV8v0Group OBJECT-GROUP
OBJECTS {
tmnxLogFileDeletedLogId,
tmnxLogFileDeletedFileId,
tmnxLogFileDeletedLogType,
tmnxLogFileDeletedLocation,
tmnxLogFileDeletedName,
tmnxLogFileDeletedCreateTime,
tmnxLogTraceErrorTitle,
tmnxLogTraceErrorSubject,
tmnxLogTraceErrorMessage,
tmnxLogThrottledEventID,
tmnxLogThrottledEvents,
tmnxSysLogTargetId,
tmnxSysLogTargetProblemDescr,
tmnxLogNotifyApInterval,
tmnxStdReplayStartEvent,
tmnxStdReplayEndEvent
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log notifications on
Nokia SROS series systems release 8.0."
::= { tmnxLogGroups 30 }
tmnxLogNotificationV9v0Group NOTIFICATION-GROUP
NOTIFICATIONS {
tmnxLogEventOverrun
}
STATUS current
DESCRIPTION
"The group of notifications supporting the Log feature on Nokia SROS
series systems added in release 9.0."
::= { tmnxLogGroups 31 }
tmnxLogEventDampedV8v0Group OBJECT-GROUP
OBJECTS {
tmnxLogConfigEventsDamped
}
STATUS current
DESCRIPTION
"The group of objects supporting damping of change events on Nokia SROS
series systems added in release 8.0r7."
::= { tmnxLogGroups 32 }
tmnxLogApV9v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApDataLossCount,
tmnxLogApLastDataLossTimeStamp
}
STATUS current
DESCRIPTION
"The group of objects extending the application log table on Nokia SROS
series systems added in release 9.0."
::= { tmnxLogGroups 33 }
tmnxLogExRbkOpGroup OBJECT-GROUP
OBJECTS {
tmnxLogExRbkOpTblLastChange,
tmnxLogExRbkOpMaxEntries,
tmnxLogExRbkOpLastChanged,
tmnxLogExRbkOpType,
tmnxLogExRbkOpStatus,
tmnxLogExRbkOpBegin,
tmnxLogExRbkOpEnd,
tmnxLogExRbkOpFile,
tmnxLogExRbkOpUser,
tmnxLogExRbkOpNumEvents,
tmnxLogExRbkEventOID
}
STATUS current
DESCRIPTION
"The group of objects managing exec and rollback revert event history."
::= { tmnxLogGroups 34 }
tmnxLogNotifyObjsV10v0Group OBJECT-GROUP
OBJECTS {
tmnxLogExecRollbackOpIndex
}
STATUS current
DESCRIPTION
"The group of accessible-for-notify objects added to Nokia SROS series
systems release 10.0."
::= { tmnxLogGroups 35 }
tmnxLogApExtGroup OBJECT-GROUP
OBJECTS {
tmnxLogApToFileType
}
STATUS current
DESCRIPTION
"The group of objects extending the accounting policy table on Nokia
SROS series systems."
::= { tmnxLogGroups 36 }
tmnxLogAppRouteNotifV10v0Group OBJECT-GROUP
OBJECTS {
tmnxLogColdStartWaitTime,
tmnxLogRouteRecoveryWaitTime
}
STATUS current
DESCRIPTION
"The group of objects supporting notifications on completion of wait
time after cold reboot and route recovery on Nokia SROS series systems
release 10.0."
::= { tmnxLogGroups 37 }
tmnxLogApV11v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApIncludeSystemInfo
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log Accounting Policy
feature on Nokia SROS series systems in release 11.0."
::= { tmnxLogGroups 38 }
tmnxLogEventsV11v0Group OBJECT-GROUP
OBJECTS {
tmnxEventSpecThrottle,
tmnxEventSpecThrottleLimit,
tmnxEventSpecThrottleIntval,
tmnxEventSpecThrottleDef,
tmnxEventSpecThrottleLimitDef,
tmnxEventSpecThrottleIntvalDef
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log Events added for
Nokia SROS series systems release 11.0."
::= { tmnxLogGroups 40 }
tmnxLogApCrV11v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApCrAASubAttributes
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log Accounting Policy
Custom Record feature on Nokia SROS series systems in release 11.0."
::= { tmnxLogGroups 41 }
tmnxLogFilterMsgV13v0Group OBJECT-GROUP
OBJECTS {
tmnxLogFilterParamsMsg,
tmnxLogFilterParamsMsgOperator,
tmnxLogFilterParamsMsgRegexp
}
STATUS current
DESCRIPTION
"The group of objects supporting management of event logs on Nokia SROS
series systems in release 13.0."
::= { tmnxLogGroups 42 }
tmnxLogNotifyObjsV13v0Group OBJECT-GROUP
OBJECTS {
tmnxLogExecRollbackOpType
}
STATUS current
DESCRIPTION
"The group of accessible-for-notify objects added to Nokia SROS series
systems release 13.0."
::= { tmnxLogGroups 43 }
tmnxLogEHSV13v0Group OBJECT-GROUP
OBJECTS {
tmnxEhsHandlerTblLastChange,
tmnxEhsHandlerMaxEntries,
tmnxEhsHandlerRowStatus,
tmnxEhsHandlerDescription,
tmnxEhsHandlerLastChange,
tmnxEhsHandlerAdminStatus,
tmnxEhsHandlerOperStatus,
tmnxEhsHandlerStatsSuccess,
tmnxEhsHandlerStatsErrNoEntry,
tmnxEhsHandlerStatsErrAdmStatus,
tmnxEhsHEntryTblLastChange,
tmnxEhsHEntryMaxEntries,
tmnxEhsHEntryRowStatus,
tmnxEhsHEntryDescription,
tmnxEhsHEntryLastChange,
tmnxEhsHEntryAdminStatus,
tmnxEhsHEntryOperStatus,
tmnxEhsHEntryScriptPlcyName,
tmnxEhsHEntryScriptPlcyOwner,
tmnxEhsHEntryMinDelay,
tmnxEhsHEntryLastExecuted,
tmnxEhsHEntryStatsLaunchSuccess,
tmnxEhsHEntryStatsErrMinDelay,
tmnxEhsHEntryStatsErrLaunch,
tmnxEhsHEntryStatsErrAdmStatus,
tmnxEhsTriggerTblLastChange,
tmnxEhsTriggerMaxEntries,
tmnxEhsTriggerRowStatus,
tmnxEhsTriggerDescription,
tmnxEhsTriggerLastChange,
tmnxEhsTriggerAdminStatus,
tmnxEhsTriggerOperStatus,
tmnxEhsTriggerStatsSuccess,
tmnxEhsTriggerStatsErrNoEntry,
tmnxEhsTriggerStatsErrAdmStatus,
tmnxEhsTEntryTblLastChange,
tmnxEhsTEntryMaxEntries,
tmnxEhsTEntryRowStatus,
tmnxEhsTEntryDescription,
tmnxEhsTEntryLastChange,
tmnxEhsTEntryAdminStatus,
tmnxEhsTEntryOperStatus,
tmnxEhsTEntryLogFilterId,
tmnxEhsTEntryHandlerName,
tmnxEhsTEntryStatsFilterMatch,
tmnxEhsTEntryStatsFilterFail,
tmnxEhsTEntryStatsErrAdminStatus,
tmnxEhsTEntryStatsErrFilter,
tmnxEhsTEntryStatsErrHandler,
tmnxEhsTEntryStatsTriggerCount
}
STATUS current
DESCRIPTION
"The group of objects supporting the Event Handling System (EHS)
feature on Nokia SROS series systems in release 13.0."
::= { tmnxLogGroups 44 }
tmnxLogNotifyObjsV14v0Group OBJECT-GROUP
OBJECTS {
tmnxEhsHEntryMinDelayInterval
}
STATUS current
DESCRIPTION
"The group of accessible-for-notify objects added to Nokia SROS series
systems release 14.0."
::= { tmnxLogGroups 45 }
tmnxLogEHSV14v0Group OBJECT-GROUP
OBJECTS {
tmnxEhsTEntryDebounceVal,
tmnxEhsTEntryDebounceTime,
tmnxEhsTEntryStatsDebounce
}
STATUS current
DESCRIPTION
"The group of objects supporting the Event Handling System (EHS)
feature on Nokia SROS series systems in release 14.0."
::= { tmnxLogGroups 46 }
tmnxLogPythonGroup OBJECT-GROUP
OBJECTS {
tmnxLogIdPythonPolicy
}
STATUS current
DESCRIPTION
"The group of objects supporting Python for log messages on Nokia SROS
series systems."
::= { tmnxLogGroups 50 }
tmnxLogToSessionGroup OBJECT-GROUP
OBJECTS {
tmnxLogIdOperDestination
}
STATUS current
DESCRIPTION
"The group of objects supporting log messages on Nokia SROS series
systems."
::= { tmnxLogGroups 51 }
tmnxLogObsoleteObjsV15v0Group OBJECT-GROUP
OBJECTS {
tmnxLogIdConsoleSession,
tmnxLogApDefaultInterval
}
STATUS current
DESCRIPTION
"The group of objects supporting management of TiMOS logs obsoleted on
Nokia SROS series systems in release 15.0."
::= { tmnxLogGroups 52 }
tmnxLogToNetconfGroup OBJECT-GROUP
OBJECTS {
tmnxLogIdNetconfStream
}
STATUS current
DESCRIPTION
"The group of objects supporting NETCONF log messages on Nokia SROS
series systems."
::= { tmnxLogGroups 53 }
tmnxLogEventsV16v0Group OBJECT-GROUP
OBJECTS {
tmnxEventRepeat
}
STATUS current
DESCRIPTION
"The group of objects supporting management of Log Events added for
Nokia SROS series systems release 16.0."
::= { tmnxLogGroups 54 }
tmnxLogCliSubscrGroup OBJECT-GROUP
OBJECTS {
tmnxLogCliSubscrType,
tmnxLogCliSubscrUser,
tmnxLogCliSubscrUserLoginTime,
tmnxLogCliSubscrUserIpAddrType,
tmnxLogCliSubscrUserIpAddr
}
STATUS current
DESCRIPTION
"The group of objects that support read-only access to CLI users
subscriptions to event log messages on Nokia SROS series systems."
::= { tmnxLogGroups 55 }
tmnxLogAcctPolicyCrV19v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApCrPolicerLastChanged,
tmnxLogApCrPolicerRowStatus,
tmnxLogApCrPolicerICounters,
tmnxLogApCrPolicerECounters,
tmnxLogApCrSignChangePolicer,
tmnxLogApCrSignChangePICounters,
tmnxLogApCrSignChangePECounters
}
STATUS current
DESCRIPTION
"The group of objects supporting custom records inside a accounting
policy on Nokia SROS series systems added in release 19."
::= { tmnxLogGroups 56 }
tmnxLogApV19v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApAlign
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log Accounting Policy
feature on Nokia SROS series systems in release 19.0."
::= { tmnxLogGroups 57 }
tmnxLogNameGroup OBJECT-GROUP
OBJECTS {
tmnxLogIdName
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log Id Vs Name feature
on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 58 }
tmnxLogFilterNameGroup OBJECT-GROUP
OBJECTS {
tmnxLogFilterName
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log Filter Id Vs Name
feature on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 59 }
tmnxLogSnmpTrapGroupNameGroup OBJECT-GROUP
OBJECTS {
snmpNotifyId
}
STATUS current
DESCRIPTION
"The group of additonal objects supporting the Log Snmp-trap-group Id
vs Name feature on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 60 }
tmnxLogFilterParamsNameGroup OBJECT-GROUP
OBJECTS {
tmnxLogFilterParamsName
}
STATUS current
DESCRIPTION
"The group of additonal objects supporting the Log Filter Entry Id vs
Name feature on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 61 }
tmnxSyslogTargetNameGroup OBJECT-GROUP
OBJECTS {
tmnxSyslogTargetName
}
STATUS current
DESCRIPTION
"The group of additonal objects supporting the Log Syslog Id vs Name
feature on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 63 }
tmnxSyslogTlsClntProfilNameGroup OBJECT-GROUP
OBJECTS {
tmnxSyslogTlsClntProfileName
}
STATUS current
DESCRIPTION
"The group of additonal objects supporting the Log Syslog over TLS
feature on Nokia SROS series systems in release 20."
::= { tmnxLogGroups 64 }
tmnxLogApObsoleteObjsV21v0Group OBJECT-GROUP
OBJECTS {
tmnxLogApCrSignChangeOCntr,
tmnxLogApCrSignChangeOECounters,
tmnxLogApCrSignChangeOICounters,
tmnxLogApCrOverrideCntrRowStatus,
tmnxLogApCrOverrideCntrLastChngd,
tmnxLogApCrOverrideCntrICounters,
tmnxLogApCrOverrideCntrECounters
}
STATUS current
DESCRIPTION
"The group of objects supporting custom record counter override
information obsoleted on Nokia SROS series systems in release 21.0."
::= { tmnxLogGroups 65 }
tmnxLogFileNameGroup OBJECT-GROUP
OBJECTS {
tmnxLogFileIdName
}
STATUS current
DESCRIPTION
"The group of additional objects supporting the Log File Id Vs Name
feature on Nokia SROS series systems in release 21."
::= { tmnxLogGroups 66 }
tmnxSnmpTrapDestV22v0Group OBJECT-GROUP
OBJECTS {
tmnxStdDyingGasp
}
STATUS current
DESCRIPTION
"The group of objects added to support SNMP trap destinations in the
Nokia SROS series systems release 22.0."
::= { tmnxLogGroups 67 }
tmnxLogNotifyPrefix OBJECT IDENTIFIER ::= { tmnxSRNotifyPrefix 12 }
tmnxLogNotifications OBJECT IDENTIFIER ::= { tmnxLogNotifyPrefix 0 }
tmnxLogSpaceContention NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileIdRolloverTime,
tmnxLogFileIdRetainTime,
tmnxLogFileIdAdminLocation,
tmnxLogFileIdBackupLoc,
tmnxLogFileIdOperLocation,
tmnxLogFileIdLogId,
tmnxLogFileIdLogType
}
STATUS current
DESCRIPTION
"Generated when space contention occurs on the compact flash where
a log or accounting file creation is being attempted. Space contention
exists if:
Insufficient space is available on the compact flash to create
a file of the same size as the file being rolled over.
The first file of this type is being created and less than
10% of the total compact flash space is available.
A write operation on a log or accounting file is denied due to
lack of space."
::= { tmnxLogNotifications 1 }
tmnxLogAdminLocFailed NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileIdAdminLocation,
tmnxLogFileIdBackupLoc,
tmnxLogFileIdOperLocation,
tmnxLogFileIdLogId,
tmnxLogFileIdLogType
}
STATUS current
DESCRIPTION
"Generated when an attempt to create a log or accounting file at the
location specified by tmnxLogFileIdAdminLocation has failed. Indicates
that the backup location, if specified, will be used."
::= { tmnxLogNotifications 2 }
tmnxLogBackupLocFailed NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileIdAdminLocation,
tmnxLogFileIdBackupLoc,
tmnxLogFileIdOperLocation,
tmnxLogFileIdLogId,
tmnxLogFileIdLogType
}
STATUS current
DESCRIPTION
"Generated when an attempt to create a log or accounting file at the
location specified by tmnxLogFileIdBackupLoc has failed."
::= { tmnxLogNotifications 3 }
tmnxLogFileRollover NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileIdRolloverTime,
tmnxLogFileIdRetainTime,
tmnxLogFileIdAdminLocation,
tmnxLogFileIdBackupLoc,
tmnxLogFileIdOperLocation,
tmnxLogFileIdLogId,
tmnxLogFileIdLogType,
tmnxLogFileIdPathName,
tmnxLogFileIdCreateTime
}
STATUS current
DESCRIPTION
"Generated when an event log or accounting policy file's
rollover time has expired. The file located as indicated
by the value of tmnxLogFileIdOperLocation is closed and a new
file is created as specified by tmnxLogFileIdAdminLocation
and tmnxLogFileIdBackupLoc."
::= { tmnxLogNotifications 4 }
tmnxLogFileDeleted NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileDeletedLogId,
tmnxLogFileDeletedFileId,
tmnxLogFileDeletedLogType,
tmnxLogFileDeletedLocation,
tmnxLogFileDeletedName,
tmnxLogFileDeletedCreateTime
}
STATUS current
DESCRIPTION
"Generated when a closed event log or accounting policy file has been
deleted as part of the space contention cleanup."
::= { tmnxLogNotifications 5 }
tmnxTestEvent NOTIFICATION-TYPE
OBJECTS {
sysDescr,
sysObjectID
}
STATUS current
DESCRIPTION
"The tmnxTestEvent notification is generated when the object
tmnxEventTest is set to a value of 'doAction'. This event can
be used to test that remote log destinations such as syslog and
snmp trap destinations are configured correctly."
::= { tmnxLogNotifications 6 }
tmnxLogTraceError NOTIFICATION-TYPE
OBJECTS {
tmnxLogTraceErrorTitle,
tmnxLogTraceErrorMessage,
tmnxLogTraceErrorSubject
}
STATUS current
DESCRIPTION
"[CAUSE] The tmnxLogTraceError notification is generated when a
critical level trace error has been detected by the software. There
are multiple triggers for such a trace error.
[EFFECT] Effect varies depending on the specific trigger.
[RECOVERY] Contact Nokia Support."
::= { tmnxLogNotifications 7 }
tmnxLogEventThrottled NOTIFICATION-TYPE
OBJECTS {
tmnxLogThrottledEventID,
tmnxLogThrottledEvents
}
STATUS current
DESCRIPTION
"A tmnxLogEventThrottled notification is generated at the end of the
throttling interval when one or more events are dropped because the
throttling limit was reached for that interval."
::= { tmnxLogNotifications 8 }
tmnxSysLogTargetProblem NOTIFICATION-TYPE
OBJECTS {
tmnxSysLogTargetId,
tmnxSysLogTargetProblemDescr
}
STATUS current
DESCRIPTION
"A tmnxSysLogTargetProblem notification is generated when a problem is
encountered when trying to deliver data to the syslog destination
identified by the tmnxSysLogTargetId."
::= { tmnxLogNotifications 9 }
tmnxLogAccountingDataLoss NOTIFICATION-TYPE
OBJECTS {
tmnxLogFileIdRolloverTime,
tmnxLogFileIdRetainTime,
tmnxLogFileIdAdminLocation,
tmnxLogFileIdBackupLoc,
tmnxLogFileIdOperLocation,
tmnxLogFileIdLogId,
tmnxLogNotifyApInterval
}
STATUS current
DESCRIPTION
"A tmnxLogAccountingDataLoss notification is generated
when an accounting file is still being written to
when the next interval ends. The collection of
statistics for the past interval is immediately
stopped and collection is started for the next
interval. There are missing records in the file
for this past interval."
::= { tmnxLogNotifications 10 }
tmnxStdEventsReplayed NOTIFICATION-TYPE
OBJECTS {
tmnxStdDestAddrType,
tmnxStdDestAddr,
tmnxStdReplayStartEvent,
tmnxStdReplayEndEvent,
tmnxStdReplayStart
}
STATUS current
DESCRIPTION
"A tmnxStdEventsReplayed notification is generated when
an SNMP trap target address is added to the RTM (tmnxVRtrID)
following a period when the address had been removed.
The value of tmnxStdReplayStartEvent is the SNMP notification
request ID of the first event that was replayed. The value
of tmnxStdReplayEndEvent is the SNMP notification request ID of the
last missed event that was replayed. The value of
tmnxStdReplayStart is the request ID of the first event for
which there was no route to the trap target address."
::= { tmnxLogNotifications 11 }
tmnxLogEventOverrun NOTIFICATION-TYPE
OBJECTS {
tmnxLogThrottledEventID,
tmnxLogThrottledEvents
}
STATUS current
DESCRIPTION
"[CAUSE] A tmnxLogEventOverrun notification is generated
at the end of the overrun throttling interval when one or more
events of the type specified by tmnxLogThrottledEventID were
dropped because the logger input stream's input queue limit
was exceeded. The overrun throttling interval begins when the
input queue limit is first exceeded and ends when the number of
events in the input queue has dropped below an internal low
watermark. At that point a tmnxLogEventOverrun notification is
generated for each event type that had one or more events dropped
because of the input queue overrun. The number of dropped events
is specified by tmnxLogThrottledEvents.
[EFFECT] Logger events have been dropped and were not sent to any
log destination. tmnxEventDropCount has been incremented for
each event dropped because of input queue overrun.
[RECOVERY] The specific event information of dropped events
cannot be recovered. The frequency of input queue overruns
can be lessened by configuring as few event logs as possible,
especially those going to remote destinations such as file,
syslog and snmp notification logs."
::= { tmnxLogNotifications 12 }
END
|