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
|
CM-SYSTEM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32, IpAddress, Unsigned32
FROM SNMPv2-SMI
DateAndTime, DisplayString, TruthValue, RowStatus,
StorageType, VariablePointer, TEXTUAL-CONVENTION, MacAddress
FROM SNMPv2-TC
SnmpEngineID
FROM SNMP-FRAMEWORK-MIB
fsp150cm , FileTransferProtocol, TrapCounter
FROM ADVA-MIB
RestartType, IpVersion
FROM CM-COMMON-MIB
InterfaceIndex
FROM IF-MIB
LldpV2DestAddressTableIndex
FROM LLDP-V2-TC-MIB
snmpTargetAddrName
FROM SNMP-TARGET-MIB
Ipv6Address
FROM IPV6-TC
lldpV2RemEntry
FROM LLDP-V2-MIB;
cmSystemMIB MODULE-IDENTITY
LAST-UPDATED "202101270000Z"
ORGANIZATION "ADVA Optical Networking SE"
CONTACT-INFO
"Web URL: http://adva.com/
E-mail: support@adva.com
Postal: ADVA Optical Networking SE
Campus Martinsried
Fraunhoferstrasse 9a
82152 Martinsried/Munich
Germany
Phone: +49 089 89 06 65 0
Fax: +49 089 89 06 65 199 "
DESCRIPTION
"This module defines the System MIB definitions used by
the F3 (FSP150CM/CC) product lines.
Copyright (C) ADVA."
REVISION "202101270000Z"
DESCRIPTION
"
Notes from release 201910080000Z
a)Added the literals ntp-server-and-peering(4) and ntp-peering(5)
to CmNtpMode
Notes from release 201908260000Z
a)Added the literal ntpclock(5)
to TimeOfDayType
Notes from release 201912010000Z
(1) Added fileServicesCsrName
Notes from release 201901230000Z
a) added softwarePeerCondition object
b) added PeerUpgradeStatus object
Notes from release 201901100000Z,
(1)Added the following scalars
f3ApplicationsBootCompleted
f3ApplicationsUpTime.
Notes from release 201810290000Z
a) added softwareAffectedEntity object
b) added fileServicesAffectedEntity object
c) added AffectedEntity textual convention
Notes from release 201805140000Z
a) added sysLogFacilityCode scalar variable
Notes from release 201803130000Z
a) added usbPortEnabled scalar variable
Notes from release 201801170000Z
a) added fileServicesDbFileName variable
Notes from release 201802020000Z
a) added f3SysAuthKeyTable
Notes from release 201801030000Z
a) added sysLogTimestampFormat scalar variable
Notes from release 201711270000Z
a) added sysLogTimestampFormat scalar variable
b) added SysLogFormatType textual convention
Notes from release 201706210000Z
a) Modified aclTable index:
-New range for aclEntryIndex
Notes from release 201601150000Z
a) added f3SnmpLongIfAlias scalar variable
Notes from release 201307310000Z
Added raw data functionality objects f3RawDataObjects
-f3RawDataServerFtProtocol, f3RawDataServerFtServerName,
f3RawDataServerFtPasswd and f3RawDataServerFtUserId
Notes from release 201111220000Z
(i)Added configuration file functionality objects f3ConfigFileObjects
-f3ConfigFileActionFileName, f3ConfigFileAction
and f3ConfigFileTable
(ii)Added f3SystemFeatureTable
Notes from release 201106110000Z
(i)Added f3DatabaseSyncTrapObject and f3DatabaseSyncTrap for
NMS database sync facility in the case of bulk changes
Notes from release 201010140000Z
(i)Added the following literal to CmFileServicesMode
securitylogfileupload,
alarmlogfileupload,
auditlogfileupload,
(ii)Added the following literals to fileServicesAction
put-securitylog-file,
put-alarmlog-file,
put-auditlog-file
Notes from release 201005130000Z
Added the following literal to CmFileServicesMode
debugfileupload
Notes from release 201005130000Z
Added the following new objects,
f3SysLastResetType,
f3SysLastResetCauseType,
f3SysLastAbnormalResetTimestamp1,
f3SysLastAbnormalResetTimestamp2,
f3SysLastAbnormalResetTimestamp3
Notes from release 201003250000Z
This release is applicable to the FSP150CC Release 4.3
device GE201.
New objects added in this release,
ntpServerRoundTripDelay, ntpServerPrecision
Notes from release 200906080000Z
This release is applicable to the FSP150CC Release 4.1
devices GE101 and GE206.
New table added in this release,
f3SnmpTargetAddrExtTable
New notification added in this release,
cmSnmpDyingGaspTrap
New scalar added in this release,
serialPortDisconnectAutoLogOff, httpsEnabled, sftpEnabled
Notes from release 200803030000Z,
(1)MIB version ready for release FSP150CM 3.1."
::= {fsp150cm 2}
--
-- OID definitions
--
cmSystemObjects OBJECT IDENTIFIER ::= {cmSystemMIB 1}
cmSystemNotifications OBJECT IDENTIFIER ::= {cmSystemMIB 2}
cmSystemConformance OBJECT IDENTIFIER ::= {cmSystemMIB 3}
f3BulkNotifObjects OBJECT IDENTIFIER ::= {cmSystemMIB 4}
f3SystemBulkNotifications OBJECT IDENTIFIER ::= {cmSystemMIB 5}
cmErrorInfoObjects OBJECT IDENTIFIER ::= {cmSystemObjects 1}
cmCliObjects OBJECT IDENTIFIER ::= {cmSystemObjects 2}
cmAccessProtocols OBJECT IDENTIFIER ::= {cmSystemObjects 3}
cmSysSecObjects OBJECT IDENTIFIER ::= {cmSystemObjects 4}
cmSysModeObjects OBJECT IDENTIFIER ::= {cmSystemObjects 5}
cmDatabaseObjects OBJECT IDENTIFIER ::= {cmSystemObjects 6}
cmSoftwareObjects OBJECT IDENTIFIER ::= {cmSystemObjects 7}
cmFileServicesObjects OBJECT IDENTIFIER ::= {cmSystemObjects 8}
cmLogObjects OBJECT IDENTIFIER ::= {cmSystemObjects 9}
cmTimeObjects OBJECT IDENTIFIER ::= {cmSystemObjects 10}
cmSnmpObjects OBJECT IDENTIFIER ::= {cmSystemObjects 11}
cmResetCauseObjects OBJECT IDENTIFIER ::= {cmSystemObjects 12}
f3NotifObjects OBJECT IDENTIFIER ::= {cmSystemObjects 13}
f3ConfigFileObjects OBJECT IDENTIFIER ::= {cmSystemObjects 14}
cmFeatureManagementObjects OBJECT IDENTIFIER ::= {cmSystemObjects 15}
cmLldpV2DestAdressADVAExtObjects OBJECT IDENTIFIER ::= {cmSystemObjects 16}
f3LldpV2ConfigurationADVAExtObjects OBJECT IDENTIFIER ::= {cmSystemObjects 17}
snmpIPv6UDPDomain OBJECT IDENTIFIER ::= {cmSystemObjects 18}
f3RawDataObjects OBJECT IDENTIFIER ::= {cmSystemObjects 19}
f3LldpV2RemoteSystemsData OBJECT IDENTIFIER ::= {cmSystemObjects 20}
f3SimpleLtpObjects OBJECT IDENTIFIER ::= {cmSystemObjects 21}
f3SysAuthenKeyObjects OBJECT IDENTIFIER ::= {cmSystemObjects 22}
f3CallhomeServerObjects OBJECT IDENTIFIER ::= {cmSystemObjects 23}
f3SystemInfoObjects OBJECT IDENTIFIER ::= {cmSystemObjects 24}
f3ZtpObjects OBJECT IDENTIFIER ::= {cmSystemObjects 25}
--
-- Textual Conventions
--
CmAclFilterAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for Access Control List
permit - Permit access,
deny - Deny access."
SYNTAX INTEGER {
permit (1),
deny (2)
}
CmAutoProvMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for Auto Provisioning Mode
off - manual mode,
confirm - auto provisioning with confirmation
auto - true auto provisioning."
SYNTAX INTEGER {
off (1),
confirm (2),
auto (3)
}
CmNtpType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for NTP Types
unicast
multicast
anycast ."
SYNTAX INTEGER {
unicast (1)
}
CmNtpMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for NTP Types
client,
server,
both,
ntp-server-and-peering,
ntp-peering ."
SYNTAX INTEGER {
client (1),
server (2),
both (3),
ntp-server-and-peering(4),
ntp-peering(5)
}
CmNtpServerType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for NTP Server Types
primary
secondary ."
SYNTAX INTEGER {
not-applicable(0),
primary (1),
secondary (2)
}
CmFileTransferMethod ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for File Transfer Methods
ftp - FTP
scp - SCP
sftp- Secure FTP
web - WEB based, this is a read-only.
tftp- TFTP."
SYNTAX INTEGER {
ftp (1),
scp (2),
sftp (3),
web (4), -- This is a read-only enumeration
tftp (5)
}
CmVersionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Enumerations for Version Type
active,
standby."
SYNTAX INTEGER {
active (1),
standby (2),
staging (3)
}
CmFileServicesStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status of the user initiated file transfer.
in-progress - File transfer / processing is in progress.
success - File transfer and processing completed
successfully.
login-failed - Login failed.
file-not-found - File not found.
permission-denied - Permission denied.
server-unreachable - Server unreachable.
no-space-left - No space left on device.
invalid-file-type - Invalid file type.
nobackup-database - No backup database.
no-sw-toinstall - No software to install.
sw-not-installed - Software not installed.
validation-timer-notactive - Validation timer not active.
cannot-revert - Cannot revert.
install-failed - Installation failed.
upgrade-failed - Upgrade Failed.
revert-failed - Revert failed.
failure - Generic File transfer or processing failure.
badarchive - Bad Archive.
incompatarchive - Incompatible Archive."
SYNTAX INTEGER {
in-progress(1),
success(2),
login-failed(3),
file-not-found(4),
permission-denied(5),
server-unreachable(6),
no-space-left(7),
invalid-file-type(8),
nobackup-database(9),
no-sw-toinstall(10),
sw-not-installed(11),
validation-timer-notactive(12),
cannot-revert(13),
install-failed(14),
upgrade-failed(15),
revert-failed(16),
failure(17),
badarchive(18),
incompatarchive(19),
swVersionNotApproved(20)
}
CmFileServicesMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"File Services Operation.
idle - Idle and available.
dbupload - Database upload in progress.
dbdownload - Database download in progress.
dbbackup - Database backup in progress.
dbrestore - Database restore in progress.
swdownload - Software download in progress.
swinstall - Software install in progress.
swupgrade - Software upgrade in progress.
swvalidate - Software validation in progress.
swcancelupgrade - Software upgrade cancelled.
swrevert - Software upgrade reverted.
rebooting - System rebooting.
debugfileupload - Last Reset Cause debug file upload in progress.
securitylogfileupload - Security log upload in progress
alarmlogfileupload - Alarm log upload in progress
auditlogfileupload - Audit log upload in progress
dbpropagate - Database propagate in progress.
swpropagate - Software propagate in progress.
sysdiagfileupload - System diagnose file upload in progress.
sysdiagfilesave - System diagnose file save in progress.
configfileupload - Configuration file upload in progress.
configfiledownload - Configuration file download in progress.
defaultvalsfiledownload- Default Values file download in progress.
satresultupload - SAT test result file upload in progress.
sslcertificatedownload - SSL Certificate file download in progress.
sslprivatekeydownload - SSL Private Key file download in progress.
sslencprivatekeydownload - SSL Encrypted Private Key file download in progress.
sslkeypairdownload - SSL Key Pair file download in progress.
csrUpload - CSR Upload
rfc2544testreportupload - Rfc2544 Test Report Upload
"
SYNTAX INTEGER {
idle(1),
dbupload(2),
dbdownload(3),
dbbackup(4),
dbrestore(5),
swdownload(6),
swinstall(7),
swupgrade(8),
swvalidate(9),
swcancelupgrade(10),
swrevert(11),
rebooting(12),
debugfileupload(13),
securitylogfileupload(14),
alarmlogfileupload(15),
auditlogfileupload(16),
dbpropagate(17),
swpropagate(18),
sysdiagfileupload(19),
sysdiagfilesave(20),
configfileupload(21),
configfiledownload(22),
defaultvalsfiledownload(23),
satresultupload(24),
sslcertificatedownload(25),
sslprivatekeydownload(26),
sslencprivatekeydownload(27),
sslkeypairdownload(28),
csrUpload(29),
rfc2544testreportupload(30)
}
CmRestartCauseType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"System Restart Cause Type.
poweronreset - Interruption of power.
userinitiated - User initiated such as
software upgrade,
restore database,
restore system defaults,
restore factory defaults
unrecoverableappevent - Unrecoverable application event
unrecoverablesysevent - Unrecoverable system event
hwwatchdogexpired - Hardware watchdog expired
bustxntimeout - Bus transaction timeout
hardware - Hardware failure."
SYNTAX INTEGER {
poweronreset(1),
userinitiated(2),
unreoverableappevent(3),
unrecoverablesysevent(4),
hwwatchdogexpired(5),
bustxntimeout(6),
hardware(7),
buttonReset(8),
buttonFactoryDefaultReset(9)
}
F3ConfigFileAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the actions on configuration file.
none - Unused value
restart-with-file - Restart the system; System will revert to
using system defaults and will apply the
specified configuration files on restart
save-delta - Save delta configuration file : this
generates a running config delta w.r.t the
system defaults
remove - Remove specified configuration file
save-full - Save running configuration file and it will
generate a full running config file
load-config - Load specified delta config file without restarting."
SYNTAX INTEGER {
none(0),
restart-with-file(1),
save-delta(2),
remove(3),
save-full(4),
load-config(5)
}
F3ConfigFileStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the status of configuration file actions.
initial - Initial status
in-progress - Configuration File Operation is in progress
completed - Configuration File Operation completed
failed - Configuration File Operation failed "
SYNTAX INTEGER {
not-applicable(0),
initial(1),
in-progress(2),
completed(3),
failed(4)
}
TimeOfDayType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the System Time Of Day Type.
local - System time driven by local clock
ntp - System time driven by NTP client
ptp - System time driven by PTP Telecom Slave
timeclock - System time driven by time clock
ntpclock - System time driven by NTP server or peers"
SYNTAX INTEGER {
local(1),
ntp(2),
ptp(3),
timeclock(4),
ntpclock(5)
}
LldpV2ConfigurationADVAExtMaxNeighborsAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Discard: information selected to be discarded is the
information in the current LLDPDU.
Deleteentry:information selected to be discarded is
currently in the LLDP remote systems MIB."
SYNTAX INTEGER {
delete-entry(1),
discard-lldppdu(2)
}
FileTransferServerType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the file transfer server Type.
ipaddr - server ipv4 address
ipv6addr - server ipv6 address
hostname - server host name
URL - the URL of the remote server"
SYNTAX INTEGER {
ipaddr (1),
ipv6addr (2),
hostname (3),
url (4)
}
ServerConfigType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the file transfer server Type.
DHCP - Server is assigned by DHCP server
USERDEFINED - server assinged with user configuration."
SYNTAX INTEGER {
dhcp (1),
userdefined (2)
}
NtpAuthKeyType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the NTP Authentication Key Type."
SYNTAX INTEGER {
notApplicable (0),
md5 (1),
sha1 (2)
}
SysLogFormatType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the Syslog Timestamp Format Type.
ADVA - Adva Timestamp format
RFC3164 - RFC3164 Timestamp format."
SYNTAX INTEGER {
adva (1),
rfc3164 (2)
}
SysAuthKeyType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the System Authentication Key Type."
SYNTAX INTEGER {
notApplicable (0),
md5 (1)
}
AffectedEntity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the affected Entity."
SYNTAX INTEGER {
notApplicable (0),
none (1),
shelf (2),
card1 (3),
card2 (4)
}
--
-- Enumeration Type : PeerUpgradeReadyCondition
--
PeerUpgradeReadyCondition ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the Peer Upgrade Ready Condition Entity."
SYNTAX INTEGER {
notApplicable (1),
ignorealarms (2),
nocriticalalarms(3),
nomjandcrialarms(4),
noalarms (5)
}
--
-- Enumeration Type : PeerUpgradeStatus
--
PeerUpgradeStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Defines the Peer Upgrade Status Entity."
SYNTAX INTEGER {
inprogress (1),
ready (2)
}
CallhomeState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Describes States available for CallHome"
SYNTAX INTEGER {
completed (1),
failed (2),
inProgress (3),
notStarted (4)
}
F3TargetAddressLifetime ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Lifetime of target address."
SYNTAX INTEGER {
notApplicable (0),
duration1hour (1),
duration1day (2),
duration3days (3),
duration1week (4),
duration1month (5),
unlimited (6)
}
--
--cmErrorInfoObjects
--
lastSetErrorInformation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" This provides detailed information on the last SNMP SET
operation failure on the enterprise MIBs."
::= { cmErrorInfoObjects 1 }
--
-- cmCliObjects
--
cliCmdPromptPrefix OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User specified command prompt prefix, used by the CLI,
at the system level."
::= { cmCliObjects 1 }
--
-- cmSysSecObjects
--
securityBanner OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..2000))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to manage the security banner text
used for Graphical User Interface as well as CLI access."
::= { cmSysSecObjects 1 }
-- Access Control List (ACL)
aclTable OBJECT-TYPE
SYNTAX SEQUENCE OF ACLEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of entries corresponding to the access control
IP network addresses. Agent provides upto 10 access control
IP network addresses to be configured. Access is only
'permitted' from these IP network addresses."
::= { cmSysSecObjects 2 }
aclEntry OBJECT-TYPE
SYNTAX ACLEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing information applicable to a particular
Access Control IP Network Address that can be configured."
INDEX { aclEntryIndex }
::= { aclTable 1 }
ACLEntry ::= SEQUENCE {
aclEntryIndex Integer32,
aclEntryFilterAction CmAclFilterAction,
aclEntryNetworkAddress IpAddress,
aclEntryNetworkMask IpAddress,
aclEntryEnabled TruthValue,
aclEntryIpVersion IpVersion,
aclEntryNetworkIpv6Addr Ipv6Address,
aclEntryPrefixLength Integer32
}
aclEntryIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an ACL entry within an ACL. The manager may not assume any
particular semantics or meaning to this index, except that
it identifies a logical row in the table."
::= { aclEntry 1 }
aclEntryFilterAction OBJECT-TYPE
SYNTAX CmAclFilterAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the network IP address specified by aclEntryNetworkAddress
and aclEntryNetworkMask has permission to access the system.
Currently, only 'permit' is supported."
::= { aclEntry 2 }
aclEntryNetworkAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The network IP address of the entry that will be permitted to access
the system."
::= { aclEntry 3 }
aclEntryNetworkMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The network IP mask of the entry that will be permitted to access
the system."
::= { aclEntry 4 }
aclEntryEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This enables/disables the entity specified by
aclEntryNetworkAddress and aclEntryNetworkMask to access
the system."
::= { aclEntry 5 }
aclEntryIpVersion OBJECT-TYPE
SYNTAX IpVersion
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ip version."
::= { aclEntry 6 }
aclEntryNetworkIpv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipv6 adress."
::= { aclEntry 7 }
aclEntryPrefixLength OBJECT-TYPE
SYNTAX Integer32 (0..128)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipv6 Prefix length."
::= { aclEntry 8 }
serialPortDisconnectAutoLogOff OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to manage the property of the system, which
causes Auto Logoff of the user session on the serial port, when
the serial port is disconnected."
::= { cmSysSecObjects 3 }
securityPromptEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows management of the CLI security prompt."
::= { cmSysSecObjects 4 }
--
-- cmAccessProtocols
--
telnetEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the TELNET protocol on the
system."
::= { cmAccessProtocols 1 }
sshEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the Secure Shell protocol
on the system."
::= { cmAccessProtocols 2 }
ftpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the File Transfer Protocol
(FTP) on the system."
::= { cmAccessProtocols 3 }
scpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the Secure Copy (SCP)
on the system."
::= { cmAccessProtocols 4 }
serialPortEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the Serial Port
on the system."
::= { cmAccessProtocols 5 }
httpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the HTTP protocol
on the system."
::= { cmAccessProtocols 6 }
httpsEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the HTTP protocol
on the system."
::= { cmAccessProtocols 7 }
sftpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the SFTP protocol
on the system."
::= { cmAccessProtocols 8 }
tftpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the TFTP protocol
on the system."
::= { cmAccessProtocols 9 }
netconfOverSSHEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the NETCONF over SSH
on the system."
::= { cmAccessProtocols 10 }
usbPortEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the USB Host Port
on the system."
::= { cmAccessProtocols 11 }
--
--system Mode Objects
--
ntpMode OBJECT-TYPE
SYNTAX CmNtpMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to manage the Network Time Protocol (NTP)
mode on the system. Currently, the system only supports
'client' mode."
::= { cmSysModeObjects 1 }
autoProvMode OBJECT-TYPE
SYNTAX INTEGER {
off(1),
confirm(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to manage the Auto Provisioning Mode
on the system. If the auto provisioning mode is 'off', auto
discovery is disabled. Network Elements (shelves) need to be
manually configured from the user interfaces. If the auto
provisioning mode is 'confirm', Network Elements (shelves) are
auto discovered, however, they need to be accepted explicitly from
user interfaces to be managed. If the auto provisioning mode
is 'auto', Network Elements (shelves) are auto discovered and
auto provisioned, as permanent, in the system."
::= { cmSysModeObjects 2 }
sysTimeOfDayType OBJECT-TYPE
SYNTAX TimeOfDayType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object provides ability to configure System Time of Day source.
This can be local, ntp or ptp.
Before setting sysTimeOfDayType the f3PtpSysTimeOfDayClock object must be
set to configure PTP Telecom Slave object to be used as Clock source."
::= { cmSysModeObjects 3 }
ntpServerConfigType OBJECT-TYPE
SYNTAX ServerConfigType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ntp server configure type."
::= { cmSysModeObjects 4 }
sysLogServerConfigType OBJECT-TYPE
SYNTAX ServerConfigType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the sys log server configure type."
::= { cmSysModeObjects 5 }
sysUseUtcLeapOffsetEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute indicates whether to use the currentUtcLeapOffset
in Announce message from PTP to get UTC time from TAI based
timestamps in case we want DM/TWAMP timestamping based on UTC time.
This attribute only works when PTP/TimeClock is configured as source of system time of day."
::= { cmSysModeObjects 6 }
sysLogTimestampFormat OBJECT-TYPE
SYNTAX SysLogFormatType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the syslog server timestamp format type."
::= { cmSysModeObjects 7 }
sysLogFacilityCode OBJECT-TYPE
SYNTAX Integer32 (0..23)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the syslog server facility code."
::= { cmSysModeObjects 8 }
--
-- File Services functionality
--
fileServicesAction OBJECT-TYPE
SYNTAX INTEGER {
not-applicable(0),
get-database(1),
put-database(2),
software-copy(3),
get-sys-database(4),
put-sys-database(5),
get-defaultsvalue-file(6),
put-sysresetdebuginfo-file(7),
put-securitylog-file(8),
put-alarmlog-file(9),
put-auditlog-file(10),
get-config-file(11),
put-config-file(12),
put-sat-result(13),
get-ssl-certificate(14),
get-ssl-private-key(15),
get-ssl-encrypt-private-Key(16),
get-ssl-key-pair(17),
put-csr(18),
put-rfc2544-test-report(19)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is write only. Setting this object initiates
a file transfer
Supported actions are:
get-database(1) - Copy a backup database from a
remote server and place it in the staging
area. (See databaseAction)
put-database(2) - Copy a backup database to a remote
server. (See databaseAction)
software-copy(3) - Transfer a software image file to the
system and write it to the standby
partition.
get-sys-database(4) - Copy a system database from a
remote server and place it in the staging
area. (See databaseAction)
put-sys-database(5) - Copy a system database to a remote
server. (See databaseAction)
get-defaultsvalue-file(6) - Transfer the Defaults Value file
to the system.
put-sysresetdebuginfo-file(7) - Transfer the System Reset Debug Information
file to a remote server.
put-securitylog-file(8) - Transfer the System Security Log Information
file to a remote server.
put-alarmlog-file(9) - Transfer the System Alarm Log Information
file to a remote server.
put-audit-file(10) - Transfer the System Audit Log Information
file to a remote server.
get-config-file(11) - Transfer the Configuration File from a remote server.
put-config-file(12) - Transfer the Configuration File to a remote server.
put-sat-result(13) - Transfer the SAT test result file to a remote server.
get-ssl-certificate(14) - Transfer the SSL Certificate file to the system.
get-ssl-private-key(15) - Transfer the SSL Private Key file to the system.
get-ssl-encrypt-private-Key(16) - Transfer the SSL Encrypted Private Key file to the system.
get-ssl-key-pair(17) - Transfer the SSL Key Pair file to the system.
put-csr(18) - Transfer the CSR file to the system.
put-rfc2544-test-report(19) - Transfer the Rfc2544 test report to the system."
::= { cmFileServicesObjects 1 }
fileServicesMethod OBJECT-TYPE
SYNTAX CmFileTransferMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the method of transferring the file. Note
that web(4) is a read-only enumeration."
::= { cmFileServicesObjects 2 }
fileServicesServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the remote server. The value of this
object is cleared when fileServicesAction is set."
::= { cmFileServicesObjects 3 }
fileServicesUserId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User ID to use to authenticate the file transfer. The value
of this object is cleared when fileServicesAction is set."
::= { cmFileServicesObjects 4 }
fileServicesPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User password to authenticate the file transfer.
Reading this object will return an empty string if the
password has not been set or ***** if the password has
been set. The value of this object is cleared when
fileServicesAction is set."
::= { cmFileServicesObjects 5 }
fileServicesRemoteFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Path and name of the remote file. The value of this object
is cleared when fileServicesAction is set."
::= { cmFileServicesObjects 6 }
fileServicesStatus OBJECT-TYPE
SYNTAX CmFileServicesStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the user initiated file transfer."
::= { cmFileServicesObjects 7 }
fileServicesPercentComplete OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percent completion of operation."
::= { cmFileServicesObjects 8 }
fileServicesMode OBJECT-TYPE
SYNTAX CmFileServicesMode
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides information on the current state
of file services."
::= { cmFileServicesObjects 9 }
fileServicesServerType OBJECT-TYPE
SYNTAX FileTransferServerType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the remote server's address type."
::= { cmFileServicesObjects 10 }
fileServicesServerIpv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IPv6 address of the remote server. The value of this
object is cleared when fileServicesAction is set."
::= { cmFileServicesObjects 11 }
fileServicesDbFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the upload unique database file."
::= { cmFileServicesObjects 12 }
fileServicesAffectedEntity OBJECT-TYPE
SYNTAX AffectedEntity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Affected Entity."
::= { cmFileServicesObjects 13 }
fileServicesSslKeyPairName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a unique name for the SSL key pair."
::= { cmFileServicesObjects 14 }
fileServicesDecryptionPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the decryption password for the SSL file."
::= { cmFileServicesObjects 15 }
fileServicesCsrName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a unique name for the CSR."
::= { cmFileServicesObjects 16 }
--
--Database Objects
--
databaseAction OBJECT-TYPE
SYNTAX INTEGER {
not-applicable(0),
backup(1),
restore(2),
activate(3),
save-sysdefaults(4),
new-sysdefaults(5),
restore-sysdefaults(6),
restore-factorydefaults(7),
propagate-to-standby-nemi(8),
force-normal(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Initiates a configuration database action. This object is
write only. Supported actions are:
backup(1) - Backup the saved configuration database.
restore(2) - Restore the database to the standby partition.
activate(3) - Switches the standby and active partitions and
restarts the system.
save-sysdefaults(4) - Save the database as system defaults.
new-sysdefaults(5) - Restart the system and overwrite the
old system default database with the
factory default database.
restore-sysdefaults(6) - Restart the system using the system
default database.
restore-factorydefaults(7) - Restart the system using the factory
default database.
propagate-to-standby-nemi(8) - Propagate the running database
to standby NEMI and activate it.
force-normal(9) - Accept the database of the NEMI when the NEMI is in DB_maint status."
::= { cmDatabaseObjects 1 }
databaseLastSaveTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object gives value of the last database save time."
::= { cmDatabaseObjects 2 }
databaseTable OBJECT-TYPE
SYNTAX SEQUENCE OF DatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists information about thns."
::= { cmDatabaseObjects 3 }
databaseEntry OBJECT-TYPE
SYNTAX DatabaseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the databaseTable."
INDEX { databaseIndex }
::= { databaseTable 1 }
DatabaseEntry ::= SEQUENCE {
databaseIndex Integer32,
databaseType CmVersionType,
databaseVersion DisplayString
}
databaseIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an entry within the databaseTable."
::= { databaseEntry 1 }
databaseType OBJECT-TYPE
SYNTAX CmVersionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of database partition."
::= { databaseEntry 2 }
databaseVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The database version string."
::= { databaseEntry 3 }
databaseActionPassphrase OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Pass-phrase used to generate key for encrypting private keys."
::= { cmDatabaseObjects 4 }
--
-- Software Upgrade
--
softwareAction OBJECT-TYPE
SYNTAX INTEGER {
not-applicable(0),
install(1),
schedule-upgrade(2),
cancel-upgrade(3),
validate-upgrade(4),
revert-upgrade(5),
propagate-to-standby-nemi(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is write only. Setting this object initiates
the specified action.
Supported actions are:
install(1) - Install software.
schedule-upgrade(2) - Schedule a software upgrade. At the
scheduled time, the system will reboot and
load the software image stored on the
standby partition. The scheduled time
can be specified by softwareUpgradeTime.
Also see softwareValidationTimer.
cancel-upgrade(3) - Cancel a scheduled software upgrade.
validate-upgrade(4) - Indicate software as valid and cancel the
validation timer.
revert-upgrade(5) - Revert to previous software image if it
still exists.
propagate-to-standby-nemi(6) - Propagate the running software release
to standby NEMI and active it."
::= { cmSoftwareObjects 1 }
softwareUpgradeTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the date and time to perform a software upgrade reboot.
If this object is set to a date and time in the past or has never
been set, the upgrade reboot will happen as soon as softwareAction
is set to schedule-upgrade(2). This value becomes read-only when
an upgrade has been scheduled. Default value is 1-1-2000 00:00:00."
::= { cmSoftwareObjects 2 }
softwareValidationTimer OBJECT-TYPE
SYNTAX INTEGER (0 | 10..720)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time in minutes before the system will reboot and revert to the active
software after a software upgrade. If set to 0, the timer is
disabled and the software will automatically be validated after
a software upgrade reboot. This object becomes read-only when
the software validation timer is active. Default value is 0.
When enabled, valid values of the timer range from 10 minutes to 720 minutes."
::= { cmSoftwareObjects 3 }
softwareTable OBJECT-TYPE
SYNTAX SEQUENCE OF SoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists information about the software installed
in the active and standby partitions."
::= { cmSoftwareObjects 4 }
softwareEntry OBJECT-TYPE
SYNTAX SoftwareEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the softwareTable."
INDEX { softwareIndex }
::= { softwareTable 1 }
SoftwareEntry ::= SEQUENCE {
softwareIndex Integer32,
softwareType CmVersionType,
softwareVersion DisplayString
}
softwareIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an entry within the softwareTable."
::= { softwareEntry 1 }
softwareType OBJECT-TYPE
SYNTAX CmVersionType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of software partition."
::= { softwareEntry 2 }
softwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software version string."
::= { softwareEntry 3 }
softwareAffectedEntity OBJECT-TYPE
SYNTAX AffectedEntity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Affected Entity."
::= { cmSoftwareObjects 5 }
softwarePeerCondition OBJECT-TYPE
SYNTAX PeerUpgradeReadyCondition
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Peer Upgrade Ready Condition Entity."
::= { cmSoftwareObjects 6 }
peerUpgradeStatus OBJECT-TYPE
SYNTAX PeerUpgradeStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Peer Upgrade Status Entity."
::= { cmSoftwareObjects 7 }
--
--Logging
--sysLogServer
--
cmSysLogObjects OBJECT IDENTIFIER ::= {cmLogObjects 1}
cmSecLogObjects OBJECT IDENTIFIER ::= {cmLogObjects 2}
cmAuditLogObjects OBJECT IDENTIFIER ::= {cmLogObjects 3}
cmAlarmLogObjects OBJECT IDENTIFIER ::= {cmLogObjects 4}
sysLogServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysLogServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows configuration of the remote syslog hosts."
::= { cmSysLogObjects 1 }
sysLogServerEntry OBJECT-TYPE
SYNTAX SysLogServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the sysLogServerTable."
INDEX { sysLogServerIndex }
::= { sysLogServerTable 1 }
SysLogServerEntry ::= SEQUENCE {
sysLogServerIndex Integer32,
sysLogIpAddress IpAddress,
sysLogPort Integer32,
sysLogIpVersion IpVersion,
sysLogIpv6Addr Ipv6Address
}
sysLogServerIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer index value used to uniquely identify
an entry within the sysLogServerTable."
::= { sysLogServerEntry 1 }
sysLogIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the remote syslog server. Value of 0.0.0.0 indicates
the sys log server is not configured."
::= { sysLogServerEntry 2 }
sysLogPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Optional port address of the remote log server. If not specified,
the default port for the standard syslog utility (UDP Port 514)
will be used."
::= { sysLogServerEntry 3 }
sysLogIpVersion OBJECT-TYPE
SYNTAX IpVersion
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ip version."
::= { sysLogServerEntry 4 }
sysLogIpv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipv6 address."
::= { sysLogServerEntry 5 }
--
-- security log
--
secLog2sysLogEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the system security log to syslog."
::= { cmSecLogObjects 1 }
--
-- audit log
--
auditLog2sysLogEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the system audit log to syslog."
::= { cmAuditLogObjects 1 }
auditLog2fileEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the system audit log to file."
::= { cmAuditLogObjects 2 }
--
-- alarm log
--
alarmLog2sysLogEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the system alarm log to syslog."
::= { cmAlarmLogObjects 1 }
alarmLog2fileEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the system alarm log to file."
::= { cmAlarmLogObjects 2 }
--
--NTP client
--
ntpClientEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This allows to enable/disable the NTP client."
::= { cmTimeObjects 1 }
ntpPrimaryServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the primary remote NTP time server. Value of 0.0.0.0
indicates the NTP server is not configured."
::= { cmTimeObjects 2 }
ntpBackupServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the backup remote NTP time server. Value of 0.0.0.0
indicates the NTP server is not configured."
::= { cmTimeObjects 3 }
ntpType OBJECT-TYPE
SYNTAX CmNtpType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of communication with the remote NTP server."
::= { cmTimeObjects 4 }
ntpActiveServer OBJECT-TYPE
SYNTAX CmNtpServerType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of which server is currently active."
::= { cmTimeObjects 5 }
ntpSwitchServer OBJECT-TYPE
SYNTAX CmNtpServerType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Operation to switch the NTP Server."
::= { cmTimeObjects 6 }
ntpServerRoundTripDelay OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the round-trip delay (in microseconds)
to the NTP Server.
It returns a value of 0 if NTP is not enabled."
::= { cmTimeObjects 7 }
ntpServerPrecision OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the precision (in microseconds)
to the NTP Server."
::= { cmTimeObjects 8 }
ntpPollingInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows ability to configure the NTP polling
interval in seconds. Polling interval is the time
between successive NTP client requests to update local
time based on time at the NTP server."
::= { cmTimeObjects 9 }
ntpPrimaryServerIpVersion OBJECT-TYPE
SYNTAX IpVersion
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipversion of ntp server."
::= { cmTimeObjects 10 }
ntpPrimaryServerIpv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipv6 adress of ntp primary server."
::= { cmTimeObjects 11 }
ntpBackupServerIpVersion OBJECT-TYPE
SYNTAX IpVersion
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipversion of ntp server."
::= { cmTimeObjects 12 }
ntpBackupServerIpv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the ipv6 adress of ntp backup server."
::= { cmTimeObjects 13 }
ntpPrimaryServerAuthKey OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the authentication key for the primary NTP server."
::= { cmTimeObjects 14 }
ntpBackupServerAuthKey OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the authentication key for the backup NTP server."
::= { cmTimeObjects 15 }
--
-- NTP Authentication Key Table
--
f3NtpAuthKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3NtpAuthKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the Keys used for NTP Authentication."
::= { cmTimeObjects 16 }
f3NtpAuthKeyEntry OBJECT-TYPE
SYNTAX F3NtpAuthKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"NTP Authentication Key Entry"
INDEX { f3NtpAuthKeyId }
::= { f3NtpAuthKeyTable 1 }
F3NtpAuthKeyEntry ::= SEQUENCE {
f3NtpAuthKeyId Unsigned32,
f3NtpAuthKeyNumber Unsigned32,
f3NtpAuthKeyType NtpAuthKeyType,
f3NtpAuthKey DisplayString,
f3NtpAuthKeyStorageType StorageType,
f3NtpAuthKeyRowStatus RowStatus
}
f3NtpAuthKeyId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the unique index for the NTP Authentication Key."
::= { f3NtpAuthKeyEntry 1 }
f3NtpAuthKeyNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the identifier used by the NTP authentication protocol using
which the Client and Server identify the key."
::= { f3NtpAuthKeyEntry 2 }
f3NtpAuthKeyType OBJECT-TYPE
SYNTAX NtpAuthKeyType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authentication type, MD5 or SHA-1."
::= { f3NtpAuthKeyEntry 3 }
f3NtpAuthKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the key value and length depends on the authentication type used.
It is 16 character printable string for MD5 excluding whitespace and '#' and
for SHA-1 it is a 40 character hex-encoded string."
::= { f3NtpAuthKeyEntry 4 }
f3NtpAuthKeyStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3NtpAuthKeyEntry 5 }
f3NtpAuthKeyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3NtpAuthKeyRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3NtpAuthKeyRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3NtpAuthKeyRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3NtpAuthKeyEntry 6 }
--SNMP extensions
f3SnmpTargetAddrExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SnmpTargetAddrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is an extension of the standard snmpTargetAddrTable(SNMP-TARGET-MIB).
This table is used to manage the SNMP Dying Gasp support."
::= { cmSnmpObjects 1 }
f3SnmpTargetAddrExtEntry OBJECT-TYPE
SYNTAX F3SnmpTargetAddrExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3SnmpTargetAddrExtTable."
INDEX { IMPLIED snmpTargetAddrName }
::= { f3SnmpTargetAddrExtTable 1 }
F3SnmpTargetAddrExtEntry ::= SEQUENCE {
f3SnmpTargetAddrExtDyingGaspPort VariablePointer,
f3SnmpTargetAddrExtDyingGaspEnabled TruthValue,
f3SnmpTargetAddrExtDyingGaspActive TruthValue,
f3SnmpTargetAddrExtBulkTrapsEnabled TruthValue,
f3SnmpTargetAddrExtLifetime F3TargetAddressLifetime
}
f3SnmpTargetAddrExtDyingGaspPort OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When SNMP Dying Gasp is enabled at Card level,
this attribute provides information on the interface (physical port)
through which this Target Address is reachable
(using Layer 3 ping, trace route)."
::= { f3SnmpTargetAddrExtEntry 1 }
f3SnmpTargetAddrExtDyingGaspEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When SNMP Dying Gasp is enabled at Card level,
this attribute specifies whether this Target Address entry should be
used in the SNMP Dying Gasp TRAP PDU or not."
::= { f3SnmpTargetAddrExtEntry 2 }
f3SnmpTargetAddrExtDyingGaspActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When SNMP Dying Gasp is enabled at Card level, in case of
multiple target addresses resolving to the same interface (port),
this flag indicates which target address is used for the SNMP TRAP PDU."
::= { f3SnmpTargetAddrExtEntry 3 }
f3SnmpTargetAddrExtBulkTrapsEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides ability to enable/disable the Snmp Bulk Traps on
the Target Address."
::= { f3SnmpTargetAddrExtEntry 4 }
f3SnmpTargetAddrExtLifetime OBJECT-TYPE
SYNTAX F3TargetAddressLifetime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Provides a time after which target address
entry will automatically be deleted.
SNMP packet received from snmpTargetAddrTAddress
resets timer to its original value."
::= { f3SnmpTargetAddrExtEntry 5 }
f3SnmpEngineID OBJECT-TYPE
SYNTAX SnmpEngineID
MAX-ACCESS read-write
STATUS current
DESCRIPTION "An SNMP engine's administratively-unique identifier.
Please note that f3SnmpEngineID differs from the
standard snmpEngineID (SNMP-FRAMEWORK-MIB) with
MAX-ACCESS as read-write."
::= { cmSnmpObjects 2 }
f3SnmpLongIfAlias OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This provides ability to enable/disable longer version of ifAlias. If enabled, ifAlias variable can support
up to 255 character string and when disabled ifAlias is limited to 64 character string. When disabled and if
alias is longer than 64 characters the ifAlias will return a string that is truncated to 64 characters."
::= { cmSnmpObjects 3 }
-- System Last Reset Cause Objects
f3SysLastResetType OBJECT-TYPE
SYNTAX RestartType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This provides the System Last Reset Type."
::= { cmResetCauseObjects 1 }
f3SysLastResetCauseType OBJECT-TYPE
SYNTAX CmRestartCauseType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This provides the System Last Reset Cause Type."
::= { cmResetCauseObjects 2 }
f3SysLastAbnormalResetTimestamp1 OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the timestamp of the most recent abnormal reset.
Note that the system keeps debug logs with 3 most recent
abnormal resets. 8 octets of 0 value indicates that
there was no abnormal reset of the system."
::= { cmResetCauseObjects 3 }
f3SysLastAbnormalResetTimestamp2 OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the timestamp of the second most recent abnormal reset.
Note that the system keeps debug logs with 3 most recent
abnormal resets. 8 octets of 0 value indicates that
there was only one (f3SysLastAbnormalResetTimestamp1) abnormal
reset of the system."
::= { cmResetCauseObjects 4 }
f3SysLastAbnormalResetTimestamp3 OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This provides the timestamp of the third most recent abnormal reset.
Note that the system keeps debug logs with 3 most recent
abnormal resets. 8 octets of 0 value indicates that
there were only two (f3SysLastAbnormalResetTimestamp1,
f3SysLastAbnormalResetTimestamp2) abnormal resets of the system."
::= { cmResetCauseObjects 5 }
f3SysResetButtonControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the use of the push button reset swith."
::= { cmResetCauseObjects 6 }
---
--- Database Synchronization Trap Object
---
f3DatabaseSyncTrapObject OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object provides the Object Identifier (OID) of the entity
that needs to be synchronized. This object is not accessible,
it is only carried in the f3DatabaseSyncTrap notification."
::= { f3NotifObjects 1 }
---
--- Start Ne Event Log Index Object
---
f3StartNeEventLogIndex OBJECT-TYPE
SYNTAX TrapCounter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the associated neEventsLogged counter
for the logged first event (trap) in the bulk trap."
::= { f3BulkNotifObjects 1 }
---
--- End Ne Event Log Index Object
---
f3EndNeEventLogIndex OBJECT-TYPE
SYNTAX TrapCounter
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the associated neEventsLogged counter
for the logged last event (trap) in the bulk trap."
::= { f3BulkNotifObjects 2 }
---
--- Configuration Files Object
---
f3ConfigFileActionFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configuration File name on which configFileAction is initiated."
::= { f3ConfigFileObjects 1 }
f3ConfigFileAction OBJECT-TYPE
SYNTAX F3ConfigFileAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Configuration File action to invoke config file operations."
::= { f3ConfigFileObjects 2 }
f3ConfigFileStatus OBJECT-TYPE
SYNTAX F3ConfigFileStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides status of Configuration File actions."
::= { f3ConfigFileObjects 3 }
f3ConfigFileErrorInformation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides additional information for failed
Configuration File actions."
::= { f3ConfigFileObjects 4 }
f3ConfigFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3ConfigFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists information about the configuration files that
are resident on the node."
::= { f3ConfigFileObjects 5 }
f3ConfigFileEntry OBJECT-TYPE
SYNTAX F3ConfigFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3ConfigFileTable."
INDEX { f3ConfigFileIndex }
::= { f3ConfigFileTable 1 }
F3ConfigFileEntry ::= SEQUENCE {
f3ConfigFileIndex Integer32,
f3ConfigFileName DisplayString,
f3ConfigFileDescription DisplayString
}
f3ConfigFileIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an entry within the f3ConfigFileTable."
::= { f3ConfigFileEntry 1 }
f3ConfigFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the configuration file."
::= { f3ConfigFileEntry 2 }
f3ConfigFileDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User description of the configuration file."
::= { f3ConfigFileEntry 3 }
f3ConfigFilePercentComplete OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides configure file percent complete."
::= { f3ConfigFileObjects 6 }
f3ConfigFilePassphrase OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Pass-phrase used to generate key for encrypting private keys."
::= { f3ConfigFileObjects 7 }
--
--Feature Management Objects
--
f3SystemFeatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SystemFeatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table allows ability to manage enabling/disabling system features."
::= { cmFeatureManagementObjects 1 }
f3SystemFeatureEntry OBJECT-TYPE
SYNTAX F3SystemFeatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3SystemFeatureTable."
INDEX { f3SystemFeatureIndex }
::= { f3SystemFeatureTable 1 }
F3SystemFeatureEntry ::= SEQUENCE {
f3SystemFeatureIndex Integer32,
f3SystemFeatureName DisplayString,
f3SystemFeatureEnabled TruthValue
}
f3SystemFeatureIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an entry within the f3SystemFeatureTable."
::= { f3SystemFeatureEntry 1 }
f3SystemFeatureName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the name of the system feature."
::= { f3SystemFeatureEntry 2 }
f3SystemFeatureEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows system feature control. If a specific feature
is disabled, the relevant operations to use that feature are denied."
::= { f3SystemFeatureEntry 3 }
--
--LLDPV2 DestAddress Ext Objects
--
f3SystemLldpV2DestAddressADVAExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SystemLldpV2DestAddressADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This extension table adds a row status to allow user add/delete/edit the LLDP
Destination Address which is defined to Read-Only in the standard MIB."
::= { cmLldpV2DestAdressADVAExtObjects 1 }
f3SystemLldpV2DestAddressADVAExtEntry OBJECT-TYPE
SYNTAX F3SystemLldpV2DestAddressADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3SystemLldpV2DestAddressADVAExtTable."
INDEX { f3SystemLldpV2DestAddressADVAExtIndex }
::= { f3SystemLldpV2DestAddressADVAExtTable 1 }
F3SystemLldpV2DestAddressADVAExtEntry ::= SEQUENCE {
f3SystemLldpV2DestAddressADVAExtIndex Integer32,
f3SystemLldpV2ADVAExtDestMacAddress MacAddress,
f3SystemLldpV2DestAddressADVAExtRowStatus RowStatus
}
f3SystemLldpV2DestAddressADVAExtIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer index value used to uniquely identify
an entry within the f3SystemLldpV2DestAddressADVAExtTable."
::= { f3SystemLldpV2DestAddressADVAExtEntry 1 }
f3SystemLldpV2ADVAExtDestMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This attribute description the standard MIB about LLDP Destination Mac Address."
::= { f3SystemLldpV2DestAddressADVAExtEntry 2 }
f3SystemLldpV2DestAddressADVAExtRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of this row.
The f3SystemLldpV2DestAddressADVAExtRowStatus object may be modified if
the associated instance of this object is equal to active(1),
notInService(2), or notReady(3)."
::= { f3SystemLldpV2DestAddressADVAExtEntry 3 }
--
--LLDPV2 Port Config Address Ext Objects
--
f3SystemLldpV2PortConfigADVAExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SystemLldpV2PortConfigADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This extension table adds a row status to allow user add/delete/edit the LLDP
Destination Address for one port."
::= { cmLldpV2DestAdressADVAExtObjects 2 }
f3SystemLldpV2PortConfigADVAExtEntry OBJECT-TYPE
SYNTAX F3SystemLldpV2PortConfigADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3SystemLldpV2PortConfigADVAExtTable."
INDEX { f3SystemLldpV2PortConfigADVAExtIfIndex, f3SystemLldpV2PortConfigADVAExtDestAddressIndex }
::= { f3SystemLldpV2PortConfigADVAExtTable 1 }
F3SystemLldpV2PortConfigADVAExtEntry ::= SEQUENCE {
f3SystemLldpV2PortConfigADVAExtIfIndex InterfaceIndex,
f3SystemLldpV2PortConfigADVAExtDestAddressIndex LldpV2DestAddressTableIndex,
f3SystemLldpV2PortConfigADVAExtAdminStatus INTEGER,
f3SystemLldpV2PortConfigADVAExtNotificationEnable TruthValue,
f3SystemLldpV2PortConfigADVAExtTLVsTxEnable BITS,
f3SystemLldpV2PortConfigADVAExtStorageType StorageType,
f3SystemLldpV2PortConfigADVAExtRowStatus RowStatus
}
f3SystemLldpV2PortConfigADVAExtIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface index value used to identify the port
associated with this entry. Its value is an index into
the interfaces MIB.
The value of this object is used as an index to the
f3SystemLldpV2PortConfigADVAExtTable."
::= { f3SystemLldpV2PortConfigADVAExtEntry 1 }
f3SystemLldpV2PortConfigADVAExtDestAddressIndex OBJECT-TYPE
SYNTAX LldpV2DestAddressTableIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index value used to identify the destination
MAC address associated with this entry. Its value identifies
the row in the lldpV2DestAddressTable where the MAC address
can be found.
The value of this object is used as an index to the
f3SystemLldpV2PortConfigADVAExtTable."
::= { f3SystemLldpV2PortConfigADVAExtEntry 2 }
f3SystemLldpV2PortConfigADVAExtAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
txOnly(1),
rxOnly(2),
txAndRx(3),
disabled(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administratively desired status of the local LLDP agent.
If the associated f3SystemLldpV2PortConfigADVAExtAdminStatus object is
set to a value of 'txOnly(1)', then LLDP agent transmits
LLDPframes on this port and it does not store any
information about the remote systems connected.
If the associated f3SystemLldpV2PortConfigADVAExtAdminStatus object is
set to a value of 'rxOnly(2)', then the LLDP agent
receives, but it does not transmit LLDP frames on this port.
If the associated f3SystemLldpV2PortConfigADVAExtAdminStatus object is set
to a value of 'txAndRx(3)', then the LLDP agent transmits
and receives LLDP frames on this port.
If the associated f3SystemLldpV2PortConfigADVAExtAdminStatus object is set
to a value of 'disabled(4)', then LLDP agent does not
transmit or receive LLDP frames on this port. If there is
remote systems information which is received on this port
and stored in other tables, before the port's
f3SystemLldpV2PortConfigADVAExtAdminStatus becomes disabled, then that
information is deleted."
REFERENCE
"9.2.5.1"
DEFVAL { txAndRx }
::= { f3SystemLldpV2PortConfigADVAExtEntry 3 }
f3SystemLldpV2PortConfigADVAExtNotificationEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The f3SystemLldpV2PortConfigADVAExtNotificationEnable controls, on a per
agent basis, whether or not notifications from the agent
are enabled. The value true(1) means that notifications are
enabled; the value false(2) means that they are not."
DEFVAL { false }
::= { f3SystemLldpV2PortConfigADVAExtEntry 4 }
f3SystemLldpV2PortConfigADVAExtTLVsTxEnable OBJECT-TYPE
SYNTAX BITS {
portDesc(0),
sysName(1),
sysDesc(2),
sysCap(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The f3SystemLldpV2PortConfigADVAExtTLVsTxEnable, defined as a bitmap,
includes the basic set of LLDP TLVs whose transmission is
allowed on the local LLDP agent by the network management.
Each bit in the bitmap corresponds to a TLV type associated
with a specific optional TLV.
It should be noted that the organizationally-specific TLVs
are excluded from the f3SystemLldpV2PortConfigADVAExtTLVsTxEnable bitmap.
LLDP Organization Specific Information Extension MIBs should
have similar configuration object to control transmission
of their organizationally defined TLVs.
The bit 'portDesc(0)' indicates that LLDP agent should
transmit 'Port Description TLV'.
The bit 'sysName(1)' indicates that LLDP agent should transmit
'System Name TLV'.
The bit 'sysDesc(2)' indicates that LLDP agent should transmit
'System Description TLV'.
The bit 'sysCap(3)' indicates that LLDP agent should transmit
'System Capabilities TLV'.
There is no bit reserved for the management address TLV type
since transmission of management address TLVs are controlled
by another object, lldpV2ConfigManAddrTable.
The default value for f3SystemLldpV2PortConfigADVAExtTLVsTxEnable object is
empty set, which means no enumerated values are set.
The value of this object is restored from non-volatile
storage after a re-initialization of the management system."
REFERENCE
"9.1.2.1"
DEFVAL { { } }
::= { f3SystemLldpV2PortConfigADVAExtEntry 5 }
f3SystemLldpV2PortConfigADVAExtStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3SystemLldpV2PortConfigADVAExtEntry 6 }
f3SystemLldpV2PortConfigADVAExtRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3SystemLldpV2PortConfigADVAExtRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3SystemLldpV2PortConfigADVAExtRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3SystemLldpV2PortConfigADVAExtRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3SystemLldpV2PortConfigADVAExtEntry 7 }
--
--LLDPV2 Man Address Config Tx Ports Ext Objects
--
f3SystemLldpV2ManAddrConfigTxPortsADVAExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This extension table adds a row status to allow user add/delete/edit the LLDP
Destination Address for one port."
::= { cmLldpV2DestAdressADVAExtObjects 3 }
f3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry OBJECT-TYPE
SYNTAX F3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3SystemLldpV2ManAddrConfigTxPortsADVAExtTable."
INDEX { f3SystemLldpV2PortConfigADVAExtIfIndex, f3SystemLldpV2PortConfigADVAExtDestAddressIndex,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRefInterface}
::= { f3SystemLldpV2ManAddrConfigTxPortsADVAExtTable 1 }
F3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry ::= SEQUENCE {
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRefInterface VariablePointer,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtEnable TruthValue,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtStorageType StorageType,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus RowStatus
}
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRefInterface OBJECT-TYPE
SYNTAX VariablePointer
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object describe the Tx Port is on what interface,
its value should be management tunnel or one dcn or none."
::= { f3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry 1 }
f3SystemLldpV2ManAddrConfigTxPortsADVAExtEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describe the interface on Tx Ports whether enabled."
::= { f3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry 2 }
f3SystemLldpV2ManAddrConfigTxPortsADVAExtStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry 3 }
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3SystemLldpV2ManAddrConfigTxPortsADVAExtEntry 4 }
--
-- f3LldpMaxNeighborsAction
--
f3LldpMaxNeighborsAction OBJECT-TYPE
SYNTAX LldpV2ConfigurationADVAExtMaxNeighborsAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Discard: information selected to be discarded is the
information in the current LLDPDU.
Delete entry::information selected to be discarded is
currently in the LLDP remote systems MIB."
::= { f3LldpV2ConfigurationADVAExtObjects 1 }
--
--Raw Data Objects
--
f3RawDataServerFtProtocol OBJECT-TYPE
SYNTAX CmFileTransferMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the method of transferring the file. Note
that web(4) is a read-only enumeration."
::= { f3RawDataObjects 1 }
f3RawDataServerFtServerName OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the raw data server. Value of 0.0.0.0
indicates the raw data server is not configured."
::= { f3RawDataObjects 2 }
f3RawDataServerFtUserId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User ID to use to authenticate the file transfer."
::= { f3RawDataObjects 3 }
f3RawDataServerFtPasswd OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User password to authenticate the file transfer.
Reading this object will return an empty string if the
password has not been set or ***** if the password has
been set."
::= { f3RawDataObjects 4 }
--
-- f3LldpV2RemExtTable
--
f3LldpV2RemExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3LldpV2RemExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is an extension of the standard lldpV2RemTable (LLDP-V2-MIB).
This table adds remote TTL attribute support"
::= { f3LldpV2RemoteSystemsData 1 }
f3LldpV2RemExtEntry OBJECT-TYPE
SYNTAX F3LldpV2RemExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the f3LldpV2RemExtTable."
AUGMENTS { lldpV2RemEntry }
::= { f3LldpV2RemExtTable 1 }
F3LldpV2RemExtEntry ::= SEQUENCE {
f3LldpV2RemTTL Unsigned32
}
f3LldpV2RemTTL OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Integer value which indicates the number of seconds that the
recipient LLDP agent is to regard the information associated
with particular MSAP identifier to be valid"
::= { f3LldpV2RemExtEntry 1 }
--
-- simple ltp
--
f3SimpleLtpControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" This provides ability to enable/disable the simple ltp on the
system."
::= { f3SimpleLtpObjects 1 }
f3SimpleLtpTransferProtocol OBJECT-TYPE
SYNTAX CmFileTransferMethod
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Specifies the method of transferring the file."
::= { f3SimpleLtpObjects 2 }
f3SimpleLtpServerIpv4Addr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" IP address of the remote server."
::= { f3SimpleLtpObjects 3 }
f3SimpleLtpUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" User ID to use to authenticate the file transfer."
::= { f3SimpleLtpObjects 4 }
f3SimpleLtpPasswd OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Password to use to authenticate the file transfer."
::= { f3SimpleLtpObjects 5 }
f3SimpleLtpConfigFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The configure file name used to LTP function."
::= { f3SimpleLtpObjects 6 }
f3SimpleLtpSoftwareFileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The software file name."
::= { f3SimpleLtpObjects 7 }
--
-- Sys Authentication Key Table
--
f3SysAuthKeyTable OBJECT-TYPE
SYNTAX SEQUENCE OF F3SysAuthKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
::= { f3SysAuthenKeyObjects 1 }
f3SysAuthKeyEntry OBJECT-TYPE
SYNTAX F3SysAuthKeyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
INDEX { f3SysAuthKeyIndex }
::= { f3SysAuthKeyTable 1 }
F3SysAuthKeyEntry ::= SEQUENCE {
f3SysAuthKeyIndex Unsigned32,
f3SysAuthKeyId Unsigned32,
f3SysAuthKeyType SysAuthKeyType,
f3SysAuthKey DisplayString,
f3SysAuthKeyStorageType StorageType,
f3SysAuthKeyRowStatus RowStatus
}
f3SysAuthKeyIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"."
::= { f3SysAuthKeyEntry 1 }
f3SysAuthKeyId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"."
::= { f3SysAuthKeyEntry 2 }
f3SysAuthKeyType OBJECT-TYPE
SYNTAX SysAuthKeyType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Authentication type."
::= { f3SysAuthKeyEntry 3 }
f3SysAuthKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Password for this key."
::= { f3SysAuthKeyEntry 4 }
f3SysAuthKeyStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The storage type for this conceptual row."
::= { f3SysAuthKeyEntry 5 }
f3SysAuthKeyRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this row. An entry MUST NOT exist in the
active state unless all objects in the entry have an
appropriate value, as described
in the description clause for each writable object.
The values of f3SysAuthKeyRowStatus supported are
createAndGo(4) and destroy(6). All mandatory attributes
must be specified in a single SNMP SET request with
f3SysAuthKeyRowStatus value as createAndGo(4).
Upon successful row creation, this object has a
value of active(1).
The f3SysAuthKeyRowStatus object may be modified if
the associated instance of this object is equal to active(1)."
::= { f3SysAuthKeyEntry 6 }
--
-- Callhome Server Objects
--
f3CallhomeClientIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Callhome client IP address."
::= { f3CallhomeServerObjects 1 }
f3CallhomeState OBJECT-TYPE
SYNTAX CallhomeState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Callhome state."
::= { f3CallhomeServerObjects 2 }
--
-- System Information Objects
--
f3ApplicationsBootCompleted OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a flag informing that system completed booting of its applications."
::= { f3SystemInfoObjects 1 }
f3ApplicationsUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in hundredths of second) since the applications of the system were last initialized."
::= { f3SystemInfoObjects 2 }
f3EnsembleZtpEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This provides ability to enable/disable Ensemble ZTP on the system."
::= { f3ZtpObjects 1 }
---
---Notifications
---
cmStateChangeTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the State Change Notification per Interface sent by the agent.
The actual attribute value is sent by the agent in the form of
a varbind list, as additional objects, as per SMIv2 (RFC2578, Section 8.1)."
::= { cmSystemNotifications 1 }
cmAttributeValueChangeTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the Attribute Value Change Notification sent by the agent.
The actual attribute value is sent by the agent in the form of
a varbind list, as additional objects, as per SMIv2 (RFC2578, Section 8.1)."
::= { cmSystemNotifications 2 }
cmObjectCreationTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the Object Creation Notification sent by the agent.
The index value of the SNMP Row that is created is sent by the
agent in the form of a varbind list, as additional objects,
as per SMIv2 (RFC2578, Section 8.1)."
::= { cmSystemNotifications 3 }
cmObjectDeletionTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the Object Deletion Notification sent by the agent.
The index value of the SNMP Row that is deleted is sent by the
agent in the form of a varbind list,
as per SMIv2 (RFC2578, Section 8.1)."
::= { cmSystemNotifications 4 }
cmSnmpDyingGaspTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the Dying Gasp SNMP trap sent by the agent."
::= { cmSystemNotifications 5 }
f3DatabaseSyncTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the Database Synchronization trap sent by
the agent for bulk operations. The var bind list
can contain multiple variables with OIDs as
f3DatabaseSyncTrapObject and values as the OIDs
of the entities that need synchronization.
The var-binds are sent implicitly, as per
SMIv2 (RFC2578, Section 8.1)."
::= { cmSystemNotifications 6 }
f3BulkTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"This is the bulk trap sent by
the agent for bulk operations."
::= { f3SystemBulkNotifications 1 }
--
-- Conformance
--
cmSystemCompliances OBJECT IDENTIFIER ::= {cmSystemConformance 1}
cmSystemGroups OBJECT IDENTIFIER ::= {cmSystemConformance 2}
f3SystemBulkGroups OBJECT IDENTIFIER ::= {cmSystemConformance 3}
cmSystemCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Describes the requirements for conformance to the CM System
group."
MODULE -- this module
MANDATORY-GROUPS {
cmSystemObjectGroup, cmSystemNotifGroup, f3SystemObjectBulkGroup, f3SystemNotifBulkGroup
}
::= { cmSystemCompliances 1 }
cmSystemObjectGroup OBJECT-GROUP
OBJECTS {
lastSetErrorInformation, cliCmdPromptPrefix, securityPromptEnabled,
securityBanner,
aclEntryFilterAction, aclEntryNetworkAddress,
aclEntryNetworkMask, aclEntryEnabled, aclEntryIpVersion,
aclEntryNetworkIpv6Addr, aclEntryPrefixLength,
serialPortDisconnectAutoLogOff,
telnetEnabled, sshEnabled, ftpEnabled, scpEnabled, serialPortEnabled,
httpEnabled, httpsEnabled, sftpEnabled, tftpEnabled, netconfOverSSHEnabled, usbPortEnabled,
ntpMode, autoProvMode, sysTimeOfDayType, ntpServerConfigType,
sysLogServerConfigType, sysLogTimestampFormat, sysLogFacilityCode,
fileServicesAction,
fileServicesMethod, fileServicesServerIp,
fileServicesUserId, fileServicesPassword, fileServicesRemoteFile, fileServicesDbFileName,
fileServicesStatus, fileServicesPercentComplete,
fileServicesMode, fileServicesServerType,
fileServicesServerIpv6Addr, fileServicesAffectedEntity,
fileServicesSslKeyPairName, fileServicesDecryptionPassword,
sysLogIpVersion, sysLogIpv6Addr, fileServicesCsrName,
ntpPrimaryServerIpVersion, ntpPrimaryServerIpv6Addr,
ntpBackupServerIpVersion, ntpBackupServerIpv6Addr,
ntpPrimaryServerAuthKey, ntpBackupServerAuthKey,
databaseAction, databaseLastSaveTime,
databaseIndex, databaseType, databaseVersion, databaseActionPassphrase,
softwareAction,
softwareUpgradeTime, softwareValidationTimer,
softwareIndex, softwareType, softwareVersion,
softwareAffectedEntity,
softwarePeerCondition,
peerUpgradeStatus,
sysLogServerIndex, sysLogIpAddress,
sysLogPort, secLog2sysLogEnabled,
auditLog2sysLogEnabled, auditLog2fileEnabled,
alarmLog2sysLogEnabled, alarmLog2fileEnabled,
ntpClientEnabled, ntpPrimaryServer, ntpBackupServer,
ntpType, ntpActiveServer, ntpSwitchServer,
ntpServerRoundTripDelay, ntpServerPrecision,
ntpPollingInterval,
f3SnmpTargetAddrExtDyingGaspPort, f3SnmpTargetAddrExtDyingGaspEnabled,
f3SnmpTargetAddrExtDyingGaspActive, f3SnmpTargetAddrExtBulkTrapsEnabled,
f3SnmpTargetAddrExtLifetime,
f3SysLastResetType,
f3SysLastResetCauseType,
f3SysLastAbnormalResetTimestamp1,
f3SysLastAbnormalResetTimestamp2,
f3SysLastAbnormalResetTimestamp3,
f3SysResetButtonControl,
f3SimpleLtpControl,
f3SimpleLtpTransferProtocol,
f3SimpleLtpServerIpv4Addr,
f3SimpleLtpUserName,
f3SimpleLtpPasswd,
f3SimpleLtpConfigFileName,
f3SimpleLtpSoftwareFileName,
f3DatabaseSyncTrapObject,
f3ConfigFileActionFileName, f3ConfigFileAction,
f3ConfigFileStatus, f3ConfigFileErrorInformation,
f3ConfigFileIndex, f3ConfigFileName,
f3ConfigFileDescription,f3ConfigFilePercentComplete, f3ConfigFilePassphrase,
f3SystemFeatureIndex, f3SystemFeatureName, f3SystemFeatureEnabled,
f3SystemLldpV2DestAddressADVAExtIndex, f3SystemLldpV2ADVAExtDestMacAddress,
f3SystemLldpV2DestAddressADVAExtRowStatus, f3LldpMaxNeighborsAction,
f3SystemLldpV2PortConfigADVAExtIfIndex,
f3SystemLldpV2PortConfigADVAExtDestAddressIndex,
f3SystemLldpV2PortConfigADVAExtAdminStatus,
f3SystemLldpV2PortConfigADVAExtNotificationEnable,
f3SystemLldpV2PortConfigADVAExtTLVsTxEnable,
f3SystemLldpV2PortConfigADVAExtStorageType,
f3SystemLldpV2PortConfigADVAExtRowStatus,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRefInterface,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtEnable,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtStorageType,
f3SystemLldpV2ManAddrConfigTxPortsADVAExtRowStatus,
f3RawDataServerFtProtocol, f3RawDataServerFtServerName,
f3RawDataServerFtUserId, f3RawDataServerFtPasswd,
f3LldpV2RemTTL,
f3NtpAuthKeyId,
f3NtpAuthKeyNumber,
f3NtpAuthKeyType,
f3NtpAuthKey,
f3NtpAuthKeyStorageType,
f3NtpAuthKeyRowStatus,
f3SysAuthKeyIndex,
f3SysAuthKeyId,
f3SysAuthKeyType,
f3SysAuthKey,
f3SysAuthKeyStorageType,
f3SysAuthKeyRowStatus,
f3CallhomeClientIpAddress,
f3CallhomeState,
f3ApplicationsBootCompleted,
f3ApplicationsUpTime,
f3EnsembleZtpEnabled
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the CM System
group."
::= { cmSystemGroups 1 }
cmSystemNotifGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cmStateChangeTrap, cmAttributeValueChangeTrap,
cmObjectCreationTrap, cmObjectDeletionTrap,
cmSnmpDyingGaspTrap, f3DatabaseSyncTrap
}
STATUS current
DESCRIPTION
"A collection of notifications used in the CM System
group."
::= { cmSystemGroups 2 }
cmSystemObjectGroupCmHub OBJECT-GROUP
OBJECTS {
lastSetErrorInformation, cliCmdPromptPrefix, securityPromptEnabled,
securityBanner,
aclEntryFilterAction, aclEntryNetworkAddress,
aclEntryNetworkMask, aclEntryEnabled,
serialPortDisconnectAutoLogOff,
telnetEnabled, sshEnabled, ftpEnabled, scpEnabled, serialPortEnabled,
httpEnabled, httpsEnabled, sftpEnabled,
ntpMode, autoProvMode,
fileServicesAction,
fileServicesMethod, fileServicesServerIp,
fileServicesUserId, fileServicesPassword, fileServicesRemoteFile, fileServicesDbFileName,
fileServicesStatus, fileServicesPercentComplete,
fileServicesMode,fileServicesServerType,
fileServicesServerIpv6Addr, sysLogIpVersion, sysLogIpv6Addr,
ntpPrimaryServerIpVersion, ntpPrimaryServerIpv6Addr,
ntpBackupServerIpVersion, ntpBackupServerIpv6Addr,
ntpPrimaryServerAuthKey, ntpBackupServerAuthKey,
f3NtpAuthKeyId,
f3NtpAuthKeyNumber,
f3NtpAuthKeyType,
f3NtpAuthKey,
f3NtpAuthKeyStorageType,
f3NtpAuthKeyRowStatus,
databaseAction, databaseLastSaveTime,
databaseIndex, databaseType, databaseVersion,
softwareAction,
softwareUpgradeTime, softwareValidationTimer,
softwareIndex, softwareType, softwareVersion,
sysLogServerIndex, sysLogIpAddress,
sysLogPort, secLog2sysLogEnabled,
auditLog2sysLogEnabled, auditLog2fileEnabled,
alarmLog2sysLogEnabled, alarmLog2fileEnabled,
ntpClientEnabled, ntpPrimaryServer, ntpBackupServer,
ntpType, ntpActiveServer, ntpSwitchServer,
ntpServerRoundTripDelay, ntpServerPrecision,
ntpPollingInterval,
f3SnmpTargetAddrExtDyingGaspPort, f3SnmpTargetAddrExtDyingGaspEnabled,
f3SnmpTargetAddrExtDyingGaspActive,
f3SysLastResetType,
f3SysLastResetCauseType,
f3SysLastAbnormalResetTimestamp1,
f3SysLastAbnormalResetTimestamp2,
f3SysLastAbnormalResetTimestamp3,
f3SysResetButtonControl,
f3SimpleLtpControl,
f3SimpleLtpTransferProtocol,
f3SimpleLtpServerIpv4Addr,
f3SimpleLtpUserName,
f3SimpleLtpPasswd,
f3SimpleLtpConfigFileName,
f3SimpleLtpSoftwareFileName,
f3DatabaseSyncTrapObject,
f3SysAuthKeyIndex,
f3SysAuthKeyId,
f3SysAuthKeyType,
f3SysAuthKey,
f3SysAuthKeyStorageType,
f3SysAuthKeyRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the CM System
group."
::= { cmSystemGroups 3 }
f3SystemObjectBulkGroup OBJECT-GROUP
OBJECTS {
f3StartNeEventLogIndex, f3EndNeEventLogIndex
}
STATUS current
DESCRIPTION
"A collection of objects used to manage the F3 System Bulk
group."
::= { f3SystemBulkGroups 1 }
f3SystemNotifBulkGroup NOTIFICATION-GROUP
NOTIFICATIONS {
f3BulkTrap
}
STATUS current
DESCRIPTION
"A collection of notifications used in the F3 System Bulk
group."
::= { f3SystemBulkGroups 2 }
END
|