1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
|
COMTROL-ES8510-MIB DEFINITIONS ::= BEGIN
IMPORTS
internet FROM RFC1155-SMI
RowStatus, DisplayString, MacAddress, TimeInterval FROM SNMPv2-TC
PortList FROM Q-BRIDGE-MIB;
private OBJECT IDENTIFIER ::= { internet 4 }
enterprises OBJECT IDENTIFIER ::= { private 1 }
comtrol OBJECT IDENTIFIER ::= { enterprises 2882 }
products OBJECT IDENTIFIER ::= { comtrol 2 }
managedSwitch OBJECT IDENTIFIER ::= { products 1 }
es8510 OBJECT IDENTIFIER ::= { managedSwitch 1 }
contact MODULE-IDENTITY
LAST-UPDATED "201805140000Z"
ORGANIZATION "Comtrol Corporation"
CONTACT-INFO "Comtrol Corporation"
DESCRIPTION "Comtrol Corporation
100 Fifth Avenue NW
New Brighton, MN 55112
TEL: +1.763.957.6000
E-mail: ftpadmin@comtrol.com"
REVISION "201805140000Z"
DESCRIPTION "version 3.1a"
::= { comtrol 1 }
systemInfo OBJECT IDENTIFIER ::= { es8510 1 }
basicSetting OBJECT IDENTIFIER ::= { es8510 2 }
portConfiguration OBJECT IDENTIFIER ::= { es8510 3 }
networkRedundancy OBJECT IDENTIFIER ::= { es8510 4 }
vlan OBJECT IDENTIFIER ::= { es8510 5 }
trafficPrioritization OBJECT IDENTIFIER ::= { es8510 6 }
multicastFiltering OBJECT IDENTIFIER ::= { es8510 7 }
snmp OBJECT IDENTIFIER ::= { es8510 8 }
security OBJECT IDENTIFIER ::= { es8510 9 }
warning OBJECT IDENTIFIER ::= { es8510 10 }
monitorandDiag OBJECT IDENTIFIER ::= { es8510 11 }
save OBJECT IDENTIFIER ::= { es8510 12 }
-- -----------------------------------------------------------------------------
-- Textual Convention
-- -----------------------------------------------------------------------------
AlertType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION ""
SYNTAX INTEGER {
enable(1),
disable(2)
}
-- -----------------------------------------------------------------------------
-- systemInfo
-- -----------------------------------------------------------------------------
systemName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS current
DESCRIPTION "An administratively-assigned name for this managed node.
By convention, this is the node's fully-qualified domain name."
::= { systemInfo 1 }
systemLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS current
DESCRIPTION "The physical location of this node (e.g., telephone closet,
3rd floor')."
::= { systemInfo 2 }
systemContact OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The textual identification of the contact person for this
managed node, together with information on how to contact
this person."
::= { systemInfo 3 }
systemDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS current
DESCRIPTION "A textual description of the entity. This value should
include the full name and version identification of the
system's hardware type, software operating-system, and
networking software. It is mandatory that this only contain
printable ASCII characters."
::= { systemInfo 4 }
systemFwVer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Firmware version of the device."
::= { systemInfo 5 }
systemMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The MAC address of this device. An Media Access Control
address (MAC address) is a unique identifier attached to
most network adapters (NICs). It is a number that acts
like a name for a particular network adapter"
::= { systemInfo 6 }
-- -----------------------------------------------------------------------------
-- basicSetting
-- -----------------------------------------------------------------------------
switchSetting OBJECT IDENTIFIER ::= { basicSetting 1 }
adminPassword OBJECT IDENTIFIER ::= { basicSetting 2 }
ipConfiguration OBJECT IDENTIFIER ::= { basicSetting 3 }
timeSetting OBJECT IDENTIFIER ::= { basicSetting 4 }
dhcpServer OBJECT IDENTIFIER ::= { basicSetting 5 }
backupAndRestore OBJECT IDENTIFIER ::= { basicSetting 6 }
tftpUpgrade OBJECT IDENTIFIER ::= { basicSetting 7 }
factoryDefault OBJECT IDENTIFIER ::= { basicSetting 8 }
systemReboot OBJECT IDENTIFIER ::= { basicSetting 9 }
-- -----------------------------------------------------------------------------
-- switchSetting
-- -----------------------------------------------------------------------------
switchSettingSystemName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..256))
ACCESS read-write
STATUS current
DESCRIPTION "An administratively-assigned name for this managed node. By
convention, this is the node's fully-qualified domain name."
::= { switchSetting 1 }
switchSettingSystemLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..256))
ACCESS read-write
STATUS current
DESCRIPTION "The physical location of this node (e.g., telephone closet,
3rd floor')."
::= { switchSetting 2 }
switchSettingSystemContact OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The textual identification of the contact person for this
managed node, together with information on how to contact
this person."
::= { switchSetting 3 }
-- -----------------------------------------------------------------------------
-- adminPassword
-- -----------------------------------------------------------------------------
adminPasswordUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The name(ID) of security manager."
::= { adminPassword 1 }
adminPasswordPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
MAX-ACCESS write-only
STATUS current
DESCRIPTION "The password of security manager.
This object can't be read. it's write-only."
::= { adminPassword 2 }
--adminPasswordConfirm OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..8))
-- MAX-ACCESS write-only
-- STATUS current
-- DESCRIPTION "To confirm the password modification.
-- This object can't be read. it's write-only."
-- ::= { adminPassword 3 }
-- -----------------------------------------------------------------------------
-- ipConfiguration
-- -----------------------------------------------------------------------------
ipConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF IPconfigurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
the IP of the device."
::= { ipConfiguration 1 }
ipConfigurationEntry OBJECT-TYPE
SYNTAX IPconfigurationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring static IP or DHCP configuration
of the device."
INDEX { ipConfigurationIndex }
::= { ipConfigurationTable 1 }
IPconfigurationEntry ::= SEQUENCE {
ipConfigurationIndex INTEGER,
ipConfigurationDHCPStatus INTEGER,
ipConfigurationAddress IpAddress,
ipConfigurationSubMask IpAddress,
ipConfigurationGateway IpAddress,
ipConfigurationDNS1 IpAddress,
ipConfigurationDNS2 IpAddress,
ipConfigurationStatus INTEGER
}
ipConfigurationIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object identifies IP configuration entries."
::= { ipConfigurationEntry 1 }
ipConfigurationDHCPStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter configuring DHCP client functionality of the
device. When enabled, device will be a DHCP client and
request for the IP configuration from DHCP server.
The Dynamic Host Configuration Protocol (DHCP) automates
the assignment of IP addresses, subnet masks, default
routers, and other IP parameters. The assignment usually
occurs when the DHCP-configured machine boots up or regains
connectivity to the network. The DHCP client sends out a
query requesting a response from a DHCP server on the
locally attached network. The query is typically initiated
immediately after booting up and before the client initiates
any IP based communication with other hosts. The DHCP server
then replies to the client with its assigned IP address,
subnet mask, DNS server and default gateway information.
Note: Other items in this table will not be modified, when
ipConfigurationDHCPStatus is enabled."
::= { ipConfigurationEntry 2 }
ipConfigurationAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of switch.
An IP address (Internet Protocol address) is a unique address
that devices use in order to identify and communicate with
each other on a computer network utilizing the Internet
Protocol standard (IP). Any participating network device can
has its own unique address."
::= { ipConfigurationEntry 3 }
ipConfigurationSubMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The subnet mask is a 32-bit number in the same format and
representation as IP addresses. The subnet mask determines
which bits in the IP address are interpreted as the network
number, which as the subnetwork number, and which as the
host number. Each IP address bit that corresponds to a 1
in the subnet mask is in the network/subnetwork part of
the address. This group of numbers is also called the
Network ID. Each IP address bit that corresponds to a 0 is
in the host part of the IP address."
::= { ipConfigurationEntry 4 }
ipConfigurationGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default gateway IP address identifies the gateway (for
example, a router) that receives and forwards those packets
whose addresses are unknown to the local network. The agent
uses the default gateway address when sending alert packets
to the management workstation on a network other than the
local network."
::= { ipConfigurationEntry 5 }
ipConfigurationDNS1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter configuring the first DNS server of the device.
The domain name system (DNS) stores and associates many
types of information with domain names. Most importantly,
it translates domain names (computer hostnames) to IP
addresses, which makes it possible to attach easy-to-remember
domain names to hard-to-remember IP
addresses (such as 100.50.10.100)."
::= { ipConfigurationEntry 6 }
ipConfigurationDNS2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter configuring the second DNS server of the device."
::= { ipConfigurationEntry 7 }
ipConfigurationStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the IP configuration entry. Only one
configuration entry is supported on the device. Set active(1)
to activate the parameters of the entry on the device."
::= { ipConfigurationEntry 8 }
-- -----------------------------------------------------------------------------
-- timeSetting
-- -----------------------------------------------------------------------------
systemTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "current system time in format yyyy.mm.dd-hh:mm:ss"
::= { timeSetting 1 }
utcTimeZone OBJECT-TYPE
SYNTAX INTEGER {
gmtNegative1200EniwetokKwajalein(1),
gmtNegative1100MidwayIslandSamoa(2),
gmtNegative1000Hawaii(3),
gmtNegative0900Alaska(4),
gmtNegative0800PacificTimeUSandCanadaTijuana(5),
gmtNegative0700Arizona(6),
gmtNegative0700MountainTimeUSandCanada(7),
gmtNegative0600CentralAmerica(8),
gmtNegative0600CentralTimeUSandCanada(9),
gmtNegative0600MexicoCityTegucigalpa(10),
gmtNegative0600Saskatchewan(11),
gmtNegative0500BogotaLimaQuito(12),
gmtNegative0500EasternTimeUSandCanada(13),
gmtNegative0500IndianaEast(14),
gmtNegative0400AtlanticTimeCanada(15),
gmtNegative0400CaracasLaPaz(16),
gmtNegative0400Santiago(17),
gmtNegative0330Newfoundland(18),
gmtNegative0300Brasilia(19),
gmtNegative0300BuenosAiresGeorgetown(20),
gmtNegative0300Greenland(21),
gmtNegative0200Mid-Atlantic(22),
gmtNegative0100AzoresCapeVerdeIs(23),
gmtNegative0100CapeVerdeIs(24),
gmtCasablancaMonrovia(25),
gmtGreenwichMeanTimeDublinEdinburghLisbonLondon(26),
gmtPositive0100AmsterdamBerlinBernRomeStockholmVienna(27),
gmtPositive0100BelgradeBratislavaBudapestLjubljanaPrague(28),
gmtPositive0100BrusselsCopenhagenMadridParis(29),
gmtPositive0100SarajevoSkopjeSofijaWarsawZagreb(30),
gmtPositive0100WestCentralAfrica(31),
gmtPositive0200AthensIstanbulMinsk(32),
gmtPositive0200Bucharest(33),
gmtPositive0200Cairo(34),
gmtPositive0200HararePretoria(35),
gmtPositive0200HelsinkiRigaTallinn(36),
gmtPositive0200Jerusalem(37),
gmtPositive0300BaghdadKuwaitRiyadh(38),
gmtPositive0300KuwaitRiyadh(39),
gmtPositive0300MoscowStPetersburgVolgograd(40),
gmtPositive0300Mairobi(41),
gmtPositive0330Tehran(42),
gmtPositive0400AbuDhabiMuscat(43),
gmtPositive0400BakuTbilisi(44),
gmtPositive0430Kabul(45),
gmtPositive0500Ekaterinburg(46),
gmtPositive0500IslamabadKarachiTashkent(47),
gmtPositive0530BombayCalcuttaMadrasNewDelhi(48),
gmtPositive0545Kathmandu(49),
gmtPositive0600AlmatyNovosibirsk(50),
gmtPositive0600AstanaDhaka(51),
gmtPositive0600Colombo(52),
gmtPositive0630Rangoon(53),
gmtPositive0700BangkokHanoiJakarta(54),
gmtPositive0700Krasnoyarsk(55),
gmtPositive0800BeijingChongqingHongKongUrumqi(56),
gmtPositive0800IrkutskUlaanBataar(57),
gmtPositive0800KualaLumpurSingapore(58),
gmtPositive0800Perth(59),
gmtPositive0800Taipei(60),
gmtPositive0900OsakaSapporoTokyo(61),
gmtPositive0900Seoul(62),
gmtPositive0900Yakutsk(63),
gmtPositive0930Adelaide(64),
gmtPositive0930Darwin(65),
gmtPositive1000Brisbane(66),
gmtPositive1000CanberraMelbourneSydney(67),
gmtPositive1000GuamPortMoresby(68),
gmtPositive1000Hobart(69),
gmtPositive1000Vladivostok(70),
gmtPositive1100MagadanSolomonIsNewCaledonia(71),
gmtPositive1200AucklandWllington(72),
gmtPositive1200FijiKamchatkaMarshallIs(73),
gmtPositive1300Nukualofa(74)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "UTC Timezone list.
(GMT-12:00) Eniwetok, Kwajalein
(GMT-11:00) Midway Island, Samoa
(GMT-10:00) Hawaii
(GMT-09:00) Alaska
(GMT-08:00) Pacific Time (US & Canada), Tijuana
(GMT-07:00) Arizona
(GMT-07:00) Mountain Time (US & Canada)
(GMT-06:00) Central America
(GMT-06:00) Central Time (US & Canada)
(GMT-06:00) Mexico City
(GMT-06:00) Saskatchewan
(GMT-05:00) Bogota, Lima, Quito
(GMT-05:00) Eastern Time (US & Canada)
(GMT-05:00) Indiana (East)
(GMT-04:00) Atlantic Time (Canada)
(GMT-04:00) Caracas, La Paz
(GMT-04:00) Santiago
(GMT-03:00) NewFoundland
(GMT-03:00) Brasilia
(GMT-03:00) Buenos Aires, Georgetown
(GMT-03:00) Greenland
(GMT-02:00) Mid-Atlantic
(GMT-01:00) Azores
(GMT-01:00) Cape Verde Is.
(GMT) Casablanca, Monrovia
(GMT) Greenwich Mean Time: Dublin, Edinburgh, Lisbon, London
(GMT+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna
(GMT+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague
(GMT+01:00) Brussels, Copenhagen, Madrid, Paris
(GMT+01:00) Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb
(GMT+01:00) West Central Africa
(GMT+02:00) Athens, Istanbul, Minsk
(GMT+02:00) Bucharest
(GMT+02:00) Cairo
(GMT+02:00) Harare, Pretoria
(GMT+02:00) Helsinki, Riga, Tallinn
(GMT+02:00) Jerusalem
(GMT+03:00) Baghdad
(GMT+03:00) Kuwait, Riyadh
(GMT+03:00) Moscow, St. Petersburg, Volgograd
(GMT+03:00) Nairobi
(GMT+03:30) Tehran
(GMT+04:00) Abu Dhabi, Muscat
(GMT+04:00) Baku, Tbilisi, Yerevan
(GMT+04:30) Kabul
(GMT+05:00) Ekaterinburg
(GMT+05:00) Islamabad, Karachi, Tashkent
(GMT+05:30) Calcutta, Chennai, Mumbai, New Delhi
(GMT+05:45) Kathmandu
(GMT+06:00) Almaty, Novosibirsk
(GMT+06:00) Astana, Dhaka
(GMT+06:00) Sri Jayawardenepura
(GMT+06:30) Rangoon
(GMT+07:00) Bangkok, Hanoi, Jakarta
(GMT+07:00) Krasnoyarsk
(GMT+08:00) Beijing, Chongqing, Hong Kong, Urumqi
(GMT+08:00) Irkutsk, Ulaan Bataar
(GMT+08:00) Kuala Lumpur, Singapore
(GMT+08:00) Perth
(GMT+08:00) Taipei
(GMT+09:00) Osaka, Sapporo, Tokyo
(GMT+09:00) Seoul
(GMT+09:00) Yakutsk
(GMT+09:30) Adelaide
(GMT+09:30) Darwin
(GMT+10:00) Brisbane
(GMT+10:00) Canberra, Melbourne, Sydney
(GMT+10:00) Guam, Port Moresby
(GMT+10:00) Hobart
(GMT+10:00) Vladivostok
(GMT+11:00) Magadan, Solomon Is., New Caledonia
(GMT+12:00) Aukland, Wellington
(GMT+12:00) Fiji, Kamchatka, Marshall Is.
(GMT+13:00) Nuku'alofa"
::= { timeSetting 2 }
dayLightSavingTime OBJECT IDENTIFIER ::= { timeSetting 3 }
clockSource OBJECT IDENTIFIER ::= { timeSetting 4 }
-- -----------------------------------------------------------------------------
-- dayLightSavingTime
-- -----------------------------------------------------------------------------
daylightSavingTimeStart OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The start-time of daylight saveing period,
in format mm.n.d/hh:mm
m is month, valid range 1-12 (1=January, 2=February, ..., 12=December).
n is week of the month (1 to 5, 5 means the last week).
d is weekday, valid range 0-6 (0=Sunday, 1=Monday, ..., 6=Saturday).
hh:mm is time."
::= { dayLightSavingTime 1 }
daylightSavingTimeEnd OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The end-time of daylight saveing period,
in format mm.n.d/hh:mm
m is month, valid range 1-12 (1=January, 2=February, ..., 12=December).
n is week of the month (1 to 5, 5 means the last week).
d is weekday, valid range 0-6 (0=Sunday, 1=Monday, ..., 6=Saturday).
hh:mm is time."
::= { dayLightSavingTime 2 }
daylightSavingOffset OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Daylight Saving Offset(Usually is 60 mins).
When Enable and current time at Daylight Saving Period,
the current time of the switch will be offseted by
Daylight Saving Offset."
::= { dayLightSavingTime 3 }
daylightSavingTimeStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)Enable Daylight Saving Time.
(2)Disable Daylight Saving Time.
Daylight Saving Time:
Use this OID to Enable/Disable Daylight Saving Time."
::= { dayLightSavingTime 4 }
-- -----------------------------------------------------------------------------
-- clock source configuration
-- -----------------------------------------------------------------------------
clockSourceSelection OBJECT-TYPE
SYNTAX INTEGER {
manual(1),
ntp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { clockSource 1 }
clockSourceManual OBJECT IDENTIFIER ::= { clockSource 2 }
clockSourceNtp OBJECT IDENTIFIER ::= { clockSource 3 }
-- -----------------------------------------------------------------------------
-- manual config
-- -----------------------------------------------------------------------------
clockSourceManualSetting OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..19))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "set system time, in format yyyy.mm.dd-hh:mm:ss"
::= { clockSourceManual 1 }
-- -----------------------------------------------------------------------------
-- ntp
-- -----------------------------------------------------------------------------
--ntpClientStatus OBJECT-TYPE
-- SYNTAX INTEGER {
-- enabled(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "(1)Enable SNTP clinet.
-- (2)Disable SNTP clinet.
-- SNTP is simple network time protocol.
-- Use this OID to Enable/Disable SNTP client."
-- ::= { ntp 1 }
ntpTable OBJECT-TYPE
SYNTAX SEQUENCE OF NtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about NTP
servers.
NTP (Network Time Protocol) synchronizes timekeeping among a
set of distributed time servers and clients. This synchronization
allows events to be correlated when system logs are created and
other time-specific events occur.
An NTP server is configured to synchronize NTP clients. Servers
can be configured to synchronize any client or only specific
clients. NTP servers, however, will accept no synchronization
information from their clients and therefore will not let
clients update or affect the server's time settings.
This switch acts as an NTP client, which tries to let its clock
be set and synchronized by an external NTP timeserver. It can be
configured to use multiple servers (upto 4 servers)."
::= { clockSourceNtp 1 }
ntpEntry OBJECT-TYPE
SYNTAX NtpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring IP addresses of NTP servers."
INDEX { ntpIndex }
::= { ntpTable 1 }
NtpEntry ::= SEQUENCE {
ntpIndex Integer32,
ntpServerIP IpAddress
}
ntpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This object identifies the entry."
::= { ntpEntry 1 }
ntpServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of an NTP Server. Set 0.0.0.0 or
255.255.255.255 to remove this config."
::= { ntpEntry 2 }
-- -----------------------------------------------------------------------------
--dhcpServer
-- -----------------------------------------------------------------------------
dhcpServerEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable or disable dhcp server function."
::= { dhcpServer 1 }
-- -----------------------------------------------------------------------------
--dhcpServerPoolTable
-- -----------------------------------------------------------------------------
dhcpServerPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpServerPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DHCP server of the switch."
::= { dhcpServer 2 }
dhcpServerPoolEntry OBJECT-TYPE
SYNTAX DhcpServerPoolEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing DHCP server information
of the switch. "
INDEX { dhcpServerPoolIndex }
::= { dhcpServerPoolTable 1 }
DhcpServerPoolEntry ::= SEQUENCE {
dhcpServerPoolIndex Integer32,
dhcpServerPoolName DisplayString,
dhcpServerPoolNetwork IpAddress,
dhcpServerPoolSubMask IpAddress,
dhcpServerPoolGateway IpAddress,
dhcpServerPoolLeaseTime Integer32,
dhcpServerPoolStatus RowStatus
}
dhcpServerPoolIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the Address Pool."
::= { dhcpServerPoolEntry 1 }
dhcpServerPoolName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The address pool name."
::= { dhcpServerPoolEntry 2 }
dhcpServerPoolNetwork OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The Subnet of the IP Address Pool."
::= { dhcpServerPoolEntry 3 }
dhcpServerPoolSubMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The subnet mask of the IP Address Pool."
::= { dhcpServerPoolEntry 4 }
dhcpServerPoolGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The gateway address of the IP Address Pool."
::= { dhcpServerPoolEntry 5 }
dhcpServerPoolLeaseTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The lease time(in second) of the Address Pool."
::= { dhcpServerPoolEntry 6 }
dhcpServerPoolStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the Address Pool."
::= { dhcpServerPoolEntry 7 }
-- -----------------------------------------------------------------------------
--dhcpExcludedTable
-- -----------------------------------------------------------------------------
dhcpExcludedTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpExcludedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DHCP server of the switch."
::= { dhcpServer 3 }
dhcpExcludedEntry OBJECT-TYPE
SYNTAX DhcpExcludedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing DHCP server information
of the switch. "
INDEX { dhcpServerPoolIndex , dhcpExcludedIndex}
::= { dhcpExcludedTable 1 }
DhcpExcludedEntry ::= SEQUENCE {
dhcpExcludedIndex Integer32,
dhcpExcludedIp IpAddress,
dhcpExcludedStatus RowStatus
}
dhcpExcludedIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the Excluded Table."
::= { dhcpExcludedEntry 1 }
dhcpExcludedIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address ."
::= { dhcpExcludedEntry 2 }
dhcpExcludedStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of a address pool."
::= { dhcpExcludedEntry 3 }
-- -----------------------------------------------------------------------------
--dhcpManualBindingTable
-- -----------------------------------------------------------------------------
dhcpManualBindingTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpManualBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DHCP server of the switch."
::= { dhcpServer 4 }
dhcpManualBindingEntry OBJECT-TYPE
SYNTAX DhcpManualBindingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing DHCP server information
of the switch. "
INDEX { dhcpServerPoolIndex,dhcpManualBindingIndex }
::= { dhcpManualBindingTable 1 }
DhcpManualBindingEntry ::= SEQUENCE {
dhcpManualBindingIndex Integer32,
dhcpManualBindingIp IpAddress,
dhcpManualBindingMac MacAddress,
dhcpManualBindingStatus RowStatus
}
dhcpManualBindingIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the Static Binding Table."
::= { dhcpManualBindingEntry 1 }
dhcpManualBindingIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address."
::= { dhcpManualBindingEntry 2 }
dhcpManualBindingMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The MAC address."
::= { dhcpManualBindingEntry 3 }
dhcpManualBindingStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the binding."
::= { dhcpManualBindingEntry 4 }
-- -----------------------------------------------------------------------------
-- dhcpStaticPortTable
-- -----------------------------------------------------------------------------
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5
dhcpStaticPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpStaticPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of descriptive information and configuration about
DHCP server of the switch."
::= { dhcpServer 5 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5.1
dhcpStaticPortEntry OBJECT-TYPE
SYNTAX DhcpStaticPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing DHCP server information
of the switch. "
INDEX { dhcpServerPoolIndex, dhcpStaticPortIndex }
::= { dhcpStaticPortTable 1 }
DhcpStaticPortEntry ::=
SEQUENCE {
dhcpStaticPortIndex
Integer32,
dhcpStaticPortNumber
INTEGER,
dhcpStaticPortIp
IpAddress,
dhcpStaticPortStatus
RowStatus
}
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5.1.1
dhcpStaticPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the StaticPort Table."
::= { dhcpStaticPortEntry 1 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5.1.2
dhcpStaticPortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The port number ."
::= { dhcpStaticPortEntry 2 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5.1.3
dhcpStaticPortIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP address ."
::= { dhcpStaticPortEntry 3 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.5.1.4
dhcpStaticPortStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a static port entry."
::= { dhcpStaticPortEntry 4 }
-- -----------------------------------------------------------------------------
--dhcpOption82Table
-- -----------------------------------------------------------------------------
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6
dhcpOption82Table OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpOption82Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DHCP server option82 table."
::= { dhcpServer 6 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1
dhcpOption82Entry OBJECT-TYPE
SYNTAX DhcpOption82Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DHCP server option82 entry."
INDEX { dhcpServerPoolIndex, dhcpOption82Index }
::= { dhcpOption82Table 1 }
DhcpOption82Entry ::=
SEQUENCE {
dhcpOption82Index
Integer32,
dhcpOption82CircuitIdType
INTEGER,
dhcpOption82CircuitIdValue
OCTET STRING,
dhcpOption82RemoteIdType
INTEGER,
dhcpOption82RemoteIdValue
OCTET STRING,
dhcpOption82Ip
IpAddress,
dhcpOption82Status
RowStatus
}
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.1
dhcpOption82Index OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table."
::= { dhcpOption82Entry 1 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.2
dhcpOption82CircuitIdType OBJECT-TYPE
SYNTAX INTEGER
{
any(0),
string(2),
hexadecimal(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Circuit-ID type of this option."
::= { dhcpOption82Entry 2 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.3
dhcpOption82CircuitIdValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Circuit-ID value of this option."
::= { dhcpOption82Entry 3 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.4
dhcpOption82RemoteIdType OBJECT-TYPE
SYNTAX INTEGER
{
any(0),
string(2),
hexadecimal(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Remote-ID type of this option."
::= { dhcpOption82Entry 4 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.5
dhcpOption82RemoteIdValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Remote-ID value of this option."
::= { dhcpOption82Entry 5 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.6
dhcpOption82Ip OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The IP Address bind to this option."
::= { dhcpOption82Entry 6 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.6.1.7
dhcpOption82Status OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"he status of a static port entry."
::= { dhcpOption82Entry 7 }
-- -----------------------------------------------------------------------------
--dhcpServerLeasedTable
-- -----------------------------------------------------------------------------
dhcpServerLeasedTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpServerLeasedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DHCP server of the switch."
::= { dhcpServer 7 }
dhcpServerLeasedEntry OBJECT-TYPE
SYNTAX DhcpServerLeasedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing DHCP server information
of the switch. "
INDEX { dhcpServerPoolIndex, dhcpServerLeasedIndex }
::= { dhcpServerLeasedTable 1 }
DhcpServerLeasedEntry ::= SEQUENCE {
dhcpServerLeasedIndex Integer32,
dhcpServerLeasedIp IpAddress,
dhcpServerLeasedMac MacAddress,
dhcpServerLeasedType INTEGER,
dhcpServerLeasedTime Integer32
}
dhcpServerLeasedIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of the Leased Table."
::= { dhcpServerLeasedEntry 1 }
dhcpServerLeasedIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The client IP address."
::= { dhcpServerLeasedEntry 2 }
dhcpServerLeasedMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The client MAC address."
::= { dhcpServerLeasedEntry 3 }
dhcpServerLeasedType OBJECT-TYPE
SYNTAX INTEGER {
manual(1),
dynamic(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { dhcpServerLeasedEntry 4 }
dhcpServerLeasedTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The lease time of the client."
::= { dhcpServerLeasedEntry 5 }
-- -----------------------------------------------------------------------------
--dhcpRelayAgent
-- -----------------------------------------------------------------------------
dhcpRelayAgentEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable or disable dhcp relay agent function."
::= { dhcpServer 8 }
-- -----------------------------------------------------------------------------
--dhcpRelayAgentPolicy
-- -----------------------------------------------------------------------------
dhcpRelayAgentPolicy OBJECT-TYPE
SYNTAX INTEGER {
keep(1),
drop(2),
replace(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Keep(1): Keeps the original option 82 field and forwards to server
drop(2): Drops the option 82 field and do not add any option 82 field
replace(3): Replaces the existing option 82 field and adds new option
82 field. (This is the default setting)"
::= { dhcpServer 9 }
-- -----------------------------------------------------------------------------
--dhcpRelayAgentCircuitIdTable
-- -----------------------------------------------------------------------------
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10
dhcpRelayAgentCircuitIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpRelayAgentCircuitIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { dhcpServer 10 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10.1
dhcpRelayAgentCircuitIdEntry OBJECT-TYPE
SYNTAX DhcpRelayAgentCircuitIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { dhcpRelayAgentCircuitIdPortNum }
::= { dhcpRelayAgentCircuitIdTable 1 }
DhcpRelayAgentCircuitIdEntry ::=
SEQUENCE {
dhcpRelayAgentCircuitIdPortNum
Integer32,
dhcpRelayAgentCircuitIdType
Integer32,
dhcpRelayAgentCircuitIdValue
OCTET STRING,
dhcpRelayAgentCircuitIdDisplay
OCTET STRING
}
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10.1.1
dhcpRelayAgentCircuitIdPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { dhcpRelayAgentCircuitIdEntry 1 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10.1.2
dhcpRelayAgentCircuitIdType OBJECT-TYPE
SYNTAX Integer32 {
default(0),
string(2),
hexadecimal(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Circuit-ID type of the Option82 added by Relay Agent."
::= { dhcpRelayAgentCircuitIdEntry 2 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10.1.3
dhcpRelayAgentCircuitIdValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Circuit-ID value of the Option82 added by Relay Agent, the format
can be String or Hexadecimal value."
::= { dhcpRelayAgentCircuitIdEntry 3 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.10.1.4
dhcpRelayAgentCircuitIdDisplay OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Display the Circuit-ID value by Hexadecimal format"
::= { dhcpRelayAgentCircuitIdEntry 4 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.11
dhcpRelayAgentRemoteIdType OBJECT-TYPE
SYNTAX INTEGER {
default(0),
string(2),
hexadecimal(3),
ip(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Remote-ID type of the Option82 added by Relay Agent."
::= { dhcpServer 11 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.12
dhcpRelayAgentRemoteIdValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Remote-ID value of the Option82 added by Relay Agent, the format
can be String or Hexadecimal value."
::= { dhcpServer 12 }
-- 1.3.6.1.4.1.24062.2.4.1.2.5.13
dhcpRelayAgentRemoteIdDisplay OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Remote-ID value of the Option82 added by Relay Agent."
::= { dhcpServer 13 }
-- -----------------------------------------------------------------------------
--dhcpHelperAddrTable
-- -----------------------------------------------------------------------------
dhcpHelperAddressTable OBJECT-TYPE
SYNTAX SEQUENCE OF DhcpHelperAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DHCP relay helper address of the switch."
::= { dhcpServer 14 }
dhcpHelperAddressEntry OBJECT-TYPE
SYNTAX DhcpHelperAddressEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing DHCP relay information
of the switch. "
INDEX { dhcpHelperAddress }
::= { dhcpHelperAddressTable 1 }
DhcpHelperAddressEntry ::= SEQUENCE {
dhcpHelperAddress IpAddress,
}
dhcpHelperAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address ."
::= { dhcpHelperAddressEntry 1 }
-- -----------------------------------------------------------------------------
-- backupAndRestore
-- -----------------------------------------------------------------------------
backupServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of a TFTP server to which a
startup configuration can be uploaded."
DEFVAL { '00000000'H }
::= { backupAndRestore 1 }
backupAgentBoardFwFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The filename to backup to."
DEFVAL { "Quagga.conf" }
::= { backupAndRestore 2 }
backupStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to active(1) trigger the TFTP
upload action.
Setting this object to notActive(2) has no effect.
The system always returns the value notActive(2)
when this object is read."
::= { backupAndRestore 3 }
restoreServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of a TFTP server from which the
startup configuration can be downloaded."
DEFVAL { '00000000'H }
::= { backupAndRestore 4 }
restoreAgentBoardFwFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The file name to restore from."
DEFVAL { "Quagga.conf" }
::= { backupAndRestore 5 }
restoreStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to active(1) trigger the TFTP
download action.
Setting this object to notActive(2) has no effect.
The system always returns the value notActive(2)
when this object is read."
::= { backupAndRestore 6 }
-- -----------------------------------------------------------------------------
-- tftpUpgrade
-- -----------------------------------------------------------------------------
tftpDownloadServerIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of a TFTP server where a firmware image can
be downloaded."
DEFVAL { '00000000'H }
::= { tftpUpgrade 1 }
tftpDownloadAgentBoardFwFileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The file name of the firmware to be downloaded."
DEFVAL { "firmware.bin" }
::= { tftpUpgrade 2 }
tftpDownloadStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to active(1) trigger the TFTP
download action.
Setting this object to notActive(2) has no effect.
The system always returns the value notActive(2)
when this object is read."
::= { tftpUpgrade 3 }
-- -----------------------------------------------------------------------------
-- factoryDefault
-- -----------------------------------------------------------------------------
factoryDefaultActive OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to active(1) to reload factory default configuration.
Reloading factory default will overwrite your current
configuration file with factocy default configuration while
current IP configuration is reserved.
Please reboot the device to make factory default configuration
take effect.
Set notActive(2) has no effect. The system always returns the
value notActive(2) when this object is read."
::= { factoryDefault 1 }
-- -----------------------------------------------------------------------------
-- systemReboot
-- -----------------------------------------------------------------------------
systemRebootActive OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set active(1) to restart the device.
Set to notActive(2) has no effect. The device always returns
the value notActive(2) when this object is read."
DEFVAL { notActive }
::= { systemReboot 1 }
-- -----------------------------------------------------------------------------
-- portConfiguration
-- -----------------------------------------------------------------------------
portControl OBJECT IDENTIFIER ::= { portConfiguration 1 }
portStatus OBJECT IDENTIFIER ::= { portConfiguration 2 }
rateLimiting OBJECT IDENTIFIER ::= { portConfiguration 3 }
portTrunk OBJECT IDENTIFIER ::= { portConfiguration 4 }
portCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of information and configuration for each ports."
::= { portControl 1 }
portCtrlEntry OBJECT-TYPE
SYNTAX PortCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing information and configuration for a port."
INDEX { portCtrlIndex }
::= { portCtrlTable 1 }
PortCtrlEntry ::= SEQUENCE {
portCtrlIndex INTEGER,
portCtrlPortName DisplayString,
portCtrlPortStatus INTEGER,
portCtrlSpeedAndDuplex INTEGER,
portCtrlFlowControl INTEGER,
portCtrlPortDescription DisplayString
}
portCtrlIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of the port control entry."
::= { portCtrlEntry 1 }
portCtrlPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of port."
::= { portCtrlEntry 2 }
portCtrlPortStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To enable or disable of this port."
::= { portCtrlEntry 3 }
portCtrlSpeedAndDuplex OBJECT-TYPE
SYNTAX INTEGER {
autoNegotiation(1),
tenMbpsHalfDuplex(2),
tenMbpsFullDuplex(3),
hundredMbpsHalfDuplex(4),
hundredMbpsFullDuplex(5),
thousandMbpsFullDuplex(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Speed and duplex configuraion.
Different speed and duplex modes are available. There are speeds:
1000 megabits per second (Gigabit Ethernet), 100 megabits per
second (Fast Ethernet), and 10 megabits per second (Legacy
Ethernet).
Full-duplex allows packets to be transmitted in both directions
at the same time, while half-duplex allows a device to either
transmit or receive, but not both at the same time. Full-duplex
may have double bandwidth than half-duplex.
You can configure manually from the possible options, listed from
best to worst:
1Gb full-duplex(6)
100Mb full-duplex(5)
100Mb half-duplex(4)
10Mb full-duplex(3)
10Mb half-duplex(2)
Set to autoNegotiation(1) to allow the two interfaces on the link
to exchange the capabilities and characteristics of the each side,
and select the best operating mode automatically when a cable is
plugged in."
::= { portCtrlEntry 4 }
portCtrlFlowControl OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
symmetric(2)
-- asymmetric(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Flow control configuration.
Flow control is used to throttle the throughput rate of an
end station to avoid dropping packets during network
congestion. If flow control mode is not set and if there is
no packet buffer space available, the incoming packets are
discarded.
Symmetric Flow Control stops and restarts packet transmission
by transmitting and receiving pause frames. When a port's
free buffer space is almost empty, the device send out a Pause
frame to stop the remove node from sending more frames into
the switch. When congestion on the port is relieved, the device
send out a Pause frame with pause time equal to zero, making
the remove node resume transmission."
DEFVAL { disable }
::= { portCtrlEntry 5 }
portCtrlPortDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..138))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The description of port."
::= { portCtrlEntry 6 }
-- -----------------------------------------------------------------------------
-- portStatusTable
-- -----------------------------------------------------------------------------
portStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and statistics information about
each ports."
::= { portStatus 1 }
portStatusEntry OBJECT-TYPE
SYNTAX PortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing statistics information of a port."
INDEX { portStatusIndex }
::= { portStatusTable 1 }
PortStatusEntry ::= SEQUENCE {
portStatusIndex Integer32,
portStatusType INTEGER,
portStatusLink INTEGER,
portStatusState INTEGER,
portStatusSpeedDuplex INTEGER,
portStatusFlowCtrl INTEGER,
sfpVender DisplayString,
sfpWavelength Integer32,
sfpDistance Integer32
}
portStatusIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of port statistic table."
::= { portStatusEntry 1 }
portStatusType OBJECT-TYPE
SYNTAX INTEGER {
hundredBaseTX(1),
thousandBaseT(2),
hundredBaseFX(3),
thousandBaseSX(4),
thousandBaseLX(5),
other(6),
notPresent(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the type of the port."
::= { portStatusEntry 2 }
portStatusLink OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicate the link state of the port."
::= { portStatusEntry 3 }
portStatusState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicate the state of the port."
::= { portStatusEntry 4 }
portStatusSpeedDuplex OBJECT-TYPE
SYNTAX INTEGER {
autoNegotiation(1),
tenMbpsHalfDuplex(2),
tenMbpsFullDuplex(3),
hundredMbpsHalfDuplex(4),
hundredMbpsFullDuplex(5),
thousandMbpsFullDuplex(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicate the speed and duplex mode of the port."
::= { portStatusEntry 5 }
portStatusFlowCtrl OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
symmetric(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicate the flow control status of the port."
::= { portStatusEntry 6 }
sfpVender OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The vender name of the Small Form Pluggable (SFP) optical
transceiver module."
::= { portStatusEntry 7 }
sfpWavelength OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The wave length in nanometers (nm) of the Small Form
Pluggable (SFP) optical transceiver module."
::= { portStatusEntry 8 }
sfpDistance OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum transimission distance in meters of the Small
Form Pluggable (SFP) optical transceiver module."
::= { portStatusEntry 9 }
-- -----------------------------------------------------------------------------
-- portSfpTable
-- -----------------------------------------------------------------------------
portSfpTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortSfpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about SFP"
::= { portStatus 2 }
portSfpEntry OBJECT-TYPE
SYNTAX PortSfpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing SFP information of a port."
INDEX { portSfpIndex }
::= { portSfpTable 1 }
PortSfpEntry ::= SEQUENCE {
portSfpIndex Integer32,
portSfpEject INTEGER,
portSfpScan INTEGER,
portSfpDdmStatus INTEGER,
portSfpDdmTempatureCurrent DisplayString,
portSfpDdmTempatureRange DisplayString,
portSfpDdmTxPowerCurrent DisplayString,
portSfpDdmTxPowerRange DisplayString,
portSfpDdmRxPowerCurrent DisplayString,
portSfpDdmRxPowerRange DisplayString
}
portSfpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of port SFP table."
::= { portSfpEntry 1 }
portSfpEject OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Eject SFP"
::= { portSfpEntry 2 }
portSfpScan OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Scan SFP"
::= { portSfpEntry 3 }
portSfpDdmStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)Enable SFP digital diagnostic and monitoring.
(2)Disable SFP digital diagnostic and monitoring."
::= { portSfpEntry 4 }
portSfpDdmTempatureCurrent OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current SFP Tempature of port."
::= { portSfpEntry 5 }
portSfpDdmTempatureRange OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The range of SFP Tempature of port."
::= { portSfpEntry 6 }
portSfpDdmTxPowerCurrent OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current SFP Transmitted Power of port."
::= { portSfpEntry 7 }
portSfpDdmTxPowerRange OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The range of SFP Transmitted Power of port."
::= { portSfpEntry 8 }
portSfpDdmRxPowerCurrent OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current SFP Receiveed Power of port."
::= { portSfpEntry 9 }
portSfpDdmRxPowerRange OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The range of SFP Receiveed Power of port."
::= { portSfpEntry 10 }
-- -----------------------------------------------------------------------------
-- rateLimiting
-- -----------------------------------------------------------------------------
rateLimitingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RateLimitingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
port rate limiting. You can set up bandwidth rate and packet
limitation type for each ports.
Rate limiting is used to control the rate of traffic sent or
received on a network interface. For ingress rate limiting,
traffic that is less than or equal to the specified rate is
received, whereas traffic that exceeds the rate is dropped.
For egress rate limiting, traffic that is less than or equal
to the specified rate is sent, whereas traffic that exceeds
the rate is dropped."
::= { rateLimiting 1 }
rateLimitingEntry OBJECT-TYPE
SYNTAX RateLimitingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing information and configuration about
port rate limiting."
INDEX { rateLimitingPortNum }
::= { rateLimitingTable 1 }
RateLimitingEntry ::= SEQUENCE {
rateLimitingPortNum Integer32,
rateLimitingIngressLimitType INTEGER,
rateLimitingIngressRate Integer32,
rateLimitingEgressRate Integer32
}
rateLimitingPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The port number."
::= { rateLimitingEntry 1 }
rateLimitingIngressLimitType OBJECT-TYPE
SYNTAX INTEGER {
all(1),
broadcastMulticastFloodedUnicast(2),
broadcastMulticast(3),
broadcastOnly(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The type of ingress packets to be filtered."
::= { rateLimitingEntry 2 }
rateLimitingIngressRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Ingress rate in Mbps, the rate range is from 1 Mbps to 100 Mbps
and zero means no limit."
::= { rateLimitingEntry 3 }
rateLimitingEgressRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Egress rate in Mbps, the rate range is from 1 Mbps to 100 Mbps
and zero means no limit. Egress rate limiting has effect on
all types of packets, including unicast, multicast and
broadcast packets."
::= { rateLimitingEntry 4 }
-- -----------------------------------------------------------------------------
-- portTrunk
-- -----------------------------------------------------------------------------
aggregatorSetting OBJECT IDENTIFIER ::= { portTrunk 1 }
aggregatorStatus OBJECT IDENTIFIER ::= { portTrunk 2 }
-- -----------------------------------------------------------------------------
-- portTrunkAggregatorSettingTable
-- -----------------------------------------------------------------------------
portTrunkAggregatorSettingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortTrunkAggregatorSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
of each trunk group in this system.
Link aggregation, or IEEE 802.3ad, is a method of combining
physical network links into a single logical link for
increased bandwidth. With Link aggregation we are able to
increase the capacity and availability of the communications
channel between devices (both switches and end stations)
using existing Fast Ethernet and Gigabit Ethernet technology.
Two or more Gigabit Ethernet connections are combined in
order to increase the bandwidth capability and to create
resilient and redundant links. A set of multiple parallel
physical links between two devices is grouped together to
form a single logical link.
Link Aggregation also provides load balancing where the
processing and communications activity is distributed across
the links in a trunk so that no single link is overwhelmed."
::= { aggregatorSetting 1 }
portTrunkAggregatorSettingEntry OBJECT-TYPE
SYNTAX PortTrunkAggregatorSettingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling aggregator configuration."
INDEX { portTrunkPortIndex }
::= { portTrunkAggregatorSettingTable 1 }
PortTrunkAggregatorSettingEntry ::= SEQUENCE {
portTrunkPortIndex INTEGER,
portTrunkAggregatorGroupId INTEGER,
portTrunkAggregatorType INTEGER
}
portTrunkPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The port number."
::= { portTrunkAggregatorSettingEntry 1 }
portTrunkAggregatorGroupId OBJECT-TYPE
SYNTAX INTEGER {
trunkGroup1(1),
trunkGroup2(2),
trunkGroup3(3),
trunkGroup4(4),
trunkGroup5(5),
none(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Trunk group Id. Upto 8 ports can be aggregated into
a group and 5 groups can be configured in the device."
::= { portTrunkAggregatorSettingEntry 2 }
portTrunkAggregatorType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
lacp(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The Aggregator type. You can assign the aggregator staticly
by setting to static(1), or setting to lacp(2) to enable the
LACP protocol.
The Link Aggregation Control Protocol (LACP) is required for
dynamically exchanging configuration information between the
peer devices in order to automatically configure and maintain
link aggregation groups. The protocol is able to automatically
detect the presence and capabilities of other aggregation
capable devices, i.e. with LACP it is possible to specify which
links in a system can be aggregated.
This column has no effect if Group Id is set to none."
::= { portTrunkAggregatorSettingEntry 3 }
portTrunkAggregatorSettingApply OBJECT-TYPE
SYNTAX INTEGER {
active(1), -- state, read-write
notactive(2) -- state, read-only
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "set active(1) to apply the configuration"
::= { aggregatorSetting 2 }
-- -----------------------------------------------------------------------------
-- portTrunkAggregatorStatusTable
-- -----------------------------------------------------------------------------
portTrunkAggregatorStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortTrunkAggregatorStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about trunk groups in
the device."
::= { aggregatorStatus 1 }
portTrunkAggregatorStatusEntry OBJECT-TYPE
SYNTAX PortTrunkAggregatorStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing information about current configuration
of trunk groups."
INDEX { portTrunkAggregatorGroupIndex }
::= { portTrunkAggregatorStatusTable 1 }
PortTrunkAggregatorStatusEntry ::= SEQUENCE {
portTrunkAggregatorGroupIndex INTEGER,
portTrunkAggregatorGroupType INTEGER,
portTrunkAggregatorGroupMember PortList,
portTrunkAggregatorIndividual PortList,
portTrunkAggregatorLinkDown PortList
}
portTrunkAggregatorGroupIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The trunk group identifier."
::= { portTrunkAggregatorStatusEntry 1 }
portTrunkAggregatorGroupType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
lacp(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Aggregator type.
(1) The trunk group is LACP disabled and configured staticly
by administrator.
(2) The trunk group is LACP enabled. "
::= { portTrunkAggregatorStatusEntry 2 }
portTrunkAggregatorGroupMember OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The ports are aggregated with other ports."
::= { portTrunkAggregatorStatusEntry 3 }
portTrunkAggregatorIndividual OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A port is LACP enabled but not aggregated with other ports."
::= { portTrunkAggregatorStatusEntry 4 }
portTrunkAggregatorLinkDown OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The ports which are linked down."
::= { portTrunkAggregatorStatusEntry 5 }
-- -----------------------------------------------------------------------------
-- networkRedundancy
-- -----------------------------------------------------------------------------
-- superRing OBJECT IDENTIFIER ::= { networkRedundancy 1 }
-- rstp OBJECT IDENTIFIER ::= { networkRedundancy 2 }
-- bridgeInformation OBJECT IDENTIFIER ::= { networkRedundancy 3 }
redundantRing OBJECT IDENTIFIER ::= { networkRedundancy 4 }
stp OBJECT IDENTIFIER ::= { networkRedundancy 5 }
stpBridgeInformation OBJECT IDENTIFIER ::= { networkRedundancy 6 }
mstp OBJECT IDENTIFIER ::= { networkRedundancy 7 }
mstpBridgeInformation OBJECT IDENTIFIER ::= { networkRedundancy 8 }
-- -----------------------------------------------------------------------------
-- superRing
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- redundantRingConfigTable
-- -----------------------------------------------------------------------------
redundantRingConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF RedundantRingConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of configuration about redundancy protocol in the device."
::= { redundantRing 1 }
redundantRingConfigEntry OBJECT-TYPE
SYNTAX RedundantRingConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing information about current configuration
of rings."
INDEX { superRingConfigId }
::= { redundantRingConfigTable 1 }
RedundantRingConfigEntry ::= SEQUENCE {
superRingConfigId INTEGER,
superRingStatus RowStatus,
superRingName DisplayString,
superRingConfigVersion INTEGER,
superRingDevicePriority INTEGER,
superRingRingPort1 INTEGER,
superRingRingPort2 INTEGER,
superRingRingPort1PathCost INTEGER,
superRingRingPort2PathCost INTEGER,
superRingRapidDualHomingStatus INTEGER
}
superRingConfigId OBJECT-TYPE
SYNTAX INTEGER(0..15)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Ring Id."
::= { redundantRingConfigEntry 1 }
superRingName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Super Ring name."
::= { redundantRingConfigEntry 2 }
superRingConfigVersion OBJECT-TYPE
SYNTAX INTEGER {
superRing(1),
rapidSuperRing(2),
anyRing(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Super Ring funtion version selection.
Super Ring: Backward compatible with legacy super ring mechanism.
Note: This model supports v1 non-Redundancy Management mode only.
Rapid Super Ring: New mechanism. The recovery time is less than 30ms.
Any Ring:
"
--DEFVAL { rapidSuperRing }
::= { redundantRingConfigEntry 3 }
superRingDevicePriority OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Super Ring device priority setting."
--DEFVAL { 128 }
::= { redundantRingConfigEntry 4 }
superRingRingPort1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "RingPort1 should not equal to RingRort2."
::= { redundantRingConfigEntry 5 }
superRingRingPort2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "RingPort2 should not equal to RingRort1."
::= { redundantRingConfigEntry 6 }
superRingRingPort1PathCost OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
--DEFVAL { 128 }
::= {redundantRingConfigEntry 7 }
superRingRingPort2PathCost OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
--DEFVAL { 128 }
::= { redundantRingConfigEntry 8 }
superRingRapidDualHomingStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Rapid Dual Homing funtion status.
Rapid Dual Homing is a redundancy protocol,
which is compatible with RSTP.
(1) Rapid Dual Homing function is enabled.
(2) Rapid Dual Homing function is disabled."
--DEFVAL { disable }
::= { redundantRingConfigEntry 9 }
superRingStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Status of this ring."
::= { redundantRingConfigEntry 10 }
-- -----------------------------------------------------------------------------
-- redundantRingStatusTable
-- -----------------------------------------------------------------------------
redundantRingStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF RedundantRingStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of status information about redundancy protocol in
the device."
::= { redundantRing 2 }
redundantRingStatusEntry OBJECT-TYPE
SYNTAX RedundantRingStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing information about current status
of rings."
INDEX { superRingStatusId }
::= { redundantRingStatusTable 1 }
RedundantRingStatusEntry ::= SEQUENCE {
superRingStatusId INTEGER,
superRingVersion INTEGER,
superRingDeviceRole INTEGER,
superRingRingPortList1 PortList,
superRingRingPortList2 PortList,
superRingRingStatus INTEGER,
superRingRmMac MacAddress,
superRingBlockedPort PortList,
superRingRoleTransitionCount Integer32,
superRingRingStateTransitionCount Integer32
}
superRingStatusId OBJECT-TYPE
SYNTAX INTEGER(0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Ring Id."
::= { redundantRingStatusEntry 1 }
superRingVersion OBJECT-TYPE
SYNTAX INTEGER {
superRing(1),
rapidSuperRing(2),
anyRing(3),
notSupported(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Super Ring funtion version selection.
Super Ring: Backward compatible with legacy super ring mechanism.
Note: This model supports v1 non-Redundancy Management mode only.
Rapid Super Ring: New mechanism. The recovery time is less than 30ms.
Any Ring:
Not Supported:"
::= { redundantRingStatusEntry 2 }
superRingDeviceRole OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
rm(2),
non-RM(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Super Ring role status.
(1) disabled.
(2) Redundancy manager.
(3) Non redundancy manager."
::= { redundantRingStatusEntry 3 }
superRingRingPortList1 OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port list for ring port1."
::= { redundantRingStatusEntry 4 }
superRingRingPortList2 OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port list for ring port2."
::= { redundantRingStatusEntry 5 }
superRingRingStatus OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
normal(2),
abnormal(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Super Ring ring status.
(1) Disabled - The ring on this device is disabled.
(1) Normal - Ring is complete.
(2) Abnormal - Ring is not complete."
::= { redundantRingStatusEntry 6 }
superRingRmMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "RM mac address."
::= { redundantRingStatusEntry 7 }
superRingBlockedPort OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The blocked ports in ring Normal state."
::= { redundantRingStatusEntry 8 }
superRingRoleTransitionCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { redundantRingStatusEntry 9 }
superRingRingStateTransitionCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { redundantRingStatusEntry 10 }
-- -----------------------------------------------------------------------------
-- rstp
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- bridgeInformation
-- rstpRootBridgeInformationTable
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- stp
-- -----------------------------------------------------------------------------
stpModeStatus OBJECT-TYPE
SYNTAX INTEGER {
stp(1),
rstp(2),
mstp(3),
disabled(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable Spanning Tree protocol, Rapid Spanning Tree protocol,
or disable .
Rapid Spanning Tree Algorithm and Protocol (RSTP) provides a
loop free topology for any LAN or bridged network. RSTP is an
evolution of the Spanning Tree Protocol (STP), and was
introduced in the extension IEEE 802.1w, and provides for
faster spanning tree convergence after a topology change."
::= { stp 1 }
stpBridgeAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Bridge Address."
::= { stp 2 }
stpBridgePriority OBJECT-TYPE
SYNTAX Integer32 {
priority0(0),
priority4096(4096),
priority8192(8192),
priority12288(12288),
priority16384(16384),
priority20480(20480),
priority24576(24576),
priority28672(28672),
priority32768(32768),
priority36864(36864),
priority40960(40960),
priority45056(45056),
priority49152(49152),
priority53248(53248),
priority57344(57344),
priority61440(61440)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A value used to identify the root bridge. The bridge with
the lowest value has the highest priority and is selected
as the root. Enter a number 0 through 61440 in steps of
4096. If you change the value, you must restart RSTP.
This item can't be modified, if stpStatus was disabled."
::= { stp 3 }
stpMaxAge OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of seconds a bridge waits without receiving
Spanning-Tree Protocol configuration messages before
attempting a reconfiguration. Enter a number 6 through 40.
Note: 2*(Forward Delay Time-1) should be greater than or
equal to the Max Age. The Max Age should be greater than
or equal to 2*(Hello Time + 1).
This item can't be modified, if stpStatus was disabled."
::= { stp 4 }
stpHelloTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of seconds between the transmission of
Spanning-Tree Protocol configuration messages.
Enter a number 1 through 10
Note: 2*(Forward Delay Time-1) should be greater than or
equal to the Max Age. The Max Age should be greater
than or equal to 2*(Hello Time + 1).
This item can't be modified, if stpStatus was disabled."
::= { stp 5 }
stpForwardDelayTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The number of seconds a port waits before changing
from its Spanning-Tree Protocol learning and listening
states to the forwarding state. Enter a number 4 through 30.
Note:2*(Forward Delay Time-1) should be greater than or
equal to the Max Age. The Max Age should be greater than
or equal to 2*(Hello Time + 1).
This item can't be modified, if stpStatus was disabled."
::= { stp 6 }
-- -----------------------------------------------------------------------------
-- stpPerPortCfgTable
-- -----------------------------------------------------------------------------
stpPerPortCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpPerPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
STP on each port."
::= { stp 7 }
stpPerPortCfgEntry OBJECT-TYPE
SYNTAX StpPerPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring STP on a port."
INDEX { stpPerPortCfgPortNum }
::= { stpPerPortCfgTable 1 }
StpPerPortCfgEntry ::= SEQUENCE {
stpPerPortCfgPortNum Integer32,
stpPerPortCfgStpState INTEGER,
stpPerPortCfgPathCost Integer32,
stpPerPortCfgPriority Integer32,
stpPerPortCfgLinkType INTEGER,
stpPerPortCfgEdgePort INTEGER
}
stpPerPortCfgPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The port number."
::= { stpPerPortCfgEntry 1 }
stpPerPortCfgStpState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable/Disable STP/RSTP/MSTP at this port. Disable STP state
when connecting a device in order to avoid STP waiting periods."
::= { stpPerPortCfgEntry 2 }
stpPerPortCfgPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The cost of the path to the other bridge from this
transmitting bridge at the specified port. Enter a number from
1 through 200000000.
(0 will auto set path cost to standard recommended value)"
::= { stpPerPortCfgEntry 3 }
stpPerPortCfgPriority OBJECT-TYPE
SYNTAX Integer32 {
priority0(0),
priority16(16),
priority32(32),
priority48(48),
priority64(64),
priority80(80),
priority96(96),
priority112(112),
priority128(128),
priority144(144),
priority160(160),
priority176(176),
priority192(192),
priority208(208),
priority224(224),
priority240(240)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Decide which port should be blocked by priority in LAN. Enter
a number from 0 through 240 in steps of 16."
::= { stpPerPortCfgEntry 4 }
stpPerPortCfgLinkType OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
point2Point(2),
shared(3),
notSupport(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Some of the rapid state transactions that are
possible within RSTP are dependent upon whether
the Port concerned can only be connected to
exactly one other Bridge(ie., it is served by a
point-to-point LAN segment), or can be connected
to two or more Bridges(i.e., it is served by a
shared medium LAN segment).
The adminPointToPointMAC allow the p2p status
of the link to be manipulated adminitratively."
::= { stpPerPortCfgEntry 5 }
stpPerPortCfgEdgePort OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Present in implementations that support the
identification of edge ports. All ports
directly connected to end stations cannot
create bridging loops in the network and can
thus directly transition to forwarding,
skipping the listening and learning stages."
::= { stpPerPortCfgEntry 6 }
-- -----------------------------------------------------------------------------
-- stpBridgeInformation
-- stpRootInformationTable
-- -----------------------------------------------------------------------------
stpRootInformationTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpRootInformationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about root bridge
of rapid spanning tree in this system."
::= { stpBridgeInformation 1 }
stpRootInformationEntry OBJECT-TYPE
SYNTAX StpRootInformationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about root bridge information of the STP."
INDEX { stpRootInformationIndex }
::= { stpRootInformationTable 1 }
StpRootInformationEntry ::= SEQUENCE {
stpRootInformationIndex Integer32,
stpRootInformationRootAddress DisplayString,
stpRootInformationRootPriority Integer32,
stpRootInformationRootPort DisplayString,
stpRootInformationRootPathCost Integer32,
stpRootInformationMaxAge Integer32,
stpRootInformationHelloTime Integer32,
stpRootInformationForwardDelay Integer32
}
stpRootInformationIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of root bridge information table."
::= { stpRootInformationEntry 1 }
stpRootInformationRootAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Address."
::= { stpRootInformationEntry 2 }
stpRootInformationRootPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Priority."
::= { stpRootInformationEntry 3 }
stpRootInformationRootPort OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Port."
::= { stpRootInformationEntry 4 }
stpRootInformationRootPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Path Cost."
::= { stpRootInformationEntry 5 }
stpRootInformationMaxAge OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Max Age."
::= { stpRootInformationEntry 6 }
stpRootInformationHelloTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Hello Time."
::= { stpRootInformationEntry 7 }
stpRootInformationForwardDelay OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Forward Delay Time."
::= { stpRootInformationEntry 8 }
-- -----------------------------------------------------------------------------
-- stpPerPortInfoTable
-- -----------------------------------------------------------------------------
stpPerPortInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpPerPortInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
rapid spanning tree (Per port)."
::= { stpBridgeInformation 2 }
stpPerPortInfoEntry OBJECT-TYPE
SYNTAX StpPerPortInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion
about STP (Per port)."
INDEX { stpPerPortInfoPortNum }
::= { stpPerPortInfoTable 1 }
StpPerPortInfoEntry ::= SEQUENCE {
stpPerPortInfoPortNum Integer32,
stpPerPortInfoRole INTEGER,
stpPerPortInfoState INTEGER,
stpPerPortInfoPathCost Integer32,
stpPerPortInfoPriority Integer32,
stpPerPortInfoLinkType INTEGER,
stpPerPortInfoEdgePort INTEGER
}
stpPerPortInfoPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port number."
::= { stpPerPortInfoEntry 1 }
stpPerPortInfoRole OBJECT-TYPE
SYNTAX INTEGER {
root(1),
alternated(2),
designated(3),
backup(4),
disabled(5),
nonStp(6),
unknown(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Descriptive information about RSTP switch port roles:
root(1) A forwarding port that has been elected for
the spanning-tree topology.
alternate(2) An alternate path to the root bridge. This
path is different than using the root port.
designated(3) A forwarding port for every LAN segment.
backup(4) A backup/redundant path to a segment where
another switch port already connects.
disabled(5) RSTP is disabled on this port."
::= { stpPerPortInfoEntry 2 }
stpPerPortInfoState OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
learning(2),
forwarding(3),
blocking(4),
unknown(5),
nonStp(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { stpPerPortInfoEntry 3 }
stpPerPortInfoPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cost of the path to the other bridge from
this transmitting bridge at the specified port.
Enter a number 1 through 200000000."
::= { stpPerPortInfoEntry 4 }
stpPerPortInfoPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Decide which port should be blocked by priority
in LAN. Enter a number 0 through 240 in steps of
16."
::= { stpPerPortInfoEntry 5 }
stpPerPortInfoLinkType OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
point2Point(2),
shared(3),
notSupport(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Some of the rapid state transactions that are
possible within RSTP are dependent upon whether
the Port concerned can only be connected to
exactly one other Bridge(ie., it is served by a
point-to-point LAN segment), or can be connected
to two or more Bridges(i.e., it is served by a
shared medium LAN segment).
The adminPointToPointMAC allow the p2p status
of the link to be manipulated adminitratively.
STP does not support this function."
::= { stpPerPortInfoEntry 6 }
stpPerPortInfoEdgePort OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Present in implementations that support the
identification of edge ports. All ports
directly connected to end stations cannot
create bridging loops in the network and can
thus directly transition to forwarding,
skipping the listening and learning stages."
::= { stpPerPortInfoEntry 7 }
---------------------------------------------------------------------------
-- mstp
---------------------------------------------------------------------------
mstpRegionName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "MSTP region name."
::= { mstp 1 }
mstpRegionRevision OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "MSTP region revision."
::= { mstp 2 }
-- -----------------------------------------------------------------------------
-- mstpPerInstCfgTable
-- -----------------------------------------------------------------------------
mstpPerInstCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF MstpPerInstCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
STP on each port."
::= { mstp 3 }
mstpPerInstCfgEntry OBJECT-TYPE
SYNTAX MstpPerInstCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring MSTP on a instance."
INDEX { mstpPerInstCfgInstanceID }
::= { mstpPerInstCfgTable 1 }
MstpPerInstCfgEntry ::= SEQUENCE {
mstpPerInstCfgInstanceID Integer32,
mstpPerInstCfgVlanGroup DisplayString,
mstpPerInstCfgInstancePriority Integer32,
mstpPerInstCfgStatus RowStatus
}
mstpPerInstCfgInstanceID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The instance ID."
::= { mstpPerInstCfgEntry 1 }
mstpPerInstCfgVlanGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "VLAN group of instance."
::= { mstpPerInstCfgEntry 2 }
mstpPerInstCfgInstancePriority OBJECT-TYPE
SYNTAX Integer32 {
priority0(0),
priority4096(4096),
priority8192(8192),
priority12288(12288),
priority16384(16384),
priority20480(20480),
priority24576(24576),
priority28672(28672),
priority32768(32768),
priority36864(36864),
priority40960(40960),
priority45056(45056),
priority49152(49152),
priority53248(53248),
priority57344(57344),
priority61440(61440)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A value used to identify the instance root. The instance with
the lowest value has the highest priority and is selected
as the root. Enter a number 0 through 61440 in steps of
4096."
::= { mstpPerInstCfgEntry 3 }
mstpPerInstCfgStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Status of this Instance."
::= { mstpPerInstCfgEntry 4 }
-- -----------------------------------------------------------------------------
-- mstpPerPortCfgTable
-- -----------------------------------------------------------------------------
mstpPerPortCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF MstpPerPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
MSTP on each port."
::= { mstp 4 }
mstpPerPortCfgEntry OBJECT-TYPE
SYNTAX MstpPerPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring MSTP on a port."
INDEX { mstpPerPortCfgIndex }
::= { mstpPerPortCfgTable 1 }
MstpPerPortCfgEntry ::= SEQUENCE {
mstpPerPortCfgIndex Integer32,
mstpPerPortCfgInstanceID Integer32,
mstpPerPortCfgPortNum Integer32,
mstpPerPortCfgPathCost Integer32,
mstpPerPortCfgPriority Integer32,
mstpPerPortCfgLinkType INTEGER,
mstpPerPortCfgEdgePort INTEGER
}
mstpPerPortCfgIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of MstpPerPortCfgEntry."
::= { mstpPerPortCfgEntry 1 }
mstpPerPortCfgInstanceID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The instance ID."
::= { mstpPerPortCfgEntry 2 }
mstpPerPortCfgPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The port number."
::= { mstpPerPortCfgEntry 3 }
mstpPerPortCfgPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The cost of the path to the other bridge from this
transmitting bridge at the specified port. Enter a number from
1 through 200000000.
(0 will auto set path cost to standard recommended value)"
::= { mstpPerPortCfgEntry 4 }
mstpPerPortCfgPriority OBJECT-TYPE
SYNTAX Integer32 {
priority0(0),
priority16(16),
priority32(32),
priority48(48),
priority64(64),
priority80(80),
priority96(96),
priority112(112),
priority128(128),
priority144(144),
priority160(160),
priority176(176),
priority192(192),
priority208(208),
priority224(224),
priority240(240)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Decide which port should be blocked by priority in LAN. Enter
a number from 0 through 240 in steps of 16."
::= { mstpPerPortCfgEntry 5 }
mstpPerPortCfgLinkType OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
point2Point(2),
shared(3),
notSupport(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Some of the rapid state transactions that are
possible within RSTP are dependent upon whether
the Port concerned can only be connected to
exactly one other Bridge(ie., it is served by a
point-to-point LAN segment), or can be connected
to two or more Bridges(i.e., it is served by a
shared medium LAN segment).
The adminPointToPointMAC allow the p2p status
of the link to be manipulated adminitratively."
::= { mstpPerPortCfgEntry 6 }
mstpPerPortCfgEdgePort OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Present in implementations that support the
identification of edge ports. All ports
directly connected to end stations cannot
create bridging loops in the network and can
thus directly transition to forwarding,
skipping the listening and learning stages."
::= { mstpPerPortCfgEntry 7 }
-- -----------------------------------------------------------------------------
-- mstpBridgeInformation
-- mstpRootInformationTable
-- -----------------------------------------------------------------------------
mstpRootInformationTable OBJECT-TYPE
SYNTAX SEQUENCE OF MstpRootInformationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about root bridge
of rapid spanning tree in this system."
::= { mstpBridgeInformation 1 }
mstpRootInformationEntry OBJECT-TYPE
SYNTAX MstpRootInformationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about root bridge information of the MSTP."
INDEX { mstpRootInformationInstanceID }
::= { mstpRootInformationTable 1 }
MstpRootInformationEntry ::= SEQUENCE {
-- mstpRootInformationIndex Integer32,
mstpRootInformationInstanceID Integer32,
mstpRootInformationRootAddress DisplayString,
mstpRootInformationRootPriority Integer32,
mstpRootInformationRootPort DisplayString,
mstpRootInformationRootPathCost Integer32,
mstpRootInformationMaxAge Integer32,
mstpRootInformationHelloTime Integer32,
mstpRootInformationForwardDelay Integer32
}
--mstpRootInformationIndex OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Index of root bridge information table."
-- ::= { mstpRootInformationEntry 1 }
mstpRootInformationInstanceID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The instance ID."
::= { mstpRootInformationEntry 1 }
mstpRootInformationRootAddress OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Address."
::= { mstpRootInformationEntry 2 }
mstpRootInformationRootPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Priority."
::= { mstpRootInformationEntry 3 }
mstpRootInformationRootPort OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Port."
::= { mstpRootInformationEntry 4 }
mstpRootInformationRootPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Root Path Cost."
::= { mstpRootInformationEntry 5 }
mstpRootInformationMaxAge OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Max Age."
::= { mstpRootInformationEntry 6 }
mstpRootInformationHelloTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Hello Time."
::= { mstpRootInformationEntry 7 }
mstpRootInformationForwardDelay OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Forward Delay Time."
::= { mstpRootInformationEntry 8 }
-- -----------------------------------------------------------------------------
-- mstpPerPortInfoTable
-- -----------------------------------------------------------------------------
mstpPerPortInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF MstpPerPortInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
rapid spanning tree (Per port)."
::= { mstpBridgeInformation 2 }
mstpPerPortInfoEntry OBJECT-TYPE
SYNTAX MstpPerPortInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing information
about MSTP (Per port)."
INDEX { mstpPerPortInfoIndex }
::= { mstpPerPortInfoTable 1 }
MstpPerPortInfoEntry ::= SEQUENCE {
mstpPerPortInfoIndex Integer32,
mstpPerPortInfoInstanceID Integer32,
mstpPerPortInfoPortNum Integer32,
mstpPerPortInfoRole INTEGER,
mstpPerPortInfoState INTEGER,
mstpPerPortInfoPathCost Integer32,
mstpPerPortInfoPriority Integer32,
mstpPerPortInfoLinkType INTEGER,
mstpPerPortInfoEdgePort INTEGER
}
mstpPerPortInfoIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The index of MstpPerPortInfoEntry."
::= { mstpPerPortInfoEntry 1 }
mstpPerPortInfoInstanceID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The instance ID."
::= { mstpPerPortInfoEntry 2 }
mstpPerPortInfoPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port number."
::= { mstpPerPortInfoEntry 3 }
mstpPerPortInfoRole OBJECT-TYPE
SYNTAX INTEGER {
root(1),
alternate(2),
designated(3),
backup(4),
master(5),
disabled(6),
boundary(7),
unknown(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Descriptive information about MSTP switch port roles:
disabled(1) MSTP is disabled on this port.
root(2) A forwarding port that has been elected for
the spanning-tree topology.
designated(3) A forwarding port for every LAN segment.
alternate(4) An alternate path to the root bridge. This
path is different than using the root port.
backup(5) A backup/redundant path to a segment where
another switch port already connects."
::= { mstpPerPortInfoEntry 4 }
mstpPerPortInfoState OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
listening(2),
learning(3),
forwarding(4),
blocking(5),
unknown(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION " "
::= { mstpPerPortInfoEntry 5 }
mstpPerPortInfoPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cost of the path to the other bridge from
this transmitting bridge at the specified port.
Enter a number 1 through 200000000."
::= { mstpPerPortInfoEntry 6 }
mstpPerPortInfoPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Decide which port should be blocked by priority
in LAN. Enter a number 0 through 240 in steps of
16."
::= { mstpPerPortInfoEntry 7 }
mstpPerPortInfoLinkType OBJECT-TYPE
SYNTAX INTEGER {
p2p-bound-stp(1),
p2p-bound-rstp(2),
p2p-bound-mstp(3),
p2p-internal-mstp(4),
shared-bound-stp(5),
shared-bound-rstp(6),
shared-bound-mstp(7),
shared-internal-mstp(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Some of the rapid state transactions that are
possible within MSTP are dependent upon whether
the Port concerned can only be connected to
exactly one other Bridge(ie., it is served by a
point-to-point LAN segment), or can be connected
to two or more Bridges(i.e., it is served by a
shared medium LAN segment).
The adminPointToPointMAC allow the p2p status
of the link to be manipulated adminitratively."
::= { mstpPerPortInfoEntry 8 }
mstpPerPortInfoEdgePort OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Present in implementations that support the
identification of edge ports. All ports
directly connected to end stations cannot
create bridging loops in the network and can
thus directly transition to forwarding,
skipping the listening and learning stages."
::= { mstpPerPortInfoEntry 9 }
---------------------------------------------------------------------------
-- vlan
---------------------------------------------------------------------------
vlanManagementVlan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The VLAN from which managemnet traffic can access the device.
By default, VLAN 1 is management VLAN."
DEFVAL { 1 }
::= { vlan 1 }
-- vlanStatus OBJECT-TYPE
-- SYNTAX INTEGER {
-- disabled(1),
-- ieee8021qVlan(2),
-- portBasedVlan(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION ""
-- ::= { vlan 2 }
ieee8021qVlan OBJECT IDENTIFIER ::= { vlan 2 }
-- portBasedVlan OBJECT IDENTIFIER ::= { vlan 4 }
-- -----------------------------------------------------------------------------
-- Vlan Port Configuration
-- -----------------------------------------------------------------------------
dot1qPortVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1qPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per port control and status information
for IEEE802.1Q VLAN configuration in the device."
::= { ieee8021qVlan 1 }
dot1qPortVlanEntry OBJECT-TYPE
SYNTAX Dot1qPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling IEEE802.1Q VLAN configuration for
a port on the device."
INDEX { dot1qPortIndex }
::= { dot1qPortVlanTable 1 }
Dot1qPortVlanEntry ::= SEQUENCE {
dot1qPortIndex INTEGER,
dot1qPvid INTEGER,
dot1qPortAcceptableFrameTypes INTEGER,
dot1qPortIngressFiltering INTEGER
}
dot1qPortIndex OBJECT-TYPE
SYNTAX INTEGER(1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The port identifier."
::= { dot1qPortVlanEntry 1 }
dot1qPvid OBJECT-TYPE
SYNTAX INTEGER(1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The default Port VID, the VLAN ID assigned to an untagged
frame or a Priority-Tagged frame received on the port."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.1.1"
DEFVAL { 1 }
::= { dot1qPortVlanEntry 2 }
dot1qPortAcceptableFrameTypes OBJECT-TYPE
SYNTAX INTEGER {
admitAll(1),
admitOnlyVlanTagged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When admitOnlyVlanTagged(2) the device will discard untagged
frames or Priority-Tagged only frames received on this port.
When admitAll(1), untagged frames or Priority-Tagged only
frames received on this port will be accepted and assigned
the PVID for this frame. This control does not affect
VLAN independent BPDU frames, such as SuperRing, STP, GVRP
and LACP. It does affect VLAN dependent BPDU frames, such
as GMRP."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.1.3"
DEFVAL { admitAll }
::= { dot1qPortVlanEntry 3 }
dot1qPortIngressFiltering OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When true(1) the device will discard incoming frames whose
VLAN classification do not include this port in its Member set.
When false(2), the port will accept all incoming frames
regardless its VLAN classification.
This control does not affect VLAN independent BPDU frames,
such as SuperRing, STP, GVRP and LACP. It does affect VLAN
dependent BPDU frames, such as GMRP."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.1.4"
DEFVAL { false }
::= { dot1qPortVlanEntry 4 }
-- -----------------------------------------------------------------------------
-- Static VLAN Database
-- -----------------------------------------------------------------------------
dot1qVlanStaticTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1qVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing configuration information for each VLAN
configured into the device by management. All entries are
permanent and will be restored after the device is reset.
Upto 64 VLANs can be configured in this device.
IEEE 802.1Q Virtual LANs (VLANs) allow a single physical LAN
to be partitioned into several smaller logical LANs. VLANs
limit the broadcast domain, improve security and performance
and are ideal for separating systems or departments from each
other."
-- The maximun number of VLAN supported by this device is 64."
::= { ieee8021qVlan 2 }
dot1qVlanStaticEntry OBJECT-TYPE
SYNTAX Dot1qVlanStaticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Static information of a VLAN configured into the device by
management."
INDEX { dot1qVlanIndex }
::= { dot1qVlanStaticTable 1 }
Dot1qVlanStaticEntry ::= SEQUENCE {
dot1qVlanIndex INTEGER,
dot1qVlanStaticName DisplayString,
dot1qVlanStaticEgressPorts PortList,
dot1qVlanStaticUntaggedPorts PortList,
dot1qVlanStaticTaggedPorts PortList,
dot1qVlanStaticRowStatus RowStatus
}
dot1qVlanIndex OBJECT-TYPE
SYNTAX INTEGER(1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VLAN Identifier (VID) refering to this VLAN. The valid
range is from 1 to 4094."
::= { dot1qVlanStaticEntry 1 }
dot1qVlanStaticName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..12))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "An administratively assigned string, which is used to identify
the VLAN."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
::= { dot1qVlanStaticEntry 2 }
dot1qVlanStaticEgressPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The set of ports which are permanently configured to
transmitting traffic for this VLAN as either tagged or
untagged frames.
Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'.
Changes to this object affect the per-port per-VLAN
Registrar control for Registration Fixed for the
relevant GVRP state machine on each port.
A port may not be added in this set if it is already a
member of the set of ports in dot1qVlanForbiddenEgressPorts.
The default value of this object is a string of zeros,
indicating not fixed."
::= { dot1qVlanStaticEntry 3 }
dot1qVlanStaticUntaggedPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The set of ports which are permanently configured to
transmitting traffic for this VLAN as untagged frames.
Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'.
Changes to this object affect the per-port per-VLAN
Registrar control for Registration Fixed for the
relevant GVRP state machine on each port.
The default value of this object for the default VLAN is a
portlist including all ports. There is no specified default
for other VLANs."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
::= { dot1qVlanStaticEntry 4 }
dot1qVlanStaticTaggedPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The set of ports which are permanently configured to
transmitting traffic for this VLAN as tagged frames.
Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'.
Changes to this object affect the per-port per-VLAN
Registrar control for Registration Fixed for the
relevant GVRP state machine on each port.
The default value of this object for the default VLAN is a
portlist including all ports. There is no specified default
for other VLANs."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
::= { dot1qVlanStaticEntry 5 }
dot1qVlanStaticRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object is used to manage to creation and deletion of
a VLAN, and is used to indicate the status of this entry.
To Creating and activate a VLAN, first select a unused VID for
dot1qVlanIndex and then set its dot1qVlanStaticRowStatus to
'createAndGo'. The VLAN will be created in the device without
tagged or untagged ports. A default VLAN name is assigned and
the status is set to 'active'.
To configure tagged and untagged port members of the VLAN,
assign appropriate of dot1qVlanStaticTaggedPorts and
dot1qVlanStaticUntaggedPorts. A set operation takes effect
on the device immediately.
To delete a VLAN, select the VID for dot1qVlanIndex and set
dot1qVlanStaticRowStatus to 'destory'. The row and the
corresponding VLAN configurarion will be removed from the
device. VLAN 1 is the default VLAN and can never be deleted.
All untagged traffic falls into this VLAN by default.
'createAndWait', 'notInService', 'notReady' have no effects."
::= { dot1qVlanStaticEntry 6 }
--dot1qVlanForbiddenEgressPorts OBJECT-TYPE
-- SYNTAX PortList
-- MAX-ACCESS read-create
-- STATUS current
-- DESCRIPTION
-- "The set of ports which are prohibited by management
-- from being included in the egress list for this VLAN.
-- Changes to this object that cause a port to be included
-- or excluded affect the per-port per-VLAN Registrar
-- control for Registration Forbidden for the relevant
-- GVRP state machine on each port. A port may not be
-- added in this set if it is already a member of the set
-- of ports in dot1qVlanStaticEgressPorts. The default
-- value of this object is a string of zeros of appropriate
-- length, excluding all ports from the forbidden set."
-- REFERENCE
-- "IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3"
-- ::= { dot1qVlanStaticEntry 5 }
-- -----------------------------------------------------------------------------
-- GVRP configration
-- -----------------------------------------------------------------------------
dot1qGvrp OBJECT IDENTIFIER ::= { ieee8021qVlan 3 }
dot1qGvrpStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable GVRP Protocol. "
DEFVAL { disabled }
::= { dot1qGvrp 1 }
dot1qPortGvrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1qPortGvrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per port control and status information
for GVRP configuration in the device."
::= { dot1qGvrp 2 }
dot1qPortGvrpEntry OBJECT-TYPE
SYNTAX Dot1qPortGvrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling GVRP configuration for a port on the
device."
INDEX { dot1qPortGvrpIndex }
::= { dot1qPortGvrpTable 1 }
Dot1qPortGvrpEntry ::= SEQUENCE {
dot1qPortGvrpIndex INTEGER,
dot1qPortGvrpStatus INTEGER,
-- dot1qPortGvrpRegistrationMode INTEGER,
dot1qPortGarpJoinTimer TimeInterval,
dot1qPortGarpLeaveTimer TimeInterval,
dot1qPortGarpLeaveAllTimer TimeInterval
}
dot1qPortGvrpIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The port identifier."
::= { dot1qPortGvrpEntry 1 }
dot1qPortGvrpStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The state of GVRP operation on this port. The value enabled(1)
indicates that GVRP is enabled on this port, as long as
dot1qGvrpStatus is also enabled for this device. When disabled(2)
but dot1qGvrpStatus is still enabled for the device, GVRP is
disabled on this port: any GVRP packets received will be
silently discarded and no GVRP registrations will be propagated
from other ports. This object affects all GVRP Applicant and
Registrar state machines on this port. A transition from
disabled(2) to enabled(1) will cause a reset of all GVRP state
machines on this port."
DEFVAL { enabled }
::= { dot1qPortGvrpEntry 2 }
-- dot1qPortGvrpRegistrationMode OBJECT-TYPE
-- SYNTAX INTEGER {
-- registrationFixed(1),
-- registrationForbidden(2),
-- registrationNormal(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Administrative controls"
-- ::= { dot1qPortGvrpEntry 3 }
dot1qPortGarpJoinTimer OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The GARP Join timer, in centiseconds."
DEFVAL { 20 }
::= { dot1qPortGvrpEntry 3 }
dot1qPortGarpLeaveTimer OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The GARP Leave time, in centiseconds."
DEFVAL { 60 }
::= { dot1qPortGvrpEntry 4 }
dot1qPortGarpLeaveAllTimer OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The GARP LeaveAll time, in centiseconds."
DEFVAL { 1000 }
::= { dot1qPortGvrpEntry 5 }
-- -----------------------------------------------------------------------------
-- Vlan Current Configuration Table
-- -----------------------------------------------------------------------------
dot1qVlanCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1qVlanCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing information about currently configured
VLANs, either by (local or network) management, or dynamically
created as a result of GVRP requests received."
::= { ieee8021qVlan 4 }
dot1qVlanCurrentEntry OBJECT-TYPE
SYNTAX Dot1qVlanCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information for a VLAN configured into the device by
(local or network) management, or dynamically created
as a result of GVRP requests received."
INDEX { dot1qVlanCurrentIndex }
::= { dot1qVlanCurrentTable 1 }
Dot1qVlanCurrentEntry ::= SEQUENCE {
dot1qVlanCurrentIndex INTEGER,
dot1qVlanCurrentEgressPorts PortList,
dot1qVlanCurrentUntaggedPorts PortList,
dot1qVlanStatus INTEGER
-- dot1qVlanPortFa1 VlanEgressMode,
-- dot1qVlanPortFa2 VlanEgressMode,
-- dot1qVlanPortFa3 VlanEgressMode,
-- dot1qVlanPortFa4 VlanEgressMode,
-- dot1qVlanPortFa5 VlanEgressMode,
-- dot1qVlanPortFa6 VlanEgressMode,
-- dot1qVlanPortFa7 VlanEgressMode,
-- dot1qVlanPortGi8 VlanEgressMode,
-- dot1qVlanPortGi9 VlanEgressMode,
-- dot1qVlanPortGi10 VlanEgressMode
}
dot1qVlanCurrentIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VLAN Identifier (VID) refering to this VLAN."
::= { dot1qVlanCurrentEntry 1 }
dot1qVlanCurrentEgressPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The set of ports which are transmitting traffic for
this VLAN as either tagged or untagged frames."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
::= { dot1qVlanCurrentEntry 2 }
dot1qVlanCurrentUntaggedPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The set of ports which are transmitting traffic for
this VLAN as untagged frames."
REFERENCE "IEEE 802.1Q/D11 Section 12.10.2.1"
::= { dot1qVlanCurrentEntry 3 }
dot1qVlanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
permanent(2),
dynamicGvrp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This object indicates the status of this entry.
other(1) - this entry is currently in use but the
conditions under which it will remain so differ
from the following values.
permanent(2) - this entry, corresponding to an entry
in dot1qVlanStaticTable, is currently in use and
will remain so after the next reset of the
device. The port lists for this entry include
ports from the equivalent dot1qVlanStaticTable
entry and ports learnt dynamically.
dynamicGvrp(3) - this entry is currently in use
and will remain so until removed by GVRP. There
is no static entry for this VLAN and it will be
removed when the last port leaves the VLAN."
::= { dot1qVlanCurrentEntry 4 }
-- dot1qVlanPortFa1 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa1."
-- ::= { dot1qVlanCurrentEntry 5 }
--
-- dot1qVlanPortFa2 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa2."
-- ::= { dot1qVlanCurrentEntry 6 }
--
-- dot1qVlanPortFa3 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa3."
-- ::= { dot1qVlanCurrentEntry 7 }
--
-- dot1qVlanPortFa4 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa4."
-- ::= { dot1qVlanCurrentEntry 8 }
--
-- dot1qVlanPortFa5 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa5."
-- ::= { dot1qVlanCurrentEntry 9 }
--
-- dot1qVlanPortFa6 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa6."
-- ::= { dot1qVlanCurrentEntry 10 }
--
-- dot1qVlanPortFa7 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Fa7."
-- ::= { dot1qVlanCurrentEntry 11 }
--
-- dot1qVlanPortGi8 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Gi8."
-- ::= { dot1qVlanCurrentEntry 12 }
--
-- dot1qVlanPortGi9 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Gi9."
-- ::= { dot1qVlanCurrentEntry 13 }
--
-- dot1qVlanPortGi10 OBJECT-TYPE
-- SYNTAX VlanEgressMode
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The vlan egress mode of port Gi10"
-- ::= { dot1qVlanCurrentEntry 14 }
--
---------------------------------------------------------------------------
-- dot1qTunnel/Q-in-Q
---------------------------------------------------------------------------
dot1qTunnel OBJECT IDENTIFIER ::= { ieee8021qVlan 5 }
dot1qTunnelEtherType OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (2))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ethertype/TPID"
DEFVAL { '8100'H }
::= { dot1qTunnel 1 }
dot1qTunnelPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1qTunnelPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per tunnel access or uplink port information in the device."
::= { dot1qTunnel 2 }
dot1qTunnelPortEntry OBJECT-TYPE
SYNTAX Dot1qTunnelPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling tunnel configuration for a port on the device."
INDEX { dot1qTunnelPortIndex }
::= { dot1qTunnelPortTable 1 }
Dot1qTunnelPortEntry ::= SEQUENCE {
dot1qTunnelPortIndex INTEGER,
dot1qTunnelPortMode INTEGER
}
dot1qTunnelPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The port identifier."
::= { dot1qTunnelPortEntry 1 }
dot1qTunnelPortMode OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
access(2),
uplink(3),
uplink-add-pvid(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Tunnel mode controls"
::= { dot1qTunnelPortEntry 2 }
---------------------------------------------------------------------------
-- Private VLAN
---------------------------------------------------------------------------
privateVlan OBJECT IDENTIFIER ::= { vlan 3 }
privateVlanIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrivateVlanIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per Private VLAN ID information in the device."
::= { privateVlan 1 }
privateVlanIdEntry OBJECT-TYPE
SYNTAX PrivateVlanIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling Private VLAN ID configuration on the device."
INDEX { privateVlanId }
::= { privateVlanIdTable 1 }
PrivateVlanIdEntry ::= SEQUENCE {
privateVlanId INTEGER,
privateVlanIdType INTEGER
}
privateVlanId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Private VLAN ID."
::= { privateVlanIdEntry 1 }
privateVlanIdType OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
community(2),
isolated(3),
primary(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN ID type controls"
::= { privateVlanIdEntry 2 }
privateVlanPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrivateVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per Private VLAN Port information in the device."
::= { privateVlan 2 }
privateVlanPortEntry OBJECT-TYPE
SYNTAX PrivateVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling Private VLAN Port configuration on the device."
INDEX { privateVlanPortIndex }
::= { privateVlanPortTable 1 }
PrivateVlanPortEntry ::= SEQUENCE {
privateVlanPortIndex INTEGER,
privateVlanPortMode INTEGER
}
privateVlanPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Private Port Index."
::= { privateVlanPortEntry 1 }
privateVlanPortMode OBJECT-TYPE
SYNTAX INTEGER {
normal(1),
host(2),
promiscuous(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN Port mode controls"
::= { privateVlanPortEntry 2 }
privateVlanHostAssociationTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrivateVlanHostAssociationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per Private VLAN host port association information in the device."
::= { privateVlan 3 }
privateVlanHostAssociationEntry OBJECT-TYPE
SYNTAX PrivateVlanHostAssociationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling Private VLAN host port association configuration on the device."
INDEX { privateVlanHostAssociationPortIndex }
::= { privateVlanHostAssociationTable 1 }
PrivateVlanHostAssociationEntry ::= SEQUENCE {
privateVlanHostAssociationPortIndex INTEGER,
privateVlanHostAssociationPrimaryVid INTEGER,
privateVlanHostAssociationSecondaryVid INTEGER
}
privateVlanHostAssociationPortIndex OBJECT-TYPE
SYNTAX INTEGER(1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Private Host Port Index."
::= { privateVlanHostAssociationEntry 1 }
privateVlanHostAssociationPrimaryVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN host Port association primary VLAN ID. If enter 0 then clear setting."
::= { privateVlanHostAssociationEntry 2 }
privateVlanHostAssociationSecondaryVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN host Port association secondary VLAN ID(isolated/community). If enter 0 then clear setting."
::= { privateVlanHostAssociationEntry 3 }
privateVlanMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrivateVlanMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing per Private VLAN promiscuous port mapping information in the device."
::= { privateVlan 4 }
privateVlanMappingEntry OBJECT-TYPE
SYNTAX PrivateVlanMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information controlling Private VLAN promiscuous port mapping configuration on the device."
INDEX { privateVlanMappingPromiscuousPortIndex }
::= { privateVlanMappingTable 1 }
PrivateVlanMappingEntry ::= SEQUENCE {
privateVlanMappingPromiscuousPortIndex INTEGER,
privateVlanMappingPrimaryVid INTEGER,
privateVlanMappingSecondaryVidList DisplayString
}
privateVlanMappingPromiscuousPortIndex OBJECT-TYPE
SYNTAX INTEGER(1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The Private Promiscuous Port Index."
::= { privateVlanMappingEntry 1 }
privateVlanMappingPrimaryVid OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN promiscuous Port mapping primary VLAN ID. If enter 0 then clear setting."
::= { privateVlanMappingEntry 2 }
privateVlanMappingSecondaryVidList OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
ACCESS read-write
STATUS current
DESCRIPTION "Private VLAN promiscuous Port mapping secondary VLAN ID list. If enter zero-length string then clear setting."
::= { privateVlanMappingEntry 3 }
---------------------------------------------------------------------------
-- Port-based vlan
---------------------------------------------------------------------------
--portBasedVlanTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF PortBasedVlanEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "A table containing per port control and status information
-- for port-based VLAN configuration in the device."
-- ::= { portBasedVlan 1 }
--
--portBasedVlanEntry OBJECT-TYPE
-- SYNTAX PortBasedVlanEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Information controlling port-based VLAN configuration for
-- a port on the device."
-- INDEX { portIndex }
-- ::= { portBasedVlanTable 1 }
--
--PortBasedVlanEntry ::= SEQUENCE {
-- portIndex INTEGER,
-- portPvid INTEGER,
-- portEgressPortList PortList,
-- portEgressMode INTEGER
--}
--
--portIndex OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The port identifier."
-- ::= { portBasedVlanEntry 1 }
--
--portPvid OBJECT-TYPE
-- SYNTAX INTEGER(1..4094)
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The default Port VID, the VLAN ID assigned to an untagged
-- frame or a Priority-Tagged frame received on the port."
-- REFERENCE "IEEE 802.1Q/D11 Section 12.10.1.1"
-- DEFVAL { 1 }
-- ::= { portBasedVlanEntry 2 }
--
--portEgressPortList OBJECT-TYPE
-- SYNTAX PortList
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The ports to which a frame can egress from this port."
-- ::= { portBasedVlanEntry 3 }
--
--portEgressMode OBJECT-TYPE
-- SYNTAX INTEGER {
-- untagged(1),
-- tagged(2),
-- unmodified(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "To configure if the frames egress from this port will be
-- add a 802.1Q vlan tag or not."
-- DEFVAL { untagged }
-- ::= { portBasedVlanEntry 4 }
-- -----------------------------------------------------------------------------
-- trafficPrioritization
-- -----------------------------------------------------------------------------
qosPolicy OBJECT-TYPE
SYNTAX INTEGER {
weighteRoundRobin-8-4-2-1(1),
strictPriority(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)8,4,2,1 weight round robin scheme: the switch will follow
8:4:2:1 rate to process priority queue from Hi to lowest queue.
This approach prevents the lower priotiry packets from being
starved out with only a slight delay to the higher priority
packets.
(2)Use the strict priority scheme: Queue with higher priority
will always be process first, while queue with lower priority
will only be processed when the higher priority queue is empty.
This approach can cause the lower priorities the be startved
out preventing them from transmitting any packets, but it
ensures that all high priority packets serviced as soon as
possible."
::= { trafficPrioritization 1 }
-- -----------------------------------------------------------------------------
-- port default cos table
-- -----------------------------------------------------------------------------
qosPortDefaultCosTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosPortDefaultCosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
port default cos value."
::= { trafficPrioritization 2 }
qosPortDefaultCosEntry OBJECT-TYPE
SYNTAX QosPortDefaultCosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion
about port default cos value."
INDEX { qosPortNum }
::= { qosPortDefaultCosTable 1 }
QosPortDefaultCosEntry ::= SEQUENCE {
qosPortNum Integer32,
qosPortTrust Integer32,
qosPortDefaultCos Integer32
}
qosPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port number."
::= { qosPortDefaultCosEntry 1 }
qosPortTrust OBJECT-TYPE
SYNTAX Integer32 {
cos-only(1),
dscp-only(2),
cos-first(3),
dscp-first(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Two kinds of priority information are token into
consideration when a packet is processed. One is COS,
the IEEE 802.3ac tag containing IEEE 802.1p priority
information, and the other is DSCP, the IPv4 Type of
Service/DiffServ field.
(1)COS only: the port priority will only follow the
COS priority that you have assigned.
(2)DSCP only: the port priority will only follow the
DSCP priority that you have assigned.
(3)COS first: the port priority will follow the COS
priority first, and then other priority rule.
(4)DSCP first: the port priority will follow the DSCP
priority first, and the other priority rule."
DEFVAL { cos-first }
::= { qosPortDefaultCosEntry 2 }
qosPortDefaultCos OBJECT-TYPE
SYNTAX Integer32(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port priority will follow the default port priority"
::= { qosPortDefaultCosEntry 3 }
-- -----------------------------------------------------------------------------
-- COS mapping table
-- -----------------------------------------------------------------------------
qosCOSTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosCOSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
COS QOS."
::= { trafficPrioritization 3 }
qosCOSEntry OBJECT-TYPE
SYNTAX QosCOSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion about COS QOS."
INDEX { qosCOSPriority }
::= { qosCOSTable 1 }
QosCOSEntry ::= SEQUENCE {
qosCOSPriority Integer32,
qosCOS INTEGER
}
qosCOSPriority OBJECT-TYPE
SYNTAX Integer32(0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "COS priority."
::= { qosCOSEntry 1 }
qosCOS OBJECT-TYPE
SYNTAX INTEGER {
low(0),
middle(1),
high(2),
highest(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port priority will follow the COS priority
that you have assigned (0)low, (1)middle, (2)high,
or (3)highest."
::= { qosCOSEntry 2 }
-- -----------------------------------------------------------------------------
-- DSCP mapping table
-- -----------------------------------------------------------------------------
qosDscpTable OBJECT-TYPE
SYNTAX SEQUENCE OF QosDscpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration about
DSCP QOS."
::= { trafficPrioritization 4 }
qosDscpEntry OBJECT-TYPE
SYNTAX QosDscpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion
about DSCP QOS."
INDEX { qosDscpPriority }
::= { qosDscpTable 1 }
QosDscpEntry ::= SEQUENCE {
qosDscpPriority Integer32,
qosDscp INTEGER
}
qosDscpPriority OBJECT-TYPE
SYNTAX Integer32(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Dscp priority."
::= { qosDscpEntry 1 }
qosDscp OBJECT-TYPE
SYNTAX INTEGER {
low(0),
middle(1),
high(2),
highest(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port priority will follow the Dscp priority
that you have assigned
(0)low (1)middle, (2)high, (3)highest."
::= { qosDscpEntry 2 }
-- -----------------------------------------------------------------------------
-- multicastFiltering
-- -----------------------------------------------------------------------------
igmpQuery OBJECT IDENTIFIER ::= { multicastFiltering 1 }
igmpSnooping OBJECT IDENTIFIER ::= { multicastFiltering 2 }
unknownMulticast OBJECT IDENTIFIER ::= { multicastFiltering 3 }
-- -----------------------------------------------------------------------------
-- IGMP Query
-- -----------------------------------------------------------------------------
igmpQueryVersion OBJECT-TYPE
SYNTAX INTEGER {
version1(1),
version2(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)IGMP Query version 1.
(2)IGMP Query version 2."
::= { igmpQuery 1 }
igmpQueryStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)enable IGMP Query on management vlan.
(2)disable IGMP Query."
::= { igmpQuery 2 }
igmpQueryInterval OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The interval between General Queries sent
by this Querier in seconds."
DEFVAL { 125 }
::= { igmpQuery 3 }
igmpQueryMaxResponseTime OBJECT-TYPE
SYNTAX Integer32 (1..25)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Max Respocse Time is meaningful only in
Membership Query messages, and specifies
the maximum allowed time before sending
a responding report in seconds."
DEFVAL { 10 }
::= { igmpQuery 4 }
--igmpQueryStatus OBJECT-TYPE
-- SYNTAX INTEGER {
-- auto(1),
-- enabled(2),
-- disabled(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "(1)Detect querier automatically.
-- (2)Force to be a querier.
-- (3)Be a silence snooper.
-- The mode of querier."
-- ::= { igmpQuery 1 }
--igmpQueryTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF IgmpQueryEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Table of descriptive information about IGMP query."
-- ::= { igmpQuery 2 }
--igmpQueryEntry OBJECT-TYPE
-- SYNTAX IgmpQueryEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "An entry in the table, containing inforamtion
-- about IGMP query."
-- INDEX { igmpQueryEntryVID }
-- ::= { igmpQueryTable 1 }
--IgmpQueryEntry ::= SEQUENCE {
-- igmpQueryEntryVID INTEGER,
-- igmpQueryEntryStatus INTEGER
-- }
--igmpQueryEntryVID OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The vlan id where igmp snooping to be configured"
-- ::= { igmpQueryEntry 1 }
--igmpQueryEntryStatus OBJECT-TYPE
-- SYNTAX INTEGER {
-- auto(1),
-- enabled(2),
-- disabled(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The state of igmp Query operation on the vlan
-- (1)Detect querier automatically.
-- (2)Force to be a querier.
-- (3)Be a silence snooper.
-- (1) and (2) indicates that igmp Query is enabled on this
-- vlan, as long as igmpQueryStatus is also enabled for this
-- device. When disabled(3) but igmpQueryStatus is still
-- enabled for the device, igmp Query is disabled on this vlan."
-- DEFVAL { 1 }
-- ::= { igmpQueryEntry 2 }
-- -----------------------------------------------------------------------------
-- IGMP Snooping
-- -----------------------------------------------------------------------------
igmpSnoopingStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter to enable or disable IGMP snooping on the device.
When enabled, the device will examine IGMP packets and set
up filters for multicast traffic.
The Internet Group Management Protocol (IGMP) is an internal
protocol of the Internet Protocol (IP) suite. IP manages
multicast traffic by using switches, routers, and hosts that
support IGMP. Enabling IGMP makes the device to gather
multicast group membership information by snooping IGMP
packets, which helps the device switch IP multicast traffic
to the ports where group members exist instead of flooding the
traffic to every ports.
IGMP have three fundamental types of message as follows:
Message Description
--------------------------------------------------------------
Query A message sent from the querier (IGMP router or switch)
asking for responses from each host belonging to a
multicast group.
Report A message sent by a host to the querier to indicate
that the host wants to be or is a member of a given
group indicated in the report message.
Leave A message sent by a host to the querier to indicate
that the host has quit to be a member for a specific
multicast group.
The IGMP snooping functionality is configured on a vlan basis.
To enable or disable IGMP snooping on vlans:
1. set igmpSnoopingStatus to enable(1) or disable(2).
2. specify on which vlan IGMP snooping works by configuring
each entries in the igmpSnoopingTable.
As a result, you can turn on or off IGMP snooping functionality
by setting igmpSnoopingStatus while keeping the configuration
for each vlan. Or you can turn on or off IGMP snooping for a
specific vlan in igmpSnoopingTable with the statuses on other
vlan untouched."
::= { igmpSnooping 1 }
-- -----------------------------------------------------------------------------
-- igmpSnoopingTable
-- -----------------------------------------------------------------------------
igmpSnoopingTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpSnoopingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about on which vlan is IGMP
snooping enabled."
::= { igmpSnooping 2 }
igmpSnoopingEntry OBJECT-TYPE
SYNTAX IgmpSnoopingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Inforamtion enabling or disabling IGMP snooping on a vlan."
INDEX { igmpSnoopingEntryVID }
::= { igmpSnoopingTable 1 }
IgmpSnoopingEntry ::= SEQUENCE {
igmpSnoopingEntryVID INTEGER,
igmpSnoopingEntryStatus INTEGER
}
igmpSnoopingEntryVID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The vlan id."
::= { igmpSnoopingEntry 1 }
igmpSnoopingEntryStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The state of igmp snooping functionality on a vlan.
Set to enabled(1) indicates that igmp snooping is enabled on
the vlan. When igmpSnoopingStatus is also turned on, each IGMP
packets on the vlan will be processed.
When disabled(2) with igmpSnoopingStatus enabled, igmp packets
will not be processed and be propagated to other member ports
of the vlan.
A transition from disabled(2) to enabled(1) will cause a reset
of all igmp snooping information on this vlan."
DEFVAL { 2 }
::= { igmpSnoopingEntry 2 }
-- -----------------------------------------------------------------------------
-- igmpSnoopingGroupTable
-- -----------------------------------------------------------------------------
igmpSnoopingGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpSnoopingGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about IGMP snooped multicast
groups."
::= { igmpSnooping 3 }
igmpSnoopingGroupEntry OBJECT-TYPE
SYNTAX IgmpSnoopingGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information containing a multicast group and its member ports."
INDEX { igmpSnoopingGroupEntryVID, igmpSnoopingGroupEntryIPAddr }
::= { igmpSnoopingGroupTable 1 }
IgmpSnoopingGroupEntry ::= SEQUENCE {
igmpSnoopingGroupEntryVID INTEGER,
igmpSnoopingGroupEntryIPAddr IpAddress,
igmpSnoopingGroupEntryMembers PortList
}
igmpSnoopingGroupEntryVID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The VLAN ID of an IGMP entry."
::= { igmpSnoopingGroupEntry 1 }
igmpSnoopingGroupEntryIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The multicast group IP address."
::= { igmpSnoopingGroupEntry 2 }
igmpSnoopingGroupEntryMembers OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The member ports of the group."
::= { igmpSnoopingGroupEntry 3 }
-- -----------------------------------------------------------------------------
-- unknownMulticast
-- -----------------------------------------------------------------------------
unknownMulticastStatus OBJECT-TYPE
SYNTAX INTEGER {
source-only-learning(1),
discard(2),
flood(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select IGMP Unknown Multicast policy.
(1) Send to Query Ports: The device sends the packets with
an unknown MAC/IP Multicast address to query ports
(2) Discard: The device discards all packets with an unknown
MAC/IP Multicast address.
(3) Send to All Ports: The device sends the packets with
an unknown MAC/IP Multicast address to all ports. "
DEFVAL { 3 }
::= { unknownMulticast 1 }
-- -----------------------------------------------------------------------------
-- snmp
-- -----------------------------------------------------------------------------
-- To be available in pharse II
--snmpAgentMode OBJECT-TYPE
-- SYNTAX INTEGER {
-- v1v2Conly(1),
-- v3(2),
-- v1v2Cv3(3)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The Agent mode of snmp agent.
-- (1) SNMPV1/V2C Only.
-- (2) SNMPV3.
-- (3) SNMPV1/V2C/V3"
-- ::= { snmp 1 }
--snmpSystemName OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..64))
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The system name."
-- ::= { snmp 2 }
--snmpSystemLocation OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..64))
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The system location."
-- ::= { snmp 3 }
--snmpSystemContact OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..64))
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "The contact information of system."
-- ::= { snmp 4 }
-- -----------------------------------------------------------------------------
-- snmpCommunityStringTable
-- -----------------------------------------------------------------------------
snmpCommunityStringTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnmpCommunityStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of information configuring community strings of
SNMP agent.
An SNMP community string is a text string that acts as
a password. It is used to authenticate messages that
are sent between the management station (the SNMP manager)
and the device (the SNMP agent). The community string is
included in every packet that is transmitted between the
SNMP manager and the SNMP agent.
After receiving an SNMP request, the SNMP agent compares
the community string in the request to the community
strings that are configured for the agent. The requests
are valid under these circumstances:
- Only SNMP Get and Get-next requests are valid if the
community string in the request matches the read-only
community.
- SNMP Get, Get-next, and Set requests are valid if the
community string in the request matches the agent's
read-write community.
By default, 'public' is the read-only community and
'private' is the read-write community. Total 4 community
strings are allowed to configure in the device."
::= { snmp 1 }
snmpCommunityStringEntry OBJECT-TYPE
SYNTAX SnmpCommunityStringEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Inforamtion configuring an community string."
INDEX { snmpCommunityStringIndex }
::= { snmpCommunityStringTable 1 }
SnmpCommunityStringEntry ::= SEQUENCE {
snmpCommunityStringIndex Integer32,
snmpCommunityStringName DisplayString,
snmpCommunityStringPrivilege INTEGER,
snmpCommunityStringStatus INTEGER
}
snmpCommunityStringIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of community string."
::= { snmpCommunityStringEntry 1 }
snmpCommunityStringName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A community string with maximum 32 characters."
::= { snmpCommunityStringEntry 2 }
snmpCommunityStringPrivilege OBJECT-TYPE
SYNTAX INTEGER {
ro(1),
rw(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The access privilege of the community string."
::= { snmpCommunityStringEntry 3 }
snmpCommunityStringStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this entry. Set to (5)createAndWait
to create a new entry. A new entry or an active
entry can be edited. Once an entry is modified,
its status becomes (3)notReady. Set to (1)active
to apply the modification to the switch. An entry
can be removed by setting to (6)destory."
::= { snmpCommunityStringEntry 4 }
-- -----------------------------------------------------------------------------
-- snmpV3UserTable
-- -----------------------------------------------------------------------------
snmpV3UserTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnmpV3UserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and information about trap servers.
A trap server is the recipient of an SNMP trap. The device
does not send a trap unless it knows to which station it
should send a trap."
::= { snmp 2 }
snmpV3UserEntry OBJECT-TYPE
SYNTAX SnmpV3UserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion about a
trap server of SNMP agent."
INDEX { snmpTrapServerIndex }
::= { snmpV3UserTable 1 }
SnmpV3UserEntry ::= SEQUENCE {
snmpV3UserIndex Integer32,
snmpV3UserName DisplayString,
snmpV3UserSecurityLevel INTEGER,
snmpV3UserAuthProtocol INTEGER,
snmpV3UserAuthPassword DisplayString,
snmpV3UserDesPassword DisplayString,
snmpV3UserStatus RowStatus
}
snmpV3UserIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of snmp v3 user."
::= { snmpV3UserEntry 1 }
snmpV3UserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { snmpV3UserEntry 2 }
snmpV3UserSecurityLevel OBJECT-TYPE
SYNTAX INTEGER {
noauth(1),
auth(2),
priv(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Specifiy the authentication and privacy level
- noauth(1) no authentication and no privacy.
- auth(2) enables MD5 or SHA packet authentication.
- priv(3) enables MD5 or SHA packet authentication
and DES packet encryption."
::= { snmpV3UserEntry 3 }
snmpV3UserAuthProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(1),
md5(2),
sha(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "MD5(Message Digest 5) or SHA (Secure Hash Algorithm)"
::= { snmpV3UserEntry 4 }
snmpV3UserAuthPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { snmpV3UserEntry 5 }
snmpV3UserDesPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { snmpV3UserEntry 6 }
snmpV3UserStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION ""
::= { snmpV3UserEntry 7 }
-- -----------------------------------------------------------------------------
-- snmpTrapServerTable
-- -----------------------------------------------------------------------------
snmpTrapServerEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To enable, disable snmp trap functionality.
SNMPv1 traps are defined in RFC 1157, and SNMPv2c trap is
defined as NOTIFICATION. SNMP traps enable this device to
notify the management station of significant events by way
of an unsolicited SNMP message. After the manager receives
the event, the manager displays it and can choose to take
an action based on the event. For instance, the manager can
poll the agent directly, or poll other associated device
agents to get a better understanding of the event."
::= { snmp 3 }
snmpTrapServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnmpTrapServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and information about trap servers.
A trap server is the recipient of an SNMP trap. The device
does not send a trap unless it knows to which station it
should send a trap."
::= { snmp 4 }
snmpTrapServerEntry OBJECT-TYPE
SYNTAX SnmpTrapServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing inforamtion about a
trap server of SNMP agent."
INDEX { snmpTrapServerIndex }
::= { snmpTrapServerTable 1 }
SnmpTrapServerEntry ::= SEQUENCE {
snmpTrapServerIndex Integer32,
snmpTrapServerIPAddr IpAddress,
snmpTrapServerTrapComm DisplayString,
snmpTrapServerTrapVer INTEGER,
snmpTrapServerStatus RowStatus
}
snmpTrapServerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of trap server."
::= { snmpTrapServerEntry 1 }
snmpTrapServerIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Trap Server IP Address."
::= { snmpTrapServerEntry 2 }
snmpTrapServerTrapComm OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The community string of trap server. The password-like string
will be sent with the notification operation."
::= { snmpTrapServerEntry 3 }
snmpTrapServerTrapVer OBJECT-TYPE
SYNTAX INTEGER {
v1(1),
v2c(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The trap version."
::= { snmpTrapServerEntry 4 }
snmpTrapServerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this entry. Set to (5)createAndWait
to create a new entry. A new entry or an active
entry can be edited. Once an entry is modified,
its status becomes (3)notReady. Set to (1)active
to apply the modification to the device. An entry
can be removed by setting to (6)destory."
::= { snmpTrapServerEntry 5 }
-- -----------------------------------------------------------------------------
-- security
-- -----------------------------------------------------------------------------
portSecurity OBJECT IDENTIFIER ::= { security 1 }
ipSecurity OBJECT IDENTIFIER ::= { security 2 }
dot1x OBJECT IDENTIFIER ::= { security 3 }
--macFiltering OBJECT IDENTIFIER ::= { security 3 }
-- -----------------------------------------------------------------------------
-- portSecurityStatusTable
-- -----------------------------------------------------------------------------
portSecurityStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortSecurityStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing information about port security status on
each port.
Port security prevents a port from address learning. Only
those MAC addresses that are configured by management are
allowed to access the switch or transmit/receive through the
port. Upto 10 MAC addresses can assigned to each port by adding
address entries to portSecurityMacTable or macAddrTable.
If the port security functionality is enabled but without any
MAC address configured on a port, no traffic can access the
switch or transmit/receive from the port."
::= { portSecurity 1 }
portSecurityStatusEntry OBJECT-TYPE
SYNTAX PortSecurityStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry configuring port security for a port."
INDEX { portSecurityPortIndex }
::= { portSecurityStatusTable 1 }
PortSecurityStatusEntry ::= SEQUENCE {
portSecurityPortIndex Integer32,
portSecurityPortStatus INTEGER
}
portSecurityPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The port id."
::= { portSecurityStatusEntry 1 }
portSecurityPortStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "(1)enable port security on this port.
(2)disable port security on this port."
::= { portSecurityStatusEntry 2 }
-- -----------------------------------------------------------------------------
-- portSecurityMacTable
-- -----------------------------------------------------------------------------
portSecurityMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortSecurityMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table configuring static unicast MAC address for each port.
When you add a static MAC address, it remains in the switch's
address table, regardless of whether the device is physically
connected to the switch.
With enabling port security in portSecurityStatusTable, only
those MAC addresses configured in portSecurityMacTable are
allowed to access the switch or transmit/receive through the
port."
::= { portSecurity 2 }
portSecurityMacEntry OBJECT-TYPE
SYNTAX PortSecurityMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry configuring a static unicast MAC addresses on a port."
INDEX { portSecurityMacIndex }
::= { portSecurityMacTable 1 }
PortSecurityMacEntry ::= SEQUENCE {
portSecurityMacIndex Integer32,
portSecurityPort Integer32,
portSecurityVlanIndex Integer32,
portSecurityMac MacAddress,
portSecurityMacStatus RowStatus
}
portSecurityMacIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of MAC."
::= { portSecurityMacEntry 1 }
portSecurityPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port id."
::= { portSecurityMacEntry 2 }
portSecurityVlanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The vlan id where the MAC address belongs to."
::= { portSecurityMacEntry 3 }
portSecurityMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "MAC address of the entry."
::= { portSecurityMacEntry 4 }
portSecurityMacStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of this entry. Set to (5)createAndWait
to create a new entry. A new entry or an active
entry can be edited. Once an entry is modified,
its status becomes (3)notReady. Set to (1)active
to apply the modification to the device. An entry
can be removed by setting to (6)destory."
::= { portSecurityMacEntry 5 }
-- -----------------------------------------------------------------------------
-- ipSecurity
-- -----------------------------------------------------------------------------
ipSecurityStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Enable or disable IP security functionality.
IP security allows you to assign specific IP addresses that
are permitted to access the device for securing switch
management. Set to (1) to enable IP Security. set to (2) to
disable IP Security.
Enabling IP Security without any entries configured in the
ipSecurityTable has no effect on the access traffic."
::= { ipSecurity 1 }
ipSecurityTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table configuring IP addresses that can access and manage the
device through network, such as telnet, web or SNMP.
Please note that enabling IP security function but without
adding the IP address of your current management station will
break current management connection."
::= { ipSecurity 2 }
ipSecurityEntry OBJECT-TYPE
SYNTAX IpSecurityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry configuring an security IP address."
INDEX { ipSecurityIndex }
::= { ipSecurityTable 1 }
IpSecurityEntry ::= SEQUENCE {
ipSecurityIndex Integer32,
ipSecurityIP IpAddress,
ipSecurityRowStatus RowStatus
}
ipSecurityIndex OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of IP address entry."
::= { ipSecurityEntry 1 }
ipSecurityIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "An IP address that can access and manage the device."
::= { ipSecurityEntry 2 }
ipSecurityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object is used to manage to creation and deletion of
a authorized IP address, and is used to indicate the status
of this entry. A empty entry or an active entry can be edited.
Once an entry is modified, its status becomes (3)notReady.
Set to (1)active to apply the modification to the device. An
entry can be removed by setting to (6)destory."
::= { ipSecurityEntry 3 }
--ipSecurityIP1 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 2 }
--ipSecurityIP2 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 3 }
--ipSecurityIP3 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 4 }
--ipSecurityIP4 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 5 }
--ipSecurityIP5 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 6 }
--ipSecurityIP6 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 7 }
--ipSecurityIP7 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 8 }
--ipSecurityIP8 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 9 }
--ipSecurityIP9 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 10 }
--ipSecurityIP10 OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "This IP address can access and manage the device."
-- ::= { ipSecurity 11 }
-- -----------------------------------------------------------------------------
-- macFilteringTable, NOT SUPPORT
-- -----------------------------------------------------------------------------
--macFilteringTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF MACFilteringEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Table of descriptive information about
-- MAC filter configuration.
-- MAC address filtering allows the switch to drop
-- unwanted traffic. Traffic is filtered based on
-- the destination addresses. For example, if your
-- network is congested because of high utilization
-- from one MAC address, you can filter all traffic
-- transmitted to that MAC address, restoring network
-- flow while you troubleshoot the problem."
-- ::= { macFiltering 1}
--
--macFilteringEntry OBJECT-TYPE
-- SYNTAX MACFilteringEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "An entry in the table, containing inforamtion
-- about MAC filter configuration."
-- INDEX { macFilteringIndex }
-- ::= { macFilteringTable 1 }
--
--MACFilteringEntry ::= SEQUENCE
--{
-- macFilteringIndex Integer32,
-- macFilteringAddr MacAddress,
-- macFilteringStatus INTEGER
--}
--
--macFilteringIndex OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Index of MAC."
-- ::= { macFilteringEntry 1 }
--
--macFilteringAddr OBJECT-TYPE
-- SYNTAX MacAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "MAC address of the entry."
-- ::= { macFilteringEntry 2 }
--
--macFilteringStatus OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- valid(1),
-- creatrequest(2),
-- undercreation(3),
-- invalid(4)
-- }
-- MAX-ACCESS read-create
-- STATUS current
-- DESCRIPTION "The status of this entry. If this object is not equal to valid(1), all associated
-- MAC entries shall be deleted by the agent."
-- ::= { macFilteringEntry 3 }
-- -----------------------------------------------------------------------------
-- dot1x
-- -----------------------------------------------------------------------------
dot1xStatus OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "IEEE802.1x protocol function status.
(1) IEEE802.1x protocol function is enabled.
(2) IEEE802.1x protocol function is disabled.
802.1x makes use of the physical access characteristics
of IEEE802 LAN infrastructures in order to provide a
means of authenticating and authorizing devices attached
to a LAN port that has point-to-point connection
characteristics, and of preventing access to that port
in cases in which the authentication and authorization
process fails."
::= { dot1x 1 }
dot1xAuthentication OBJECT-TYPE
SYNTAX INTEGER {
local(1),
radius(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1x 2 }
-- -----------------------------------------------------------------------------
-- radiusServerTable
-- -----------------------------------------------------------------------------
radiusServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1x 3 }
radiusServerEntry OBJECT-TYPE
SYNTAX RadiusServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
INDEX { radiusServerIndex }
::= { radiusServerTable 1 }
RadiusServerEntry ::= SEQUENCE {
radiusServerIndex Integer32,
radiusServerIp IpAddress,
radiusServerServerPort Integer32,
radiusServerAccountingPort Integer32,
radiusServerSharedKey DisplayString
-- radiusServerStatus RowStatus
}
radiusServerIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of Radius server configuration."
::= { radiusServerEntry 1 }
radiusServerIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "IP address of this radius server."
::= { radiusServerEntry 2 }
radiusServerServerPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The UDP port number used by the authentication server
to authenticate."
::= { radiusServerEntry 3 }
radiusServerAccountingPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Accounting Port: The UDP port number used by the authentication
server to retrieve accounting information."
::= { radiusServerEntry 4 }
radiusServerSharedKey OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A key shared between this switch and authentication server."
::= { radiusServerEntry 5 }
--radiusServerStatus OBJECT-TYPE
-- SYNTAX RowStatus
-- MAX-ACCESS read-create
-- STATUS current
-- DESCRIPTION "."
-- ::= { radiusServerEntry 6 }
-- -----------------------------------------------------------------------------
-- dot1xLocalUserTable
-- -----------------------------------------------------------------------------
dot1xLocalUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1xLocalUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1x 4 }
dot1xLocalUserEntry OBJECT-TYPE
SYNTAX Dot1xLocalUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
INDEX { dot1xLocalUserIndex }
::= { dot1xLocalUserTable 1 }
Dot1xLocalUserEntry ::= SEQUENCE {
dot1xLocalUserIndex Integer32,
dot1xLocalUserName DisplayString,
dot1xLocalUserPassword DisplayString,
dot1xLocalUserVid Integer32
--dot1xLocalUserStatus RowStatus
}
dot1xLocalUserIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1xLocalUserEntry 1 }
dot1xLocalUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "set this field to empty to remove this user config."
::= { dot1xLocalUserEntry 2 }
dot1xLocalUserPassword OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xLocalUserEntry 3 }
dot1xLocalUserVid OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xLocalUserEntry 4 }
--dot1xLocalUserStatus OBJECT-TYPE
--SYNTAX RowStatus
--MAX-ACCESS read-create
--STATUS current
--DESCRIPTION "."
--::= { dot1xLocalUserEntry 5 }
-- -----------------------------------------------------------------------------
-- dot1xPortConfigTable
-- -----------------------------------------------------------------------------
dot1xPortConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1xPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1x 5 }
dot1xPortConfigEntry OBJECT-TYPE
SYNTAX Dot1xPortConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
INDEX { dot1xPortConfigIndex }
::= { dot1xPortConfigTable 1 }
Dot1xPortConfigEntry ::= SEQUENCE {
dot1xPortConfigIndex Integer32,
dot1xPortAuthControl INTEGER,
dot1xPortReauthentication INTEGER,
dot1xPortMaxRequest INTEGER,
dot1xPortGuestVlan INTEGER,
dot1xPortHostMode INTEGER,
dot1xPortAdminDirection INTEGER,
dot1xPortConfigSetDefault INTEGER,
dot1xPortReinitialize INTEGER,
dot1xPortClientReauth INTEGER
}
dot1xPortConfigIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 1 }
dot1xPortAuthControl OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
forceAuthorized(2),
forceUnauthorized(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 2 }
dot1xPortReauthentication OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 3 }
dot1xPortMaxRequest OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 4 }
dot1xPortGuestVlan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 5 }
dot1xPortHostMode OBJECT-TYPE
SYNTAX INTEGER {
single(1),
multiple(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 6 }
dot1xPortAdminDirection OBJECT-TYPE
SYNTAX INTEGER {
both(1),
in(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 7 }
dot1xPortConfigSetDefault OBJECT-TYPE
SYNTAX INTEGER {
apply(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 8 }
dot1xPortReinitialize OBJECT-TYPE
SYNTAX INTEGER {
apply(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 9 }
dot1xPortClientReauth OBJECT-TYPE
SYNTAX INTEGER {
apply(1)
}
MAX-ACCESS write-only
STATUS current
DESCRIPTION "."
::= { dot1xPortConfigEntry 10 }
-- -----------------------------------------------------------------------------
-- dot1xPortTimeoutConfigTable
-- -----------------------------------------------------------------------------
dot1xPortTimeoutConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1xPortTimeoutConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1x 6 }
dot1xPortTimeoutConfigEntry OBJECT-TYPE
SYNTAX Dot1xPortTimeoutConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
INDEX { dot1xPortTimeoutIndex }
::= { dot1xPortTimeoutConfigTable 1 }
Dot1xPortTimeoutConfigEntry ::= SEQUENCE {
dot1xPortTimeoutIndex Integer32,
dot1xPortReauthPeriod Integer32,
dot1xPortQuietPeriod Integer32,
dot1xPortTxPeriod Integer32,
dot1xPortSupplicantTimeout Integer32,
dot1xPortServerTimeout Integer32
}
dot1xPortTimeoutIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 1 }
dot1xPortReauthPeriod OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 2 }
dot1xPortQuietPeriod OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 3 }
dot1xPortTxPeriod OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 4 }
dot1xPortSupplicantTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 5 }
dot1xPortServerTimeout OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { dot1xPortTimeoutConfigEntry 6 }
-- -----------------------------------------------------------------------------
-- dot1xPortStatusTable
-- -----------------------------------------------------------------------------
dot1xPortStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF Dot1xPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1x 7 }
dot1xPortStatusEntry OBJECT-TYPE
SYNTAX Dot1xPortStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
INDEX { dot1xPortStatusIndex }
::= { dot1xPortStatusTable 1 }
Dot1xPortStatusEntry ::= SEQUENCE {
dot1xPortStatusIndex Integer32,
dot1xPortCtrl INTEGER,
dot1xPortAuthStatus INTEGER,
dot1xPortAuthSupplicant MacAddress,
dot1xPortOperDirection INTEGER
}
dot1xPortStatusIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "."
::= { dot1xPortStatusEntry 1 }
dot1xPortCtrl OBJECT-TYPE
SYNTAX INTEGER {
auto(1),
forceAuthorized(2),
forceUnauthorized(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { dot1xPortStatusEntry 2 }
dot1xPortAuthStatus OBJECT-TYPE
SYNTAX INTEGER {
authorized(1),
unauthorized(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { dot1xPortStatusEntry 3 }
dot1xPortAuthSupplicant OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { dot1xPortStatusEntry 4 }
dot1xPortOperDirection OBJECT-TYPE
SYNTAX INTEGER {
both(1),
in(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { dot1xPortStatusEntry 5 }
--radiusServerSetting OBJECT IDENTIFIER ::= { ieee8021x 1 }
--portAuthConfiguration OBJECT IDENTIFIER ::= { ieee8021x 2 }
--radius8021xProtocolStatus OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- enabled(1),
-- disabled(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "IEEE802.1x protocol function status.
-- (1) IEEE802.1x protocol function is enabled.
-- (2) IEEE802.1x protocol function is disabled.
-- 802.1x makes use of the physical access characteristics
-- of IEEE802 LAN infrastructures in order to provide a
-- means of authenticating and authorizing devices attached
-- to a LAN port that has point-to-point connection
-- characteristics, and of preventing access to that port
-- in cases in which the authentication and authorization
-- process fails."
-- ::= { radiusServerSetting 1 }
--radiusServerIP OBJECT-TYPE
-- SYNTAX IpAddress
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Radius Server IP Address: the ip address of the authentication server."
-- ::= { radiusServerSetting 2 }
--radiusServerPort OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Server Port: The UDP port number used by the authentication server to authenticate."
-- ::= { radiusServerSetting 3 }
--
--radiusAccountingPort OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Accounting Port: The UDP port number used by the authentication server to retrieve
-- accounting information. "
-- ::= { radiusServerSetting 4 }
--
--radiusSharedKey OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..30))
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Shared Key: A key shared between this switch and authentication server."
-- ::= { radiusServerSetting 5 }
--
--radiusNASIdentifier OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..30))
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "NAS Identifier: A string used to identify this switch."
-- ::= { radiusServerSetting 6 }
--
--radiusMiscQuietPeriod OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Quiet Period: used to define periods of time during
-- which it will not attempt to acquire a supplicant
-- (Default time is 60 seconds)."
-- ::= { radiusServerSetting 7 }
--
--radiusMiscTxPeriod OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Tx Period: used to determine when an EAPOL PDU is to
-- be transmitted(Default value is 30 seconds)."
-- ::= { radiusServerSetting 8 }
--
--radiusMiscSupplicantTimeout OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Supplicant Timeout: used to determine timeout conditions
-- in the exchanges between the supplicant and
-- authentication server(Default value is 30 seconds)."
-- ::= { radiusServerSetting 9 }
--
--radiusMiscServerTimeout OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Server Timeout: used to determine timeout conditions
-- in the exchanges between the authenticator and
-- authentication server(Default value is 30 seconds)."
-- ::= { radiusServerSetting 10}
--
--radiusMiscReAuthMax OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "ReAuthMax: used to determine the number of
-- reauthentication attempts that are permitted
-- before the specific port becomes unauthorized
-- (Default value is 2 times)."
-- ::= { radiusServerSetting 11}
--
--radiusMiscReauthPeriod OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "Reauth Period: used to determine a nonzero number
-- of seconds between periodic reauthentication of
-- the supplications(Default value is 3600 seconds)."
-- ::= { radiusServerSetting 12}
--
--radiusPerPortCfgTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF RadiusPerPortCfgEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Table of descriptive information and configuration about
-- Radius per port configuration."
-- ::= { portAuthConfiguration 1}
--
--radiusPerPortCfgEntry OBJECT-TYPE
-- SYNTAX RadiusPerPortCfgEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "An entry in the table, containing inforamtion
-- about Radius per port configuration."
-- INDEX { radiusPerPortCfgIndex }
-- ::= { radiusPerPortCfgTable 1 }
--
--RadiusPerPortCfgEntry ::= SEQUENCE
--{
-- radiusPerPortCfgIndex Integer32,
-- radiusPerPortCfgPortName DisplayString,
-- radiusPerPortCfgState INTEGER
--}
--
--radiusPerPortCfgIndex OBJECT-TYPE
-- SYNTAX Integer32
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION "Index of port."
-- ::= { radiusPerPortCfgEntry 1 }
--
--radiusPerPortCfgPortName OBJECT-TYPE
-- SYNTAX DisplayString (SIZE(0..16))
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "The name of port."
-- ::= { radiusPerPortCfgEntry 2 }
--
--radiusPerPortCfgState OBJECT-TYPE
-- SYNTAX INTEGER
-- {
-- reject(1),
-- accept(2),
-- authorize(3),
-- disabled(4)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION "You can select the specific port and configure the
-- authorization state. Each port can select four kinds
-- of authorization state :
-- Reject: force the specific port to be unauthorized.
-- Accept: force the specific port to be authorized.
-- Authorize: the state of the specific port was determinied by
-- the outcome of the authentication.
-- Disable: the specific port didn't support 802.1x function."
-- ::= { radiusPerPortCfgEntry 3 }
-- -----------------------------------------------------------------------------
-- Warning
-- -----------------------------------------------------------------------------
faultRelay OBJECT IDENTIFIER ::= { warning 1 }
eventAndEmailWarning OBJECT IDENTIFIER ::= { warning 2 }
hardwareStatus OBJECT IDENTIFIER ::= { warning 3 }
eventSelection OBJECT IDENTIFIER ::= { eventAndEmailWarning 1 }
sysLogConfiguration OBJECT IDENTIFIER ::= { eventAndEmailWarning 2 }
smtpConfiguration OBJECT IDENTIFIER ::= { eventAndEmailWarning 3 }
-- -----------------------------------------------------------------------------
-- Fault Relay
-- -----------------------------------------------------------------------------
faultRelayTable OBJECT-TYPE
SYNTAX SEQUENCE OF FaultRelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of configuration about fault relay.
A fault relay is able to control an output circuit which is
triggered by management defined fault events. There are two
fault relays in the device, each is controlled by an
faultRelayEntry in this table.
To configure a fault relay, first select the type of fault
event which will trigger the relay in faultSelection, and
then configure the related column.
Set faultRelayEntryStatus to active(1) to set the configuration
to the device."
::= { faultRelay 1 }
faultRelayEntry OBJECT-TYPE
SYNTAX FaultRelayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A entry controlling a fault relay configuration."
INDEX { faultRelayId }
::= { faultRelayTable 1 }
FaultRelayEntry ::= SEQUENCE {
faultRelayId INTEGER,
faultSelection INTEGER,
diConfig INTEGER,
dryOutputOnPeriodConfig INTEGER,
dryOutputOffPeriodConfig INTEGER,
powerFailureConfig INTEGER,
linkFailureConfig PortList,
pingFailureIP IpAddress,
pingResetTime INTEGER,
pingHoldTime INTEGER,
faultRelayEntryStatus INTEGER
}
faultRelayId OBJECT-TYPE
SYNTAX INTEGER {
relay1(1),
relay2(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of fault relay."
::= { faultRelayEntry 1 }
faultSelection OBJECT-TYPE
SYNTAX INTEGER {
diState(1),
dryOutput(2),
powerFailure(3),
linkFailure(4),
pingFailure(5),
superRingFailure(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select the type of fault event that triggers the relay.
To config a fault relay, first select the founction this
relay serves for, then configure the condition that
triggers the relay in detail. At last, set the
faultRelayEntryStatus to active(1) or nonActive(3) to
enable or disable the setting on the relay."
::= { faultRelayEntry 2 }
diConfig OBJECT-TYPE
SYNTAX INTEGER {
di1Low(1),
di1High(2),
di2Low(3),
di2High(4),
disable(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be triggered if digital input is low
or high."
::= { faultRelayEntry 3 }
dryOutputOnPeriodConfig OBJECT-TYPE
SYNTAX INTEGER(1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be closed after a period (in seconds).
Together with dryOutputOffPeriodConfig, the fault relay can
be configured to continue on and off."
::= { faultRelayEntry 4 }
dryOutputOffPeriodConfig OBJECT-TYPE
SYNTAX INTEGER(1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be opened after a period (in seconds).
Together with dryOutputOnPeriodConfig, the fault relay can
be configured to continue on and off."
::= { faultRelayEntry 5 }
powerFailureConfig OBJECT-TYPE
SYNTAX INTEGER {
power1(1),
power2(2),
any(255),
disable(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be triggered if the configured
power fails. Any means either power 1 or power2 fails"
::= { faultRelayEntry 6 }
linkFailureConfig OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be trigger if any of the configured
links fails."
::= { faultRelayEntry 7 }
pingFailureIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The fault relay will be trigger if fail to ping the assigned
IP address."
::= { faultRelayEntry 8 }
pingResetTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reset the ping process after pingResetTime, and then wait
pingHoldTime to ping again. (optional)"
::= { faultRelayEntry 9 }
pingHoldTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Reset the ping process after pingResetTime, and then wait
pingHoldTime to ping again. (optional)"
::= { faultRelayEntry 10 }
faultRelayEntryStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
configuring(2),
notActive(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to active(1) to save the configuration
to the device. Setting this object to notActive(3) disable
the configuration.
The system returns active(1) or notActive when the settings
of the entry is enabled or disabled on the relay. And the
status becomes configuring(2) when the settings of the entry
are modified and not set to active(1) yet."
::= { faultRelayEntry 11 }
-- -----------------------------------------------------------------------------
-- System Event Table
-- -----------------------------------------------------------------------------
systemEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF SystemEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and controls the reactions
to system events.
Three types of reactions will be triggered: (1)logging in the
switch or send logs to remote syslog servers, (2)sending an
email, or (3)send an snmp trap. Each type of alert is configured
in sysLogConfiguration, smtpConfiguration, snmpTrapServerEnable
and snmpTrapServerTable."
::= { eventSelection 1 }
systemEventEntry OBJECT-TYPE
SYNTAX SystemEventEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An entry containing type of system events."
INDEX { eventSystemEventIndex }
::= { systemEventTable 1 }
SystemEventEntry ::= SEQUENCE {
eventSystemEventIndex Integer32,
eventDeviceColdStartEvent AlertType,
eventDeviceWarmStartEvent AlertType,
eventAuthenticationFailureEvent AlertType,
eventRingEvent AlertType,
eventPower1FailureEvent AlertType,
eventPower2FailureEvent AlertType,
eventFaultRelayEvent AlertType,
eventTimeSynchronizeEvent AlertType,
eventSFPEvent AlertType,
eventDI1ChangeEvent AlertType,
eventDI2ChangeEvent AlertType,
eventLoopDetectionEvent AlertType,
}
eventSystemEventIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of events."
::= { systemEventEntry 1 }
eventDeviceColdStartEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when the device
cold starts."
-- DESCRIPTION "Parameter to indicate the event should be logged or should be
-- sent as an Email alert.
-- The value can't be log(1) or logandsmtp(3), if syslogStatus
-- is disabled. The value can't be smtp(2) or logandsmtp(3), if
-- eventEmailAlertStatus is disabled."
::= { systemEventEntry 2 }
eventDeviceWarmStartEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when the device
warm starts."
::= { systemEventEntry 3 }
eventAuthenticationFailureEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when
authentication failure."
::= { systemEventEntry 4 }
eventRingEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when ring
event occured."
::= { systemEventEntry 5 }
eventPower1FailureEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when power1
failure."
::= { systemEventEntry 6 }
eventPower2FailureEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when power2
failure."
::= { systemEventEntry 7 }
eventFaultRelayEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when a fault
relay is triggered."
::= { systemEventEntry 8 }
eventTimeSynchronizeEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when time
synchronizatonn failed."
::= { systemEventEntry 9 }
eventSFPEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when SFP
event occured."
::= { systemEventEntry 10 }
eventDI1ChangeEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when DI1
changed ."
::= { systemEventEntry 11 }
eventDI2ChangeEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when DI2
changed ."
::= { systemEventEntry 12 }
eventLoopDetectionEvent OBJECT-TYPE
SYNTAX AlertType
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select which warning machanism to take place when loop detection
event occured."
::= { systemEventEntry 13 }
-- -----------------------------------------------------------------------------
-- Port Event Table
-- -----------------------------------------------------------------------------
portEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and controls the reactions
to port link up, link down, or both link up and down.
Three types of reactions will be triggered: (1)logging in the
switch or send logs to remote syslog servers, (2)sending an
email, or (3)send an snmp trap. Each type of alert is configured
in sysLogConfiguration, smtpConfiguration, snmpTrapServerEnable
and snmpTrapServerTable."
::= { eventSelection 2 }
portEventEntry OBJECT-TYPE
SYNTAX PortEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry controlling the type of port events."
INDEX { eventPortNumber }
::= { portEventTable 1 }
PortEventEntry ::= SEQUENCE {
eventPortNumber Integer32,
eventPortEvent INTEGER
}
eventPortNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port number."
::= {portEventEntry 1 }
eventPortEvent OBJECT-TYPE
SYNTAX INTEGER {
linkup(1),
linkdown(2),
linkupandlinkdown(3),
disabled(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Select the port event to react to."
::= { portEventEntry 2 }
-- -----------------------------------------------------------------------------
-- System Log
-- -----------------------------------------------------------------------------
sysLogLocalStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter to configure if the log should to be kept in the
device or not."
::= { sysLogConfiguration 1 }
sysLogRemoteStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter to configure the log should be sent to a syslog
server specified in sysLogServerAddr or not. When disabled
or sysLogServerAddr is 0, the device will not send out or
record any log."
::= { sysLogConfiguration 2 }
sysLogServerAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of syslog server."
::= { sysLogConfiguration 3 }
-- -----------------------------------------------------------------------------
-- Email Alert
-- -----------------------------------------------------------------------------
eventEmailAlertStatus OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Parameter to enable the email alert feature, When enabled,
the switch will send an email to the address presented in
emailAlertRcptTable."
::= { smtpConfiguration 1 }
eventEmailAlertServer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The IP address of SMTP server. It can't be modified when
eventEmailAlertStatus is disabled."
::= { smtpConfiguration 2 }
eventEmailAlertAccount OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..70))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The email account for SMTP server. It can't be modified when
eventEmailAlertAuthentication is disabled."
::= { smtpConfiguration 3 }
eventEmailAlertAuthentication OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to (1)enabled if it needs authentication to connect to
the SMTP server. It can't be modified when
eventEmailAlertStatus is disabled."
::= { smtpConfiguration 4 }
eventEmailAlertUser OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..70))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The email account for SMTP server. It can't be modified when
eventEmailAlertAuthentication is disabled."
::= { smtpConfiguration 5 }
eventEmailAlertPassword OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..36))
MAX-ACCESS write-only
STATUS current
DESCRIPTION "The password of email account. It can't be modified when
eventEmailAlertAuthentication is disabled."
::= { smtpConfiguration 6 }
-- -----------------------------------------------------------------------------
-- emailAlertReptTable
-- -----------------------------------------------------------------------------
emailAlertRcptTable OBJECT-TYPE
SYNTAX SEQUENCE OF EmailAlertRcptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table configuring recipient email addresses."
::= { smtpConfiguration 7 }
emailAlertRcptEntry OBJECT-TYPE
SYNTAX EmailAlertRcptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing recipient email address."
INDEX { eventEmailAlertRcptIndex }
::= { emailAlertRcptTable 1 }
EmailAlertRcptEntry ::= SEQUENCE {
eventEmailAlertRcptIndex Integer32,
eventEmailAlertRcptEmailAddr DisplayString
}
eventEmailAlertRcptIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of recipient Email address."
::= { emailAlertRcptEntry 1 }
eventEmailAlertRcptEmailAddr OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..48))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A recipient email address."
::= { emailAlertRcptEntry 2 }
-- -----------------------------------------------------------------------------
-- Hardware Status Table
-- -----------------------------------------------------------------------------
hardwareStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF HardwareStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION ""
::= { hardwareStatus 1 }
hardwareStatusEntry OBJECT-TYPE
SYNTAX HardwareStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
INDEX { ledHardwareStatusIndex }
::= { hardwareStatusTable 1 }
HardwareStatusEntry ::= SEQUENCE {
ledHardwareStatusIndex Integer32,
ledPower1Status INTEGER,
ledPower2Status INTEGER,
ledDO1Status INTEGER,
ledDO2Status INTEGER,
ledDI1Status INTEGER,
ledDI2Status INTEGER,
ledRMStatus INTEGER
}
ledHardwareStatusIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of leds."
::= { hardwareStatusEntry 1 }
ledPower1Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 2 }
ledPower2Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 3 }
ledDO1Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 4 }
ledDO2Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 5 }
ledDI1Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 6 }
ledDI2Status OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 7 }
ledRMStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hardwareStatusEntry 8 }
-- -----------------------------------------------------------------------------
-- Monitor and Diag
-- -----------------------------------------------------------------------------
macAddressTable OBJECT IDENTIFIER ::= { monitorandDiag 1 }
portStatistic OBJECT IDENTIFIER ::= { monitorandDiag 2 }
portmirroring OBJECT IDENTIFIER ::= { monitorandDiag 3 }
eventLog OBJECT IDENTIFIER ::= { monitorandDiag 4 }
-- -----------------------------------------------------------------------------
-- macAddressTable
-- -----------------------------------------------------------------------------
macAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF MACAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table containing information about unicast or multicast
MAC addresses that currently learned, configured by management
or IGMP snooping."
::= { macAddressTable 1 }
macAddrEntry OBJECT-TYPE
SYNTAX MACAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry containing inforamtion about a MAC address entry."
INDEX { macAddressAddr }
::= { macAddrTable 1 }
MACAddrEntry ::= SEQUENCE {
macAddressAddr MacAddress,
macAddressType INTEGER,
macAddressPortList PortList,
macAddressVlanId Integer32,
macAddressStatus INTEGER
}
macAddressAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "MAC address of the entry."
::= { macAddrEntry 1 }
macAddressType OBJECT-TYPE
SYNTAX INTEGER {
dynamicUnicast(1),
staticUnicast(2),
managementUnicast(3),
dynamicMulticast(4),
staticMulticast(5),
managementMulticast(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The type of this entry.
dynamicUnicast(1) - unicast address that learned from source
address of ingress frames.
staticUnicast(2) - unicast address that configured by management
and will remain so after the next reset of the device. Upto
10 static unicast entries can be configured for each port.
managementUnicast(3) - unicast address that configured for
management purpose or the MAC address of the device itself.
Management unicast entries are read-only.
dynamicMulticast(4) - dynamic multicast address that configured
by IGMP snooping. These entries are read-only.
staticMulticast(5) - multicast address that configured by
management and will remain so after the next reset of the
device.
-- Upto 10 static multicast entries can be configured.
managementMulticast(6) - multicast address that configured for
management purpose, such as GVRP and so on. These entries
are read-only.
Management entries are read-only. Dynamic entries can be read
and delete. Only static entries are read-create.
"
::= { macAddrEntry 2 }
macAddressPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The port list, which must be valid when creating a new entry."
::= { macAddrEntry 3 }
macAddressVlanId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The VLAN where the mac address learned from or configured to."
::= { macAddrEntry 4 }
macAddressStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object is used to manage to creation and deletion of
a static entry, and is used to indicate the status of an entry.
To Creating a static entry, select a unused value of
macAddressIndex and set macAddressStatus to 'createAndWait'.
A row will then be created with status set to 'notReady' and
its macAddressType, macAddressPortList and macAddressVlanId
left unspecified.
macAddressType, macAddressPortList and macAddressVlanId are
mandatory to activate an entry to the device. macAddressStatus
remains 'notReady' if any of these three objects are invalid.
macAddressStatus will be changed to 'notInService' when the
three objects are correctly configured. Set macAddressStatus
to 'active' to activate the MAC entry to the device.
Static unicast and multicast entries and dynamic unicast entries
are removable. To delete a MAC entry, select the macAddressIndex
set macAddressStatus to 'destory'. The row and the corresponding
MAC address configurarion will be removed from the device.
Set macAddressStatus to 'createAndGo', 'notInService', 'notReady'
have no effects."
::= { macAddrEntry 5 }
macAddrTableClear OBJECT-TYPE
SYNTAX INTEGER {
clear(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Set to clear for cleaning all the dynamic MAC entries in the
MAC address table."
::= { macAddressTable 2 }
macAddrTableAgingTime OBJECT-TYPE
SYNTAX INTEGER(0..3825)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "This value determines the interval that an automatic learned
MAC address entry remains valid in the forwarding database,
since its last access as a source address, before being purged.
The value should be times of 15 in seconds. The minimum age
time is 15 seconds. The maximum age time is 3825 seconds or
almost 64 minutes. if the value is set to 0, the aging function
is disabled and all learned address will remain in the database
forever."
DEFVAL { 300 }
::= { macAddressTable 3 }
-- -----------------------------------------------------------------------------
-- portStatistic
-- -----------------------------------------------------------------------------
switchPortStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF SwitchPortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive and statistics information about each
switch ports."
::= { portStatistic 1 }
switchPortStatClear OBJECT-TYPE
SYNTAX INTEGER {
clear(1)
}
MAX-ACCESS write-only
STATUS current
DESCRIPTION "Set to clear(1) to clear all information in the statistics
table."
::= { portStatistic 2 }
switchPortStatEntry OBJECT-TYPE
SYNTAX SwitchPortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table containing descriptive information
and statistics of a port."
INDEX { swPortStatIndex }
::= { switchPortStatTable 1 }
SwitchPortStatEntry ::= SEQUENCE {
swPortStatIndex Integer32,
swPortStatType INTEGER,
swPortStatLink INTEGER,
swPortStatState INTEGER,
swPortStatRXGoodPkt Integer32,
swPortStatRXBadPkt Integer32,
swPortStatRXAbortPkt Integer32,
swPortStatTXGoodPkt Integer32,
swPortStatTXBadPkt Integer32,
swPortStatPacketCollision Integer32
}
swPortStatIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Index of port statistic table."
::= { switchPortStatEntry 1 }
swPortStatType OBJECT-TYPE
SYNTAX INTEGER {
hundredBaseTX(1),
thousandBaseT(2),
hundredBaseFX(3),
thousandBaseSX(4),
thousandBaseLX(5),
other(6),
notPresent(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the port type."
::= { switchPortStatEntry 2 }
swPortStatLink OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the link state."
::= { switchPortStatEntry 3 }
swPortStatState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates the port state."
::= { switchPortStatEntry 4 }
swPortStatRXGoodPkt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of good frames received, which is the total number
of recieved unicast, broadcast, multicast and pause frames."
::= { switchPortStatEntry 5 }
swPortStatRXBadPkt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of bad frames received, which is the total number of
undersize, fragment, oversize, jabber, RXErr and FCSErr frames."
::= { switchPortStatEntry 6 }
swPortStatRXAbortPkt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of abort frames when receive, which is the total
number of discarded and filtered frames."
::= { switchPortStatEntry 7 }
swPortStatTXGoodPkt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of good frames transmitted, which is the total number
of transmitted unicast, broadcast, multicast and pause frames."
::= { switchPortStatEntry 8 }
swPortStatTXBadPkt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of FCSErr frames when transmit."
::= { switchPortStatEntry 9 }
swPortStatPacketCollision OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The count of collision."
::= { switchPortStatEntry 10 }
-- -----------------------------------------------------------------------------
-- portmirroring
-- -----------------------------------------------------------------------------
portMirrorStatus OBJECT-TYPE
SYNTAX Integer32 {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "To enable or disable port mirroring.
Port mirroring is used to send a copy of inbound or outbound
network packets seen on one port to another switch port.
Administrators may utilized this mechanism to monitor network
traffic as well as the performance of a switch."
::= { portmirroring 1 }
portMirrorDestinationPortTX OBJECT-TYPE
SYNTAX Integer32(0..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The TX destination port (sniffer port).
Destination port can be used to see all monitor port traffic.
You can connect sniffer port to a LAN analysier or netxray.
Set to 0 to clear the configuration. A destination port can
not be the same as a source port.
This object can not be modified if portMirrorStatus is
disable."
::= { portmirroring 2 }
portMirrorDestinationPortRX OBJECT-TYPE
SYNTAX Integer32(0..10)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The RX destination port (sniffer port).
Destination port can be used to see all monitor port traffic.
You can connect sniffer port to a LAN analysier or netxray.
Set to 0 to clear the configuration. A destination port can
not be the same as a source port.
This object can not be modified if portMirrorStatus is
disable."
::= { portmirroring 3 }
portMirrorSourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortMirrorSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information and configuration of port
mirroring in this system.
Use this table to select monitor port for this switch."
::= { portmirroring 4 }
portMirrorSourceEntry OBJECT-TYPE
SYNTAX PortMirrorSourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information configuring port mirroring on each port."
INDEX { portMirrorPortNum }
::= { portMirrorSourceTable 1 }
PortMirrorSourceEntry ::= SEQUENCE {
portMirrorPortNum Integer32,
portMirrorSourcePort INTEGER
}
portMirrorPortNum OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Port number."
::= { portMirrorSourceEntry 1 }
portMirrorSourcePort OBJECT-TYPE
SYNTAX INTEGER {
txOnly(1),
rxOnly(2),
rxAndTx(3),
disabled(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The mode of source port (monitor port).
(1) TX only.
(2) RX only.
(3) RX and TX.
(4) Source port is disabled.
The ports you want to monitor. All source port traffic
will be copied to destination port (sniffer port).
This object can not be modified if portMirrorStatus is
disable."
::= { portMirrorSourceEntry 2 }
-- -----------------------------------------------------------------------------
-- eventLog
-- -----------------------------------------------------------------------------
eventLogClear OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "clear all event log."
::= {eventLog 1 }
eventLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF EventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of descriptive information about logs."
::= { eventLog 2 }
eventLogEntry OBJECT-TYPE
SYNTAX EventLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table containing a log."
INDEX { eventLogIndex }
::= { eventLogTable 1 }
EventLogEntry ::= SEQUENCE {
eventLogIndex Integer32,
eventLogDescription DisplayString
}
eventLogIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of log."
::= {eventLogEntry 1 }
eventLogDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..100))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The description of a log."
::= { eventLogEntry 2 }
-- -----------------------------------------------------------------------------
-- save
-- -----------------------------------------------------------------------------
saveCfgMgtAction OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Setting this object to active(1) saves current configuration.
Setting this object to notActive(2) has no effect. The system
always returns the value notActive(2) when this object is read."
::= { save 1 }
END
|