1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
|
AGENT-GENERAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
IpAddress, MODULE-IDENTITY,
OBJECT-TYPE,Integer32 FROM SNMPv2-SMI
TruthValue,RowStatus, MacAddress FROM SNMPv2-TC
DisplayString FROM RFC1213-MIB
InetAddressType, InetAddress FROM INET-ADDRESS-MIB
AgentNotifyLevel,dlink-common-mgmt FROM DLINK-ID-REC-MIB
VlanId FROM Q-BRIDGE-MIB;
agentGeneralMgmt MODULE-IDENTITY
LAST-UPDATED "201206260000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
"http://support.dlink.com"
DESCRIPTION
"The structure of general management information for enterprise."
::= { dlink-common-mgmt 1 }
-- -----------------------------------------------------------------------------
-- Textual Conventions
-- -----------------------------------------------------------------------------
-- This definition may be excluded if IPv6 is not supported
Ipv6Address ::= TEXTUAL-CONVENTION
DISPLAY-HINT "2x:"
STATUS current
DESCRIPTION
"This data type is used to model IPv6 addresses.
This is a binary string of 16 octets in network
byte-order."
SYNTAX OCTET STRING (SIZE (16))
UnitList ::= OCTET STRING(SIZE (0..3))
-- -----------------------------------------------------------------------------
-- agentBasicInfo
-- -----------------------------------------------------------------------------
agentBasicInfo OBJECT IDENTIFIER ::= { agentGeneralMgmt 1 }
agentMgmtProtocolCapability OBJECT-TYPE
SYNTAX INTEGER {
other(1),
snmp-ip(2),
snmp-ipx(3),
snmp-ip-ipx(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The network management protocol(s) supported by this agent."
::= { agentBasicInfo 1 }
-- -----------------------------------------------------------------------------
-- agentMibcapabilityTable
-- -----------------------------------------------------------------------------
agentMibCapabilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentMibCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of MIB capability entries supported by this agent."
::= { agentBasicInfo 2 }
agentMibCapabilityEntry OBJECT-TYPE
SYNTAX AgentMibCapabilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A MIB capability entry containing objects that describe a particular MIB
supported by this agent."
INDEX { agentMibCapabilityIndex }
::= { agentMibCapabilityTable 1 }
AgentMibCapabilityEntry ::=
SEQUENCE {
agentMibCapabilityIndex
Integer32,
agentMibCapabilityDescr
DisplayString,
agentMibCapabilityVersion
Integer32,
agentMibCapabilityType
INTEGER
}
agentMibCapabilityIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A list of Agent MIB Capability Description entries."
::= { agentMibCapabilityEntry 1 }
agentMibCapabilityDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..35))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the MIB supported by the agent."
::= { agentMibCapabilityEntry 2 }
agentMibCapabilityVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the MIB specified in this entry."
::= { agentMibCapabilityEntry 3 }
agentMibCapabilityType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
standard(2),
proprietary(3),
experiment(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of MIB specified in this entry."
::= { agentMibCapabilityEntry 4 }
agentStatusConsoleInUse OBJECT-TYPE
SYNTAX INTEGER {
other(1),
in-use(2),
not-in-use(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates whether the console is currently in use."
::= { agentBasicInfo 3 }
agentStatusSaveCfg OBJECT-TYPE
SYNTAX INTEGER {
other(1),
proceeding(2),
completed(3),
failed(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the status of the device configuration.
other (1) - This entry is currently in use but the conditions under
which it will remain so are determined by each of the following values.
proceeding (2) - The device configuration is currently being saved into NV-RAM.
completed (3) - All of the device configuration parameters have been
saved into NV-RAM.
failed (4) - The process to save the device configuration has failed."
::= { agentBasicInfo 4 }
agentStatusFileTransfer OBJECT-TYPE
SYNTAX INTEGER {
other(1) ,
in-process(2),
invalid-file(3),
violation(4),
file-not-found(5),
disk-full(6),
complete(7),
time-out(8),
not-format(9),
memory-full(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the firmware download control. If the value is stated as 'other',
the firmware has not been updated since the device was started."
::= { agentBasicInfo 5 }
-- -----------------------------------------------------------------------------
-- agentCPUutilizationTable
-- -----------------------------------------------------------------------------
agentCPUutilization OBJECT IDENTIFIER ::= { agentBasicInfo 6 }
agentCPUutilizationIn5sec OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time scale is set at 5 second intervals.
The value will be between 0% (idle) and 100% (very busy)."
::= { agentCPUutilization 1 }
agentCPUutilizationIn1min OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time scale is set at 1 minute intervals.
The value will be between 0% (idle) and 100% (very busy)."
::= { agentCPUutilization 2 }
agentCPUutilizationIn5min OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time scale is set at 5 minute intervals.
The value will be between 0% (idle) and 100% (very busy)."
::= { agentCPUutilization 3 }
agentDualImageStatus OBJECT-TYPE
SYNTAX INTEGER {
not-supported(0),
supported(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The dual image status."
::= { agentBasicInfo 7 }
-- -----------------------------------------------------------------------------
-- agentPORTutilizationTable
-- -----------------------------------------------------------------------------
agentPORTutilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentPORTutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the current utilization of a specified port."
::= { agentBasicInfo 8 }
agentPORTutilizationEntry OBJECT-TYPE
SYNTAX AgentPORTutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information regarding the port utilization function."
INDEX { agentPORTutilizationProtIndex }
::= { agentPORTutilizationTable 1 }
AgentPORTutilizationEntry ::=
SEQUENCE {
agentPORTutilizationProtIndex
INTEGER,
agentPORTutilizationTX
INTEGER,
agentPORTutilizationRX
INTEGER,
agentPORTutilizationUtil
INTEGER,
agentPORTutilizationRXUtil
INTEGER,
agentPORTutilizationTXUtil
INTEGER
}
agentPORTutilizationProtIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the module's port number."
::= { agentPORTutilizationEntry 1 }
agentPORTutilizationTX OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current rate of transmitted frames on the specified port."
::= { agentPORTutilizationEntry 2 }
agentPORTutilizationRX OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current rate of received frames on the specified port."
::= { agentPORTutilizationEntry 3 }
agentPORTutilizationUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current percentages regarding port statistics."
::= { agentPORTutilizationEntry 4 }
agentPORTutilizationRXUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current percentages regarding port receive packets statistics."
::= { agentPORTutilizationEntry 5 }
agentPORTutilizationTXUtil OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current percentages regarding port transmit packets statistics."
::= { agentPORTutilizationEntry 6 }
-- -----------------------------------------------------------------------------
agentDRAMutilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentDRAMutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about DRAM memory."
::={agentBasicInfo 9}
agentDRAMutilizationEntry OBJECT-TYPE
SYNTAX AgentDRAMutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about DRAM memory."
INDEX {agentDRAMutilizationUnitID}
::={agentDRAMutilizationTable 1}
AgentDRAMutilizationEntry ::=
SEQUENCE {
agentDRAMutilizationUnitID
INTEGER,
agentDRAMutilizationTotalDRAM
INTEGER,
agentDRAMutilizationUsedDRAM
INTEGER,
agentDRAMutilization
INTEGER
}
agentDRAMutilizationUnitID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the unit ID.
If the ID equals zero, it means the current device."
::={ agentDRAMutilizationEntry 1 }
agentDRAMutilizationTotalDRAM OBJECT-TYPE
SYNTAX INTEGER
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of total DRAM memory."
::={agentDRAMutilizationEntry 2}
agentDRAMutilizationUsedDRAM OBJECT-TYPE
SYNTAX INTEGER
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of used DRAM memory."
::={agentDRAMutilizationEntry 3}
agentDRAMutilization OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of used DRAM memory of the total DRAM memory available.
The value will be between 0% (idle) and 100% (very busy)."
::={agentDRAMutilizationEntry 4}
-- -----------------------------------------------------------------------------
agentFLASHutilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFLASHutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the flash memory."
::={agentBasicInfo 10}
agentFLASHutilizationEntry OBJECT-TYPE
SYNTAX AgentFLASHutilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the flash memory."
INDEX {agentFLASHutilizationUnitID}
::={agentFLASHutilizationTable 1}
AgentFLASHutilizationEntry ::=
SEQUENCE {
agentFLASHutilizationUnitID
INTEGER,
agentFLASHutilizationTotalFLASH
INTEGER,
agentFLASHutilizationUsedFLASH
INTEGER,
agentFLASHutilization
INTEGER
}
agentFLASHutilizationUnitID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the unit ID.
If the ID equals zero, it means the current device."
::={ agentFLASHutilizationEntry 1 }
agentFLASHutilizationTotalFLASH OBJECT-TYPE
SYNTAX INTEGER
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size of flash memory."
::={agentFLASHutilizationEntry 2}
agentFLASHutilizationUsedFLASH OBJECT-TYPE
SYNTAX INTEGER
UNITS "KB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the used flash memory."
::={agentFLASHutilizationEntry 3}
agentFLASHutilization OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of used flash memory in total flash memory.
The value will be between 0% (idle) and 100% (very busy)."
::={agentFLASHutilizationEntry 4}
-- -----------------------------------------------------------------------------
agentStatusReset OBJECT-TYPE
SYNTAX INTEGER {
proceeding(1),
completed(2),
failed(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the status of 'agentReset'."
::= { agentBasicInfo 11 }
agentSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A text string containing the serial number of this device."
::= { agentBasicInfo 12 }
-- -----------------------------------------------------------------------------
agentFirmwareType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A text string containing the firmware type."
::= { agentBasicInfo 13 }
-- -----------------------------------------------------------------------------
-- agentBasicConfig
-- -----------------------------------------------------------------------------
agentBasicConfig OBJECT IDENTIFIER ::= { agentGeneralMgmt 2 }
agentBscSwFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentBscSwFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of MIB Basic Config entry support files updated by this agent."
::= { agentBasicConfig 1 }
agentBscSwFileEntry OBJECT-TYPE
SYNTAX AgentBscSwFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A basic configuration entry containing the objects that describe a particular MIB
supported by this agent."
INDEX { agentBscSwFileIndex }
::= { agentBscSwFileTable 1 }
AgentBscSwFileEntry ::=
SEQUENCE {
agentBscSwFileIndex
Integer32,
agentBscSwFileDscr
DisplayString,
agentBscSwFileAddr
IpAddress,
agentBscSwFileTransferType
INTEGER,
agentBscSwFile
DisplayString,
agentBscSwFileLocateId
INTEGER,
agentBscSwFileLoadType
INTEGER,
agentBscSwFileCtrl
INTEGER,
agentBscSwFileBIncrement
TruthValue,
agentBscSwFileCtrlID
INTEGER,
agentBscSwFileCtrlUnitID
UnitList,
agentBscSwFileIPv6Addr
Ipv6Address,
agentBscSwFileBootUpImage
TruthValue,
agentBscSwFileForceAgree
TruthValue,
agentBscSwFileInterfaceName
DisplayString,
agentBscSwFileServerDomainName
DisplayString
}
agentBscSwFileIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for the file entry"
::= { agentBscSwFileEntry 1 }
agentBscSwFileDscr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The description of the software file purpose in this entry.
Note: For systems that do not support a change to this object, setting a value for
this object will cause the system to return bad-value error messages."
::= { agentBscSwFileEntry 2 }
agentBscSwFileAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address where the file that needs to be downloaded is located, or the IP address
where the file will be uploaded to."
::= { agentBscSwFileEntry 3 }
agentBscSwFileTransferType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
network-load(2),
out-of-band-load(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The channel through which the file will be downloaded or uploaded.
Note: For systems that do not support all channels, setting a value to the unsupported
channel will cause the system to return bad-value error messages."
::= { agentBscSwFileEntry 4 }
agentBscSwFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded from, or uploaded to, the TFTP server."
::= { agentBscSwFileEntry 5 }
agentBscSwFileLocateId OBJECT-TYPE
SYNTAX INTEGER (1..16)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object describes the type of file.
runtime-code (1),
log-file (2),
cfg-file (3)
Note: For systems that do not support changes to this object, setting a value for
this object will cause the system to return bad-value error messages."
::= { agentBscSwFileEntry 6 }
agentBscSwFileLoadType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
upload(2),
download(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object provides the user with a choice of uploading or downloading the selected file.
Note: For systems that do not support a change to this object, setting a value for this object
will cause the system to return bad-value error messages."
::= { agentBscSwFileEntry 7 }
agentBscSwFileCtrl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inactive(2),
start(3),
delete(4),
config-as-bootup(5),
apply(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object gives the user the option of downloading runtime software. This setting will take effect
when the system restarts. See Note (1) below
Note:
For systems that do not support changes to this object, setting a value to this object
will cause the system to return bad-value error messages.
start - Activate firmware.
delete (4) - Delete the firmware by indicated firmware ID.
config-as-bootup (5) - Configured as bootup firmware by the indicated
firmware(ID).
apply (6) - Apply the configuration to be the active configuration by the indicated config ID."
::= { agentBscSwFileEntry 8 }
agentBscSwFileBIncrement OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the previous configuration will remain
valid or not after downloading the configuration file.
True: Keep valid
False: Erase. "
::= { agentBscSwFileEntry 9 }
agentBscSwFileCtrlID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The section ID of the firmware image or configuration file.
A value of 0 indicates the boot-up firmware image or configuration file."
::= { agentBscSwFileEntry 10 }
agentBscSwFileCtrlUnitID OBJECT-TYPE
SYNTAX UnitList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which unit of the switch stack the firmware image will be downloaded from.
One or more units can be set in this list. Each bit from the left to the right represents the
switch from unit ID 1 to unit ID 12.
A null entry in this field denotes all switches in the switch stack."
::= { agentBscSwFileEntry 11 }
agentBscSwFileIPv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 address where the file will be downloaded from or uploaded to."
::= { agentBscSwFileEntry 12 }
agentBscSwFileBootUpImage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The result of the download will depend on whether the boot_up option is specified.
Case 1: In the case where the master unit provides the file system and the slave unit does
not provide the file system, when boot_up is specified, the file will be downloaded
to the boot_up image on the slave. If boot_up is not specified, then the file will
not be downloaded to this slave unit.
Case 2: In the case where the master unit does not provide the file system and the slave unit
provides the file system, when boot_up is specified, the file will be downloaded to
the boot_up image on the slave unit. If boot_up is not specified, the file will
not be downloaded to this slave unit.
Case 3: In the case where the master unit and the slave unit both support or do not support
the file system, the file will be downloaded to the specified file on the slave unit.
If boot_up is specified, the downloaded file will be assigned as the boot_up image.
True: boot_up option is specified.
False: boot_up option is not specified. "
::= { agentBscSwFileEntry 13 }
agentBscSwFileForceAgree OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the force_agree option is specified, the reboot command will be executed
immediately, without any further confirmation from the user.
True: force_agree option is specified.
False: force_agree option is not specified. "
::= { agentBscSwFileEntry 14 }
agentBscSwFileInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to specify the interface name when the agentBscSwFileIPv6Addr
is the link local address."
::= { agentBscSwFileEntry 15 }
agentBscSwFileServerDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the domain name of the TFTP server."
::= { agentBscSwFileEntry 16 }
agentFileTransfer OBJECT-TYPE
SYNTAX INTEGER {
other(1),
start(2),
start-and-reset(3),
noaction(4)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"This object will execute the download or upload action. If start (2) is chosen, it will
begin to download/upload and no reset will follow. If start-and-reset (3) is chosen,
then the reset will be activated after completing the download or upload.
No action if noaction (4) is chosen.
Note:
Because these functions will be limited by the support for the system in question,
some of the selected items will be invalid. When the user selects an invalid entry,
the system will respond with a bad-value status."
::= { agentBasicConfig 2 }
agentSystemReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
cold-start(2),
warm-start(3),
no-reset(4)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object indicates the agent system reset state. Setting this
object to no-reset (4) has no effect. Setting this object to
cold-start (2) or warm-start (3) will reset the agent. The agent
always returns to no-reset (4) when this object is read.
This object is replaced by 'agentReset'."
::= { agentBasicConfig 3 }
agentRs232PortConfig OBJECT-TYPE
SYNTAX INTEGER {
other(1),
console(2),
out-of-band(3),
notAvail(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the RS-232C mode once the device has restarted."
::= { agentBasicConfig 4 }
agentOutOfBandBaudRateConfig OBJECT-TYPE
SYNTAX INTEGER {
other(1),
baudRate-2400 (2),
baudRate-9600 (3),
baudRate-19200(4),
baudRate-38400(5),
baudRate-115200(6)
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"This object allows the user to specify an out-of-band baud rate, which
will take effect upon system restart.
Note:
Because these functions will be limited by the support for the system
in question, some of the selected items will be invalid. When the user
selects an invalid entry, the system will respond with a bad-value error message.
"
::= { agentBasicConfig 5 }
agentSaveCfg OBJECT-TYPE
SYNTAX INTEGER {
other(1),
cfg-id1(2),
cfg-id2(3),
log(4),
all(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the type of save command to be executed, when saving to NV-RAM.
other (1) - None of the following.
cfg-id1 (2) - Save configuration ID1.
cfg-id2 (3)- Save configuration ID2.
log (4) - Save log.
all (5) - Save both (active configuration and log)."
::= { agentBasicConfig 6 }
-- -----------------------------------------------------------------------------
-- swMultiImageInfoTable
-- -----------------------------------------------------------------------------
swMultiImageInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwMultiImageInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { agentBasicConfig 7 }
swMultiImageInfoEntry OBJECT-TYPE
SYNTAX SwMultiImageInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about multiple image management."
INDEX { swMultiImageInfoID }
::= { swMultiImageInfoTable 1 }
SwMultiImageInfoEntry ::=
SEQUENCE {
swMultiImageInfoID
INTEGER,
swMultiImageVersion
DisplayString,
swMultiImageSize
Integer32,
swMultiImageUpdateTime
DisplayString,
swMultiImageFrom
DisplayString,
swMultiImageSendUser
DisplayString,
swMultiImageFileName
DisplayString
}
swMultiImageInfoID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stacking section ID of the firmware image.
The stacking section ID = 256 * Unit ID + Image File ID."
::= { swMultiImageInfoEntry 1 }
swMultiImageVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded downloaded firmware version."
::= { swMultiImageInfoEntry 2 }
swMultiImageSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded downloaded firmware size."
::= { swMultiImageInfoEntry 3 }
swMultiImageUpdateTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded firmware update time."
::= { swMultiImageInfoEntry 4 }
swMultiImageFrom OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..100))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded IP address of the TFTP server"
::= { swMultiImageInfoEntry 5 }
swMultiImageSendUser OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The record of the user who downloaded the firmware."
::= { swMultiImageInfoEntry 6 }
swMultiImageFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the system is set to boot from SD card, this object will display the recorded path name of the boot firmware file. "
::= { swMultiImageInfoEntry 7 }
-- -----------------------------------------------------------------------------
agentMultiCfgMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 8 }
swMultiCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwMultiCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { agentMultiCfgMgmt 1 }
swMultiCfgInfoEntry OBJECT-TYPE
SYNTAX SwMultiCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about multiple configuration files."
INDEX { swMultiCfgInfoID }
::= { swMultiCfgInfoTable 1 }
SwMultiCfgInfoEntry ::=
SEQUENCE {
swMultiCfgInfoID
INTEGER,
swMultiCfgVersion
DisplayString,
swMultiCfgSize
Integer32,
swMultiCFgUpdateTime
DisplayString,
swMultiCfgFrom
DisplayString,
swMultiCfgSendUser
DisplayString,
swMultiCfgFileName
DisplayString
}
swMultiCfgInfoID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The section ID of the configuration files."
::= { swMultiCfgInfoEntry 1 }
swMultiCfgVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded downloaded configuration version."
::= { swMultiCfgInfoEntry 2 }
swMultiCfgSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded downloaded configuration size (in bytes).
"
::= { swMultiCfgInfoEntry 3 }
swMultiCFgUpdateTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded configuration update time
displayed in string format, i.e. yyyy/mon/dd hh:mm:ss."
::= { swMultiCfgInfoEntry 4 }
swMultiCfgFrom OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..100))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recorded IP address of the TFTP server."
::= { swMultiCfgInfoEntry 5 }
swMultiCfgSendUser OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The record of the user who downloaded the configuration file"
::= { swMultiCfgInfoEntry 6 }
swMultiCfgFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When the system is set to boot from SD card, this object displays the recorded path name of the boot configuration file. "
::= { swMultiCfgInfoEntry 7 }
-- -----------------------------------------------------------------------------
swMultiCfgCurrentUsed OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The indicated configuration file ID of the system currently in use."
::= { agentMultiCfgMgmt 2 }
swMultiCfgBootUp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the configuration file ID which will take effect upon the next reboot."
::= { agentMultiCfgMgmt 3 }
-- -----------------------------------------------------------------------------
-- swMultiCfgCtrlTable
-- -----------------------------------------------------------------------------
swMultiCfgCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwMultiCfgCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { agentMultiCfgMgmt 4 }
swMultiCfgCtrlEntry OBJECT-TYPE
SYNTAX SwMultiCfgCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about multiple configuration management."
INDEX { swMultiCfgCtrlID }
::= { swMultiCfgCtrlTable 1 }
SwMultiCfgCtrlEntry ::=
SEQUENCE {
swMultiCfgCtrlID
INTEGER,
swMultiCfgAction
INTEGER
}
swMultiCfgCtrlID OBJECT-TYPE
SYNTAX INTEGER{
cfgId-1(1),
cfgId-2(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The section ID of the configuration file."
::= { swMultiCfgCtrlEntry 1 }
swMultiCfgAction OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
delete(2),
apply(3),
none(4),
config-as-bootup-cfg(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
save: Save configuration to active configuration ID when the parameter is omitted.
active: Set any valid configuration as the active configuration.
delete: Removes the configuration from the flash memory. This configuration
cannot be the active or current configuration file.
apply: Loads the indicated configuration file and applies it to the system.
config-as-bootup-cfg: Configured as the boot-up configuration by the indicated configuration(ID)."
::= { swMultiCfgCtrlEntry 2 }
-- -----------------------------------------------------------------------------
-- Add common severity control management
-- -----------------------------------------------------------------------------
systemSeverityControlMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 9 }
systemSeverityTrapControl OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the level of trap severity control. The system has a severity level control
and each trap should have a severity control set. When trap events occur and its severity
is higher than the system severity control level, the trap works as defined. If the event
severity is lower than the system severity control level, the event is ignored as if it
did not occur."
::= { systemSeverityControlMgmt 1 }
systemSeverityLogControl OBJECT-TYPE
SYNTAX AgentNotifyLevel
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the level of trap severity control. The system has a severity level control and
each trap should have a severity control set. When trap events occur and its severity is
higher than the system severity control level, the trap works as defined. If the event
severity is lower than the system severity control level, the event is ignored as if
it did not occur."
::= { systemSeverityControlMgmt 2 }
-- -----------------------------------------------------------------------------
-- agentTrustedHostMgmt
-- -----------------------------------------------------------------------------
agentTrustedHostMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 10 }
agentTrustedHostTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentTrustedHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the trusted host information."
::= { agentTrustedHostMgmt 1 }
agentTrustedHostEntry OBJECT-TYPE
SYNTAX AgentTrustedHostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about the trusted hosts."
INDEX { agentTrustedHostIndex }
::= { agentTrustedHostTable 1 }
AgentTrustedHostEntry ::=
SEQUENCE {
agentTrustedHostIndex
INTEGER,
agentTrustedHostIPAddress
IpAddress,
agentTrustedHostRowStatus
RowStatus,
agentTrustedHostIPSubnetMask
IpAddress,
agentTrustedHostForSNMP
INTEGER,
agentTrustedHostForTELNET
INTEGER,
agentTrustedHostForSSH
INTEGER,
agentTrustedHostForHTTP
INTEGER,
agentTrustedHostForHTTPS
INTEGER,
agentTrustedHostForPING
INTEGER,
agentTrustedHostAddrType
InetAddressType,
agentTrustedHostAddr
InetAddress,
agentTrustedHostIPv6PrefixLen
INTEGER
}
agentTrustedHostIndex OBJECT-TYPE
SYNTAX INTEGER (1..30)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the trusted host entry."
::= { agentTrustedHostEntry 1 }
agentTrustedHostIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP address of the trusted host."
::= { agentTrustedHostEntry 2 }
agentTrustedHostRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the status of this entry. When creating a trusted host
entry, the IP address should also be set."
::= { agentTrustedHostEntry 3 }
agentTrustedHostIPSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP subnet mask of the trusted host."
::= { agentTrustedHostEntry 4 }
agentTrustedHostForSNMP OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for SNMP."
::= { agentTrustedHostEntry 5 }
agentTrustedHostForTELNET OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for Telnet."
::= { agentTrustedHostEntry 6 }
agentTrustedHostForSSH OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for SSH."
::= { agentTrustedHostEntry 7 }
agentTrustedHostForHTTP OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for HTTP."
::= { agentTrustedHostEntry 8 }
agentTrustedHostForHTTPS OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for HTTPS."
::= { agentTrustedHostEntry 9 }
agentTrustedHostForPING OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the trusted host for PING."
::= { agentTrustedHostEntry 10 }
agentTrustedHostAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of trusted host address as specified by
the 'agentTrustedHostAddr' object."
::= { agentTrustedHostEntry 11 }
agentTrustedHostAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP address of the trusted host."
::= { agentTrustedHostEntry 12 }
agentTrustedHostIPv6PrefixLen OBJECT-TYPE
SYNTAX INTEGER (1..128)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IPv6 prefix length of the IPv6 trusted host."
::= { agentTrustedHostEntry 13 }
-- -----------------------------------------------------------------------------
-- agentTrustedHostDelAllState
-- -----------------------------------------------------------------------------
agentTrustedHostDelAllState OBJECT-TYPE
SYNTAX INTEGER{
none(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to delete all trusted host entries."
::= { agentTrustedHostMgmt 2 }
-- -----------------------------------------------------------------------------
-- agentFDBMgmt
-- -----------------------------------------------------------------------------
agentFDBMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 11 }
agentFDBClearAllState OBJECT-TYPE
SYNTAX INTEGER{
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to clear all FDB entries."
::= { agentFDBMgmt 1 }
agentFDBClearByPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFDBClearByPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Used to clear FDB entries by port."
::= { agentFDBMgmt 2 }
agentFDBClearByPortEntry OBJECT-TYPE
SYNTAX AgentFDBClearByPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an entry of the agentFDBClearByPortTable."
INDEX { agentFDBClearPortIndex }
::= { agentFDBClearByPortTable 1 }
AgentFDBClearByPortEntry ::=
SEQUENCE {
agentFDBClearPortIndex
INTEGER,
agentFDBClearByPortAction
INTEGER
}
agentFDBClearPortIndex OBJECT-TYPE
SYNTAX INTEGER(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the port number."
::= { agentFDBClearByPortEntry 1 }
agentFDBClearByPortAction OBJECT-TYPE
SYNTAX INTEGER{
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to clear FDB or not."
::= { agentFDBClearByPortEntry 2 }
agentFDBClearByVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFDBClearByVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Used to clear FDB entries by port."
::= { agentFDBMgmt 3 }
agentFDBClearByVlanEntry OBJECT-TYPE
SYNTAX AgentFDBClearByVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an entry of agentFDBClearByPortTable."
INDEX { agentFDBClearVid }
::= { agentFDBClearByVlanTable 1 }
AgentFDBClearByVlanEntry ::=
SEQUENCE {
agentFDBClearVid
VlanId,
agentFDBClearByVlanAction
INTEGER
}
agentFDBClearVid OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN-ID."
::= { agentFDBClearByVlanEntry 1 }
agentFDBClearByVlanAction OBJECT-TYPE
SYNTAX INTEGER{
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to clear the FDB or not."
::= { agentFDBClearByVlanEntry 2 }
agentFDBSecurityTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFDBSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Used to display the FDB entries that have been created by the security module."
::= { agentFDBMgmt 4}
agentFDBSecurityEntry OBJECT-TYPE
SYNTAX AgentFDBSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an entry of agentFDBSecurityTable."
INDEX {
agentFDBVid,
agentFDBMacAddress
}
::= { agentFDBSecurityTable 1 }
AgentFDBSecurityEntry ::=
SEQUENCE {
agentFDBVid
VlanId,
agentFDBMacAddress
MacAddress,
agentFDBPort
INTEGER,
agentFDBType
INTEGER,
agentFDBStatus
INTEGER,
agentFDBSecurityModule
INTEGER
}
agentFDBVid OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VLAN-ID."
::= { agentFDBSecurityEntry 1 }
agentFDBMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the MAC address."
::= { agentFDBSecurityEntry 2 }
agentFDBPort OBJECT-TYPE
SYNTAX INTEGER(1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the port number."
::= { agentFDBSecurityEntry 3 }
agentFDBType OBJECT-TYPE
SYNTAX INTEGER{
dynamic(1),
static(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address type."
::= { agentFDBSecurityEntry 4 }
agentFDBStatus OBJECT-TYPE
SYNTAX INTEGER{
drop(1),
forward(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address's forwarding status."
::= { agentFDBSecurityEntry 5}
agentFDBSecurityModule OBJECT-TYPE
SYNTAX INTEGER{
dot1x(1),
wac(2),
jwac(3),
port-security(4),
mac-based-access-control(5),
compound-authentication(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to indicate which security module created the current MAC address.
dot1x: 802.1X.
wac: Web-based Access Control.
jwac: Web-Based Access Control extension for Japan.
port-security: Port Security.
mac-based-access-control: MAC-based Access Control.
compound-authentication: Compound Authentication."
::= { agentFDBSecurityEntry 6}
-- -----------------------------------------------------------------------------
-- agentARPMgmt
-- -----------------------------------------------------------------------------
agentARPMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 12 }
agentARPClearAllState OBJECT-TYPE
SYNTAX INTEGER{
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to clear all ARP entries."
::= { agentARPMgmt 1 }
-- -----------------------------------------------------------------------------
-- agentGratuitousARPMgmt
-- -----------------------------------------------------------------------------
agentGratuitousARPMgmt OBJECT IDENTIFIER ::={agentARPMgmt 2}
agentGratuitousARPSendIpifStatusUpState OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is used to enable/disable sending of gratuitous ARP request
packets while the IPIF interface comes up. This is used to automatically
announce the interface's IP address to other nodes. By default,
the state is enabled, and only one ARP packet will be broadcast."
DEFVAL { enabled }
::={ agentGratuitousARPMgmt 1}
agentGratuitousARPSendDupIpDetectedState OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is used to enable/disable the sending of gratuitous ARP request
packets while a duplicate IP is detected. By default, the state is enabled.
The duplicate IP detected state indicates that the system has received an ARP request
packet that was sent by an IP address that matches the system's own IP address.
In this case, the system knows that somebody out there is using an IP address
that is in conflict with the system. In order to reclaim the correct host
of this IP address, the system can send out the gratuitous ARP request
packet for this duplicate IP address."
DEFVAL { enabled }
::={ agentGratuitousARPMgmt 2}
agentGratuitousARPLearningState OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is used to enable/disable learning of an ARP entry in the ARP
cache based on the received gratuitous ARP packet. If the switch
receives a gratuitous ARP request/reply packet and the sender's
IP address is in its ARP table, it should update the ARP entry.
By default, the state is disabled."
DEFVAL { disabled }
::={ agentGratuitousARPMgmt 3}
agentGratuitousARPTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentGratuitousARPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Gratuitous ARP Table Information."
::={ agentGratuitousARPMgmt 4}
agentGratuitousARPEntry OBJECT-TYPE
SYNTAX AgentGratuitousARPEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information from the Gratuitous ARP Table."
INDEX {
agentGratuitousARPInterfaceName
}
::={ agentGratuitousARPTable 1 }
AgentGratuitousARPEntry ::=
SEQUENCE {
agentGratuitousARPInterfaceName
DisplayString,
agentGratuitousARPPeriodicalSendInterval
INTEGER,
agentGratuitousARPTrapState
INTEGER,
agentGratuitousARPLogState
INTEGER
}
agentGratuitousARPInterfaceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the IP interface."
::={agentGratuitousARPEntry 1}
agentGratuitousARPPeriodicalSendInterval OBJECT-TYPE
SYNTAX INTEGER (0..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is used to configure the interval for the periodic sending of
gratuitous ARP request packets.
0 means do not send gratuitous ARP request packets periodically."
DEFVAL { 0 }
::={agentGratuitousARPEntry 2}
agentGratuitousARPTrapState OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates the state of the gratuitous ARP trap. The switch can
trap the IP conflict events to inform the administrator.
By default, the trap is disabled."
DEFVAL { disabled }
::={agentGratuitousARPEntry 3}
agentGratuitousARPLogState OBJECT-TYPE
SYNTAX INTEGER{
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates the state of the gratuitous Log trap. The switch can
log the IP conflict events to inform the administrator.
By default, the event log is enabled."
DEFVAL { enabled }
::={agentGratuitousARPEntry 4}
agentARPTotalARPEntries OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used to display the total number of ARP entries."
::= { agentARPMgmt 3 }
agentARPRetryTimes OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates the retry times of the ARP request."
::= { agentARPMgmt 4 }
-- -----------------------------------------------------------------------------
-- swMultiImageCtrlTable
-- -----------------------------------------------------------------------------
swMultiImageCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwMultiImageCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
::= { agentBasicConfig 13 }
swMultiImageCtrlEntry OBJECT-TYPE
SYNTAX SwMultiImageCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about multiple image management."
INDEX { swMultiImageCtrlID }
::= { swMultiImageCtrlTable 1 }
SwMultiImageCtrlEntry ::=
SEQUENCE {
swMultiImageCtrlID
INTEGER,
swMultiImageCtrlAction
INTEGER
}
swMultiImageCtrlID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stacking section ID of the firmware image.
The stacking section ID = 256 * Unit ID + Image File ID."
::= { swMultiImageCtrlEntry 1 }
swMultiImageCtrlAction OBJECT-TYPE
SYNTAX INTEGER{
config-as-bootup-fw(1),
delete(2),
none(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the running status of the image which is
specified by swMultiImageCtrlID and swMultiImageCtrlUnitID.
config-as-bootup-fw (1) - Configured as the bootup firmware by the indicated firmware(ID).
delete (2) - Delete the firmware by indicated firmware ID.
none (3) - No action.
"
::= { swMultiImageCtrlEntry 2 }
-- -----------------------------------------------------------------------------
agentOutOfBandDataBits OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the out-of-band data bits."
::= { agentBasicConfig 14 }
agentOutOfBandParityBits OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the out-of-band parity bits."
::= { agentBasicConfig 15 }
agentOutOfBandStopBits OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the out-of-band stop bits."
::= { agentBasicConfig 16 }
agentOutOfBandAutoLogoutConfig OBJECT-TYPE
SYNTAX INTEGER {
never(1),
minutes-2(2),
minutes-5(3),
minutes-10(4),
minutes-15(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to specify an out-of-band auto logout time."
::= { agentBasicConfig 17 }
-- -----------------------------------------------------------------------------
-- agentBscFileSystemMgmt
-- -----------------------------------------------------------------------------
agentBscFileSystemMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 18 }
agentBscFileSystemTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentBscFileSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of MIB File System Basic Configuration entries supported
by the file update of this agent."
::= { agentBscFileSystemMgmt 1 }
agentBscFileSystemEntry OBJECT-TYPE
SYNTAX AgentBscFileSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A File System basic configuration entry that contains objects
describing a particular MIB supported by this agent."
INDEX { agentBscFileSystemIndex }
::= { agentBscFileSystemTable 1 }
AgentBscFileSystemEntry ::=
SEQUENCE {
agentBscFileSystemIndex
Integer32,
agentBscFileSystemDscr
DisplayString,
agentBscFileSystemServerAddr
IpAddress,
agentBscFileSystemServerIPv6Addr
Ipv6Address,
agentBscFileSystemServerFileName
DisplayString,
agentBscFileSystemDeviceDriverID
INTEGER,
agentBscFileSystemDeviceFileName
DisplayString,
agentBscFileSystemLoadType
INTEGER,
agentBscFileSystemCtrlUnitID
UnitList,
agentBscFileSystemBootUpImage
TruthValue,
agentBscFileSystemForceAgree
TruthValue,
agentBscFileSystemCtrl
INTEGER,
agentBscFileSystemInterfaceName
DisplayString,
agentBscFileSystemServerDomainName
DisplayString,
agentBscFileSystemIncrement
TruthValue,
agentBscFileSystemServerVrfName
DisplayString
}
agentBscFileSystemIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for the file entry.
This object describes the file type.
runtime-code (1),
log-file (2),
cfg-file (3),
attack-log-file (7)"
::= { agentBscFileSystemEntry 1 }
agentBscFileSystemDscr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the software file purpose in this entry."
::= { agentBscFileSystemEntry 2 }
agentBscFileSystemServerAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address where the file to be downloaded is located, or the IP address
where the file will be uploaded to."
::= { agentBscFileSystemEntry 3 }
agentBscFileSystemServerIPv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 address where the file is to be downloaded from or uploaded to."
::= { agentBscFileSystemEntry 4 }
agentBscFileSystemServerFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded from or uploaded to the TFTP server.
If agentBscFileSystemDeviceFileName is not set, the switch will default to using
the bootup file as the runtime image for the switch."
::= { agentBscFileSystemEntry 5 }
agentBscFileSystemDeviceDriverID OBJECT-TYPE
SYNTAX INTEGER {
none(1),
a(2),
b(3),
c(4),
d(5),
e(6),
f(7),
g(8),
h(9),
i(10),
j(11),
k(12),
l(13),
m(14),
n(15),
o(16),
p(17),
q(18),
r(19),
s(20),
t(21),
u(22),
v(23),
w(24),
x(25),
y(26),
z(27)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the drive of the device that the firmware to be uploaded/downloaded is located.
If none (1) is specified, the switch will default to the current drive."
::= { agentBscFileSystemEntry 6 }
agentBscFileSystemDeviceFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded to the device, or uploaded from the
device. When downloading or uploading, the agentBscFileSystemServerFileName object must also be set."
::= { agentBscFileSystemEntry 7 }
agentBscFileSystemLoadType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
upload(2),
download(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to select a download or upload function for the file.
Note:
For systems that do not support changes to this object, setting a value for
this object will cause the system to return a bad-value error message.
"
::= { agentBscFileSystemEntry 8 }
agentBscFileSystemCtrlUnitID OBJECT-TYPE
SYNTAX UnitList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which unit of the switch stack the firmware image or configuration file should be downloaded from.
One or more units can be set in this list. Each bit from left to right represents the
switch from unit ID 1 to unit ID 12.
If this list is set to null it represents all stack switches."
::= { agentBscFileSystemEntry 9 }
agentBscFileSystemBootUpImage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The result of the download will depend on whether the boot_up option has been specified.
Case 1: In the case of the master unit providing the file system and the slave unit
not providing the file system, when the boot_up parameter is specified, then the file will
be downloaded to the boot_up image on the slave. If the boot_up parameter is not specified,
then the file will not be downloaded to this slave unit.
Case 2: In the case of the master unit not providing the file system and the slave unit
providing the file system, when the boot_up parameter is specified, then the file will be downloaded
to the boot_up image on the slave unit. If boot_up is not specified, then the file will
not be downloaded to this slave unit.
Case 3: In the case of the master unit and the slave unit both supporting or not supporting the
file system, the file will be downloaded to the specified file on the slave unit. If boot_up
is specified, the downloaded file will be assigned as the boot_up image.
True: boot_up option is specified.
False: boot_up option is not specified.. "
::= { agentBscFileSystemEntry 10 }
agentBscFileSystemForceAgree OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the force_agree option is specified, the reboot command will be executed immediately
without any further confirmation from the user.
True: force_agree option is specified.
False: force_agree option is not specified.. "
::= { agentBscFileSystemEntry 11 }
agentBscFileSystemCtrl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inactive(2),
start(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to download runtime software. The settings
will take effect when the system restarts. See Note (1) below
Note 1:
For systems which do not support value changes to this object,
setting these values will cause the system to return a bad-value error message
start (3) - activate firmware.
"
::= { agentBscFileSystemEntry 12 }
agentBscFileSystemInterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to specify the interface name when agentBscFileSystemServerIPv6Addr
is the local link address."
::= { agentBscFileSystemEntry 13 }
agentBscFileSystemServerDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the domain name of the TFTP server."
::= { agentBscFileSystemEntry 14 }
agentBscFileSystemIncrement OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If increment is specified, then the existing configuration will not be cleared before applying
of the new configuration. If it is not specified, then the existing configuration will be cleared
before applying of the new configuration.
True : keep valid
False : erase. "
::= { agentBscFileSystemEntry 15 }
agentBscFileSystemServerVrfName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the VRF name of the TFTP server.Input string 'reserved'
for the global space."
::= { agentBscFileSystemEntry 16}
-- --------------------------------------------------------------------------------
agentBscFileSystemSaveConfigDriverID OBJECT-TYPE
SYNTAX INTEGER {
none(1),
a(2),
b(3),
c(4),
d(5),
e(6),
f(7),
g(8),
h(9),
i(10),
j(11),
k(12),
l(13),
m(14),
n(15),
o(16),
p(17),
q(18),
r(19),
s(20),
t(21),
u(22),
v(23),
w(24),
x(25),
y(26),
z(27)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The drive on the device that the configuration file is will be saved to.
If none (1) is specified, the switch places the file on the current drive by default."
::= { agentBscFileSystemMgmt 2 }
agentBscFileSystemSaveConfigFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the configuration file that will be saved to the device.
When agentBscFileSystemSaveCfg is set to cfg (2), and if the agentBscFileSystemSaveConfigFileName
is not null, the configuration file will be saved to the set file name.
If set to null, the configuration file will be saved to the boot_up CFG file. "
::= { agentBscFileSystemMgmt 3 }
agentBscFileSystemSaveCfg OBJECT-TYPE
SYNTAX INTEGER {
other(1),
cfg(2),
log(3),
all(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates the method of saving information to the NV-RAM of the device.
other (1) - None of the following.
cfg (2) - Save configuration.
log (3) - Save log.
all (4) - Save both ( active configuration and log)."
::= { agentBscFileSystemMgmt 4 }
-- -----------------------------------------------------------------------------
agentFileSystemConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFileSystemConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table indicates the information about the bootup files."
::= { agentBscFileSystemMgmt 5 }
agentFileSystemConfigEntry OBJECT-TYPE
SYNTAX AgentFileSystemConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about the bootup files for each unit of the switch stack."
INDEX { agentFileSystemUnit }
::= { agentFileSystemConfigTable 1 }
AgentFileSystemConfigEntry ::=
SEQUENCE {
agentFileSystemUnit
Integer32,
agentFileSystemDriverID
INTEGER,
agentFileSystemBootImage
DisplayString,
agentFileSystemBootConfig
DisplayString,
agentFileSystemActConfig
DisplayString
}
agentFileSystemUnit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unit ID."
::= { agentFileSystemConfigEntry 1 }
agentFileSystemDriverID OBJECT-TYPE
SYNTAX INTEGER {
none(1),
a(2),
b(3),
c(4),
d(5),
e(6),
f(7),
g(8),
h(9),
i(10),
j(11),
k(12),
l(13),
m(14),
n(15),
o(16),
p(17),
q(18),
r(19),
s(20),
t(21),
u(22),
v(23),
w(24),
x(25),
y(26),
z(27)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The drive on the device that the configuration file will be saved to.
If none (1) is specified, the switch will place the file to the current drive by default."
::= { agentFileSystemConfigEntry 2 }
agentFileSystemBootImage OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When displayed, it shows the current bootup image file name.
When set, the set name will be set as the bootup image."
::= { agentFileSystemConfigEntry 3 }
agentFileSystemBootConfig OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When displayed, it shows the current bootup configuration file name.
When set, the set name will be set as the bootup configuration."
::= { agentFileSystemConfigEntry 4 }
agentFileSystemActConfig OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When displayed, it shows null.
When set, the set name will be active at once, but the set name
will not be set as the bootup configuration."
::= { agentFileSystemConfigEntry 5 }
-- -----------------------------------------------------------------------------
agentReboot OBJECT-TYPE
SYNTAX INTEGER {
none(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to restart the switch."
::= { agentBasicConfig 19 }
agentReset OBJECT-TYPE
SYNTAX INTEGER {
none(1),
config(2),
system(3),
reset(4),
system-exclude-vlan(5),
system-exclude-ip(6),
system-exclude-vlan-ip(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Used to reset all switch parameters.
none (1): No action. This is the default value of this object.
config (2): All parameters are reset to default settings.
The device will neither save nor reboot.
system (3): All parameters are reset to default settings.
The switch will then do a factory reset, save, and reboot.
reset (4) : All parameters will be reset to default settings except for the
IP address, user account, and history log.
The device will neither save nor reboot.
system-exclude-vlan(5) : All parameters are reset to default settings except for VLAN.
The switch will then save its settings and reboot.
system-exclude-ip(6) : All parameters are reset to default settings except IP address.
The switch will then save its settings and reboot.
system-exclude-vlan-ip(7): All parameters are reset to default settings except VLAN and IP address.
The switch will then save its settings and reboot.
"
::= { agentBasicConfig 20 }
-- -----------------------------------------------------------------------------
-- agentFTPFileTable
-- -----------------------------------------------------------------------------
agentFTPFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFTPFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of the MIB Basic Config entries support files updated by this agent."
::= { agentBasicConfig 21 }
agentFTPFileEntry OBJECT-TYPE
SYNTAX AgentFTPFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A basic configuration entry containing the objects describing a particular MIB
supported by this agent."
INDEX { agentFTPFileIndex }
::= { agentFTPFileTable 1 }
AgentFTPFileEntry ::=
SEQUENCE {
agentFTPFileIndex
Integer32,
agentFTPFileDscr
DisplayString,
agentFTPFileLoadType
INTEGER,
agentFTPFileAddr
IpAddress,
agentFTPTCPPort
INTEGER,
agentFTPFileName
DisplayString,
agentFTPUserName
DisplayString,
agentFTPPassword
DisplayString,
agentFTPFileCtrlID
INTEGER,
agentFTPFileBIncrement
TruthValue,
agentFTPFileCtrl
INTEGER,
agentFTPFileBootUpImage
TruthValue,
agentFTPFileForceAgree
TruthValue,
agentFTPFileIPv6Addr
DisplayString,
agentFTPFileInterfaceName
DisplayString,
agentFTPFileUnitID
UnitList
}
agentFTPFileIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The table index for the file entry. This object describes the file type
runtime-code (1),
log-file (2),
cfg-file (3)"
::= { agentFTPFileEntry 1 }
agentFTPFileDscr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The description of the software file purpose in this entry.
Note: For systems which do not support changes to this object, setting a value for
this object will cause the system to return bad-value error messages."
::= { agentFTPFileEntry 2 }
agentFTPFileLoadType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
upload(2),
download(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object provides the user with a choice of uploading or downloading the selected file.
Note: For systems which do not support a change of this object, setting a value to this object
will cause the system to return bad-value error messages."
::= { agentFTPFileEntry 3 }
agentFTPFileAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address that the file to be downloaded is located on, or the IP address
where the file will be uploaded to."
::= { agentFTPFileEntry 4 }
agentFTPTCPPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number being used to establish the command connection."
::= { agentFTPFileEntry 5 }
agentFTPFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded from, or uploaded to, the FTP server."
::= { agentFTPFileEntry 6 }
agentFTPUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the user name to enter in upload/download. "
::= { agentFTPFileEntry 7 }
agentFTPPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the password to enter for an upload/download."
::= { agentFTPFileEntry 8 }
agentFTPFileCtrlID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The section ID of the firmware image or configuration file.
A value of 0 indicates the boot-up firmware image or configuration file."
::= { agentFTPFileEntry 9 }
agentFTPFileBIncrement OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the previous configuration will remain
valid or not after downloading the configuration file.
True: Keep valid
False: Erase. "
::= { agentFTPFileEntry 10 }
agentFTPFileCtrl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object gives the user the option to download runtime software. The setting will take effect
when the system restarts. See Note (1) below
Note 1:
For systems which do not support changes to this object, setting a value for this object
will cause the system to return bad-value error messages. "
::= { agentFTPFileEntry 11 }
agentFTPFileBootUpImage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to set the special file as a boot up file or not.
True: The boot-up option is specified.
False: The boot-up option is not specified."
::= { agentFTPFileEntry 12 }
agentFTPFileForceAgree OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the force-agree option is specified, the reboot command will be executed
immediately without any further confirmation from the user.
True: Force-agree option is specified.
False: Force-agree option is not specified."
::= { agentFTPFileEntry 13 }
agentFTPFileIPv6Addr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 address where the file is to be downloaded from or uploaded to."
::= { agentFTPFileEntry 14 }
agentFTPFileInterfaceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This node is used to specify the interface name when agentFTPFileIPv6Addr
is the local link address. "
::= { agentFTPFileEntry 15 }
agentFTPFileUnitID OBJECT-TYPE
SYNTAX UnitList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which unit of the switch stack the firmware image or configuration
file should be downloaded from. One or more units can be set in this list. Each
bit from left to right represents the switch from unit ID 1 to unit ID 12.If this
list is set to null it represents all stack switches."
::= { agentFTPFileEntry 16 }
-- -----------------------------------------------------------------------------
-- agentSnmpTrapState
-- -----------------------------------------------------------------------------
agentSnmpTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates if the SNMP trap is enabled or disabled."
::= { agentBasicConfig 22 }
-- -----------------------------------------------------------------------------
-- agentOutOfBandMgmt
-- -----------------------------------------------------------------------------
agentOutOfBandMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 23 }
agentOutOfBandMgmtState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables the interface."
::= { agentOutOfBandMgmt 1 }
agentOutOfBandMgmtIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address for out of band management. This object can only take the
value of the unicast IP address."
::= { agentOutOfBandMgmt 2 }
agentOutOfBandMgmtSubnetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP net mask for out of band management."
::= { agentOutOfBandMgmt 3 }
agentOutOfBandMgmtGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The gateway for out of band management. "
::= { agentOutOfBandMgmt 4 }
agentOutOfBandMgmtLinkStatus OBJECT-TYPE
SYNTAX INTEGER {
link-up(1),
link-down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Link status for out of band management."
::= { agentOutOfBandMgmt 5 }
-- -----------------------------------------------------------------------------
-- agentTrapMgmt
-- -----------------------------------------------------------------------------
agentTrapMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 24 }
agentTrapColdStart OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a cold start event,
a trap will be sent out."
::= { agentTrapMgmt 1 }
agentTrapWarmStart OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a warm start event,
a trap will be sent out."
::= { agentTrapMgmt 2 }
agentTrapRmonRisingAlarm OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a RMON rising alarm
event , a trap will be sent out."
::= { agentTrapMgmt 3 }
agentTrapRmonFallingAlarm OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a RMON falling alarm
event, a trap will be sent out."
::= { agentTrapMgmt 4 }
agentTrapCfgSave OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a configuration saving
completed event, a trap will be sent out."
::= { agentTrapMgmt 5 }
agentTrapCfgUpload OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a configuration
uploading completed event, a trap will be sent out."
::= { agentTrapMgmt 6 }
agentTrapCfgDownload OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When enabled (1), whenever the device detects a configuration
downloading completed event, a trap will be sent out"
::= { agentTrapMgmt 7 }
-- -----------------------------------------------------------------------------
-- agentFTPFileSystemTable
-- -----------------------------------------------------------------------------
agentFTPFileSystemTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentFTPFileSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The FTP management table for the file system"
::= { agentBasicConfig 25 }
agentFTPFileSystemEntry OBJECT-TYPE
SYNTAX AgentFTPFileSystemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A File System basic configuration entry that contains objects
describing a particular MIB supported by this agent."
INDEX { agentFTPFileSystemIndex }
::= { agentFTPFileSystemTable 1 }
AgentFTPFileSystemEntry ::=
SEQUENCE {
agentFTPFileSystemIndex
Integer32,
agentFTPFileSystemDscr
DisplayString,
agentFTPFileSystemLoadType
INTEGER,
agentFTPFileSystemAddressType
InetAddressType,
agentFTPFileSystemAddress
InetAddress,
agentFTPFileSystemTCPPort
INTEGER,
agentFTPFileSystemServerFileName
DisplayString,
agentFTPFileSystemDeviceFileName
DisplayString,
agentFTPFileSystemUserName
DisplayString,
agentFTPFileSystemPassword
DisplayString,
agentFTPFileSystemCtrlUnitID
UnitList,
agentFTPFileSystemBootUpImage
TruthValue,
agentFTPFileSystemCtrl
INTEGER,
agentFTPFileSystemVrfName
DisplayString
}
agentFTPFileSystemIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table index for the file entry."
::= { agentFTPFileSystemEntry 1 }
agentFTPFileSystemDscr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the software file purpose in this entry."
::= { agentFTPFileSystemEntry 2 }
agentFTPFileSystemLoadType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
upload(2),
download(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to select a download or upload function for the file."
::= { agentFTPFileSystemEntry 3 }
agentFTPFileSystemAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The address type of agentFTPFileSystemAddress."
::= { agentFTPFileSystemEntry 4 }
agentFTPFileSystemAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the FTP server address."
::= {agentFTPFileSystemEntry 5}
agentFTPFileSystemTCPPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The TCP port number being used to establish the control connection."
::= { agentFTPFileSystemEntry 6 }
agentFTPFileSystemServerFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded from or uploaded to the FTP server."
::= { agentFTPFileSystemEntry 7 }
agentFTPFileSystemDeviceFileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the file to be downloaded to the device, or uploaded from the
device.
If agentFTPFileSystemDeviceFileName is not set, the switch will default to
the bootup file."
::= { agentFTPFileSystemEntry 8 }
agentFTPFileSystemUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the user name to access the FTP server."
::= { agentFTPFileSystemEntry 9 }
agentFTPFileSystemPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the password to access the FTP server."
::= { agentFTPFileSystemEntry 10 }
agentFTPFileSystemCtrlUnitID OBJECT-TYPE
SYNTAX UnitList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which unit of the switch stack the firmware image or configuration
file should be downloaded from. One or more units can be set in this list. Each
bit from left to right represents the switch from unit ID 1 to unit ID 12.If this
list is set to null it represents all stack switches."
::= { agentFTPFileSystemEntry 11 }
agentFTPFileSystemBootUpImage OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether to set the special file as the boot up file or not.
True: The boot-up option is specified.
False: The boot-up option is not specified."
::= { agentFTPFileSystemEntry 12 }
agentFTPFileSystemCtrl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
start(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object allows the user to execute an FTP download/upload."
::= { agentFTPFileSystemEntry 13 }
agentFTPFileSystemVrfName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the VRF name of the FTP server.Input string 'reserved'
for the global space."
::= { agentFTPFileSystemEntry 14 }
-- -----------------------------------------------------------------------------
-- agentBscCMDLogState
-- -----------------------------------------------------------------------------
agentBscCMDLogState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the command logging state."
::= { agentBasicConfig 26 }
-- -----------------------------------------------------------------------------
-- agentBscBroadcastPingReplyState
-- -----------------------------------------------------------------------------
agentBscBroadcastPingReplyState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the broadcast ping reply state."
::= { agentBasicConfig 27 }
-- -----------------------------------------------------------------------------
-- agentBscTftpConfigMgmt
-- -----------------------------------------------------------------------------
agentBscTftpConfigMgmt OBJECT IDENTIFIER ::= { agentBasicConfig 28 }
agentBscTftpCfgFirmwareFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The firmware pathname that needs to be downloaded/uploaded from/to the TFTP server."
::= { agentBscTftpConfigMgmt 1 }
agentBscTftpCfgConfigFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration pathname that needs to be downloaded/uploaded from/to the TFTP server."
::= { agentBscTftpConfigMgmt 2 }
agentBscTftpCfgLogFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The log pathname that needs to be uploaded to the TFTP server."
::= { agentBscTftpConfigMgmt 3 }
agentBscTftpCfgAttackLogFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The attack log pathname that needs to be uploaded to the TFTP server."
::= { agentBscTftpConfigMgmt 4 }
agentBscTftpCfgCertificateFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The certificate pathname that needs to be downloaded from the TFTP server."
::= { agentBscTftpConfigMgmt 5 }
agentBscTftpCfgKeyFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The key pathname that needs to be downloaded from the TFTP server."
::= { agentBscTftpConfigMgmt 6 }
agentBscTftpCfgTechSuooprtFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The technique's support information pathname that needs to be uploaded to the TFTP server."
::= { agentBscTftpConfigMgmt 7 }
agentBscTftpCfgDebugLogFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The debug log pathname that needs to be uploaded to the TFTP server."
::= { agentBscTftpConfigMgmt 8 }
agentBscTftpCfgSIMFirmwareFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The firmware pathname that needs to be downloaded/uploaded from/to the TFTP server when it is SIM enabled."
::= { agentBscTftpConfigMgmt 9 }
agentBscTftpCfgSIMConfigFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configuration pathname that needs to be downloaded/uploaded from/to the TFTP server when it is SIM enabled."
::= { agentBscTftpConfigMgmt 10 }
agentBscTftpCfgSIMLogFile OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The log pathname that needs to be uploaded to the TFTP server when it is SIM enabled."
::= { agentBscTftpConfigMgmt 11 }
agentBscTftpCfgServerIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv4 address of the TFTP server."
::= { agentBscTftpConfigMgmt 12 }
agentBscTftpCfgServerIPv6Addr OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IPv6 address of the TFTP server."
::= { agentBscTftpConfigMgmt 13 }
agentBscTftpCfgServerDomainName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The domain name of the TFTP server."
::= { agentBscTftpConfigMgmt 14 }
-- -----------------------------------------------------------------------------
-- agentBscCommunityEncryptionState
-- -----------------------------------------------------------------------------
agentBscCommunityEncryptionState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the encryption state on the SNMP community string."
::= { agentBasicConfig 29 }
-- -----------------------------------------------------------------------------
-- agentSnmpUdpPort
-- -----------------------------------------------------------------------------
agentSnmpUdpPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the snmp udp port number."
::= { agentBasicConfig 30 }
-- -----------------------------------------------------------------------------
-- agentResponseBroadcastRequest
-- -----------------------------------------------------------------------------
agentResponseBroadcastRequest OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the response broadcast request state."
::= { agentBasicConfig 31 }
-- -----------------------------------------------------------------------------
-- agentIpProtocolConfig
-- -----------------------------------------------------------------------------
agentIpProtoConfig OBJECT IDENTIFIER ::= { agentGeneralMgmt 3 }
agentIpNumOfIf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of IP interfaces supported by this agent."
::= { agentIpProtoConfig 1 }
agentIpTftpServerAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The IP address of the TFTP Server."
::= { agentIpProtoConfig 2 }
agentIpGetIpFrom OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
bootp(3),
dhcp(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates if the agent will get its system IP address
from a Bootp/DHCP server at start up."
::= { agentIpProtoConfig 3 }
agentIpAutoconfig OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the status of automatically getting the configuration information
from a TFTP server connected to the device."
::= { agentIpProtoConfig 4 }
agentIpAutoconfigTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This timer is used to limit the length of time for getting the configuration
information from a TFTP server connected to the device."
::= { agentIpProtoConfig 5 }
-- End of agentIpIfTable
-- -----------------------------------------------------------------------------
-- agentIptrapMangerTable
-- -----------------------------------------------------------------------------
agentIpTrapManager OBJECT IDENTIFIER ::= { agentGeneralMgmt 4 }
-- agentIpTrapManagerTable OBJECT-TYPE-
-- SYNTAX SEQUENCE OF AgentIpTrapManagerEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "A list of trap managers that the SNMP traps will be sent to."
-- ::= { agentIpTrapManager 1 }
-- agentIpTrapManagerEntry OBJECT-TYPE
-- SYNTAX AgentIpTrapManagerEntry
-- MAX-ACCESS not-accessible
-- STATUS obsolete
-- DESCRIPTION
-- "Each entry contains the particular trap manager settings."
-- INDEX { agentIpTrapManagerIpAddr }
-- ::= { agentIpTrapManagerTable 1 }
-- -----------------------------------------------------------------------------
agentTrapManagerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentTrapManagerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of trap managers that the SNMP traps will be sent to."
::= { agentIpTrapManager 2 }
agentTrapManagerEntry OBJECT-TYPE
SYNTAX AgentTrapManagerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains the particular trap manager's settings."
INDEX { agentTrapManagerIndex }
::= { agentTrapManagerTable 1 }
AgentTrapManagerEntry ::=
SEQUENCE {
agentTrapManagerIndex
INTEGER,
agentTrapManagerIpAddr
IpAddress,
agentTrapManagerComm
DisplayString,
agentTrapManagerMsgVer
INTEGER,
agentTrapManagerStatus
INTEGER,
agentTrapManagerUdpPort
INTEGER
}
agentTrapManagerIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A value that uniquely identifies trapDestEntry."
::= { agentTrapManagerEntry 1 }
agentTrapManagerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination IP address for SNMP traps."
::= { agentTrapManagerEntry 2 }
agentTrapManagerComm OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The community string used to encode SNMP trap packets being sent to the trap
manager."
::= { agentTrapManagerEntry 3 }
agentTrapManagerMsgVer OBJECT-TYPE
SYNTAX INTEGER {
snmpAgentVersionDependent(1),
v1Trap(2),
v2Trap(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the version of trap packets that will be sent to
this trap manager. The default setting is SNMP Agent Version Dependent.
Note:
Because some of these functions will be limited by the support of
the system in question, some selected items may be invalid. If one
of these items is selected, a bad value error message will prompt
the user.
"
::= { agentTrapManagerEntry 4 }
agentTrapManagerStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether or not the trap should be sent to
the trap manager."
::= { agentTrapManagerEntry 5 }
agentTrapManagerUdpPort OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the Trap udp port number."
::= { agentTrapManagerEntry 6 }
-- -----------------------------------------------------------------------------
-- agentPortTrapStateTable
-- -----------------------------------------------------------------------------
agentPortTrapStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF AgentPortTrapStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Use to Set/Get per port trap state."
::= { agentIpTrapManager 3 }
agentPortTrapStateEntry OBJECT-TYPE
SYNTAX AgentPortTrapStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an entry of the agentPortTrapStateTable."
INDEX { agentTrapStatePortIndex }
::= { agentPortTrapStateTable 1 }
AgentPortTrapStateEntry ::=
SEQUENCE {
agentTrapStatePortIndex
INTEGER,
agentPortTrapState
INTEGER
}
agentTrapStatePortIndex OBJECT-TYPE
SYNTAX INTEGER (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the port number."
::= { agentPortTrapStateEntry 1 }
agentPortTrapState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the port trap status."
::= { agentPortTrapStateEntry 2 }
-- -----------------------------------------------------------------------------
-- Add for Slip_Console mode swtich 11-9-2001 WindChen
-- -----------------------------------------------------------------------------
-- agentConsoleModeManager OBJECT IDENTIFIER ::= { agentGeneralMgmt 5 }
-- -----------------------------------------------------------------------------
-- Slip Mode Manager
-- -----------------------------------------------------------------------------
-- agentSlipModeManager OBJECT IDENTIFIER ::= { agentGeneralMgmt 6 }
-- -----------------------------------------------------------------------------
-- Add common trap management
-- -----------------------------------------------------------------------------
agentNotify OBJECT IDENTIFIER ::= { agentGeneralMgmt 7 }
agentNotifMgmt OBJECT IDENTIFIER ::= { agentNotify 1 }
agentNotifFirmware OBJECT IDENTIFIER ::= { agentNotify 2 }
agentNotifyPrefix OBJECT IDENTIFIER ::= { agentNotifFirmware 0 }
-- -----------------------------------------------------------------------------
-- agentNotifMgmt
-- -----------------------------------------------------------------------------
-- systemSeverityControl OBJECT-TYPE
-- SYNTAX AgentNotifyLevel
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates the level of trap severity control. The system has a severity level control
-- and each trap should have a severity control set. When trap events occur and its severity
-- is higher than the system severity control level, the trap works as defined. If the event
-- severity is lower than the system severity control level, the event is ignored as if it did not occur.
-- "
-- ::= { agentNotifMgmt 1 }
notifFirmwareMgmt OBJECT IDENTIFIER ::= { agentNotifMgmt 2 }
-- -----------------------------------------------------------------------------
-- agentNotifFirmware OBJECT IDENTIFIER ::= { agentNotifyPrefix 0 }
-- -----------------------------------------------------------------------------
-- agentNotifFirmware
-- -----------------------------------------------------------------------------
agentsystemRestart NOTIFICATION-TYPE
OBJECTS {
trapInfosystemRestart
}
STATUS current
DESCRIPTION
"This trap contains the reboot information."
::= { agentNotifyPrefix 1 }
agentSaveToNVRAM NOTIFICATION-TYPE
OBJECTS { unitID
}
STATUS current
DESCRIPTION
"This trap is sent whenever all the device configuration has been saved to NV-RAM."
::= { agentNotifyPrefix 2 }
agentFileTransferStatusChange NOTIFICATION-TYPE
OBJECTS {
unitID,
agentStatusFileTransfer
}
STATUS current
DESCRIPTION "File transfer status change notification."
::= { agentNotifyPrefix 3 }
agentSetToFactoryDefault NOTIFICATION-TYPE
OBJECTS { unitID
}
STATUS current
DESCRIPTION
"This trap is sent whenever the 'set to factory default' setting has been processed. "
::= { agentNotifyPrefix 4 }
agentGratuitousARPTrap NOTIFICATION-TYPE
OBJECTS {
agentGratuitousARPIpAddr,
agentGratuitousARPMacAddr,
agentGratuitousARPPortNumber,
agentGratuitousARPInterfaceName
}
STATUS current
DESCRIPTION
"This trap is sent when there is an IP address conflict."
::={agentNotifyPrefix 5}
agentLoginFailTrap NOTIFICATION-TYPE
OBJECTS {
agentLoginType,
agentLoginAAAMethod,
agentLoginUserName,
agentLoginIpAddr,
agentLoginMacAddr,
agentLoginAAAServerAddr,
agentLoginFailInfo
}
STATUS current
DESCRIPTION
"The trap is sent when a login has failed through one of the login types (console, Telnet, web, SSL or SSH)."
::={agentNotifyPrefix 6}
agentFirmwareUpgrade NOTIFICATION-TYPE
OBJECTS {
swMultiImageVersion
}
STATUS current
DESCRIPTION
"This trap is sent when the process of upgrading the firmware via SNMP has finished."
::= { agentNotifyPrefix 7 }
agentAccessFlashFailed NOTIFICATION-TYPE
OBJECTS {
agentAccessFlashOper,
agentAccessFlashAddr
}
STATUS current
DESCRIPTION
"The trap is sent when access to the flash fails."
::={agentNotifyPrefix 8}
agentCfgOperCompleteTrap NOTIFICATION-TYPE
OBJECTS {
unitID,
agentCfgOperate,
agentLoginUserName
}
STATUS current
DESCRIPTION
"The trap is sent when the configuration is completely saved, uploaded
or downloaded."
::={agentNotifyPrefix 9}
-- -----------------------------------------------------------------------------
-- agentNotifEquipment
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- notificationBindings
-- -----------------------------------------------------------------------------
notificationBindings OBJECT IDENTIFIER ::= { agentNotifFirmware 1 }
unitID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The unit ID of the device which triggered the event."
::= { notificationBindings 1 }
trapInfosystemRestart OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the last time the device rebooted.
"
::= { notificationBindings 2 }
agentGratuitousARPIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A duplicate IP address with the switch already exists."
::={notificationBindings 3}
agentGratuitousARPMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is the MAC address of the device which has the duplicate IP address."
::={notificationBindings 4}
agentGratuitousARPPortNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This indicates the portNum with a string.
For example, if the device is in standalone mode, and the port
number is 23, the string should be 23.
If the device is in stacking mode, and the unit ID is 2, and the
port number is 3, the string should be 2:3.
"
::={notificationBindings 5}
agentLoginType OBJECT-TYPE
SYNTAX INTEGER {
console(1),
telnet(2),
web(3),
ssl(4),
ssh(5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The type is the user login method type."
::= { notificationBindings 6 }
agentLoginAAAMethod OBJECT-TYPE
SYNTAX INTEGER {
none(1),
local(2),
server(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This method is the AAA login method."
::= { notificationBindings 7 }
agentLoginUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is the name of the user that failed to login to the switch."
::= { notificationBindings 8 }
agentLoginIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is the login type from the IP address."
::= { notificationBindings 9 }
agentLoginMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is the login type from a MAC address."
::= { notificationBindings 10 }
agentLoginAAAServerAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object is the login type through a console authenticated by an AAA server."
::= { notificationBindings 11 }
agentLoginFailInfo OBJECT-TYPE
SYNTAX INTEGER {
other(1),
authenticate-fail(2),
server-timeout(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the reason for the login failure."
::= { notificationBindings 12 }
agentAccessFlashOper OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the operation of the access flash failure."
::= { notificationBindings 13 }
agentAccessFlashAddr OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the address of the access flash failure."
::= { notificationBindings 14 }
agentCfgOperate OBJECT-TYPE
SYNTAX INTEGER {
save(1),
upload(2),
download(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the operation type of the configuration."
::= { notificationBindings 15 }
END
|