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
|
-- *****************************************************************
-- DLINKSW-ACL-MIB.mib : ACL MIB
--
-- Copyright (c) 2013 D-Link Corporation, all rights reserved.
--
-- *****************************************************************
DLINKSW-ACL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32,
IpAddress,
Counter64
FROM SNMPv2-SMI
MacAddress,
DisplayString,
TruthValue,
RowStatus,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
InterfaceIndex,
InterfaceIndexOrZero
FROM IF-MIB
VlanId,VlanIdOrNone
FROM Q-BRIDGE-MIB
InetAddressIPv6,
InetAddressPrefixLength
FROM INET-ADDRESS-MIB
dlinkIndustrialCommon
FROM DLINK-ID-REC-MIB;
dlinkSwAclMIB MODULE-IDENTITY
LAST-UPDATED "201511260000Z"
ORGANIZATION "D-Link Corp."
CONTACT-INFO
" D-Link Corporation
Postal: No. 289, Sinhu 3rd Rd., Neihu District,
Taipei City 114, Taiwan, R.O.C
Tel: +886-2-66000123
E-mail: tsd@dlink.com.tw
"
DESCRIPTION
"The Structure of Access Control List Information for the
proprietary enterprise."
REVISION "201511260000Z"
DESCRIPTION
"Add DEFVAL for nodes dAclIpAccessRuleSrcPort,dAclIpAccessRuleQosPrecedence etc.
And correct description of node dAclReSeqIncrement."
REVISION "201507100000Z"
DESCRIPTION
"Add nodes to support vlan range, traffic class, l4 port mask operator, and mask for some nodes."
REVISION "201401210000Z"
DESCRIPTION
"Obsolete nodes dAclMacAccessRuleLlcDSAP, dAclMacAccessRuleLlcSSAP and dAclMacAccessRuleLlcCntl."
REVISION "201311130000Z"
DESCRIPTION
"Add 'deny-cpu'option for DlinkAclRuleType."
REVISION "201308200000Z"
DESCRIPTION
"Add nodes for counter function, access list remark, access list id, and some rule items."
REVISION "201302080000Z"
DESCRIPTION
"This is the first version of the MIB file for 'ACL' functionality."
::= { dlinkIndustrialCommon 28}
DlinkAclRuleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The action type when the packets match the access profile.
permit(1)- Specifies that packets that match the access rule are
permitted to be forwarded by the switch.
deny(2) - Specifies that packets that match the access rule
are not permitted to be forwarded by the switch and will be filtered.
deny-cpu(3)- Specifies that packet that match the access rule are prevented to be
copied to CPU and redirected to CPU. And the hardware forwarding behavior
should not be affected.
"
SYNTAX INTEGER {
permit(1),
deny(2),
deny-cpu(3)
}
DlinkAclPortOperatorType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" The type of UDP/TCP port operator indicates how a packet's
TCP/UDP source or destination port number is compared.
none(1) - No comparison.
eq (2)- equal
gt (3)- greater than.
lt (4)- less than.
neq(5)- not equal
range(6)- compares the port value between two numbers.
mask(7)- check the bit corresponding to bit value 1, ignore the bit corresponding to bit value 0.
"
SYNTAX INTEGER {
none(1),
eq(2),
gt(3),
lt(4),
neq(5),
range(6),
mask(7)
}
TcpFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The TCP flag fields. Each bit defined as follow:
urgent(0) - urgent.
acknowledge(1) - acknowledge.
push(2) - push,
reset(3) - reset.
synchronize(4) - synchronize.
finish (5) - finish.
"
SYNTAX BITS {
urgent(0),
acknowledge(1),
push(2),
reset(3),
synchronize(4),
finish (5)
}
-- -----------------------------------------------------------------------------
dAclMIBNotifications OBJECT IDENTIFIER ::= { dlinkSwAclMIB 0 }
dAclMIBObjects OBJECT IDENTIFIER ::= { dlinkSwAclMIB 1 }
dAclMIBConformance OBJECT IDENTIFIER ::= { dlinkSwAclMIB 2 }
-- -----------------------------------------------------------------------------
dAclGeneral OBJECT IDENTIFIER ::= { dAclMIBObjects 1 }
dAclReSeqTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclReSeqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table consists of a list of information about how re-sequencing
the rules in access lists.
"
::= { dAclGeneral 1 }
dAclReSeqEntry OBJECT-TYPE
SYNTAX DAclReSeqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry appears in this table for controlling the re-sequence of
an access-list."
INDEX { dAclReSeqAccessListName }
::= { dAclReSeqTable 1 }
DAclReSeqEntry ::= SEQUENCE {
dAclReSeqAccessListName DisplayString,
dAclReSeqStartingNumber Integer32,
dAclReSeqIncrement Integer32
}
dAclReSeqAccessListName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the name of an access list."
::= { dAclReSeqEntry 1 }
dAclReSeqStartingNumber OBJECT-TYPE
SYNTAX Integer32 ( 1..65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the initial value of sequence number of the corresponding
access list."
DEFVAL { 10 }
::= { dAclReSeqEntry 2 }
dAclReSeqIncrement OBJECT-TYPE
SYNTAX Integer32 ( 1..32 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the number that the sequence numbers step.
If the increment value is 5 and the beginning sequence number is 20,
the subsequent sequence numbers are 25, 30, 35, 40, and so on."
DEFVAL { 10 }
::= { dAclReSeqEntry 3 }
-- -----------------------------------------------------------------------------
dAclMac OBJECT IDENTIFIER ::= { dAclMIBObjects 2 }
dAclMacAccessListNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of entries present in the MAC access list
table."
::= { dAclMac 1 }
dAclMacAccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclMacAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains information about MAC access list."
::= { dAclMac 2 }
dAclMacAccessListEntry OBJECT-TYPE
SYNTAX DAclMacAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry defined in dAclMacAccessListTable. An entry is
created/removed when an MAC access list is created/deleted."
INDEX { dAclMacAccessListName }
::= { dAclMacAccessListTable 1 }
DAclMacAccessListEntry ::= SEQUENCE {
dAclMacAccessListName DisplayString,
dAclMacAccessListRowStatus RowStatus,
dAclMacAccessListId Integer32,
dAclMacAccessListCounterEnabled TruthValue,
dAclMacAccessListClearStatAction INTEGER,
dAclMacAccessListRemark DisplayString
}
dAclMacAccessListName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the MAC access list."
::= { dAclMacAccessListEntry 1 }
dAclMacAccessListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the dynamic creation and deletion of a MAC
access list."
::= { dAclMacAccessListEntry 2 }
dAclMacAccessListId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the MAC access list.
If user specify value zero(0) for this node, agent will assign a number
for it. After the table created, this node should not be changed."
::= { dAclMacAccessListEntry 3 }
dAclMacAccessListCounterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the counter state of the access list is
enabled('true') or disabled('false'). And the counter state just
for the all interface that applied the access list in
dAclMacAccessGroupTable.
"
::= { dAclMacAccessListEntry 4 }
dAclMacAccessListClearStatAction OBJECT-TYPE
SYNTAX INTEGER{
clear(1),
noOp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to clear statistics of the access list when set
to 'clear'. No action is taken if this object is set to 'noOp'.
The 'clear' action just for the all interface that applied the access
list in dAclMacAccessGroupTable.
When read, the value 'noOp' is returned."
::= { dAclMacAccessListEntry 5 }
dAclMacAccessListRemark OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of the MAC access list."
::= { dAclMacAccessListEntry 6 }
-- -----------------------------------------------------------------------------
dAclMacAccessRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclMacAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table consists of a list of rules for the MAC access list."
::= { dAclMac 3 }
dAclMacAccessRuleEntry OBJECT-TYPE
SYNTAX DAclMacAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclMacAccessRuleTable.
The first instance identifier index value identifies the
dAclMacAccessListEntry that a MAC access rule (dAclMacAccessRuleEntry)
belongs to. An entry is removed from this table when its
corresponding dAclMacAccessListEntry is deleted."
INDEX {
dAclMacAccessListName,
dAclMacAccessRuleSn
}
::= { dAclMacAccessRuleTable 1 }
DAclMacAccessRuleEntry ::= SEQUENCE {
dAclMacAccessRuleSn Integer32,
dAclMacAccessRuleRowStatus RowStatus,
dAclMacAccessRuleAction DlinkAclRuleType,
dAclMacAccessRuleSrcMacAddr MacAddress,
dAclMacAccessRuleSrcMacWildcard MacAddress,
dAclMacAccessRuleDstMacAddr MacAddress,
dAclMacAccessRuleDstMacWildcard MacAddress,
dAclMacAccessRulePacketType INTEGER,
dAclMacAccessRuleEthernetType Integer32,
dAclMacAccessRuleLlcDSAP Integer32,
dAclMacAccessRuleLlcSSAP Integer32,
dAclMacAccessRuleLlcCntl Integer32,
dAclMacAccessRuleDot1p Integer32,
dAclMacAccessRuleInnerDot1p Integer32,
dAclMacAccessRuleVlanID VlanIdOrNone,
dAclMacAccessRuleInnerVlanID VlanIdOrNone,
dAclMacAccessRuleTimeName DisplayString,
dAclMacAccessRuleEthernetTypeMask OCTET STRING,
dAclMacAccessRuleDot1pMask OCTET STRING,
dAclMacAccessRuleInnerDot1pMask OCTET STRING,
dAclMacAccessRuleVlanIDMask OCTET STRING,
dAclMacAccessRuleInnerVlanIDMask OCTET STRING,
dAclMacAccessRuleVlanRangeMin VlanIdOrNone,
dAclMacAccessRuleVlanRangeMax VlanIdOrNone
}
dAclMacAccessRuleSn OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the sequence number of this rule.
The lower the number is, the higher the priority of the rule.
The special value of 0 means the sequence number will be automatically
determined by the agent."
::= { dAclMacAccessRuleEntry 1 }
dAclMacAccessRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclMacAccessRuleEntry 2 }
dAclMacAccessRuleAction OBJECT-TYPE
SYNTAX DlinkAclRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the result of the packet examination is to
permit or deny or prevent to CPU.
"
::= { dAclMacAccessRuleEntry 3 }
dAclMacAccessRuleSrcMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a source MAC address."
::= { dAclMacAccessRuleEntry 4 }
dAclMacAccessRuleSrcMacWildcard OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of source
MAC addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
source MAC address is specified. When the value of all '00'Hs indicates
host source MAC address is specified."
::= { dAclMacAccessRuleEntry 5 }
dAclMacAccessRuleDstMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a destination MAC address."
::= { dAclMacAccessRuleEntry 6 }
dAclMacAccessRuleDstMacWildcard OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of destination
MAC addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
destination MAC address is specified. When the value of all '00'Hs
indicates host destination MAC address is specified."
::= { dAclMacAccessRuleEntry 7 }
dAclMacAccessRulePacketType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
ethernet(2),
llc(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the Ethernet frame type. The value of none (1) means the
frame type is not specified."
DEFVAL { none }
::= { dAclMacAccessRuleEntry 8 }
dAclMacAccessRuleEthernetType OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the Ethernet type for an Ethernet II or SNAP packet.
The special value of -1 means the Ethernet type value is not specified.
It is only meaningful when the dAclMacAccessRulePacketType is
'ethernet'."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 9}
dAclMacAccessRuleLlcDSAP OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"Specifies the DSAP value for the LLC packet. If the value is -1, it
means the DSAP number is not specified.
It is only meaningful when the dAclMacAccessRulePacketType is 'llc'."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 10 }
dAclMacAccessRuleLlcSSAP OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"Specifies the SSAP value for the LLC packet. If the value is -1, it
means the SSAP number is not specified.
It is only meaningful when the dAclMacAccessRulePacketType is 'llc'."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 11 }
dAclMacAccessRuleLlcCntl OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"Specifies the control field for the LLC packet. If the value is -1, it
means the SSAP number is not specified.
It is only meaningful when the dAclMacAccessRulePacketType is 'llc'."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 12 }
dAclMacAccessRuleDot1p OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the priority value. The value of -1 means the priority
is not specified."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 13 }
dAclMacAccessRuleInnerDot1p OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the inner priority value. The value of -1 means the
inner priority is not specified."
DEFVAL { -1 }
::= { dAclMacAccessRuleEntry 14 }
dAclMacAccessRuleVlanID OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the VLAN ID.
A value of zero indicates the VLAN ID is not specified.
This node and dAclMacAccessRuleVlanRangeMin/dAclMacAccessRuleVlanRangeMax
cannot be specified at same time in a row."
DEFVAL { 0 }
::= { dAclMacAccessRuleEntry 15 }
dAclMacAccessRuleInnerVlanID OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the inner VLAN ID. A value of zero indicates
the inner VLAN ID is not specified."
DEFVAL { 0 }
::= { dAclMacAccessRuleEntry 16 }
dAclMacAccessRuleTimeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the name of time-period profile associated with
the access-list delineating its activation period.
The value 'NULL' means that this rule is not bound with any Time
mechanism."
::= { dAclMacAccessRuleEntry 17 }
dAclMacAccessRuleEthernetTypeMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for ethernet type defined by dAclMacAccessRuleEthernetType.
Valid values are from 0x0000 to 0xFFFF.
Default value is 0xFFFF.
This node is valid only for the dAclMacAccessRuleEthernetType specified."
::= { dAclMacAccessRuleEntry 18}
dAclMacAccessRuleDot1pMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for priority defined by dAclMacAccessRuleDot1p.
Valid values are from 0x00 to 0x07.
Default value is 0x07.
This node is valid only for the dAclMacAccessRuleDot1p specified."
::= { dAclMacAccessRuleEntry 19 }
dAclMacAccessRuleInnerDot1pMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for inner priority defined by dAclMacAccessRuleInnerDot1p.
Valid values are from 0x00 to 0x07.
Default value is 0x07.
This node is valid only for the dAclMacAccessRuleInnerDot1p specified."
::= { dAclMacAccessRuleEntry 20 }
dAclMacAccessRuleVlanIDMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for VLAN ID defined by dAclMacAccessRuleVlanID.
Valid values are from 0x0000 to 0x0FFF.
This node and dAclMacAccessRuleVlanRangeMin/dAclMacAccessRuleVlanRangeMax
cannot be specified at same time in a row.
Default value is 0x0FFF.
This node is valid only for the dAclMacAccessRuleVlanID specified."
::= { dAclMacAccessRuleEntry 21 }
dAclMacAccessRuleInnerVlanIDMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for inner VLAN ID defined by dAclMacAccessRuleInnerVlanID.
Valid values are from 0x0000 to 0x0FFF.
Default value is 0x0FFF.
This node is valid only for the dAclMacAccessRuleInnerVlanID specified."
::= { dAclMacAccessRuleEntry 22 }
dAclMacAccessRuleVlanRangeMin OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the minimum outer VLAN ID of a VLAN range. A value of zero
indicates the VLAN range is not specified.
This node and dAclMacAccessRuleVlanID/dAclMacAccessRuleVlanIDMask cannot
be specified at same time in a row.
This node is valid only for the dAclMacAccessRuleVlanRangeMax specified."
DEFVAL { 0 }
::= { dAclMacAccessRuleEntry 23 }
dAclMacAccessRuleVlanRangeMax OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the maximum outer VLAN ID of a VLAN range. A value of zero
indicates the VLAN range is not specified.
This node and dAclMacAccessRuleVlanID/dAclMacAccessRuleVlanIDMask cannot
be specified at same time in a row.
This node is valid only for the dAclMacAccessRuleVlanRangeMin specified."
DEFVAL { 0 }
::= { dAclMacAccessRuleEntry 24 }
-- -----------------------------------------------------------------------------
dAclMacAccessGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclMacAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table represents a list of MAC access group configuration."
::= { dAclMac 4 }
dAclMacAccessGroupEntry OBJECT-TYPE
SYNTAX DAclMacAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dAclMacAccessGroupTable contains interface specific
MAC access list association."
INDEX { dAclMacAccessGroupIfIndex, dAclMacAccessGroupApplyDirection }
::= { dAclMacAccessGroupTable 1 }
DAclMacAccessGroupEntry ::= SEQUENCE {
dAclMacAccessGroupIfIndex InterfaceIndex,
dAclMacAccessGroupApplyDirection INTEGER,
dAclMacAccessGroupRowStatus RowStatus,
dAclMacAccessGroupAclName DisplayString,
dAclMacAccessGroupAclId Integer32
}
dAclMacAccessGroupIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ifIndex of the interface.
Only physical port is valid interface."
::= { dAclMacAccessGroupEntry 1 }
dAclMacAccessGroupApplyDirection OBJECT-TYPE
SYNTAX INTEGER{
inbound(1),
outbound(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether this access list is to be attached to ingress
or egress direction."
::= { dAclMacAccessGroupEntry 2 }
dAclMacAccessGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclMacAccessGroupEntry 3 }
dAclMacAccessGroupAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the MAC access list to be applied.
"
::= { dAclMacAccessGroupEntry 4 }
dAclMacAccessGroupAclId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of the MAC access list to be applied.
User maybe specify access list ID(by this object) or name (by
dAclMacAccessGroupAclName) to be applied. If both access list
ID and name are specified, the access list name specified by
dAclMacAccessGroupAclName will be take.
"
::= { dAclMacAccessGroupEntry 5 }
-- -----------------------------------------------------------------------------
dAclIp OBJECT IDENTIFIER ::= { dAclMIBObjects 3 }
dAclIpAccessListNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of entries present in the IP access list
table."
::= { dAclIp 1 }
dAclIpAccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIpAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains IP access list configuration."
::= { dAclIp 2 }
dAclIpAccessListEntry OBJECT-TYPE
SYNTAX DAclIpAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry defined in dAclIpAccessListTable. An entry is
created/removed when an IP access list is created/deleted."
INDEX { dAclIpAccessListName }
::= { dAclIpAccessListTable 1 }
DAclIpAccessListEntry ::= SEQUENCE {
dAclIpAccessListName DisplayString,
dAclIpAccessListRowStatus RowStatus,
dAclIpAccessExtended TruthValue,
dAclIpAccessListId Integer32,
dAclIpAccessListCounterEnabled TruthValue,
dAclIpAccessListClearStatAction INTEGER,
dAclIpAccessListRemark DisplayString
}
dAclIpAccessListName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the IP access list."
::= { dAclIpAccessListEntry 1 }
dAclIpAccessListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the dynamic creation and
deletion of an IP access list."
::= { dAclIpAccessListEntry 2 }
dAclIpAccessExtended OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the IP access list is extended ('true') or
standard ('false').
A standard ip access list means only IP address related i.e.
source or destination IP address is specified for the filter.
For an extended IP access list, more fields can be chosen for the
filter."
::= { dAclIpAccessListEntry 3 }
dAclIpAccessListId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the IP access list.
If user specify value zero(0) for this node, agent will assign a number
for it. After the table created, this node should not be changed."
::= { dAclIpAccessListEntry 4 }
dAclIpAccessListCounterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the counter state of the access list is
enabled('true') or disabled('false'). And the counter just for
the all interface that applied the access list in
dAclIpAccessGroupTable."
::= { dAclIpAccessListEntry 5 }
dAclIpAccessListClearStatAction OBJECT-TYPE
SYNTAX INTEGER{
clear(1),
noOp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to clear statistics of the access list when set
to 'clear'. No action is taken if this object is set to 'noOp'.
The 'clear' action just for the all interface that applied the access
list in dAclIpAccessGroupTable.
When read, the value 'noOp' is returned."
::= { dAclIpAccessListEntry 6 }
dAclIpAccessListRemark OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of the IP access list."
::= { dAclIpAccessListEntry 7 }
-- -----------------------------------------------------------------------------
dAclIpAccessRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIpAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains a list of IP access rules for IP access lists."
::= { dAclIp 3}
dAclIpAccessRuleEntry OBJECT-TYPE
SYNTAX DAclIpAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclIpAccessRuleTable.
The first instance identifier index value identifies the
dAclIpAccessListEntry that an IP access rule (dAclIpAccessRuleEntry)
belongs to. An entry is removed from this table when its
corresponding dAclIpAccessRuleEntry is deleted."
INDEX {
dAclIpAccessListName,
dAclIpAccessRuleSn
}
::= { dAclIpAccessRuleTable 1 }
DAclIpAccessRuleEntry ::= SEQUENCE {
dAclIpAccessRuleSn Integer32,
dAclIpAccessRuleRowStatus RowStatus,
dAclIpAccessRuleAction DlinkAclRuleType,
dAclIpAccessRuleProtocol INTEGER,
dAclIpAccessRuleUserDefProtocol Integer32,
dAclIpAccessRuleSrcAddr IpAddress,
dAclIpAccessRuleSrcWildcard IpAddress,
dAclIpAccessRuleDstAddr IpAddress,
dAclIpAccessRuleDstWildcard IpAddress,
dAclIpAccessRuleSrcOperator DlinkAclPortOperatorType,
dAclIpAccessRuleSrcPort Integer32,
dAclIpAccessRuleSrcPortRange Integer32,
dAclIpAccessRuleDstOperator DlinkAclPortOperatorType,
dAclIpAccessRuleDstPort Integer32,
dAclIpAccessRuleDstPortRange Integer32,
dAclIpAccessRuleQosPrecedence Integer32,
dAclIpAccessRuleQosTos Integer32,
dAclIpAccessRuleQosDscp Integer32,
dAclIpAccessRuleIcmpType Integer32,
dAclIpAccessRuleIcmpCode Integer32,
dAclIpAccessRuleTimeName DisplayString,
dAclIpAccRuleTcpFlag TcpFlag,
dAclIpAccRuleFragments TruthValue,
dAclIpAccRuleUserDefProtocolMask OCTET STRING,
dAclIpAccRuleSrcPortMask OCTET STRING,
dAclIpAccRuleDstPortMask OCTET STRING,
dAclIpAccRuleQosPrecedenceMask OCTET STRING,
dAclIpAccRuleQosTosMask OCTET STRING,
dAclIpAccRuleQosDscpMask OCTET STRING
}
dAclIpAccessRuleSn OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the sequence number of this rule.
The lower the number is, the higher the priority of the rule.
The special value of 0 means the sequence number will be automatically
determined by the agent."
::= { dAclIpAccessRuleEntry 1 }
dAclIpAccessRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclIpAccessRuleEntry 2 }
dAclIpAccessRuleAction OBJECT-TYPE
SYNTAX DlinkAclRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the result of the packet examination is to
permit or deny or prevent to CPU."
::= { dAclIpAccessRuleEntry 3 }
dAclIpAccessRuleProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(0),
userDefine(1),
tcp(2),
udp(3),
icmp(4),
gre(5),
esp(6),
eigrp(7),
igmp(8),
ospf(9),
pim(10),
vrrp(11),
ipinip(12),
pcp(13)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP protocol."
::= { dAclIpAccessRuleEntry 4 }
dAclIpAccessRuleUserDefProtocol OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the user defined protocol ID when the dAclIpAccessRuleProtocol
is 'userDefine (1)'. The value of -1 means the user defined protocol ID
is not specified."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 5 }
dAclIpAccessRuleSrcAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a source IP address."
::= { dAclIpAccessRuleEntry 6 }
dAclIpAccessRuleSrcWildcard OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of source IP
addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
IP source address is specified. When the value of all '00'Hs indicates
host IP source address is specified."
::= { dAclIpAccessRuleEntry 7 }
dAclIpAccessRuleDstAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a destination IP address."
::= { dAclIpAccessRuleEntry 8 }
dAclIpAccessRuleDstWildcard OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of destination IP
addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
IP destination address is specified. When the value of all '00'Hs indicates
host IP destination address is specified."
::= { dAclIpAccessRuleEntry 9 }
dAclIpAccessRuleSrcOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's source TCP/UDP port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclIpAccessRuleSrcPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclIpAccessRuleSrcPort, which is the starting port number of the
range, and the other operand is dAclIpAccessRuleSrcPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclIpAccessRuleSrcPort, the other operand is dAclIpAccRuleSrcPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclIpAccessRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclIpAccessRuleEntry 10 }
dAclIpAccessRuleSrcPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the source port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclIpAccessRuleSrcOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclIpAccessRuleSrcOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 11 }
dAclIpAccessRuleSrcPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source port number of the TCP/UDP protocol. If the
dAclIpAccessRuleSrcOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 12 }
dAclIpAccessRuleDstOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's TCP/UDP destination port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclIpAccessRuleSrcPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclIpAccessRuleSrcPort, which is the starting port number of the
range, and the other operand is dAclIpAccessRuleDstPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclIpAccessRuleDstPort, the other operand is dAclIpAccRuleDstPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclIpAccessRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclIpAccessRuleEntry 13 }
dAclIpAccessRuleDstPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the destination port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclIpAccessRuleDstOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclIpAccessRuleDstOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 14 }
dAclIpAccessRuleDstPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port number of the TCP/UDP protocol. If the
dAclIpAccessRuleDstOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 15 }
dAclIpAccessRuleQosPrecedence OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of precedence.
The value of -1 means the value is not specified or not applicable.
dAclIpAccessRuleQosPrecedence and dAclIpAccessRuleQosDscp cannot
be specified at same time in a row."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 16 }
dAclIpAccessRuleQosTos OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of type of service.
The value of -1 means the value is not specified or not applicable.
dAclIpAccessRuleQosTos and dAclIpAccessRuleQosDscp cannot
be specified at same time in a row."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 17 }
dAclIpAccessRuleQosDscp OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of DSCP code.
The value of -1 means the value is not specified or not applicable.
Neither dAclIpAccessRuleQosPrecedence nor dAclIpAccessRuleQosTos
cannot be specified with dAclIpAccessRuleQosDscp at same time
in a row.
"
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 18 }
dAclIpAccessRuleIcmpType OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the type of ICMP protocol.
If the value is -1, it means the value is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclIpAccessRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 19 }
dAclIpAccessRuleIcmpCode OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the code of ICMP protocol.
If the value is -1, it means the value is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclIpAccessRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclIpAccessRuleEntry 20 }
dAclIpAccessRuleTimeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the name of time-period profile associated with the
access-list delineating its activation period.
The value 'NULL' means that this rule is not bound with any Time
mechanism."
::= { dAclIpAccessRuleEntry 21 }
dAclIpAccRuleTcpFlag OBJECT-TYPE
SYNTAX TcpFlag
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the TCP flag fields.
This node is available only for TCP protocol.
The default value for this node is empty set, which means no TCP flag
values are set.
"
::= { dAclIpAccessRuleEntry 22 }
dAclIpAccRuleFragments OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Packet fragment filtering status
is enabled('true') or disabled('false').
"
::= { dAclIpAccessRuleEntry 23 }
dAclIpAccRuleUserDefProtocolMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for protocol ID defined by dAclIpAccessRuleUserDefProtocol.
Valid values are from 0x00 to 0xFF.
Default value is 0xFF.
This node is valid only for the dAclIpAccessRuleUserDefProtocol specified."
::= { dAclIpAccessRuleEntry 24 }
dAclIpAccRuleSrcPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 source port defined by dAclIpAccessRuleSrcPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclIpAccessRuleSrcOperator in the
same row is 'mask(7)'.
This node is valid only for the dAclIpAccessRuleSrcPort specified."
::= { dAclIpAccessRuleEntry 25 }
dAclIpAccRuleDstPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 destination port defined by dAclIpAccessRuleDstPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclIpAccessRuleDstOperator in the
same row is 'mask(7)'.
This node is valid only for the dAclIpAccessRuleDstPort specified."
::= { dAclIpAccessRuleEntry 26 }
dAclIpAccRuleQosPrecedenceMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for ip precedence defined by dAclIpAccessRuleQosPrecedence.
Valid values are from 0x0 to 0x7.
Default value is 0x7.
This node is valid only for the dAclIpAccessRuleQosPrecedence specified."
::= { dAclIpAccessRuleEntry 27 }
dAclIpAccRuleQosTosMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for type of service defined by dAclIpAccessRuleQosTos.
Valid values are from 0x0 to 0xF.
Default value is 0xF.
This node is valid only for the dAclIpAccessRuleQosTos specified."
::= { dAclIpAccessRuleEntry 28 }
dAclIpAccRuleQosDscpMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for DSCP code defined by dAclIpAccessRuleQosDscp.
Valid values are from 0x0 to 0x3F.
Default value is 0x3F.
This node is valid only for the dAclIpAccessRuleQosDscp specified."
::= { dAclIpAccessRuleEntry 29 }
-- -----------------------------------------------------------------------------
dAclIpAccessGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIpAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table represents a list of IP access group configuration."
::= { dAclIp 4 }
dAclIpAccessGroupEntry OBJECT-TYPE
SYNTAX DAclIpAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dAclIpAccessGroupTable contains interface specific
IP access list association."
INDEX { dAclIpAccessGroupIfIndex,dAclIpAccessGroupApplyDirection}
::= { dAclIpAccessGroupTable 1 }
DAclIpAccessGroupEntry ::= SEQUENCE {
dAclIpAccessGroupIfIndex InterfaceIndex,
dAclIpAccessGroupApplyDirection INTEGER,
dAclIpAccessGroupStatus RowStatus,
dAclIpAccessGroupAclName DisplayString,
dAclIpAccessGroupAclId Integer32
}
dAclIpAccessGroupIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ifIndex of the interface.
Only physical port is valid interface."
::= { dAclIpAccessGroupEntry 1 }
dAclIpAccessGroupApplyDirection OBJECT-TYPE
SYNTAX INTEGER{
inbound(1),
outbound(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether this access list is to be attached to ingress or egress direction."
::= { dAclIpAccessGroupEntry 2 }
dAclIpAccessGroupStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclIpAccessGroupEntry 3 }
dAclIpAccessGroupAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the IP access list to be applied."
::= { dAclIpAccessGroupEntry 4 }
dAclIpAccessGroupAclId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of the IP access list to be applied.
User maybe specify access list ID(by this object) or name (by
dAclIpAccessGroupAclName) to be applied. If both access list
ID and name are specified, the access list name specified by
dAclIpAccessGroupAclName will be take.
"
::= { dAclIpAccessGroupEntry 5 }
-- -----------------------------------------------------------------------------
dAclIPv6 OBJECT IDENTIFIER ::= { dAclMIBObjects 4 }
dAclIPv6AccessListNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of entries present in the IPv6 access list
table."
::= { dAclIPv6 1 }
dAclIPv6AccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIPv6AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains IPv6 access list configuration."
::= { dAclIPv6 2 }
dAclIPv6AccessListEntry OBJECT-TYPE
SYNTAX DAclIPv6AccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry defined in dAclIPv6AccessListTable. An entry is
created/removed when an IPv6 access list is created/deleted."
INDEX { dAclIPv6AccessListName }
::= { dAclIPv6AccessListTable 1 }
DAclIPv6AccessListEntry ::= SEQUENCE {
dAclIPv6AccessListName DisplayString,
dAclIPv6AccessListRowStatus RowStatus,
dAclIPv6AccessExtended TruthValue,
dAclIPv6AccessListId Integer32,
dAclIPv6AccessListCounterEnabled TruthValue,
dAclIPv6AccessListClearStatAction INTEGER,
dAclIPv6AccessListRemark DisplayString
}
dAclIPv6AccessListName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the IPv6 access list."
::= { dAclIPv6AccessListEntry 1 }
dAclIPv6AccessListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the dynamic creation and
deletion of an IPv6 access list."
::= { dAclIPv6AccessListEntry 2 }
dAclIPv6AccessExtended OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the IPv6 access list is extended ('true') or
standard ('false').
A standard ip access list means only IPv6 address related i.e.
source or destination IPv6 address is specified for the filter.
For an extended IPv6 access list, more fields can be chosen for the
filter."
::= { dAclIPv6AccessListEntry 3 }
dAclIPv6AccessListId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the IPv6 access list."
::= { dAclIPv6AccessListEntry 4 }
dAclIPv6AccessListCounterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the counter state of the access list is
enabled('true') or disabled('false'). And the counter just for
the all interface that applied the access list in
dAclIPv6AccessGroupTable."
::= { dAclIPv6AccessListEntry 5 }
dAclIPv6AccessListClearStatAction OBJECT-TYPE
SYNTAX INTEGER{
clear(1),
noOp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to clear statistics of the access list when set
to 'clear'. No action is taken if this object is set to 'noOp'.
The 'clear' action just for the all interface that applied the access
list in dAclIPv6AccessGroupTable.
When read, the value 'noOp' is returned."
::= { dAclIPv6AccessListEntry 6 }
dAclIPv6AccessListRemark OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of the IPv6 access list."
::= { dAclIPv6AccessListEntry 7 }
-- -----------------------------------------------------------------------------
dAclIPv6AccessRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIPv6AccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains a list of IPv6 access rules for IPv6 access lists."
::= { dAclIPv6 3}
dAclIPv6AccessRuleEntry OBJECT-TYPE
SYNTAX DAclIPv6AccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclIPv6AccessRuleTable.
The first instance identifier index value identifies the
dAclIPv6AccessListEntry that an IPv6 access rule (dAclIPv6AccessRuleEntry)
belongs to. An entry is removed from this table when its
corresponding dAclIPv6AccessRuleEntry is deleted."
INDEX {
dAclIPv6AccessListName,
dAclIPv6AccessRuleSn
}
::= { dAclIPv6AccessRuleTable 1 }
DAclIPv6AccessRuleEntry ::= SEQUENCE {
dAclIPv6AccessRuleSn Integer32,
dAclIPv6AccessRuleRowStatus RowStatus,
dAclIPv6AccessRuleAction DlinkAclRuleType,
dAclIPv6AccessRuleProtocol INTEGER,
dAclIPv6AccessRuleUserDefProtocol Integer32,
dAclIPv6AccessRuleSrcAddr InetAddressIPv6,
dAclIPv6AccessRuleSrcPrefixLen InetAddressPrefixLength,
dAclIPv6AccessRuleDstAddr InetAddressIPv6,
dAclIPv6AccessRuleDstPrefixLen InetAddressPrefixLength,
dAclIPv6AccessRuleDstOperator DlinkAclPortOperatorType,
dAclIPv6AccessRuleSrcOperator DlinkAclPortOperatorType,
dAclIPv6AccessRuleSrcPort Integer32,
dAclIPv6AccessRuleSrcPortRange Integer32,
dAclIPv6AccessRuleDstPort Integer32,
dAclIPv6AccessRuleDstPortRange Integer32,
dAclIPv6AccessRuleDscp Integer32,
dAclIPv6AccessRuleIcmpType Integer32,
dAclIPv6AccessRuleIcmpCode Integer32,
dAclIPv6AccessRuleTimeName DisplayString,
dAclIPv6AccRuleTcpFlag TcpFlag,
dAclIPv6AccRuleFragments TruthValue,
dAclIPv6AccRuleFlowLabel Integer32,
dAclIPv6AccRuleTrafficClass Integer32,
dAclIPv6AccRuleUserDefProtocolMask OCTET STRING,
dAclIPv6AccRuleSrcPortMask OCTET STRING,
dAclIPv6AccRuleDstPortMask OCTET STRING,
dAclIPv6AccRuleDscpMask OCTET STRING,
dAclIPv6AccRuleFlowLabelMask OCTET STRING,
dAclIPv6AccRuleTrafficClassMask OCTET STRING
}
dAclIPv6AccessRuleSn OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the sequence number of this rule.
The lower the number is, the higher the priority of the rule.
The special value of 0 means the sequence number will be automatically
determined by the agent."
::= { dAclIPv6AccessRuleEntry 1 }
dAclIPv6AccessRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclIPv6AccessRuleEntry 2 }
dAclIPv6AccessRuleAction OBJECT-TYPE
SYNTAX DlinkAclRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the result of the packet examination is to
permit or deny or prevent to CPU."
::= { dAclIPv6AccessRuleEntry 3 }
dAclIPv6AccessRuleProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(0),
userDefine(1),
tcp(2),
udp(3),
icmp(4),
esp(5),
pcp(6),
sctp(7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP protocol."
::= { dAclIPv6AccessRuleEntry 4 }
dAclIPv6AccessRuleUserDefProtocol OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the user defined protocol ID when the
dAclIPv6AccessRuleProtocol is 'userDefine (1)'.
The value of -1 means the user defined protocol ID is not
specified."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 5 }
dAclIPv6AccessRuleSrcAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a source IPv6 address."
::= { dAclIPv6AccessRuleEntry 6 }
dAclIPv6AccessRuleSrcPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the length in bits of source IPv6 address will be
matched. In other words, the value of 0 indicates any source
IPv6 address is specified. When the value of 128 indicates
host IPv6 source address is specified."
::= { dAclIPv6AccessRuleEntry 7 }
dAclIPv6AccessRuleDstAddr OBJECT-TYPE
SYNTAX InetAddressIPv6
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a destination IPv6 address."
::= { dAclIPv6AccessRuleEntry 8 }
dAclIPv6AccessRuleDstPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the length in bits of destination IPv6 address will be
matched. In other words, the value of 0 indicates any destination
IPv6 address is specified. When the value of 128 indicates
host IPv6 destination address is specified."
::= { dAclIPv6AccessRuleEntry 9 }
dAclIPv6AccessRuleSrcOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's TCP/UDP source port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclIPv6AccessRuleSrcPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclIPv6AccessRuleSrcPort, which is the starting port number of the
range, and the other operand is dAclIPv6AccessRuleSrcPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclIPv6AccessRuleSrcPort, the other operand is dAclIPv6AccessRuleSrcPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclIPv6AccessRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclIPv6AccessRuleEntry 10 }
dAclIPv6AccessRuleSrcPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the source port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclIPv6AccessRuleSrcOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclIPv6AccessRuleSrcOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 11 }
dAclIPv6AccessRuleSrcPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source port number of the TCP/UDP protocol. If the
dAclIPv6AccessRuleSrcOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 12 }
dAclIPv6AccessRuleDstOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's TCP/UDP destination port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclIPv6AccessRuleDstPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclIPv6AccessRuleDstPort, which is the starting port number of the
range, and the other operand is dAclIPv6AccessRuleDstPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclIPv6AccessRuleDstPort, the other operand is dAclIPv6AccessRuleDstPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclIPv6AccessRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclIPv6AccessRuleEntry 13 }
dAclIPv6AccessRuleDstPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the destination port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclIPv6AccessRuleDstOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclIPv6AccessRuleDstOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 14 }
dAclIPv6AccessRuleDstPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port number of the TCP/UDP protocol. If the
dAclIPv6AccessRuleDstOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
::= { dAclIPv6AccessRuleEntry 15 }
dAclIPv6AccessRuleDscp OBJECT-TYPE
SYNTAX Integer32 (-1 | 0 .. 63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the matching DSCP code value in IPv6 header.
The value of -1 means the DSCP value is not specified."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 16 }
dAclIPv6AccessRuleIcmpType OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the type of ICMP protocol.
The value of -1 means the ICMP type is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclIPv6AccessRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 17 }
dAclIPv6AccessRuleIcmpCode OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the code of ICMP protocol.
If the value is -1, it means the value is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclIPv6AccessRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 18 }
dAclIPv6AccessRuleTimeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the name of time-period profile associated with the
access-list delineating its activation period.
The value 'NULL' means that this rule is not bound with any Time
mechanism."
::= { dAclIPv6AccessRuleEntry 19 }
dAclIPv6AccRuleTcpFlag OBJECT-TYPE
SYNTAX TcpFlag
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the TCP flag fields. And this node is available only for TCP protocol.
The default value for this node is empty set, which means no TCP flag values are set.
"
::= { dAclIPv6AccessRuleEntry 20 }
dAclIPv6AccRuleFragments OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Packet fragment filtering status
is enabled('true') or disabled('false')."
::= { dAclIPv6AccessRuleEntry 21 }
dAclIPv6AccRuleFlowLabel OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..1048575)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Flow label value.
The value of -1 means the flow-label value is not specified.
"
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 22 }
dAclIPv6AccRuleTrafficClass OBJECT-TYPE
SYNTAX Integer32 (-1 | 0 .. 255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the matching traffic class value in IPv6 header.
The value of -1 means the traffic class value is not specified.
This node and dAclIPv6AccessRuleDscp cannot be specified at same time in a row.
"
DEFVAL { -1 }
::= { dAclIPv6AccessRuleEntry 23 }
dAclIPv6AccRuleUserDefProtocolMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for protocol ID defined by dAclIPv6AccessRuleUserDefProtocol.
Valid values are from 0x00 to 0xFF.
Default value is 0xFF.
This node is valid only for the dAclIPv6AccessRuleUserDefProtocol specified."
::= { dAclIPv6AccessRuleEntry 24 }
dAclIPv6AccRuleSrcPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 source port defined by dAclIPv6AccessRuleSrcPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclIPv6AccessRuleSrcOperator in the
same row is 'mask(7)'.
This node is valid only for the dAclIPv6AccessRuleSrcPort specified."
::= { dAclIPv6AccessRuleEntry 25 }
dAclIPv6AccRuleDstPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 destination port defined by dAclIPv6AccessRuleDstPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclIPv6AccessRuleDstOperator in the
same row is 'mask(7)'.
This node is valid only for the dAclIPv6AccessRuleDstPort specified."
::= { dAclIPv6AccessRuleEntry 26 }
dAclIPv6AccRuleDscpMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for DSCP code defined by dAclIPv6AccessRuleDscp.
Valid values are from 0x0 to 0x3F.
Default value is 0x3F.
This node is valid only for the dAclIPv6AccessRuleDscp specified."
::= { dAclIPv6AccessRuleEntry 27 }
dAclIPv6AccRuleFlowLabelMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(3))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for Flow label value defined by dAclIPv6AccRuleFlowLabel.
Valid values are from 0x0 to 0xFFFFF.
Default value is 0xFFFFF.
This node is valid only for the dAclIPv6AccRuleFlowLabel specified."
::= { dAclIPv6AccessRuleEntry 28 }
dAclIPv6AccRuleTrafficClassMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for traffic class defined by dAclIPv6AccRuleTrafficClass.
Valid values are from 0x0 to 0xFF.
Default value is 0xFF.
This node is valid only for the dAclIPv6AccRuleTrafficClass specified."
::= { dAclIPv6AccessRuleEntry 29 }
-- -----------------------------------------------------------------------------
dAclIPv6AccessGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclIPv6AccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table represents a list of IPv6 access group configuration."
::= { dAclIPv6 4 }
dAclIPv6AccessGroupEntry OBJECT-TYPE
SYNTAX DAclIPv6AccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dAclIPv6AccessGroupTable contains interface specific
IPv6 access list association."
INDEX { dAclIPv6AccessGroupIfIndex, dAclIpv6AccessGroupApplyDirection }
::= { dAclIPv6AccessGroupTable 1 }
DAclIPv6AccessGroupEntry ::= SEQUENCE {
dAclIPv6AccessGroupIfIndex InterfaceIndex,
dAclIpv6AccessGroupApplyDirection INTEGER,
dAclIPv6AccessGroupStatus RowStatus,
dAclIPv6AccessGroupAclName DisplayString,
dAclIPv6AccessGroupAclId Integer32
}
dAclIPv6AccessGroupIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ifIndex of the interface.
Only physical port is valid interface."
::= { dAclIPv6AccessGroupEntry 1 }
dAclIpv6AccessGroupApplyDirection OBJECT-TYPE
SYNTAX INTEGER{
inbound(1),
outbound(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether this ACL access list is to be attached to ingress or egress direction."
::= { dAclIPv6AccessGroupEntry 2 }
dAclIPv6AccessGroupStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclIPv6AccessGroupEntry 3 }
dAclIPv6AccessGroupAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the IPv6 access list to be applied."
::= { dAclIPv6AccessGroupEntry 4 }
dAclIPv6AccessGroupAclId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of the IPv6 access list to be applied.
User maybe specify access list ID(by this object) or name (by
dAclIPv6AccessGroupAclName) to be applied. If both access list
ID and name are specified, the access list name specified by
dAclIPv6AccessGroupAclName will be take.
"
::= { dAclIPv6AccessGroupEntry 5 }
-- -----------------------------------------------------------------------------
dAclExpert OBJECT IDENTIFIER ::= { dAclMIBObjects 5 }
dAclExpertAccessListNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of entries present in the extended expert
access list table."
::= { dAclExpert 1 }
dAclExpertAccessListTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclExpertAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains information about extended expert access list."
::= { dAclExpert 2 }
dAclExpertAccessListEntry OBJECT-TYPE
SYNTAX DAclExpertAccessListEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry defined in dAclExpertAccessListTable. An entry is
created/removed when an extended expert access list is
created/deleted."
INDEX { dAclExpertAccessListName }
::= { dAclExpertAccessListTable 1 }
DAclExpertAccessListEntry ::= SEQUENCE {
dAclExpertAccessListName DisplayString,
dAclExpertAccessListRowStatus RowStatus,
dAclExpertAccessListId Integer32,
dAclExpertAccessListCounterEnabled TruthValue,
dAclExpertAccessListClearStatAction INTEGER,
dAclExpertAccessListRemark DisplayString
}
dAclExpertAccessListName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the extended expert access list."
::= { dAclExpertAccessListEntry 1 }
dAclExpertAccessListRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object allows the dynamic creation and
deletion of an extended expert access list."
::= { dAclExpertAccessListEntry 2 }
dAclExpertAccessListId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of the extended expert access list."
::= { dAclExpertAccessListEntry 3 }
dAclExpertAccessListCounterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the counter state of the access list is
enabled('true') or disabled('false'). And the counter just for
the all interface that applied the access list in
dAclExpertAccessGroupTable."
::= { dAclExpertAccessListEntry 4 }
dAclExpertAccessListClearStatAction OBJECT-TYPE
SYNTAX INTEGER{
clear(1),
noOp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to clear statistics of the access list when set
to 'clear'. No action is taken if this object is set to 'noOp'.
The 'clear' action just for the all interface that applied the access
list in dAclExpertAccessGroupTable.
When read, the value 'noOp' is returned."
::= { dAclExpertAccessListEntry 5 }
dAclExpertAccessListRemark OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of the Expert access list."
::= { dAclExpertAccessListEntry 6 }
-- -----------------------------------------------------------------------------
dAclExpertAccessRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclExpertAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table consists of a list of rules for the extended expert access list."
::= { dAclExpert 3 }
dAclExpertAccessRuleEntry OBJECT-TYPE
SYNTAX DAclExpertAccessRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined ddAclExpertAccessRuleTable.
The first instance identifier index value identifies the
dAclExpertAccessListEntry that a extended expert access rule
(dAclExpertAccessRuleEntry) belongs to.
An entry is removed from this table when its
corresponding dAclExpertAccessListEntry is deleted."
INDEX {
dAclExpertAccessListName,
dAclExpertAccRuleSn
}
::= { dAclExpertAccessRuleTable 1 }
DAclExpertAccessRuleEntry ::= SEQUENCE {
dAclExpertAccRuleSn Integer32,
dAclExpertAccRuleRowStatus RowStatus,
dAclExpertAccRuleAction DlinkAclRuleType,
dAclExpertAccRuleProtocol INTEGER,
dAclExpertAccRuleUserDefProtocol Integer32,
dAclExpertAccRuleSrcIpAddr IpAddress,
dAclExpertAccRuleSrcIpWildcard IpAddress,
dAclExpertAccRuleSrcMacAddr MacAddress,
dAclExpertAccRuleSrcMacWildcard MacAddress,
dAclExpertAccRuleSrcOperator DlinkAclPortOperatorType,
dAclExpertAccRuleSrcPort Integer32,
dAclExpertAccRuleSrcPortRange Integer32,
dAclExpertAccRuleDstIpAddr IpAddress,
dAclExpertAccRuleDstIpWildcard IpAddress,
dAclExpertAccRuleDstMacAddr MacAddress,
dAclExpertAccRuleDstMacWildcard MacAddress,
dAclExpertAccRuleDstOperator DlinkAclPortOperatorType,
dAclExpertAccRuleDstPort Integer32,
dAclExpertAccRuleDstPortRange Integer32,
dAclExpertAccRuleVlanID VlanIdOrNone,
dAclExpertAccRuleInnerVlanID VlanIdOrNone,
dAclExpertAccRuleQosPrecedence Integer32,
dAclExpertAccRuleQosTos Integer32,
dAclExpertAccRuleQosDscp Integer32,
dAclExpertAccRuleIcmpType Integer32,
dAclExpertAccRuleIcmpCode Integer32,
dAclExpertAccRuleTimeName DisplayString,
dAclExpertAccRuleTcpFlag TcpFlag,
dAclExpertAccRuleFragments TruthValue,
dAclExpertAccRuleOuterCos Integer32,
dAclExpertAccRuleInnerCos Integer32,
dAclExpertAccRuleUserDefProtocolMask OCTET STRING,
dAclExpertAccRuleSrcPortMask OCTET STRING,
dAclExpertAccRuleDstPortMask OCTET STRING,
dAclExpertAccRuleVlanIDMask OCTET STRING,
dAclExpertAccRuleInnerVlanIDMask OCTET STRING,
dAclExpertAccRuleQosPrecedenceMask OCTET STRING,
dAclExpertAccRuleQosTosMask OCTET STRING,
dAclExpertAccRuleQosDscpMask OCTET STRING,
dAclExpertAccRuleOuterCosMask OCTET STRING,
dAclExpertAccRuleInnerCosMask OCTET STRING,
dAclExpertAccRuleVlanRangeMin VlanIdOrNone,
dAclExpertAccRuleVlanRangeMax VlanIdOrNone
}
dAclExpertAccRuleSn OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the sequence number of this rule.
The lower the number is, the higher the priority of the rule.
The special value of 0 means the sequence number will be automatically
determined by the agent."
::= { dAclExpertAccessRuleEntry 1 }
dAclExpertAccRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclExpertAccessRuleEntry 2 }
dAclExpertAccRuleAction OBJECT-TYPE
SYNTAX DlinkAclRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the result of the packet examination is to
permit or deny or prevent to CPU."
::= { dAclExpertAccessRuleEntry 3 }
dAclExpertAccRuleProtocol OBJECT-TYPE
SYNTAX INTEGER {
none(0),
userDefine(1),
tcp(2),
udp(3),
icmp(4),
gre(5),
esp(6),
eigrp(7),
igmp(8),
ospf(9),
pim(10),
vrrp(11),
ipinip(12),
pcp(13)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the IP protocol."
::= { dAclExpertAccessRuleEntry 4 }
dAclExpertAccRuleUserDefProtocol OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the user defined protocol ID when the
dAclExpertAccRuleProtocol is 'userDefine (1)'.
The value of -1 means the user defined protocol ID is not
specified."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 5 }
dAclExpertAccRuleSrcIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a source IP address."
::= { dAclExpertAccessRuleEntry 6 }
dAclExpertAccRuleSrcIpWildcard OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of source IP
addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
IP source address is specified. When the value of all '00'Hs indicates
host IP source address is specified."
::= { dAclExpertAccessRuleEntry 7 }
dAclExpertAccRuleSrcMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a source MAC address."
::= { dAclExpertAccessRuleEntry 8 }
dAclExpertAccRuleSrcMacWildcard OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of source
MAC addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
source MAC address is specified. When the value of all '00'Hs indicates
host source MAC address is specified."
::= { dAclExpertAccessRuleEntry 9 }
dAclExpertAccRuleSrcOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's source TCP/UDP port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclExpertAccsRuleSrcPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclExpertAccsRuleSrcPort, which is the starting port number of the
range, and the other operand is dAclExpertAccsRuleSrcPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclExpertAccsRuleSrcPort, the other operand is dAclExpertAccsRuleSrcPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclExpertAccRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclExpertAccessRuleEntry 10 }
dAclExpertAccRuleSrcPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the source port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclExpertAccsRuleSrcOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclExpertAccsRuleSrcOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 11 }
dAclExpertAccRuleSrcPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source port number of the TCP/UDP protocol. If the
dAclExpertAccsRuleSrcOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 12 }
dAclExpertAccRuleDstIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a destination IP address."
::= { dAclExpertAccessRuleEntry 13 }
dAclExpertAccRuleDstIpWildcard OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of destination IP
addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
IP destination address is specified. When the value of all '00'Hs indicates
host IP destination address is specified."
::= { dAclExpertAccessRuleEntry 14 }
dAclExpertAccRuleDstMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies a destination MAC address."
::= { dAclExpertAccessRuleEntry 15 }
dAclExpertAccRuleDstMacWildcard OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is a wildcard bitmap to specify a group of destination
MAC addresses. The bit value 1 indicates the corresponding bit will
be ignored. The bit value 0 indicates the corresponding bit will be
checked. In other words, when the value of all 'ff'Hs indicates any
destination MAC address is specified. When the value of all '00'Hs
indicates host destination MAC address is specified."
::= { dAclExpertAccessRuleEntry 16 }
dAclExpertAccRuleDstOperator OBJECT-TYPE
SYNTAX DlinkAclPortOperatorType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates how a packet's TCP/UDP destination port number is
compared.
When the value of this object is eq(2),gt(3),lt(4) or neq(5) uses
the dAclExpertAccsRuleDstPort as an operand which is the only one needed.
When the value of this object is range(6) needs 2 operands. One is
dAclExpertAccsRuleDstPort, which is the starting port number of the
range, and the other operand is dAclExpertAccsRuleDstPortRange,
which is the ending port number of the range.
When the value of this object is mask(7) needs 2 operands. One is
dAclExpertAccsRuleDstPort, the other operand is dAclExpertAccsRuleDstPortMask.
This object is used for TCP/UDP protocol only, hence when the object
'dAclExpertAccRuleProtocol' is set to other than TCP/UDP, the object has
to be 'none(1)'."
::= { dAclExpertAccessRuleEntry 17 }
dAclExpertAccRuleDstPort OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the destination port number of TCP/UDP protocol.
If the value is -1, it means the value is not specified.
If the dAclExpertAccsRuleDstOperator object in the same row is
range(6), this object will be the starting port number of the port
range.
This object only can be configured dAclExpertAccsRuleDstOperator in
the same row is not 'none(1)'."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 18 }
dAclExpertAccRuleDstPortRange OBJECT-TYPE
SYNTAX Integer32 (-1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination port number of the TCP/UDP protocol. If the
dAclExpertAccsRuleDstOperator object in the same row is range(6), this
object will be the ending port number of the port range.
The value of -1 means the ending port number is not specified."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 19 }
dAclExpertAccRuleVlanID OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the VLAN ID.
A value of zero indicates the VLAN ID is not specified."
DEFVAL { 0 }
::= { dAclExpertAccessRuleEntry 20 }
dAclExpertAccRuleInnerVlanID OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the inner VLAN ID. A value of zero indicates
the inner VLAN ID is not specified."
DEFVAL { 0 }
::= { dAclExpertAccessRuleEntry 21 }
dAclExpertAccRuleQosPrecedence OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of precedence.
The value of -1 means the value is not specified or not applicable.
dAclExpertAccRuleQosPrecedence and dAclExpertAccRuleQosDscp cannot
be specified at same time in a row."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 22 }
dAclExpertAccRuleQosTos OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..15)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of type of service.
The value of -1 means the value is not specified or not applicable.
dAclExpertAccRuleQosTos and dAclExpertAccRuleQosDscp cannot
be specified at same time in a row."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 23 }
dAclExpertAccRuleQosDscp OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of DSCP code.
The value of -1 means the value is not specified or not applicable.
Neither dAclExpertAccRuleQosPrecedence nor dAclExpertAccRuleQosTos
can be specified with dAclExpertAccRuleQosDscp at same time in a
row."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 24 }
dAclExpertAccRuleIcmpType OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the type of ICMP protocol.
If the value is -1, it means the value is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclExpertAccRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 25 }
dAclExpertAccRuleIcmpCode OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the code of ICMP protocol.
If the value is -1, it means the value is not specified.
This object is used for ICMP protocol only, hence when the object
'dAclExpertAccRuleProtocol' is set to other than ICMP, the object has
to be -1."
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 26 }
dAclExpertAccRuleTimeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the name of time-period profile associated with the
access-list delineating its activation period.
The value 'NULL' means that this rule is not bound with any Time
mechanism."
::= { dAclExpertAccessRuleEntry 27 }
dAclExpertAccRuleTcpFlag OBJECT-TYPE
SYNTAX TcpFlag
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the TCP flag fields.
This node is available only for TCP protocol.
The default value for this node is empty set, which means no TCP flag
values are set.
"
::= { dAclExpertAccessRuleEntry 28 }
dAclExpertAccRuleFragments OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Packet fragment filtering status
is enabled('true') or disabled('false')."
::= { dAclExpertAccessRuleEntry 29 }
dAclExpertAccRuleOuterCos OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of inner priority.
The value of -1 means the value is not specified or not applicable.
"
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 30 }
dAclExpertAccRuleInnerCos OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the value of inner priority, the node is availabe just for the
node dAclExpertAccRuleOuterCos be specified.
The value of -1 means the value is not specified or not applicable.
"
DEFVAL { -1 }
::= { dAclExpertAccessRuleEntry 31 }
dAclExpertAccRuleUserDefProtocolMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for protocol ID defined by dAclExpertAccRuleUserDefProtocol.
Valid values are from 0x00 to 0xFF.
Default value is 0xFF.
This node is valid only for the dAclExpertAccRuleUserDefProtocol specified."
::= { dAclExpertAccessRuleEntry 32 }
dAclExpertAccRuleSrcPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 source port defined by dAclExpertAccRuleSrcPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclExpertAccRuleSrcOperator in the
same row is 'mask(7)'.
"
::= { dAclExpertAccessRuleEntry 33 }
dAclExpertAccRuleDstPortMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for L4 destination port defined by dAclExpertAccRuleDstPort.
Valid values are from 0x0 to 0xFFFF.
Default value is 0xFFFF.
This object only can be configured dAclExpertAccRuleDstOperator in the
same row is 'mask(7)'."
::= { dAclExpertAccessRuleEntry 34 }
dAclExpertAccRuleVlanIDMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for VLAN ID defined by dAclExpertAccRuleVlanID.
Valid values are from 0x0000 to 0x0FFF.
This node and dAclExpertAccRuleVlanRangeMin/dAclExpertAccRuleVlanRangeMax
cannot be specified at same time in a row.
Default value is 0x0FFF.
This node is valid only for the dAclExpertAccRuleVlanID specified."
::= { dAclExpertAccessRuleEntry 35 }
dAclExpertAccRuleInnerVlanIDMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(2))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for inner VLAN ID defined by dAclExpertAccRuleInnerVlanID.
Valid values are from 0x0000 to 0x0FFF.
Default value is 0x0FFF.
This node is valid only for the dAclExpertAccRuleInnerVlanID specified."
::= { dAclExpertAccessRuleEntry 36 }
dAclExpertAccRuleQosPrecedenceMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for ip precedence defined by dAclExpertAccRuleQosPrecedence.
Valid values are from 0x0 to 0x7.
Default value is 0x7.
This node is valid only for the dAclExpertAccRuleQosPrecedence specified."
::= { dAclExpertAccessRuleEntry 37 }
dAclExpertAccRuleQosTosMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for type of service defined by dAclExpertAccRuleQosTos.
Valid values are from 0x0 to 0xF.
Default value is 0xF.
This node is valid only for the dAclExpertAccRuleQosTos specified."
::= { dAclExpertAccessRuleEntry 38 }
dAclExpertAccRuleQosDscpMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for DSCP code defined by dAclExpertAccRuleQosDscp.
Valid values are from 0x0 to 0x3F.
Default value is 0x3F.
This node is valid only for the dAclExpertAccRuleQosDscp specified."
::= { dAclExpertAccessRuleEntry 39 }
dAclExpertAccRuleOuterCosMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for priority defined by dAclExpertAccRuleOuterCos.
Valid values are from 0x00 to 0x07.
Default value is 0x07.
This node is valid only for the dAclExpertAccRuleOuterCos specified."
::= { dAclExpertAccessRuleEntry 40 }
dAclExpertAccRuleInnerCosMask OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the mask for inner priority defined by dAclExpertAccRuleInnerCos.
Valid values are from 0x00 to 0x07.
Default value is 0x07.
This node is valid only for the dAclExpertAccRuleInnerCos specified."
::= { dAclExpertAccessRuleEntry 41 }
dAclExpertAccRuleVlanRangeMin OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the minimum outer VLAN ID of a VLAN range. A value of zero
indicates the VLAN range is not specified.
This node and dAclMacAccessRuleVlanID/dAclMacAccessRuleVlanIDMask cannot
be specified at same time in a row.
This node is valid only for the dAclExpertAccRuleVlanRangeMax specified."
DEFVAL { 0 }
::= { dAclExpertAccessRuleEntry 42 }
dAclExpertAccRuleVlanRangeMax OBJECT-TYPE
SYNTAX VlanIdOrNone
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifies the maximum outer VLAN ID of a VLAN range. A value of zero
indicates the VLAN range is not specified.
This node and dAclMacAccessRuleVlanID/dAclMacAccessRuleVlanIDMask cannot
be specified at same time in a row.
This node is valid only for the dAclExpertAccRuleVlanRangeMin specified."
DEFVAL { 0 }
::= { dAclExpertAccessRuleEntry 43 }
-- -----------------------------------------------------------------------------
dAclExpertAccessGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclExpertAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table represents a list of extended expert access group
configuration."
::= { dAclExpert 4 }
dAclExpertAccessGroupEntry OBJECT-TYPE
SYNTAX DAclExpertAccessGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dAclExpertAccessGroupTable contains interface specific
extended expert access list association."
INDEX { dAclExpertAccessGroupIfIndex , dAclExpertAccessGroupApplyDirection }
::= { dAclExpertAccessGroupTable 1 }
DAclExpertAccessGroupEntry ::= SEQUENCE {
dAclExpertAccessGroupIfIndex InterfaceIndex,
dAclExpertAccessGroupApplyDirection INTEGER,
dAclExpertAccessGroupRowStatus RowStatus,
dAclExpertAccessGroupAclName DisplayString,
dAclExpertAccessGroupAclId Integer32
}
dAclExpertAccessGroupIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the ifIndex of the interface.
Only physical port is valid interface."
::= { dAclExpertAccessGroupEntry 1 }
dAclExpertAccessGroupApplyDirection OBJECT-TYPE
SYNTAX INTEGER{
inbound(1),
outbound(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether this ACL access list is to be attached to ingress or egress direction."
::= { dAclExpertAccessGroupEntry 2 }
dAclExpertAccessGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclExpertAccessGroupEntry 3 }
dAclExpertAccessGroupAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the Expert access list to be applied."
::= { dAclExpertAccessGroupEntry 4 }
dAclExpertAccessGroupAclId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ID of the Expert access list to be applied.
User maybe specify access list ID(by this object) or name (by
dAclExpertAccessGroupAclName) to be applied. If both access list
ID and name are specified, the access list name specified by
dAclExpertAccessGroupAclName will be take.
"
::= { dAclExpertAccessGroupEntry 5 }
-- -----------------------------------------------------------------------------
dAclVlan OBJECT IDENTIFIER ::= { dAclMIBObjects 6 }
dAclVlanSubMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclVlanSubMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains a list of sub-map configuration. The first
instance identifier index value (dAclVlanAccMapName) identifies the
entry(dAclVlanSubMapEntry) belongs to.
A VLAN access map can contain multiple sub-maps, the packet that
matches a sub-map (that is packet permitted by the associated
access-list) will take the action specified for the same entry.
No further check against the next sub-maps is done.
If the packet does not match a sub-map, then the next sub-map will
be checked. The checking sequence is determined by the value of
dAclVlanAccSubMapSeq for a same VLAN acess map."
::= { dAclVlan 1}
dAclVlanSubMapEntry OBJECT-TYPE
SYNTAX DAclVlanSubMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclVlanSubMapTable.
"
INDEX {
dAclVlanAccMapName,
dAclVlanAccSubMapSeq
}
::= { dAclVlanSubMapTable 1 }
DAclVlanSubMapEntry ::= SEQUENCE {
dAclVlanAccMapName DisplayString,
dAclVlanAccSubMapSeq Integer32,
dAclVlanAccSubMapRowStatus RowStatus,
dAclVlanAccSubMapMatchAclName DisplayString,
dAclVlanAccessSubMapAction INTEGER,
dAclVlanAccSubMapRedirectIfIndex InterfaceIndexOrZero,
dAclVlanAccSubMapMatchAclId Integer32
}
dAclVlanAccMapName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used to specify the name of an VLAN
acess map."
::= { dAclVlanSubMapEntry 1 }
dAclVlanAccSubMapSeq OBJECT-TYPE
SYNTAX Integer32 ( 0 | 1..65535 )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the sequence number of a VLAN access rule.
The value range is 1 to 65535.
The value of 0 indicates the number is not specified and
sequence number will be automatically assigned.
"
::= { dAclVlanSubMapEntry 2 }
dAclVlanAccSubMapRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclVlanSubMapEntry 3 }
dAclVlanAccSubMapMatchAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of MAC/IP/IPv6 ACL
which will be associated."
::= { dAclVlanSubMapEntry 4 }
dAclVlanAccessSubMapAction OBJECT-TYPE
SYNTAX INTEGER {
none(1),
forward(2),
drop(3),
redirect(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the action when the packet that matches
a sub-map (that is packet permitted by the associated access-list). "
::= { dAclVlanSubMapEntry 5 }
dAclVlanAccSubMapRedirectIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates ifIndex of the interface the packet will be
redirected.
When the dAclVlanAccessAction in the same row
is set to other than 'redirect', the object has to be zero,
which indicates the redirected interface is not specified or not
applicable."
::= { dAclVlanSubMapEntry 6 }
dAclVlanAccSubMapMatchAclId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the ID of MAC/IP/IPv6 ACL access list
which will be associated.
User may specify access list ID(by this object) or name (by
dAclVlanAccSubMapMatchAclName) to be applied. If both access list
ID and name are specified, the access list name specified by
dAclVlanAccSubMapMatchAclName will be take.
"
::= { dAclVlanSubMapEntry 7 }
-- -----------------------------------------------------------------------------
dAclVlanFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclVlanFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table represents a list of VLAN access map configuration."
::= { dAclVlan 2 }
dAclVlanFilterEntry OBJECT-TYPE
SYNTAX DAclVlanFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in dAclVlanFilterTable contains vlan-specific
VLAN access map association."
INDEX { dAclVlanFilterVlanId }
::= { dAclVlanFilterTable 1 }
DAclVlanFilterEntry ::= SEQUENCE {
dAclVlanFilterVlanId VlanId,
dAclVlanFilterRowStatus RowStatus,
dAclVlanFilterVlanAccMapName DisplayString
}
dAclVlanFilterVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the VLAN ID of the entry. "
::= { dAclVlanFilterEntry 1 }
dAclVlanFilterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable, used according to installation
and removal conventions for conceptual rows."
::= { dAclVlanFilterEntry 2 }
dAclVlanFilterVlanAccMapName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the access list to be applied for the VLAN.
NULL value indicates the access list is not specified."
::= { dAclVlanFilterEntry 3 }
-- -----------------------------------------------------------------------------
dAclVlanAccessMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclVlanAccessMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains a list of VLAN access map configuration. "
::= { dAclVlan 3}
dAclVlanAccessMapEntry OBJECT-TYPE
SYNTAX DAclVlanAccessMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclVlanAccessMapTable.
"
INDEX {
dAclVlanAccMapName
}
::= { dAclVlanAccessMapTable 1 }
DAclVlanAccessMapEntry ::= SEQUENCE {
dAclVlanAccessMapCounterEnabled TruthValue,
dAclVlanAccessMapClearStatAction INTEGER
}
dAclVlanAccessMapCounterEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the counter state of the VLAN access map
is enabled('true') or disabled('false').
The counter state setting just for the all VLAN interface that applied
the access map in dAclVlanFilterTable."
::= { dAclVlanAccessMapEntry 1 }
dAclVlanAccessMapClearStatAction OBJECT-TYPE
SYNTAX INTEGER{
clear(1),
noOp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to clear statistics of the VLAN access map
when set to 'clear'. No action is taken if this object is set to 'noOp'.
The 'clear' action just for the all entry that applied the VLAN
access map in dAclVlanFilterTable.
When read, the value 'noOp' is returned."
::= { dAclVlanAccessMapEntry 2 }
-- -----------------------------------------------------------------------------
dAclCounter OBJECT IDENTIFIER ::= { dAclMIBObjects 7 }
dAclAccessGroupCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclAccessGroupCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table maintains counter information associated with
a specific access list rule in the access rule table.
Please refer to the dAclMacAccessRuleTable, dAclIpAccessRuleTable,
dAclIPv6AccessRuleTable and dAclExpertAccessRuleTable for
detailed ACL rule information.
"
::= { dAclCounter 1}
dAclAccessGroupCounterEntry OBJECT-TYPE
SYNTAX DAclAccessGroupCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclAccessGroupCounterTable.
"
INDEX {
dAclAccessGroupCounterAccListId,
dAclAccessGroupCounterAccRuleSn
}
::= { dAclAccessGroupCounterTable 1 }
DAclAccessGroupCounterEntry ::= SEQUENCE {
dAclAccessGroupCounterAccListId Integer32,
dAclAccessGroupCounterAccRuleSn Integer32,
dAclAccessGroupCounterIngressStat Counter64,
dAclAccessGroupCounterEgressStat Counter64
}
dAclAccessGroupCounterAccListId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ID of an access list which access group counter enabled.
the access list was defined by the tables:
dAclMacAccessListTable, dAclIpAccessListTable,
dAclIPv6AccessListTable, dAclExpertAccessListTable."
::= { dAclAccessGroupCounterEntry 1 }
dAclAccessGroupCounterAccRuleSn OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the sequence number of this rule entry as related to the
dAclAccessGroupCounterAccListId."
::= { dAclAccessGroupCounterEntry 2 }
dAclAccessGroupCounterIngressStat OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of matched packets for the access rule
applied on inbound of all interface in dAclMacAccessGroupTable,
dAclIpAccessGroupTable, dAclIPv6AccessGroupTable, or
dAclExpertAccessGroupTable.
"
::= { dAclAccessGroupCounterEntry 3 }
dAclAccessGroupCounterEgressStat OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of matched packets for the access rule
applied on outbound of all interface in dAclMacAccessGroupTable,
dAclIpAccessGroupTable, dAclIPv6AccessGroupTable, or
dAclExpertAccessGroupTable.
"
::= { dAclAccessGroupCounterEntry 4 }
-- -----------------------------------------------------------------------------
dAclVlanFilterCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF DAclVlanFilterCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table maintains counter information associated with
a specific access sub map in the dAclVlanSubMapTable.
"
::= { dAclCounter 2}
dAclVlanFilterCounterEntry OBJECT-TYPE
SYNTAX DAclVlanFilterCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry is defined dAclVlanFilterCounterTable.
"
INDEX {
dAclVlanFilterCounterAccMapName,
dAclVlanFilterCounterSubMapSeq
}
::= { dAclVlanFilterCounterTable 1 }
DAclVlanFilterCounterEntry ::= SEQUENCE {
dAclVlanFilterCounterAccMapName DisplayString,
dAclVlanFilterCounterSubMapSeq Integer32,
dAclVlanFilterCounterStatistics Counter64
}
dAclVlanFilterCounterAccMapName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of a VLAN access map which counter enabled. the VLAN
access map was defined by the dAclVlanSubMapTable.
"
::= { dAclVlanFilterCounterEntry 1 }
dAclVlanFilterCounterSubMapSeq OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the sequence number of a VLAN access sub map. the vlan
sub map sequence number was defined by the dAclVlanSubMapTable."
::= { dAclVlanFilterCounterEntry 2 }
dAclVlanFilterCounterStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of matched packets for the
sub map that applied on all VLAN interface in dAclVlanFilterTable."
::= { dAclVlanFilterCounterEntry 3 }
-- ***************************************************************************
-- Conformance
-- ***************************************************************************
dAclCompliances OBJECT IDENTIFIER ::= { dAclMIBConformance 1 }
dAclCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement the
DLINKSW-ACL-MIB."
MODULE -- this module
MANDATORY-GROUPS {
dAclGenGroup,
dAclMacGroup,
dAclIpGroup
}
GROUP dAclIPv6Group
DESCRIPTION
"This group is required only if the IPv6 access list feature
is implemented by the agent."
GROUP dAclExpertGroup
DESCRIPTION
"This group is required only if the extended expert access list
feature is implemented by the agent."
GROUP dAclVlanFilterGroup
DESCRIPTION
"This group is required only if vlan filter feature is implemented
by the agent."
::= { dAclCompliances 1 }
dAclGroups OBJECT IDENTIFIER ::= { dAclMIBConformance 2 }
dAclGenGroup OBJECT-GROUP
OBJECTS {
dAclReSeqStartingNumber, dAclReSeqIncrement
}
STATUS current
DESCRIPTION
"A collection of objects providing general access list configuration."
::= { dAclGroups 1 }
dAclMacGroup OBJECT-GROUP
OBJECTS {
dAclMacAccessListNumber, dAclMacAccessListRowStatus,
dAclMacAccessListId, dAclMacAccessListCounterEnabled,
dAclMacAccessListClearStatAction,dAclMacAccessListRemark,
dAclMacAccessRuleRowStatus, dAclMacAccessRuleAction,
dAclMacAccessRuleSrcMacAddr, dAclMacAccessRuleSrcMacWildcard,
dAclMacAccessRuleDstMacAddr, dAclMacAccessRuleDstMacWildcard,
dAclMacAccessRulePacketType, dAclMacAccessRuleEthernetType,
dAclMacAccessRuleLlcDSAP, dAclMacAccessRuleLlcSSAP,
dAclMacAccessRuleLlcCntl,
dAclMacAccessRuleDot1p, dAclMacAccessRuleInnerDot1p,
dAclMacAccessRuleVlanID, dAclMacAccessRuleInnerVlanID,
dAclMacAccessRuleTimeName,
dAclMacAccessGroupRowStatus,
dAclMacAccessGroupAclName,dAclMacAccessGroupAclId
}
STATUS current
DESCRIPTION
"A collection of objects providing MAC access list configuration."
::= { dAclGroups 2 }
dAclIpGroup OBJECT-GROUP
OBJECTS {
dAclIpAccessListNumber, dAclIpAccessListRowStatus,
dAclIpAccessExtended, dAclIpAccessListId,
dAclIpAccessListCounterEnabled, dAclIpAccessListClearStatAction,
dAclIpAccessListRemark,
dAclIpAccessRuleRowStatus, dAclIpAccessRuleAction,
dAclIpAccessRuleProtocol, dAclIpAccessRuleUserDefProtocol,
dAclIpAccessRuleSrcAddr, dAclIpAccessRuleSrcWildcard,
dAclIpAccessRuleDstAddr, dAclIpAccessRuleDstWildcard,
dAclIpAccessRuleSrcOperator, dAclIpAccessRuleSrcPort,
dAclIpAccessRuleSrcPortRange,
dAclIpAccessRuleDstOperator, dAclIpAccessRuleDstPort,
dAclIpAccessRuleDstPortRange,
dAclIpAccessRuleQosPrecedence, dAclIpAccessRuleQosTos,
dAclIpAccessRuleQosDscp,
dAclIpAccessRuleIcmpType, dAclIpAccessRuleIcmpCode,
dAclIpAccessRuleTimeName, dAclIpAccRuleTcpFlag,
dAclIpAccRuleFragments,
dAclIpAccessGroupStatus,
dAclIpAccessGroupAclName, dAclIpAccessGroupAclId
}
STATUS current
DESCRIPTION
"A collection of objects providing IP access list configuration."
::= { dAclGroups 3 }
dAclIPv6Group OBJECT-GROUP
OBJECTS {
dAclIPv6AccessListNumber, dAclIPv6AccessListRowStatus,
dAclIPv6AccessExtended, dAclIPv6AccessListId,
dAclIPv6AccessListCounterEnabled,
dAclIPv6AccessListClearStatAction,
dAclIPv6AccessListRemark,
dAclIPv6AccessRuleRowStatus, dAclIPv6AccessRuleAction,
dAclIPv6AccessRuleProtocol, dAclIPv6AccessRuleUserDefProtocol,
dAclIPv6AccessRuleSrcAddr, dAclIPv6AccessRuleSrcPrefixLen,
dAclIPv6AccessRuleDstAddr, dAclIPv6AccessRuleDstPrefixLen,
dAclIPv6AccessRuleSrcOperator, dAclIPv6AccessRuleSrcPort,
dAclIPv6AccessRuleSrcPortRange,
dAclIPv6AccessRuleDstOperator, dAclIPv6AccessRuleDstPort,
dAclIPv6AccessRuleDstPortRange,
dAclIPv6AccessRuleDscp,
dAclIPv6AccessRuleIcmpType, dAclIPv6AccessRuleIcmpCode,
dAclIPv6AccessRuleTimeName,
dAclIPv6AccessGroupStatus,
dAclIPv6AccessGroupAclName,dAclIPv6AccessGroupAclId,
dAclIPv6AccRuleTcpFlag,
dAclIPv6AccRuleFragments,
dAclIPv6AccRuleFlowLabel
}
STATUS current
DESCRIPTION
"A collection of objects providing IPv6 access list configuration."
::= { dAclGroups 4 }
dAclExpertGroup OBJECT-GROUP
OBJECTS {
dAclExpertAccessListNumber, dAclExpertAccessListRowStatus,
dAclExpertAccessListId, dAclExpertAccessListCounterEnabled,
dAclExpertAccessListClearStatAction, dAclExpertAccessListRemark,
dAclExpertAccRuleRowStatus, dAclExpertAccRuleAction,
dAclExpertAccRuleProtocol, dAclExpertAccRuleUserDefProtocol,
dAclExpertAccRuleSrcIpAddr, dAclExpertAccRuleSrcIpWildcard,
dAclExpertAccRuleSrcMacAddr, dAclExpertAccRuleSrcMacWildcard,
dAclExpertAccRuleSrcOperator, dAclExpertAccRuleSrcPort,
dAclExpertAccRuleSrcPortRange,
dAclExpertAccRuleDstIpAddr, dAclExpertAccRuleDstIpWildcard,
dAclExpertAccRuleDstMacAddr, dAclExpertAccRuleDstMacWildcard,
dAclExpertAccRuleDstOperator, dAclExpertAccRuleDstPort,
dAclExpertAccRuleDstPortRange,
dAclExpertAccRuleVlanID, dAclExpertAccRuleInnerVlanID,
dAclExpertAccRuleQosPrecedence, dAclExpertAccRuleQosTos,
dAclExpertAccRuleQosDscp,
dAclExpertAccRuleIcmpType, dAclExpertAccRuleIcmpCode,
dAclExpertAccRuleTimeName,
dAclExpertAccessGroupRowStatus,
dAclExpertAccessGroupAclName,dAclExpertAccessGroupAclId,
dAclExpertAccRuleTcpFlag,
dAclExpertAccRuleFragments,
dAclExpertAccRuleOuterCos,
dAclExpertAccRuleInnerCos
}
STATUS current
DESCRIPTION
"A collection of objects providing extended expert access list configuration."
::= { dAclGroups 5 }
dAclVlanFilterGroup OBJECT-GROUP
OBJECTS {
dAclVlanAccSubMapRowStatus, dAclVlanAccSubMapMatchAclName,
dAclVlanAccessSubMapAction, dAclVlanAccSubMapRedirectIfIndex,
dAclVlanFilterRowStatus, dAclVlanFilterVlanAccMapName,
dAclVlanAccSubMapMatchAclId, dAclVlanAccessMapCounterEnabled,
dAclVlanAccessMapClearStatAction
}
STATUS current
DESCRIPTION
"A collection of objects providing VLAN access map configuration."
::= { dAclGroups 6 }
dAclCounterGroup OBJECT-GROUP
OBJECTS {
dAclAccessGroupCounterIngressStat,
dAclAccessGroupCounterEgressStat,
dAclVlanFilterCounterStatistics
}
STATUS current
DESCRIPTION
"A collection of objects providing ACL counter information."
::= { dAclGroups 7 }
END
|