1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
|
LINKSYS-POLICY-MIB DEFINITIONS ::= BEGIN
-- Title: LINKSYS POLICY MIB
-- Version: 7.46
-- Date: 04 Jan 2007
--
-- 07-Oct-2003 Added to RlPolicyQosMode service
-- 07-Oct-2003 Added rlPolicyRulesDownloadMarker
-- 07-Oct-2003 Added rlPolicyDscpVptTable
-- 27-Jan-2005 Added cos-dscp to RlPolicyTrustTypes
-- 07-Feb-2005 Added rlPolicyFlowClassificationOffsetsGroupUseVPTId and
-- rlPolicyFlowClassificationOffsetsGroupUseEtherTypeId To
-- rlPolicyFlowClassificationOffsetsTable
-- Added rlPolicyClassifierVPTID And
-- rlPolicyClassifierEtherTypeID To
-- rlPolicyClassifierTable
-- Added Vpt and Ethertype support to rlPolicyClassifierAdditionalCriteriaSupported
-- 14-Mar-2005 Added rlPolicyPortCfgPortRateLimitStatus,rlPolicyPortCfgCirPortRateLimit
-- rlPolicyPortCfgCbsPortRateLimit to rlPolicyPortConfigurationTable
-- 14-Apr-2005 Added rlPolicyDefaultForwardingProtocol to rlPolicyDefaultForwardingTable
-- 17-Apr-2005 Added rlPolicyDscpToDpTable
-- 29-May-2005 Changed default value of rlPolicyClassifierEtherTypeID to 1501 (=minimum etherType value)
-- 08-Apr-2006 Added branch rlPolicyStatistics and following tables:
-- 20-May-2006 Added branch rlPolicyClassifierUtilization
-- 08-May-2006 Added rlPolicyFlowClassificationOffsetsGroupUseInnerVlanId To rlPolicyFlowClassificationOffsetsTable
-- Added rlPolicyClassifierInnerVID To rlPolicyClassifierTable
-- Added Inner vlan id support to rlPolicyClassifierAdditionalCriteriaSupported
-- 05-Jul-2006 Added rlPolicyVlanConfigurationTable
-- 18-Sep-2006 Added rlPolicyIsTCAvailable scalar
-- 04-Jan-2007 Added the new fields rlPolicyRulesTimeRange1 and rlPolicyRulesTimeRange2
-- Added subnote rlPolicyTimeBasedAcl
-- 23-Apr-2007 Added IPv6 ACL support
-- 09-Jul-2008 Change range of rlPolicyClassifierEtherTypeID to support virtual
-- IPv4 and IPv6 ethertypes (originated from IP/IPv6 ACL rule of
-- "permit/deny any any any" and not from ethertype field in MAC ACL)
-- 18-Jan-2008 Add rlPolicyClassifierUtilizationRulesNumber to rlPolicyClassifierUtilizationEntry
-- 01-Jun-2009 Added the new fields rlPolicyRulesSrcPortRangeStart, rlPolicyRulesSrcPortRangeEnd,
-- rlPolicyRulesDestPortRangeStart, rlPolicyRulesDestPortRangeEnd
-- 18-Aug-2009 Removed Time Based Tables : code moved to general TimeBasedInfrastrucure
-- 19-Jan-2011 Removed 3rd party mentions
IMPORTS
OBJECT-TYPE, IpAddress, Unsigned32,Counter32, zeroDotZero,
MODULE-IDENTITY,Counter64 FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TruthValue, RowStatus,
RowPointer, DisplayString FROM SNMPv2-TC
InterfaceIndexOrZero, InterfaceIndex FROM IF-MIB
diffServClassifierEntry FROM DIFF-SERV-MIB
Percents, VlanPriority, rnd FROM LINKSYS-MIB
PortList, VlanId FROM Q-BRIDGE-MIB
VlanList1, VlanList2, VlanList3, VlanList4 FROM LINKSYS-BRIDGEMIBOBJECTS-MIB;
InterfaceType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Interface type."
SYNTAX INTEGER {
vlan(1),
port(2)
}
StatisticsCntrNumOfBitsType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The counter can be of different sizes - 32 bit, 48 bit, 64 bit. Maximum is 64."
SYNTAX INTEGER {
uint32(32),
uint48(48),
uint64(64)
}
StatisticsDPType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Drop preceedence type."
SYNTAX INTEGER {
green(1),
yellow(2),
red(3)
}
StatisticsClearActionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Clear action, value for clear scalar."
SYNTAX INTEGER {
noaction(1),
action(2)
}
StatisticsCntrType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The counter can be of different types, depends on actions adhered to
rules that the counter is working on."
SYNTAX INTEGER {
statisticsCntrTypeSetDSCP(1),
statisticsCntrTypeDeny(2)
}
rlPolicy MODULE-IDENTITY
LAST-UPDATED "200606260000Z"
ORGANIZATION "Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"The private MIB module definition generic traffic policy in Linksys devices."
REVISION "200503140000Z"
DESCRIPTION
"Initial V2 version of this MIB."
REVISION "200502070000Z"
DESCRIPTION
"Added rlPolicyPortCfgPortRateLimitStatus,rlPolicyPortCfgCirPortRateLimit
rlPolicyPortCfgCbsPortRateLimit to rlPolicyPortConfigurationTable"
REVISION "200501270000Z"
DESCRIPTION
"Added rlPolicyFlowClassificationOffsetsGroupUseVPTId and
rlPolicyFlowClassificationOffsetsGroupUseEtherTypeId To
rlPolicyFlowClassificationOffsetsTable
Added rlPolicyClassifierVPTID And
rlPolicyClassifierEtherTypeID To
rlPolicyClassifierTable
Added Vpt and Ethertype support to rlPolicyClassifierAdditionalCriteriaSupported
Added rlPolicyFlowClassificationOffsetsGroupUseInnerVlanId To
rlPolicyFlowClassificationOffsetsTable
Added rlPolicyClassifierInnerVID To
rlPolicyClassifierTable
Added Inner vlan id support to rlPolicyClassifierAdditionalCriteriaSupported"
REVISION "200310070000Z"
DESCRIPTION
"Added cos-dscp to RlPolicyTrustTypes."
REVISION "200309220000Z"
DESCRIPTION
"Add to RlPolicyQosMode service ,Add rlPolicyRulesDownloadMarker,Added rlPolicyDscpVptTable ."
REVISION "200504140000Z"
DESCRIPTION
"Added rlPolicyDefaultForwardingProtocol to rlPolicyDefaultForwardingTable"
REVISION "200504170000Z"
DESCRIPTION
"Added rlPolicyDscpToDpTable"
REVISION "200604080000Z"
DESCRIPTION
"Added branch rlPolicyStatistics"
REVISION "200605200000Z"
DESCRIPTION
"Added branch rlPolicyClassifierUtilization"
REVISION "200606260000Z"
DESCRIPTION
"Added rlPolicyVlanConfigurationTable"
::= { rnd 59 }
RlPolicyGroupType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 3 classifier types for which offset bytes can
be specified. For Ip and Ipx, the offsets indicated are relative
to the beginning of the L3 data (IP options field is skipped). For
the Bridged type, the offsets are relative to L2 (and any 802.1D tag
is skipped).
A value of notUsed is applied, if the classifier uses one set of
offsets for bridge, IP and IPX"
SYNTAX INTEGER {
bridged(1),
routedIp(2),
routedIpx(3),
notUsed(4)
}
RlPolicyClassifierDiffservIfType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies port's type to which a classifier is applied. It is
only used for the DiffServ mode. For the non-DiffServ mode
the normal value may be used."
SYNTAX INTEGER {
normal(1),
allBoundaryPorts(2),
allInteriorPorts(3)
}
RlPolicyTrustTypes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Configure the port trust state
cos - Classifies ingress packets with the packet CoS values.
For untagged packets, the port default CoS is used.
dscp - Classifies ingress packets with the packet DSCP values.
For non-ip tagged packets, the packet CoS value is used
with the Cos-to-DSCP table .For non-IP untagged packets,
the default port CoS is used with the Cos-to-DSCP table
tcp-udp - v750 deprecated.
port to dscp - Classifies ingress packets with the packet
destination port values. For non-ip tagged packets, the packet CoS
value is used with the Cos-to-DSCP table. For non-IP untagged packets,
the default port CoS is used with the Cos-to-DSCP table.
none - v750 deprecated.
802.1p is disabled for this port and the packet gets best effort queue.
cos-dscp- Classifies ingress packets with the packet DSCP values.
For non-ip tagged packets, the packet CoS value is used
with the Cos-to-Queue table .For non-IP untagged packets,
the default port CoS is used with the Cos-to-Queue table
"
SYNTAX INTEGER {
cos(1),
dscp(2),
--v750 deprecated tcp-udp(3),
--v750 deprecatd - implemented by "disable mode" in globalQosMode none(4),
cos-dscp(3)
}
RlPolicyQosMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The user can set the system to operate either in the Basic mode or in the Advanced mode.
The setting of the mode applies to all ports in the system.
configuring the system to work in the advanced mode,
all setting for the basic mode are not in affect.
For example, 802.1p is not available when operating in the advanced mode.
When changing from basic mode to advanced mode and then back to basic mode,
the user assignments in the basic mode are restored.
Same for moving from advanced to basic and back again to advanced mode,
here again the user assignments are kept.
The different modes are mutually exclusive, i.e., only one can be
active at a given time. For example, when configuring the system to work
in the advanced mode, all setting for the basic mode are not in affect.
This means that 802.1p is not available when operating in the advanced mode.
When changing between modes (Basic, Advanced, Service, none), some of
the user settings are reset to their default values. Specifically:
1. When changing from the advanced mode to any other mode,
the CCL definitions are lost.
2. When changing from any mode to any other mode, the interface assignments:
associated Policy map, trust mode of the Basic mode, shaper and scheduler
settings are lost.
3. When changing from service mode to any other mode, all service mode
settings are lost.
4. When changing to service mode, ACL are lost. The user is prompted if
he wants to whether to import his active ACLs to the service mode.
5. All other user configurations are kept.
When the system is configured to the Basic mode and the user changes the
trust mode, the CCL assignment per port and the shaper settings are reset
to their default values."
SYNTAX INTEGER {
disable(1),
basic(2),
advanced(3)
}
L4ProtType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"specify to Layer 4 protocol type for which the port number will refer
at the rlPolicyTcpUdpPortDscpTable."
SYNTAX INTEGER {
tcp(1),
udp(2)
}
RlPolicyTimeBasedAclWeekPeriodicList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Bitmap that includes days of week.
Each bit in the bitmap associated with corresponding day of the week."
SYNTAX BITS {
monday(0),
tuesday(1),
wednesday(2),
thursday(3),
friday(4),
saturday(5),
sunday(6)
}
RlPolicyRulesActionDropType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The Action Drop Type."
SYNTAX INTEGER {
hardDrop(1),
softDrop(2)
}
RlPolicyMarkVlanAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the mark vlan action type in the class map table.
1 - noMark - No vlan marking
2 - mark - mark vlan tagged.
3 - markNestedVlan - add vlan tag to the packet. "
SYNTAX INTEGER {
noMark(1),
mark(2),
markNestedVlan(3)
}
RlPolicyRedirectAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies the packet redirection options.
Redirection is applied only on permitted packets.
1 - disabled - no redirect
2 - trap - trap to local_host (CPU)
3 - redirectToInterface - redirect to a output interface (port, trunk or vlan)
4 - redirectToAllPorts - redirect to all ports, exept the ingress port.
5 - mirror - forward the packet and sent a copy to local_host (CPU)
6 - analyzerPort - forward the packet and sent a copy to egress port.
7 - loopback - redirect the packet the the port it was recieved.
8 - redirectToPortGroup - send to group of ports, defined in rlUserAssignedVidxTable table.
9 - mirror_and_redirectToInterface - send the packet to interface and send a copy to local_host(CPU)
10 -mirror_and_redirectToInterfacesGroup - send the packet to group of ports and send a copy to local_host(CPU) "
SYNTAX INTEGER {
disabled(1),
trap(2),
redirectToInterface(3),
redirectToAllPorts(4),
mirror(5),
analyzerPort(6),
loopback(7),
redirectToPortGroup(8),
mirrorAndRedirectToInterface(9),
mirrorAndRedirectToInterfacesGroup(10)
}
rlPolicyMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 14
1 - original version
2 - two new fields
rlPolicyActionChangeDscpNonConform
rlPolicyActionNewDscpNonConform
were added.
3 - added support new policy features
QoS modes: basic and advanced
support for trusted mode operations
mapping tables for trusted ports
dscp, tcpUdp, mutation, remarking.
4 - I) added support to service mode.
II)DSCP to VPT mapping table
III) download marker
5 - Added cos-Dscp to RlPolicyTrustTypes
6 - Added rlPolicyFlowClassificationOffsetsGroupUseVPTId and
rlPolicyFlowClassificationOffsetsGroupUseEtherTypeId To
rlPolicyFlowClassificationOffsetsTable
Added rlPolicyClassifierVPTID And
rlPolicyClassifierEtherTypeID To
rlPolicyClassifierTable
Added Vpt and Ethertype support to rlPolicyClassifierAdditionalCriteriaSupported
7 - Added rlPolicyPortCfgPortRateLimitStatus,rlPolicyPortCfgCirPortRateLimit
rlPolicyPortCfgCbsPortRateLimit to rlPolicyPortConfigurationTable
8 - Added rlPolicyDefaultForwardingProtocol to rlPolicyDefaultForwardingTable
Added rlPolicyDscpToDpTable
9 - Add statistics
10 - Add classifier utilization
11 -Added rlPolicyFlowClassificationOffsetsGroupUseInnerVlanId To
rlPolicyFlowClassificationOffsetsTable
Added rlPolicyClassifierInnerVID To
rlPolicyClassifierTable
Added Inner vlan id support to rlPolicyClassifierAdditionalCriteriaSupported
12 - Added rlPolicyVlanConfigurationTable
13 - Added rlPolicyIsTCAvailable scalar
14 - Added rlPolicyCPUSafeGuardEnable"
::= { rlPolicy 1 }
-- Groups:
-- rlPolicyClassifier
-- rlPolicyRules
-- rlPolicyMeterClass
-- rlPolicyAction
-- rlPolicyServiceClass
-- rlPolicyDiffServ
-- rlPolicyMapping
-- rlPolicyGlobalParams
-- rlPolicyMapping
-- rlPolicyDefaultForwardingTable
-- rlPolicyStatistics
-- rlPolicyClassifierUtilization
--------------
-- Classifier
--
rlPolicyClassifier OBJECT IDENTIFIER ::= { rlPolicy 2 }
--
-- Platform parameters variables
--
rlPolicyClassifierPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyClassifier 1 }
rlPolicyFlowClassificationOffsetsGroupScheme OBJECT-TYPE
SYNTAX INTEGER {
allOffsetsPermitted(1),
singleFlowClassificationOffsetGroupsForIpIpxBridge(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Some platforms allow Policy statements to examine all packet
offsets(Opal); other platforms require specification of specific
byte offsets for routedIp packets, another set of offsets for
routedIpx, a third set for bridge."
::= { rlPolicyClassifierPlatDependParams 1 }
rlPolicyNumberOfOffsetsPerFlowClassificationOffsetGroup OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"For platforms which require an FCOG, indicates the maximum
number of byte offsets specifiable for each offset group."
::= { rlPolicyClassifierPlatDependParams 2 }
rlPolicyFlowClassificationOffsetGroupMaximumOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximum value of a byte offset in a
Flow Classification Offset Group. If 0, there is no limit."
::= { rlPolicyClassifierPlatDependParams 3 }
rlPolicyNumberOfOffsetsPerOmpcGroup OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates the maximum number of byte offsets
specifiable for each Ompc offset group."
::= { rlPolicyClassifierPlatDependParams 4 }
rlPolicyOmpcMaximumOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximum value of a byte offset in a
Ompc Group. If 0, there is no limit."
::= { rlPolicyClassifierPlatDependParams 5 }
rlPolicyOMPCPermittedOperators OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit mask indicating which operators are permissable in an OMPC:
----------
|87654321|
----------
1 - equal operator permitted
2 - not-equal operator permitted
3 - greater-than operator permitted
4 - less-than operator permitted"
::= { rlPolicyClassifierPlatDependParams 6 }
rlPolicyMaxOMPCLengthForBiggerSmallerOperation OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximal permissible length of an OMPC using
bigger' or 'smaller' condition. If 0, there is no limit."
::= { rlPolicyClassifierPlatDependParams 7 }
rlPolicyClassifierAdditionalCriteriaSupported OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A bit mask indicating which additional Criteria may be supported
by the classifier:
----------
|87654321|
----------
1 - input port supported
2 - output port supported
3 - VLAN ID for bridging supported
4 - VPT ID for bridging supported
5 - EtherType ID for bridging supported
6 - Inner VLAN ID for bridging supported"
::= { rlPolicyClassifierPlatDependParams 8 }
rlPolicyClassifierAdditionalCriteriaUsedInOffsetCount OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates whether the additional FCOG or Classifier criteria
(ie. inPort, outPort VID count towards the maximum number of offsets
ie. whether using inPort in the FCOG reduces the maximum number of
offsets available."
::= { rlPolicyClassifierPlatDependParams 9 }
rlPolicyClassifierPermittedOffsetTypes OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"A bit mask indicating which offset types are supported by the
platform for FCOG and OMPC definitions:
----------
|87654321|
----------
1 - L2 offsets supported
2 - L3 offsets supported"
::= { rlPolicyClassifierPlatDependParams 10 }
rlPolicyClassifierOMPCActions OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit mask indicating which operation could be performed with OPMC
----------
|87654321|
----------
1 - equal,
2 - notEqual,
3 - bigger,
4 - smaller."
::= { rlPolicyClassifierPlatDependParams 11 }
--
--Flow Classification Offsets Table
--
rlPolicyFlowClassificationOffsetsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyFlowClassificationOffsetsGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Specifies the byte offsets that the platform can use for
policy decisions. This table is used for platforms
which impose limitations on choosing the OMPCs for classification.
If the platform does not impose any limitations, the value of
rlPolicyFlowClassificationOffsetsGroupScheme is allOffsetsPermitted.
Each entry in the table specifies a combination of byte offsets
which can be used to specify flow classification. A rule may
use a subset of the bytes of its Offset Group.
The maximum value for each offset is given by
rlPolicyFlowClassificationOffsetGroupMaximumOffset.
The maximum number of offsets per Offset Group is given by
rlPolicyNumberOfOffsetsPerFlowClassificationOffsetGroup."
::= { rlPolicyClassifier 2 }
rlPolicyFlowClassificationOffsetsGroupEntry OBJECT-TYPE
SYNTAX RlPolicyFlowClassificationOffsetsGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The flow classification offset table entry includes the
following parameters"
INDEX { rlPolicyFlowClassificationOffsetsGroupType }
::= { rlPolicyFlowClassificationOffsetsTable 1 }
RlPolicyFlowClassificationOffsetsGroupEntry ::= SEQUENCE {
rlPolicyFlowClassificationOffsetsGroupType RlPolicyGroupType,
rlPolicyFlowClassificationOffsetsGroupOffset OBJECT IDENTIFIER,
rlPolicyFlowClassificationOffsetsGroupOffsetType OBJECT IDENTIFIER,
rlPolicyFlowClassificationOffsetsGroupMask OCTET STRING,
rlPolicyFlowClassificationOffsetsGroupUseInputInterface TruthValue,
rlPolicyFlowClassificationOffsetsGroupUseOutputInterface TruthValue,
rlPolicyFlowClassificationOffsetsGroupUseVlanId TruthValue,
rlPolicyFlowClassificationOffsetsGroupStatus RowStatus,
rlPolicyFlowClassificationOffsetsGroupUseVPTId TruthValue,
rlPolicyFlowClassificationOffsetsGroupUseEtherTypeId TruthValue,
rlPolicyFlowClassificationOffsetsGroupUseInnerVlanId TruthValue
}
rlPolicyFlowClassificationOffsetsGroupType OBJECT-TYPE
SYNTAX RlPolicyGroupType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies a classifier type for which offset bytes can be specified."
::= { rlPolicyFlowClassificationOffsetsGroupEntry 1 }
rlPolicyFlowClassificationOffsetsGroupOffset OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of offsets to be included in the Flow Classification Offset
Group are specified as subidentifiers in the OID(after the first 2
bytes which must be 1.1). The maximal number of permissible offsets
is given by rlPolicyNumberOfOffsetsPerFlowClassificationOffsetGroup.
The maximal value that an offset can have is
rlPolicyFlowClassificationOffsetGroupMaximumOffset."
::= { rlPolicyFlowClassificationOffsetsGroupEntry 2 }
rlPolicyFlowClassificationOffsetsGroupOffsetType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the corresponding byte denotes an offset from beginning
of L2, from the beginning of L3 IPv4 packet data or from the beginning
of L3 IPv6 packet data.
Each byte in the OID contains either:
(1) - L2 offset
(2) - L3 Offset
(3) - L3 IPv6 Offset"
::= { rlPolicyFlowClassificationOffsetsGroupEntry 3 }
rlPolicyFlowClassificationOffsetsGroupMask OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of masks corresponding to the offsets to be included in the
Flow Classification Offset Group are specified as bytes in the
OID(after the first 2 bytes which must be 1.1)."
::= { rlPolicyFlowClassificationOffsetsGroupEntry 4 }
rlPolicyFlowClassificationOffsetsGroupUseInputInterface OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the Input Interface Index is usable
in Policy Rule definitions."
::= { rlPolicyFlowClassificationOffsetsGroupEntry 5 }
rlPolicyFlowClassificationOffsetsGroupUseOutputInterface OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the Output Interface Index(ie.
routing/bridging decision) is usable in Policy Rule definitions"
::= { rlPolicyFlowClassificationOffsetsGroupEntry 6 }
rlPolicyFlowClassificationOffsetsGroupUseVlanId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the VlanId is usable in Policy Rule
definitions for bridged packets"
::= { rlPolicyFlowClassificationOffsetsGroupEntry 7 }
rlPolicyFlowClassificationOffsetsGroupStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyFlowClassificationOffsetsGroupEntry 8 }
rlPolicyFlowClassificationOffsetsGroupUseVPTId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the VPT is usable in Policy Rule
definitions for bridged packets"
DEFVAL{ false }
::= { rlPolicyFlowClassificationOffsetsGroupEntry 9 }
rlPolicyFlowClassificationOffsetsGroupUseEtherTypeId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the EtherType is usable in Policy Rule
definitions for bridged packets"
DEFVAL{ false }
::= { rlPolicyFlowClassificationOffsetsGroupEntry 10 }
rlPolicyFlowClassificationOffsetsGroupUseInnerVlanId OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the inner VlanId is usable in Policy Rule
definitions for bridged packets"
DEFVAL{ false }
::= { rlPolicyFlowClassificationOffsetsGroupEntry 11 }
--
-- Ompc Table
--
rlPolicyOMPCTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyOMPCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of OMPC statements."
::= { rlPolicyClassifier 3 }
rlPolicyOMPCEntry OBJECT-TYPE
SYNTAX RlPolicyOMPCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each classification statement consists of the following parameters"
INDEX { rlPolicyOMPCGroupType, rlPolicyOMPCIndex }
::= { rlPolicyOMPCTable 1 }
RlPolicyOMPCEntry ::= SEQUENCE {
rlPolicyOMPCGroupType RlPolicyGroupType,
rlPolicyOMPCIndex INTEGER,
rlPolicyOMPCOffset INTEGER,
rlPolicyOMPCOffsetType INTEGER,
rlPolicyOMPCMask OCTET STRING,
rlPolicyOMPCPattern OCTET STRING,
rlPolicyOMPCCondition INTEGER,
rlPolicyOMPCDescription DisplayString,
rlPolicyOMPCStatus RowStatus
}
rlPolicyOMPCGroupType OBJECT-TYPE
SYNTAX RlPolicyGroupType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies a classifier type for which offset bytes can be specified."
::= { rlPolicyOMPCEntry 1 }
rlPolicyOMPCIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index into the OMPC Table. "
::= { rlPolicyOMPCEntry 2 }
rlPolicyOMPCOffset OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the offset within the frame (in bytes) from the layer
according to rlPolicyGroupType. The limitation of this field is
according to the rlPolicyFlowClassificationOffsetGroupMaximumOffset
parameter if this OMPC is used by an entry in the
rlPolicyClassifierTable whose rlPolicyClassifierType is a protocol
for which predefined offsets in rlPolicyFlowClassificationOffsetsTable
are required.
rlPolicyRequiredOffsetGroups indicates for which protocols there is
such a requirement."
::= { rlPolicyOMPCEntry 3 }
rlPolicyOMPCOffsetType OBJECT-TYPE
SYNTAX INTEGER {
l2(1),
l3(2),
l3-ipv6(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the offset should be interpreted as relative to the
beginning of L2 or the beginning of L3"
::= { rlPolicyOMPCEntry 4 }
rlPolicyOMPCMask OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies which bits of the rlPolicyOMPCPattern field are
significant for packet comparison. The length of the mask,
in case of 'bigger' or 'smaller' rlPolicyOMPCCondition,
is limited by rlPolicyMaxOMPCLengthForBiggerSmallerOperation."
::= { rlPolicyOMPCEntry 5 }
rlPolicyOMPCPattern OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Describes the mask field. The length of this object must be equal
to the length of rlPolicyOMPCMask."
::= { rlPolicyOMPCEntry 6 }
rlPolicyOMPCCondition OBJECT-TYPE
SYNTAX INTEGER {
equal(1),
notEqual(2),
bigger(3),
smaller(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"These define the operation carried out on the two 'operands'
(frame and pattern), i.e. Bigger means that frame bits should be
bigger than pattern bits. The permitted values are according to
rlPolicyOMPCPermittedOperators parameter, if this OMPC is used by
an entry in the rlPolicyClassifierTable whose rlPolicyClassifierType
is a protocol for which predefined offsets in
rlPolicyFlowClassificationOffsetsTable are required.
rlPolicyRequiredOffsetGroups indicates for which protocols there is
such a requirement."
DEFVAL{ equal }
::= { rlPolicyOMPCEntry 7 }
rlPolicyOMPCDescription OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Free text specifing the nature of this OMPC."
::= { rlPolicyOMPCEntry 8 }
rlPolicyOMPCStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyOMPCEntry 9 }
--
-- Classifier Table
--
rlPolicyClassifierTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyClassifierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of Classifier statement."
::= { rlPolicyClassifier 4 }
rlPolicyClassifierEntry OBJECT-TYPE
SYNTAX RlPolicyClassifierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Classifiers can be of the ingress, egress, or post-routing phase
varieties.
Each multifield classification statement consists of the
following parameters."
INDEX { rlPolicyClassifierType, rlPolicyClassifierListIndex, rlPolicyClassifierSubListIndex, rlPolicyClassifierIndex }
::= { rlPolicyClassifierTable 1 }
RlPolicyClassifierEntry ::= SEQUENCE {
rlPolicyClassifierType RlPolicyGroupType,
rlPolicyClassifierListIndex INTEGER,
rlPolicyClassifierSubListIndex INTEGER,
rlPolicyClassifierIndex INTEGER,
rlPolicyClassifierOmpcList OBJECT IDENTIFIER,
rlPolicyClassifierInIfIndex InterfaceIndexOrZero,
rlPolicyClassifierOutIfIndex InterfaceIndexOrZero,
rlPolicyClassifierVID INTEGER,
rlPolicyClassifierDiffservInIfType RlPolicyClassifierDiffservIfType,
rlPolicyClassifierDiffservOutIfType RlPolicyClassifierDiffservIfType,
rlPolicyClassifierStatus RowStatus,
rlPolicyClassifierInIfIndexList PortList,
rlPolicyClassifierOutIfIndexList PortList,
rlPolicyClassifierVPTID INTEGER,
rlPolicyClassifierVPTIDMask INTEGER,
rlPolicyClassifierEtherTypeID INTEGER,
rlPolicyClassifierInnerVID INTEGER
}
rlPolicyClassifierType OBJECT-TYPE
SYNTAX RlPolicyGroupType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies a classifier type for which offset bytes can be specified."
::= { rlPolicyClassifierEntry 1 }
rlPolicyClassifierListIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"List Index into the Classifier Table."
::= { rlPolicyClassifierEntry 2 }
rlPolicyClassifierSubListIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"SubList Index into the Classifier Table."
::= { rlPolicyClassifierEntry 3 }
rlPolicyClassifierIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index into the Classifier Table."
::= { rlPolicyClassifierEntry 4 }
rlPolicyClassifierOmpcList OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of OMPCs to check with this Classifier. Each
subidentifier together with rlPolicyClassifierType specify one OMPC."
::= { rlPolicyClassifierEntry 5 }
rlPolicyClassifierInIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Input interface index to be compared with received packet,
a value of 0 denotes that the classifier is applied to all ports."
DEFVAL{ 0 }
::= { rlPolicyClassifierEntry 6 }
rlPolicyClassifierOutIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output interface index to be compared with sent packet,
a value of 0 denotes that the classifier is applied to all ports."
DEFVAL { 0 }
::= { rlPolicyClassifierEntry 7 }
rlPolicyClassifierVID OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN ID, used only for bridged traffic. "
DEFVAL{ 0 }
::= { rlPolicyClassifierEntry 8 }
rlPolicyClassifierDiffservInIfType OBJECT-TYPE
SYNTAX RlPolicyClassifierDiffservIfType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For a classifier used by the Diffserv Rules table. Enables
specification of a classifier that should apply to all
Diffserv boundary ports or all Diffserv Interior ports.
If normal is specified, the rlPolicyClassifierInIfIndex field
is used as it is in the non-diffserv case. If allBoundary or
allInterior is selected, rlPolicyClassifierInIfIndex is ignored"
DEFVAL { normal }
::= { rlPolicyClassifierEntry 9 }
rlPolicyClassifierDiffservOutIfType OBJECT-TYPE
SYNTAX RlPolicyClassifierDiffservIfType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"For a classifier used by the Diffserv Rules table. Enables
specification of a classifier that should apply to outbound
traffic on all Diffserv boundary ports or all Diffserv Interior
ports.
If normal is specified, the rlPolicyClassifierOutIfIndex field
is used as it is in the non-diffserv case. If allBoundary or
allInterior is selected, rlPolicyClassifierOutIfIndex is ignored"
DEFVAL { normal }
::= { rlPolicyClassifierEntry 10 }
rlPolicyClassifierStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyClassifierEntry 11 }
rlPolicyClassifierInIfIndexList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"allow to define list of ports for the specific classifier
for ingress classification. if rlPolicyClassifierInIfIndex equal to zero
then the following list should be reffered , if the list is empty we refer
to ALL Ports"
::= { rlPolicyClassifierEntry 12 }
rlPolicyClassifierOutIfIndexList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"allow to define list of ports for the specific classifier
for egress classification. if rlPolicyClassifierOutIfIndex equal to zero
then the following list should be reffered , if the list is empty we refer
to ALL Ports"
::= { rlPolicyClassifierEntry 13 }
rlPolicyClassifierVPTID OBJECT-TYPE
SYNTAX INTEGER (0..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VPT ID - user priority tag to be compared with .
8 is used to indicate not used value for this classifier"
DEFVAL{ 8 }
::= { rlPolicyClassifierEntry 14 }
rlPolicyClassifierVPTIDMask OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VPT ID Mask ,mask the user priority field .
0 is the default indicate Mask all compared with any VPT value"
DEFVAL{ 0 }
::= { rlPolicyClassifierEntry 15 }
rlPolicyClassifierEtherTypeID OBJECT-TYPE
SYNTAX INTEGER (1499..65536)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"EtherType ID, to be compared with.
65535 is used to indicate not used value for this classifier
1499 is uded to indicate IPv4 ethertype that is originated from IPv4 ACL with permit/deny any any any
1500 is uded to indicate IPv6 ethertype that is originated from IPv6 ACL with permit/deny any any any"
DEFVAL{ 65536 }
::= { rlPolicyClassifierEntry 16}
rlPolicyClassifierInnerVID OBJECT-TYPE
SYNTAX INTEGER (0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"INNER VLAN ID, used only for double tagged traffic. "
DEFVAL{ 0 }
::= { rlPolicyClassifierEntry 17 }
----------------------------
-- Rules Class
--
rlPolicyRules OBJECT IDENTIFIER ::= { rlPolicy 3 }
rlPolicyRulesPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyRules 1 }
rlPolicyDroppedPacketCountSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the dropped packets counter in the
rlPolicyRulesTable is supported."
::= { rlPolicyRulesPlatDependParams 1 }
rlPolicyFilterActionOptions OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit mask indicating which operation could be perform
----------
|87654321|
----------
1 - block,
2 - blockAndTrap,
3 - permitAndTrap,
4 - permit."
::= { rlPolicyRulesPlatDependParams 2 }
rlPolicyIngressMeteringSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the platform supports metering in inbound packet
rules."
::= { rlPolicyRulesPlatDependParams 3 }
rlPolicyEgressMeteringSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the platform supports metering on outbound packet
rules (for Diffserv)."
::= { rlPolicyRulesPlatDependParams 4 }
--------------
-- Rules Table
--
rlPolicyRulesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyRulesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of rules and Rules statements applied to all incoming traffic
at the post-routing phase - ie. both the inPort and outPort are
available for classification
When Diffserv is not in effect(ie. IPX, bridging, or IP when the global option
for Diffserv is off), certain table parameters are not available(see
below). The DiffServ option is enabled or disabled by setting
rlDiffservModeEnabled."
::= { rlPolicyRules 2 }
rlPolicyRulesEntry OBJECT-TYPE
SYNTAX RlPolicyRulesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each multifield classification statement consists of the following
parameters."
INDEX { rlPolicyRulesTableType,
rlPolicyRulesInterfaceDirection,
rlPolicyRulesListIndex,
rlPolicyRulesSubListIndex,
rlPolicyRulesIndex }
::= { rlPolicyRulesTable 1 }
RlPolicyRulesEntry ::= SEQUENCE {
rlPolicyRulesTableType RlPolicyGroupType,
rlPolicyRulesInterfaceDirection INTEGER,
rlPolicyRulesListIndex INTEGER,
rlPolicyRulesSubListIndex INTEGER,
rlPolicyRulesIndex INTEGER,
rlPolicyRulesFilteringAction INTEGER,
rlPolicyRulesDroppedPackets Counter32,
rlPolicyRulesFurtherRefPointer INTEGER,
rlPolicyRulesDescription DisplayString,
rlPolicyRulesStatus RowStatus,
rlPolicyRulesCounterIdx INTEGER,
rlPolicyRulesCounter Counter32,
rlPolicyRulesActionPointer INTEGER,
rlPolicyRulesTimeRange1 INTEGER,
rlPolicyRulesTimeRange2 INTEGER,
rlPolicyRulesSrcPortRangeStart INTEGER,
rlPolicyRulesSrcPortRangeEnd INTEGER,
rlPolicyRulesDestPortRangeStart INTEGER,
rlPolicyRulesDestPortRangeEnd INTEGER,
rlPolicyRulesActionDropType RlPolicyRulesActionDropType
}
rlPolicyRulesTableType OBJECT-TYPE
SYNTAX RlPolicyGroupType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies a classifier type for which offset bytes can be specified."
::= { rlPolicyRulesEntry 1 }
rlPolicyRulesInterfaceDirection OBJECT-TYPE
SYNTAX INTEGER {
inbound(1), -- ingress interface / ingress metering support
outbound(2), -- egress interface / egress metering support
none(3) -- no Metering support
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the direction for this entry on the
interface. 'inbound' traffic is operated on during
receipt, while 'outbound' traffic is operated on prior
to transmission.
Based on the metering support:
inbound available while the ingress metering supported,
outbound available while egress metering supported,
and none while no metering supported."
::= { rlPolicyRulesEntry 2 }
rlPolicyRulesListIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enumerates the rule list entry."
::= { rlPolicyRulesEntry 3 }
rlPolicyRulesSubListIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enumerates the rule sub-list entry."
::= { rlPolicyRulesEntry 4 }
rlPolicyRulesIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enumerates the rule index entry."
::= { rlPolicyRulesEntry 5 }
rlPolicyRulesFilteringAction OBJECT-TYPE
SYNTAX INTEGER {
block(1),
blockAndTrap(2),
permitAndTrap(3),
permit(4),
blockAndDisablePort(5),
blockTrapAndDisablePort(6),
blockAndLogInput(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the action for the filter.
Values 1-10 reserved for the System filtering implemetation;
Values starting from 11 may be used for user definition about
future application."
DEFVAL { permit }
::= { rlPolicyRulesEntry 6}
rlPolicyRulesDroppedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets blocked by this filtering rule."
::= { rlPolicyRulesEntry 7 }
rlPolicyRulesFurtherRefPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This further reference indicate on the entry at the metering or
action table, based on the supported features. The
rlPolicyRulesFurtherRefPointer points on the metering table if the
metering feature is supported, if not this fields points on the
Action table"
::= { rlPolicyRulesEntry 8 }
rlPolicyRulesDescription OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Free text specifing the nature of this Rule."
::= { rlPolicyRulesEntry 9 }
rlPolicyRulesStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Row status of the Rules entry."
::= { rlPolicyRulesEntry 10 }
rlPolicyRulesCounterIdx OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If not zero, perform counting of matched packets ."
DEFVAL { 0 }
::= { rlPolicyRulesEntry 11 }
rlPolicyRulesCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that matched this filtering rule."
::= { rlPolicyRulesEntry 12 }
rlPolicyRulesActionPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This further reference indicate on the entry at the
action table, The rlPolicyRulesActionPointer points on the action
table if the aggregate metering feature is supported,or
if meter is not belong to data path. "
::= { rlPolicyRulesEntry 13 }
rlPolicyRulesTimeRange1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time range of the first ACL. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 14 }
rlPolicyRulesTimeRange2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time range of the second ACL. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 15 }
rlPolicyRulesSrcPortRangeStart OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Start port of port range for source port. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 16 }
rlPolicyRulesSrcPortRangeEnd OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"End port of port range for source port. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 17 }
rlPolicyRulesDestPortRangeStart OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Start port of port range for destination port. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 18 }
rlPolicyRulesDestPortRangeEnd OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"End port of port range for destination port. "
DEFVAL { 0 }
::= { rlPolicyRulesEntry 19 }
rlPolicyRulesActionDropType OBJECT-TYPE
SYNTAX RlPolicyRulesActionDropType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field is valid only if rlPolicyRulesFilteringAction is
not permit. Used to distinguish between Hard and Soft drop."
DEFVAL { hardDrop }
::= { rlPolicyRulesEntry 20 }
------------------------
-- Rules download marker
--
rlPolicyRulesDownloadMarker OBJECT-TYPE
SYNTAX INTEGER {
start(1),
finish(2),
finishCombined(3),
undo(4),
deleteStart(5),
deleteFinish(6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates when rules download or removing starts and terminates."
::= { rlPolicyRules 3 }
------------------
-- Metering Class
--
rlPolicyMeterClass OBJECT IDENTIFIER ::= { rlPolicy 4 }
rlPolicyMeterPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyMeterClass 1 }
rlPolicyMeterDepth OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates how many meters can be chained in succession (ie. so
that if the first meter fails, the second can be examined).
The final meter in a sequence is always 'always-conform', so if
the value of this parameter is 2, the platform that supports a
single meter and then a second marking/action for meter failure."
::= { rlPolicyMeterPlatDependParams 1 }
------------
-- Metering Class Table
--
rlPolicyMeterClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyMeteringClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the Metering classes for the system."
::= { rlPolicyMeterClass 2 }
rlPolicyMeteringClassEntry OBJECT-TYPE
SYNTAX RlPolicyMeteringClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each statement consists of the following parameters"
INDEX { rlPolicyMeteringClassIndex }
::= { rlPolicyMeterClassTable 1 }
RlPolicyMeteringClassEntry ::= SEQUENCE {
rlPolicyMeteringClassIndex INTEGER,
rlPolicyMeteringClassAlwaysConform TruthValue,
rlPolicyMeteringClassAggregateMeterRate INTEGER,
rlPolicyMeteringClassAggregateMeterBurstSize INTEGER,
rlPolicyMeteringClassPerSessionMeteringRate INTEGER,
rlPolicyMeteringClassMaxSessionLimit INTEGER,
rlPolicyMeteringClassActionPointer INTEGER,
rlPolicyMeteringClassFailMeterPointer INTEGER,
rlPolicyMeteringClassStatus RowStatus,
rlPolicyMeteringCounterEnable TruthValue,
rlPolicyMeteringClassInProfileCounter Counter32,
rlPolicyMeteringClassOutProfileCounter Counter32
}
rlPolicyMeteringClassIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This enumerates the table entry."
::= { rlPolicyMeteringClassEntry 1 }
rlPolicyMeteringClassAlwaysConform OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the meter always accepts all traffic; its
rate is effectively infinite. In such a case, the token
bucket defined by the MeterRate and Burst-Size
parameters is ignored.
also used when there isn't metering support."
DEFVAL { true }
::= { rlPolicyMeteringClassEntry 2 }
rlPolicyMeteringClassAggregateMeterRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "kbps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rate in kilobytes/second of traffic considered within the
bandwidth allocated for this policy entry."
DEFVAL { 0 }
::= { rlPolicyMeteringClassEntry 3 }
rlPolicyMeteringClassAggregateMeterBurstSize OBJECT-TYPE
SYNTAX INTEGER
UNITS "bytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Burst Size parameter for the aggregate meter leaky bucket. A
value of 0 means that the device should choose the Burst Size
that it thinks is most suitable for the rule.
The interval can be derived from (burstSizex8/Rate)."
DEFVAL { 0 }
::= { rlPolicyMeteringClassEntry 4 }
rlPolicyMeteringClassPerSessionMeteringRate OBJECT-TYPE
SYNTAX INTEGER
UNITS "kbps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A Quantitative Appliction policy rule where each individual
session requires a guaranteed minimum bandwidth.
Specifies the Ingress traffic flow meter per session
indicate a bandwidth limit to be applied to each individual session
Value 0 at rlPolicyMeteringClassPerSessionMetering
and rlPolicyMeteringClassMaxSessionLimit
is interpreted to mean no sepecific requarment and
the aggregate metering will be done by the system decision.
The rate in kilobytes/second"
DEFVAL { 0 }
::= { rlPolicyMeteringClassEntry 5 }
rlPolicyMeteringClassMaxSessionLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"indicate a the maximum number of session for a sepecific rule
to guarante minimum bandwidth.
Value 0 at rlPolicyMeteringClassPerSessionMetering
and rlPolicyMeteringClassMaxSessionLimit
is interpreted to mean no sepecific requarment and
the aggregate metering will be done by the system decision."
DEFVAL { 0 }
::= { rlPolicyMeteringClassEntry 6 }
rlPolicyMeteringClassActionPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the index in the rlPolicyActionTable to be
accessed for packets that are in-profile.
Value 0 is interpreted to mean no action.
A non-zero value may be specified only for RoutedIp
packets in Diffserv mode."
::= { rlPolicyMeteringClassEntry 7 }
rlPolicyMeteringClassFailMeterPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies an index in the rlPolicyMeterClassTable. This
is the meter that is to be used if the packet is out-of-profile
relative to the current meter.
If non-Diffserv mode, this field is not used.
If the current meter is AlwaysConform, this field is not used."
DEFVAL { 0 }
::= { rlPolicyMeteringClassEntry 8 }
rlPolicyMeteringClassStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyMeteringClassEntry 9 }
rlPolicyMeteringCounterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable metering counter for the meter entry."
DEFVAL { false }
::= { rlPolicyMeteringClassEntry 10 }
rlPolicyMeteringClassInProfileCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"meter counter for packets that are in profile ."
::= { rlPolicyMeteringClassEntry 11 }
rlPolicyMeteringClassOutProfileCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"meter counter for packets that are out of profile"
::= { rlPolicyMeteringClassEntry 12 }
------------
-- Action
---
rlPolicyAction OBJECT IDENTIFIER ::= { rlPolicy 5 }
rlPolicyActionPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyAction 1 }
rlPolicyActionMREDSupported OBJECT-TYPE
SYNTAX INTEGER {
supported(1),
notSupported(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the platform supports setting MRED characteristics
in the packet action"
::= { rlPolicyActionPlatDependParams 1 }
rlPolicyActionDroppedPacketCountSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the platform can maintain a count of
packets Marked for drop by a particular action."
::= { rlPolicyActionPlatDependParams 2 }
rlPolicyActionDroppedDropPrecedenceSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the platform support at drop precedence."
::= { rlPolicyActionPlatDependParams 3 }
rlPolicyActionInProfileDropPrecedence OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit mask indicating which drop precedence supported
----------
|87654321|
----------
1 - low,
2 - medium,
3 - high,
4 - drop"
::= { rlPolicyActionPlatDependParams 4 }
rlPolicyActionOutProfileDropPrecedence OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A bit mask indicating which drop precedence supported
----------
|87654321|
----------
1 - low,
2 - medium,
3 - high,
4 - drop"
::= { rlPolicyActionPlatDependParams 5 }
rlPolicyActionDscpSupport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates whether the platform support at DSCP filed modification."
::= { rlPolicyActionPlatDependParams 6 }
rlPolicyActionDsQueueManagmentSupported OBJECT-TYPE
SYNTAX INTEGER {
supported(1),
notSupported(2)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates whether the platform supports at Q managment for implementation,
mred, randomDrop used by the min/max threshold"
::= { rlPolicyActionPlatDependParams 7 }
--
-- Action Table
--
rlPolicyActionTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the Actions for packets that pass the meter table
ie. the characteristics that are assigned to packets before they
reach the scheduler.
When Diffserv is not in effect(ie. IPX, bridging, or IP when the global option
for Diffserv is off), certain table parameters are not available(see
below). The DiffServ option is enabled or disabled by setting
rlDiffservModeEnabled."
::= { rlPolicyAction 2 }
rlPolicyActionEntry OBJECT-TYPE
SYNTAX RlPolicyActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each multifield classification statement consists of the following
parameters"
INDEX { rlPolicyActionIndex }
::= { rlPolicyActionTable 1 }
RlPolicyActionEntry ::= SEQUENCE {
rlPolicyActionIndex INTEGER,
rlPolicyActionNewDscp INTEGER,
rlPolicyActionChangeDscp TruthValue,
rlPolicyActionMinThreshold INTEGER,
rlPolicyActionMaxThreshold INTEGER,
rlPolicyActionDropPolicy INTEGER,
rlPolicyActionDroppedPackets Counter32,
rlPolicyActionNonDsInProfileDropPrecedence INTEGER,
rlPolicyActionNonDsOutProfileDropPrecedence INTEGER,
rlPolicyActionChangeVpt TruthValue,
rlPolicyActionNewVpt INTEGER,
rlPolicyActionServiceClassPointer INTEGER,
rlPolicyActionStatus RowStatus,
rlPolicyActionChangeDscpNonConform TruthValue,
rlPolicyActionChangeNewDscpNonConform INTEGER,
rlPolicyActionAdvancedTrustMode TruthValue,
rlPolicyActionNewIpPrecedence INTEGER,
rlPolicyActionChangeIpPrecedence TruthValue,
rlPolicyActionReDirect RlPolicyRedirectAction,
rlPolicyActionNewInterface InterfaceIndexOrZero,
rlPolicyActionChangeVidAction RlPolicyMarkVlanAction,
rlPolicyActionNewVid INTEGER,
rlPolicyActionTrapTypeId INTEGER,
rlPolicyActionAddTunnel Unsigned32
}
rlPolicyActionIndex OBJECT-TYPE
SYNTAX INTEGER(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This enumerates the Action entry."
::= { rlPolicyActionEntry 1 }
rlPolicyActionNewDscp OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the new DSCP with which the packet should
be marked"
DEFVAL{ 0 }
::= { rlPolicyActionEntry 2 }
rlPolicyActionChangeDscp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the packet is re-marked with the value indicated by
newDscp above. If false, the packet's DSCP value is not changed"
DEFVAL{ false }
::= { rlPolicyActionEntry 3 }
rlPolicyActionMinThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The min-threshold is the queue depth that a random
drop process will seek to manage the queue's depth to.
This object is in the action table rather than the
queue table because Differentiated Services PHBs, such
as the Assured Service, permit differently classified
traffic to have different drop parameters even though
they occupy the same queue."
DEFVAL{ 0 }
::= { rlPolicyActionEntry 4 }
rlPolicyActionMaxThreshold OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The max-threshold is the maximum permissible queue
depth. In tail drop scenarios, the queue will drop if a
packet is presented to it and it is instantaneously
full by this measure. In random drop scenarios, the
queue will drop if a packet is presented to it and the
average queue depth exceeds the max-threshold.
This object is in the action table rather than the
queue table because Differentiated Services PHBs, such
as the Assured Service, permit differently classified
traffic to have different drop parameters even though
they occupy the same queue."
DEFVAL { 0 }
::= { rlPolicyActionEntry 5 }
rlPolicyActionDropPolicy OBJECT-TYPE
SYNTAX INTEGER {
other(1),
alwaysDrop (2), -- Disallowed traffic
tailDrop(3), -- Fixed Queue Size
randomDrop(4) -- MRED w/thresholds per class
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
""
DEFVAL{ other }
::= { rlPolicyActionEntry 6 }
rlPolicyActionDroppedPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets dropped by this action"
::= { rlPolicyActionEntry 7 }
rlPolicyActionNonDsInProfileDropPrecedence OBJECT-TYPE
SYNTAX INTEGER {
low(1),
medium(2),
high(3),
drop(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This paramer is used at non diffserv mode to attached the drop precedence
for packet InProfile (metering), only if there is a support for drop precedence
and with what level."
DEFVAL{ low }
::= { rlPolicyActionEntry 8}
rlPolicyActionNonDsOutProfileDropPrecedence OBJECT-TYPE
SYNTAX INTEGER {
low(1),
medium(2),
high(3),
drop(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This paramer is used at non diffserv mode to attached the drop precedence
for packet OutProfile (metering), only if there is a support for drop precedence
and with what level."
DEFVAL{ low }
::= { rlPolicyActionEntry 9}
rlPolicyActionChangeVpt OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Routed packets that run through the Rules receive VPT as define at the
service class they attached to, bridge packets receive through the
802.1p operation unless we define to change the VPT for those packets."
DEFVAL { false }
::= { rlPolicyActionEntry 10 }
rlPolicyActionNewVpt OBJECT-TYPE
SYNTAX INTEGER (0 .. 7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Priority Tag that will be written to packets ."
DEFVAL { 0 }
::= { rlPolicyActionEntry 11 }
rlPolicyActionServiceClassPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the index in rlPolicyServiceClassTable denoting
the service class to which the packet should be assigned
after the action specified in this entry is carried out.
A value of 0 means that no Service class is assigned. A
value of 0 is legal only for routedIp packets in Diffserv
mode on Inbound processing."
::= { rlPolicyActionEntry 12}
rlPolicyActionStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of the table entry"
::= { rlPolicyActionEntry 13}
rlPolicyActionChangeDscpNonConform OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the packet is re-marked with the value indicated by
newDscp for non conforming packets.
If false, the packet's DSCP value is not changed"
DEFVAL{ false }
::= { rlPolicyActionEntry 14 }
rlPolicyActionChangeNewDscpNonConform OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the new DSCP with which the packet should
be marked"
DEFVAL{ 0 }
::= { rlPolicyActionEntry 15 }
rlPolicyActionAdvancedTrustMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if egress queue is assigned for packets match
rule according to global trust mode or note."
DEFVAL{ false }
::= { rlPolicyActionEntry 16 }
rlPolicyActionNewIpPrecedence OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the new Ip- Precedence with which the packet should
be marked"
DEFVAL{ 0 }
::= { rlPolicyActionEntry 17 }
rlPolicyActionChangeIpPrecedence OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If true, the packet is re-marked with the value indicated by
newIpPrecedence above. If false, the packet's DSCP value is not changed"
DEFVAL{ false }
::= { rlPolicyActionEntry 18 }
rlPolicyActionReDirect OBJECT-TYPE
SYNTAX RlPolicyRedirectAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specified the redirection action/"
DEFVAL{ disabled }
::= { rlPolicyActionEntry 19 }
rlPolicyActionNewInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Relevant if rlQosClassMapRedirect is either
'redirectToInterface' or 'analyzerPort'.
Specified the output interface the packet is redireted to or
the port that gets copy of the packet in addition to the port
it was farwarded. "
DEFVAL{ 0 }
::= { rlPolicyActionEntry 20 }
rlPolicyActionChangeVidAction OBJECT-TYPE
SYNTAX RlPolicyMarkVlanAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If 'mark', than the classified
traffic will be remarked with new VLAN id.
If 'disabled' VLAN id is not changed.
If markNestedVlan, if the egress interface defined as
VLAN tagged member then a new VLAN tag is added to the packet."
DEFVAL{ noMark }
::= { rlPolicyActionEntry 21 }
rlPolicyActionNewVid OBJECT-TYPE
SYNTAX INTEGER(0..4095)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If rlPolicyActionChangeVid is true,
specify the new Vlan id to assigned to the packet"
DEFVAL{ 0 }
::= { rlPolicyActionEntry 22 }
rlPolicyActionTrapTypeId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If now zero, Indicates the trap type id the matched packets arrives with,
relevant when RedirectAction is trap or mirror."
DEFVAL{ 0}
::= { rlPolicyActionEntry 23 }
rlPolicyActionAddTunnel OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If not zero - Tunnel is added to matched packets."
DEFVAL{ 0 }
::= { rlPolicyActionEntry 24 }
-------------------
-- Service Class
-------------------
rlPolicyServiceClass OBJECT IDENTIFIER ::= { rlPolicy 6 }
rlPolicyServiceClassPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyServiceClass 1 }
rlPolicyNumberOfServiceClassesSupported OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of service classes supported on each
port of the platform. Service classes can be neither
created nor destroyed."
::= { rlPolicyServiceClassPlatDependParams 1 }
rlPolicyBoundedPriorityQueueSupport OBJECT-TYPE
SYNTAX INTEGER {
supported(1),
notSupported(2)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates whether the platform supports setting an upper limit
to the bandwidth of traffic transmitted on queues operating in
Strict Priority mode."
::= { rlPolicyServiceClassPlatDependParams 2 }
rlPolicyDefaultServiceClass OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates which service class is default one for packets whose COS is undetermined."
::= { rlPolicyServiceClass 2 }
rlPolicyActiveServiceClassTable OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the Service Class table preform active action
(usuarlly after set of entries at the service class tentative table).
Specifies the current status of a table, there could be two options,
tentative/active table. only the tentative table is the read-write
and the active table is read-only. at set to activeAction the
tentative table will be copied to the active table."
::= { rlPolicyServiceClass 3 }
--
-- Service Class Table
--
rlPolicyServiceClassTentativeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyServiceClassTentativeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the service classes for the system ie. the queue
discipline and weight characteristics that are implemented on each
port unless the user configures a port specific value in ....
The total number of service classes defined can not exceed
rlPolicyNumberOfTransmitQueuesPerPort."
::= { rlPolicyServiceClass 4 }
rlPolicyServiceClassTentativeEntry OBJECT-TYPE
SYNTAX RlPolicyServiceClassTentativeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each multifield classification statement consists of the following
parameters"
INDEX { rlPolicyServiceClassTentativeIndex }
::= { rlPolicyServiceClassTentativeTable 1 }
RlPolicyServiceClassTentativeEntry ::= SEQUENCE {
rlPolicyServiceClassTentativeIndex INTEGER,
rlPolicyServiceClassTentativeName DisplayString,
rlPolicyServiceClassTentativePhbType INTEGER,
rlPolicyServiceClassTentativeMinRate INTEGER,
rlPolicyServiceClassTentativeMaxRate INTEGER,
rlPolicyServiceClassTentativePriority INTEGER,
rlPolicyServiceClassTentative8021DPri INTEGER,
rlPolicyServiceClassTentativeStatus RowStatus,
rlPolicyServiceClassTentativeTdThersholdDp0 INTEGER,
rlPolicyServiceClassTentativeTdThersholdDp1 INTEGER,
rlPolicyServiceClassTentativeTdThersholdDp2 INTEGER,
rlPolicyServiceClassTentativeRedMinDp0 INTEGER,
rlPolicyServiceClassTentativeRedMaxDp0 INTEGER,
rlPolicyServiceClassTentativeRedProbDp0 INTEGER,
rlPolicyServiceClassTentativeRedMinDp1 INTEGER,
rlPolicyServiceClassTentativeRedMaxDp1 INTEGER,
rlPolicyServiceClassTentativeRedProbDp1 INTEGER,
rlPolicyServiceClassTentativeRedMinDp2 INTEGER,
rlPolicyServiceClassTentativeRedMaxDp2 INTEGER,
rlPolicyServiceClassTentativeRedProbDp2 INTEGER,
rlPolicyServiceClassTentativeRedQweight INTEGER,
rlPolicyServiceClassTentativeShaperStatus TruthValue,
rlPolicyServiceClassTentativeCirQueueShaper INTEGER,
rlPolicyServiceClassTentativeCbsQueueShaper INTEGER
}
rlPolicyServiceClassTentativeIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This enumerates the ServiceClass Tentative entry."
::= { rlPolicyServiceClassTentativeEntry 1 }
rlPolicyServiceClassTentativeName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..20))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name given by the system administrator to the class."
::= { rlPolicyServiceClassTentativeEntry 2 }
rlPolicyServiceClassTentativePhbType OBJECT-TYPE
SYNTAX INTEGER {
expeditedForwarding(1),
assuredForwarding(2),
bestEffort(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the type of Diffserv per-hop behaviour that this service
class is intended to support. This object can be set by the user
only in DiffServ mode (i.e. rlDiffservModeEnabled = enabled)."
DEFVAL { bestEffort }
::= { rlPolicyServiceClassTentativeEntry 3 }
rlPolicyServiceClassTentativeMinRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies either the minimum throughput of the queue as a percentage
of the throughput of each output port on which the service class is
implemented. If zero, there is no minimum rate. This field can not
be set by the user if rlDiffservModeEnabled = disabled and
rlPolicyServiceClassPriority > 0 or rlDiffservModeEnabled = enabled
and rlPolicyServiceClassPhbType = expeditedForwarding."
::= { rlPolicyServiceClassTentativeEntry 4 }
rlPolicyServiceClassTentativeMaxRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies either the upper limit on the throughput of the queue as a
percentage of the throughput of each output port on which the service
class is implemented. If zero, there is no maximum rate.
This field can not be set by the user
if rlDiffservModeEnabled = disabled and
rlPolicyServiceClassPriority = 0 or
rlDiffservModeEnabled = enabled and
rlPolicyServiceClassPhbType != expeditedForwarding or
rlBoundedPriorityQueueSupport = notSupported."
::= { rlPolicyServiceClassTentativeEntry 5 }
rlPolicyServiceClassTentativePriority OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If non-zero, this service class will operate as a priority service
class with the specified priority value. This object can not be set
in Diffserv mode (i.e. rlDiffservModeEnabled = enabled), in which case
rlServiceClassPhbType should be used instead. It can't be set when
rlBoundedPriorityQueueSupport = notSupported as well."
::= { rlPolicyServiceClassTentativeEntry 6 }
rlPolicyServiceClassTentative8021DPri OBJECT-TYPE
SYNTAX INTEGER (0 .. 7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"802.1D Priority Tag that will be written to routed packets and
untagged bridged packets transmitted with this service class."
::= { rlPolicyServiceClassTentativeEntry 7 }
rlPolicyServiceClassTentativeStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this entry."
::= { rlPolicyServiceClassTentativeEntry 8 }
rlPolicyServiceClassTentativeTdThersholdDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 9 }
rlPolicyServiceClassTentativeTdThersholdDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 10 }
rlPolicyServiceClassTentativeTdThersholdDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 11 }
rlPolicyServiceClassTentativeRedMinDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 12 }
rlPolicyServiceClassTentativeRedMaxDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 13 }
rlPolicyServiceClassTentativeRedProbDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 0."
::= { rlPolicyServiceClassTentativeEntry 14 }
rlPolicyServiceClassTentativeRedMinDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 15 }
rlPolicyServiceClassTentativeRedMaxDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 16 }
rlPolicyServiceClassTentativeRedProbDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 1."
::= { rlPolicyServiceClassTentativeEntry 17 }
rlPolicyServiceClassTentativeRedMinDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 18 }
rlPolicyServiceClassTentativeRedMaxDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassTentativeEntry 19 }
rlPolicyServiceClassTentativeRedProbDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 2."
::= { rlPolicyServiceClassTentativeEntry 20 }
rlPolicyServiceClassTentativeRedQweight OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"additional parameter for the WRED algorithem supporting
the Queue weight exponentail factor"
::= { rlPolicyServiceClassTentativeEntry 21 }
rlPolicyServiceClassTentativeShaperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If there is shaper on the Queue"
::= { rlPolicyServiceClassTentativeEntry 22 }
rlPolicyServiceClassTentativeCirQueueShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CIR for the Queue shaper.
N/A when the shper is disabled.
UNITS bps bits per second"
::= { rlPolicyServiceClassTentativeEntry 23 }
rlPolicyServiceClassTentativeCbsQueueShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CBS for the Queue shaper.
N/A when the shper is disabled.
UNITS bytes"
::= { rlPolicyServiceClassTentativeEntry 24 }
rlPolicyServiceClassActiveTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyServiceClassActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines the service classes for the system ie. the queue
discipline and weight characteristics that are implemented on each
port unless the user configures a port specific value in ....
The total number of service classes defined can not exceed
rlPolicyNumberOfTransmitQueuesPerPort."
::= { rlPolicyServiceClass 5 }
rlPolicyServiceClassActiveEntry OBJECT-TYPE
SYNTAX RlPolicyServiceClassActiveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each multifield classification statement consists of the following
parameters"
INDEX { rlPolicyServiceClassActiveIndex }
::= { rlPolicyServiceClassActiveTable 1 }
RlPolicyServiceClassActiveEntry ::= SEQUENCE {
rlPolicyServiceClassActiveIndex INTEGER,
rlPolicyServiceClassActiveName DisplayString,
rlPolicyServiceClassActivePhbType INTEGER,
rlPolicyServiceClassActiveMinRate INTEGER,
rlPolicyServiceClassActiveMaxRate INTEGER,
rlPolicyServiceClassActivePriority INTEGER,
rlPolicyServiceClassActive8021DPri INTEGER,
rlPolicyServiceClassActiveTdThersholdDp0 INTEGER,
rlPolicyServiceClassActiveTdThersholdDp1 INTEGER,
rlPolicyServiceClassActiveTdThersholdDp2 INTEGER,
rlPolicyServiceClassActiveRedMinDp0 INTEGER,
rlPolicyServiceClassActiveRedMaxDp0 INTEGER,
rlPolicyServiceClassActiveRedProbDp0 INTEGER,
rlPolicyServiceClassActiveRedMinDp1 INTEGER,
rlPolicyServiceClassActiveRedMaxDp1 INTEGER,
rlPolicyServiceClassActiveRedProbDp1 INTEGER,
rlPolicyServiceClassActiveRedMinDp2 INTEGER,
rlPolicyServiceClassActiveRedMaxDp2 INTEGER,
rlPolicyServiceClassActiveRedProbDp2 INTEGER,
rlPolicyServiceClassActiveRedQweight INTEGER,
rlPolicyServiceClassActiveShaperStatus TruthValue,
rlPolicyServiceClassActiveCirQueueShaper INTEGER,
rlPolicyServiceClassActiveCbsQueueShaper INTEGER
}
rlPolicyServiceClassActiveIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This enumerates the ServiceClass Active entry."
::= { rlPolicyServiceClassActiveEntry 1 }
rlPolicyServiceClassActiveName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name given by the system administrator to the class."
::= { rlPolicyServiceClassActiveEntry 2 }
rlPolicyServiceClassActivePhbType OBJECT-TYPE
SYNTAX INTEGER {
expeditedForwarding(1),
assuredForwarding(2),
bestEffort(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of Diffserv per-hop behaviour that this service
class is intended to support. This object can be set by the user
only in DiffServ mode (i.e. rlDiffservModeEnabled = enabled)."
DEFVAL { bestEffort }
::= { rlPolicyServiceClassActiveEntry 3 }
rlPolicyServiceClassActiveMinRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies either the minimum throughput of the queue as a percentage
of the throughput of each output port on which the service class is
implemented. If zero, there is no minimum rate. This field can not
be set by the user if rlDiffservModeEnabled = disabled and
rlPolicyServiceClassPriority > 0 or rlDiffservModeEnabled = enabled
and rlPolicyServiceClassPhbType = expeditedForwarding."
::= { rlPolicyServiceClassActiveEntry 4 }
rlPolicyServiceClassActiveMaxRate OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies either the upper limit on the throughput of the queue as a
percentage of the throughput of each output port on which the service
class is implemented. If zero, there is no maximum rate.
This field can not be set by the user
if rlDiffservModeEnabled = disabled and
rlPolicyServiceClassPriority = 0 or
rlDiffservModeEnabled = enabled and
rlPolicyServiceClassPhbType != expeditedForwarding or
rlBoundedPriorityQueueSupport = notSupported."
::= { rlPolicyServiceClassActiveEntry 5 }
rlPolicyServiceClassActivePriority OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If non-zero, this service class will operate as a priority service
class with the specified priority value. This object can not be set
in Diffserv mode (i.e. rlDiffservModeEnabled = enabled), in which case
rlServiceClassPhbType should be used instead. It can't be set when
rlBoundedPriorityQueueSupport = notSupported as well."
::= { rlPolicyServiceClassActiveEntry 6 }
rlPolicyServiceClassActive8021DPri OBJECT-TYPE
SYNTAX INTEGER (0 .. 7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"802.1D Priority Tag that will be written to routed packets and
untagged bridged packets transmitted with this service class."
::= { rlPolicyServiceClassActiveEntry 7 }
rlPolicyServiceClassActiveTdThersholdDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 8 }
rlPolicyServiceClassActiveTdThersholdDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 9 }
rlPolicyServiceClassActiveTdThersholdDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 10 }
rlPolicyServiceClassActiveRedMinDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 11 }
rlPolicyServiceClassActiveRedMaxDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 12 }
rlPolicyServiceClassActiveRedProbDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 0."
::= { rlPolicyServiceClassActiveEntry 13 }
rlPolicyServiceClassActiveRedMinDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 14 }
rlPolicyServiceClassActiveRedMaxDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 15 }
rlPolicyServiceClassActiveRedProbDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 1."
::= { rlPolicyServiceClassActiveEntry 16 }
rlPolicyServiceClassActiveRedMinDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 17 }
rlPolicyServiceClassActiveRedMaxDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyServiceClassActiveEntry 18 }
rlPolicyServiceClassActiveRedProbDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 2."
::= { rlPolicyServiceClassActiveEntry 19 }
rlPolicyServiceClassActiveRedQweight OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"additional parameter for the WRED algorithem supporting
the Queue weight exponentail factor"
::= { rlPolicyServiceClassActiveEntry 20 }
rlPolicyServiceClassActiveShaperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If there is shaper on the Queue"
::= { rlPolicyServiceClassActiveEntry 21 }
rlPolicyServiceClassActiveCirQueueShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CIR for the queue shaper.
N/A when the shper is disabled
UNITS bps bits per second"
::= { rlPolicyServiceClassActiveEntry 22 }
rlPolicyServiceClassActiveCbsQueueShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CBS for the queue shaper.
N/A when the shper is disabled.
UNITS bytes"
::= { rlPolicyServiceClassActiveEntry 23 }
--
-- Port configuration table.
--
rlPolicyPortConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table enables the network administrator to fine-tune
the bandwidth given to each service class on each port.
The values in this table will thus override those of the
rlServiceClassTable (THIS TABLE IS MANAGE FROM 3SW). "
::= { rlPolicyServiceClass 6 }
rlPolicyPortCfgEntry OBJECT-TYPE
SYNTAX RlPolicyPortCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration parameters for each port/service class."
INDEX { rlPolicyPortCfgIfIndex }
::= { rlPolicyPortConfigurationTable 1 }
RlPolicyPortCfgEntry ::= SEQUENCE {
rlPolicyPortCfgIfIndex InterfaceIndex,
rlPolicyPortCfgMinimalBandwidth OBJECT IDENTIFIER,
rlPolicyPortCfgMaximalBandwidth OBJECT IDENTIFIER,
rlPolicyPortCfgStatus RowStatus,
rlpolicyDropProfilePointer INTEGER,
rlPolicyPortCfgQueueShaperStatus OBJECT IDENTIFIER,
rlPolicyPortCfgCirQueueShaper OBJECT IDENTIFIER,
rlPolicyPortCfgCbsQueueShaper OBJECT IDENTIFIER,
rlPolicyPortCfgPortShaperStatus TruthValue,
rlPolicyPortCfgCirPortShaper INTEGER,
rlPolicyPortCfgCbsPortShaper INTEGER,
rlPolicyPortCfgPortRateLimitStatus TruthValue,
rlPolicyPortCfgCirPortRateLimit INTEGER,
rlPolicyPortCfgCbsPortRateLimit INTEGER
}
rlPolicyPortCfgIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface index."
::= { rlPolicyPortCfgEntry 1 }
rlPolicyPortCfgMinimalBandwidth OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of objects contain parameters at Precents type for the minimal bandwidth
to this port/service class at WWR . The OID length is based on the number of the
service class number, every OID define parameter of service class."
::= { rlPolicyPortCfgEntry 2 }
rlPolicyPortCfgMaximalBandwidth OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The list of objects contain parameters at Precents type for the maximal bandwidth
to this port/service class at SP . The OID length is based on the number of the
service class number, every OID define parameter of service class."
::= { rlPolicyPortCfgEntry 3 }
rlPolicyPortCfgStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this entry."
::= { rlPolicyPortCfgEntry 4 }
rlpolicyDropProfilePointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"pointing to drop algorithem profile.
the profile describs the drop algorithem
(tail, red)and params"
::= { rlPolicyPortCfgEntry 5 }
rlPolicyPortCfgQueueShaperStatus OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If there is shaper on the Queue"
::= { rlPolicyPortCfgEntry 6 }
rlPolicyPortCfgCirQueueShaper OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CIR for the Queue shaper.
N/A when the shper is disabled
UNITS bps bits per second"
::= { rlPolicyPortCfgEntry 7 }
rlPolicyPortCfgCbsQueueShaper OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CBS for the Queue shaper.
N/A when the shper is disabled.
UNITS bytes"
::= { rlPolicyPortCfgEntry 8 }
rlPolicyPortCfgPortShaperStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If there is shaper on the port"
::= { rlPolicyPortCfgEntry 9 }
rlPolicyPortCfgCirPortShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CIR for the port shaper.
N/A when the shper is disabled
UNITS bps bits per second"
::= { rlPolicyPortCfgEntry 10 }
rlPolicyPortCfgCbsPortShaper OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CBS for the port shaper.
N/A when the shper is disabled.
UNITS bytes"
::= { rlPolicyPortCfgEntry 11 }
rlPolicyPortCfgPortRateLimitStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If there is Rate Limit on the port"
DEFVAL { false }
::= { rlPolicyPortCfgEntry 12 }
rlPolicyPortCfgCirPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CIR for the port Rate limit.
N/A when the Rate limit is disabled
UNITS bps bits per second"
DEFVAL { 0 }
::= { rlPolicyPortCfgEntry 13 }
rlPolicyPortCfgCbsPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CBS for the port Rate Limit.
N/A when the Rate Limit is disabled.
UNITS bytes"
DEFVAL { 0 }
::= { rlPolicyPortCfgEntry 14 }
--
-- drop profile table.
--
rlPolicyDropProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDropProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" this table defines drop profile
which describ the queue's drop
algorithems"
::= { rlPolicyServiceClass 7 }
rlPolicyDropProfileEntry OBJECT-TYPE
SYNTAX RlPolicyDropProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration parameters for each port/service class."
INDEX { rlPolicyDropProfileIndex,rlPolicyDropProfileQueueNumber}
::= { rlPolicyDropProfileTable 1 }
RlPolicyDropProfileEntry ::= SEQUENCE {
rlPolicyDropProfileIndex INTEGER,
rlPolicyDropProfileQueueNumber INTEGER,
rlPolicyDropProfileTdThersholdDp0 INTEGER,
rlPolicyDropProfileTdThersholdDp1 INTEGER,
rlPolicyDropProfileTdThersholdDp2 INTEGER,
rlPolicyDropProfileRedMinDp0 INTEGER,
rlPolicyDropProfileRedMaxDp0 INTEGER,
rlPolicyDropProfileRedProbDp0 INTEGER,
rlPolicyDropProfileRedMinDp1 INTEGER,
rlPolicyDropProfileRedMaxDp1 INTEGER,
rlPolicyDropProfileRedProbDp1 INTEGER,
rlPolicyDropProfileRedMinDp2 INTEGER,
rlPolicyDropProfileRedMaxDp2 INTEGER,
rlPolicyDropProfileRedProbDp2 INTEGER,
rlPolicyDropProfileRedQweight INTEGER,
rlPolicyDropProfileStatus RowStatus
}
rlPolicyDropProfileIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface index."
::= { rlPolicyDropProfileEntry 1 }
rlPolicyDropProfileQueueNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Queue number."
::= { rlPolicyDropProfileEntry 2 }
rlPolicyDropProfileTdThersholdDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 3 }
rlPolicyDropProfileTdThersholdDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 4 }
rlPolicyDropProfileTdThersholdDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 5 }
rlPolicyDropProfileRedMinDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 0.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 6 }
rlPolicyDropProfileRedMaxDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 0.
UNITS percent 0-100 0-100"
::= { rlPolicyDropProfileEntry 7 }
rlPolicyDropProfileRedProbDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 0."
::= { rlPolicyDropProfileEntry 8 }
rlPolicyDropProfileRedMinDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 9 }
rlPolicyDropProfileRedMaxDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 1.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 10 }
rlPolicyDropProfileRedProbDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 1."
::= { rlPolicyDropProfileEntry 11 }
rlPolicyDropProfileRedMinDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 12 }
rlPolicyDropProfileRedMaxDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 2.
UNITS percent 0-100"
::= { rlPolicyDropProfileEntry 13 }
rlPolicyDropProfileRedProbDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 2."
::= { rlPolicyDropProfileEntry 14 }
rlPolicyDropProfileRedQweight OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"additional parameter for the WRED algorithem supporting
the Queue weight exponentail factor"
::= { rlPolicyDropProfileEntry 15 }
rlPolicyDropProfileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this entry."
::= { rlPolicyDropProfileEntry 16 }
--
-- Vlan Configuration table.
--
rlPolicyVlanConfigurationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyVlanCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table enables the network administrator to fine-tune
the rate limit given to each vlan.
The values in this table will thus override those of the
rlQosIfPolicyTable (THIS TABLE IS MANAGED FROM 3SW). "
::= { rlPolicyServiceClass 8 }
rlPolicyVlanCfgEntry OBJECT-TYPE
SYNTAX RlPolicyVlanCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration parameters for each vlan."
INDEX { rlPolicyVlanCfgVlanId }
::= { rlPolicyVlanConfigurationTable 1 }
RlPolicyVlanCfgEntry ::= SEQUENCE {
rlPolicyVlanCfgVlanId VlanId,
rlPolicyVlanCfgPortRateLimitStatus TruthValue,
rlPolicyVlanCfgCirPortRateLimit INTEGER,
rlPolicyVlanCfgCbsPortRateLimit INTEGER,
rlPolicyVlanCfgStatus RowStatus
}
rlPolicyVlanCfgVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface index."
::= { rlPolicyVlanCfgEntry 1 }
rlPolicyVlanCfgPortRateLimitStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If there is Rate Limit on the vlan"
DEFVAL { false }
::= { rlPolicyVlanCfgEntry 2 }
rlPolicyVlanCfgCirPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CIR for the port Rate limit.
N/A when the Rate limit is disabled
UNITS bps bits per second"
::= { rlPolicyVlanCfgEntry 3 }
rlPolicyVlanCfgCbsPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CBS for the port Rate Limit.
N/A when the Rate Limit is disabled.
UNITS bytes"
::= { rlPolicyVlanCfgEntry 4 }
rlPolicyVlanCfgStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this entry."
::= { rlPolicyVlanCfgEntry 5 }
------------
-- DiffServ
---
rlPolicyDiffServ OBJECT IDENTIFIER ::= { rlPolicy 7 }
rlPolicyDiffServPlatDependParams OBJECT IDENTIFIER ::= { rlPolicyDiffServ 1 }
rlDiffservModeSupported OBJECT-TYPE
SYNTAX INTEGER {
supported(1),
notSupported(2)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates whether Diffserv mode is supported on the platform."
::= { rlPolicyDiffServPlatDependParams 1 }
rlDiffservModeEnabled OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether Diffserv mode is currently enabled."
::= { rlPolicyDiffServ 2 }
--
-- Diffserv Boundary / Interior port table for DiffServ mode
--
rlDiffservBoundaryTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlDiffservBoundaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates whether a port is considered a boundary or an interior
node of the Diffserv domain"
::= { rlPolicyDiffServ 3 }
rlDiffservBoundaryEntry OBJECT-TYPE
SYNTAX RlDiffservBoundaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each boundary/interior ports table entry consists of the following
parameters"
INDEX { rlDiffservBoundaryIfIndex }
::= { rlDiffservBoundaryTable 1 }
RlDiffservBoundaryEntry ::= SEQUENCE {
rlDiffservBoundaryIfIndex INTEGER,
rlDiffservBoundaryPortType INTEGER,
rlDiffservBoundaryStatus RowStatus
}
rlDiffservBoundaryIfIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Interface index whose type is being defined"
::= { rlDiffservBoundaryEntry 1 }
rlDiffservBoundaryPortType OBJECT-TYPE
SYNTAX INTEGER {
boundary(1),
interior(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The boundary status of the port."
DEFVAL { boundary }
::= { rlDiffservBoundaryEntry 2 }
rlDiffservBoundaryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of this entry."
::= { rlDiffservBoundaryEntry 3 }
--
-- Global Params
--
rlPolicyGlobalParams OBJECT IDENTIFIER ::= { rlPolicy 9 }
rlPolicyGlobalOperationEnabled OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether Policy is currently enabled."
DEFVAL{ disabled }
::= { rlPolicyGlobalParams 1 }
rlPolicyGlobalDefaultForwarding OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not the unmach traffic
is forwarded or blocked."
::= { rlPolicyGlobalParams 2 }
rlPolicyGlobalAdminTrapfrequency OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"define the the min number of seconds between successive traps.
0 means no traps will be sent, uints in Sec"
DEFVAL { 0 }
::= { rlPolicyGlobalParams 3 }
rlPolicyGlobalOperTrapElapsedTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"show the time out elaps from the last trap sent
uints in Sec."
::= { rlPolicyGlobalParams 4 }
rlPolicyGlobalQosMode OBJECT-TYPE
SYNTAX RlPolicyQosMode
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"V750 DEPRECATED - replaced with rlPolicyGlobalQosMode field in rlPolicyQosModeGlobalCfg table.
user can set the system to operate either in the Basic mode or in the Advanced mode"
::= { rlPolicyGlobalParams 5 }
rlPolicyGlobalTrustMode OBJECT-TYPE
SYNTAX RlPolicyTrustTypes
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"V750 DEPRECATED - replaced with rlPolicyGlobalTrustMode field in rlPolicyQosModeGlobalCfg table.
Global Trust state. the value refered to Basic mode and specify
the trust mode the device is support. all phisical ports are trusted "
::= { rlPolicyGlobalParams 6 }
--
-- Global Params for Qos mib
--
rlPolicyGlobalDeviceQosOperationTypes OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
basic(2),
advanced(3),
all(4),
notSupported(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the system support basic
or advanced mode or Both basic and Advanced"
::= { rlPolicyGlobalParams 7 }
rlPolicyGlobalDscpMutationSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"mutation over the ingress packet dscp field
supported for the device."
::= { rlPolicyGlobalParams 8 }
rlPolicyGlobalClassifyIpPrecedenceSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Indicates if the system support
classification according ip precedence
most significant 3 bits in the TOS byte"
::= { rlPolicyGlobalParams 9 }
rlPolicyGlobalDeviceShapingTypeSupported OBJECT-TYPE
SYNTAX INTEGER {
portShaper(1),
queueShaper(2),
portAndQueueShaper(3),
notSupported(4)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the shaper shaper type supported for the device"
::= { rlPolicyGlobalParams 10 }
rlPolicyGlobalDscpRemarkingSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if dscp remarking
supported for the device"
::= { rlPolicyGlobalParams 11 }
rlPolicyGlobalqueueSchedulerPerDeviceOrPort OBJECT-TYPE
SYNTAX INTEGER {
device(1),
port(2)}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"indicates if the system support scheduling
configuration per port or per device.
device (1 ) or port (2)"
::= { rlPolicyGlobalParams 12 }
---
--- policy mapping
---
rlPolicyMapping OBJECT IDENTIFIER ::= { rlPolicy 10 }
--- Policy DSCP to ServiceClass mapping
rlPolicyDscpServiceClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDscpServiceClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
to ServiceClass map table"
::= { rlPolicyMapping 1 }
rlPolicyDscpServiceClassEntry OBJECT-TYPE
SYNTAX RlPolicyDscpServiceClassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The ServiceClass assigned to a Dscp value.
The index is DSCP represent by rlPolicyDscpIndex"
INDEX { rlPolicyDscpIndex }
::= { rlPolicyDscpServiceClassTable 1 }
RlPolicyDscpServiceClassEntry::= SEQUENCE {
rlPolicyDscpIndex INTEGER,
rlPolicyServiceClassValue INTEGER,
rlPolicyDscpServiceClassStatus RowStatus
}
rlPolicyDscpIndex OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DSCP value."
::= { rlPolicyDscpServiceClassEntry 1 }
rlPolicyServiceClassValue OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"ServiceClass value."
::= { rlPolicyDscpServiceClassEntry 2 }
rlPolicyDscpServiceClassStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDscpServiceClassEntry 3 }
-- Policy TCP-UDP port to Service Class map
rlPolicyTcpUdpPortServiceClassTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyTcpUdpPortServiceClassEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"This table specifies TCP/UDP
Port to ServiceClass map table"
::= { rlPolicyMapping 2 }
rlPolicyTcpUdpPortServiceClassEntry OBJECT-TYPE
SYNTAX RlPolicyTcpUdpPortServiceClassEntry
MAX-ACCESS not-accessible
STATUS obsolete
DESCRIPTION
"Each entry in this table describes The
ServiceClass Value.
The index is TCP/UDP port represent by rlPolicyTcpUdpPort"
INDEX { rlPolicyProtocolType , rlPolicyTcpUdpPort }
::= { rlPolicyTcpUdpPortServiceClassTable 1 }
RlPolicyTcpUdpPortServiceClassEntry::= SEQUENCE {
rlPolicyProtocolType L4ProtType,
rlPolicyTcpUdpPort INTEGER,
rlPolicyMappedServiceClass INTEGER,
rlPolicyTcpUdpPortServiceClassStatus RowStatus
}
rlPolicyProtocolType OBJECT-TYPE
SYNTAX L4ProtType
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"TCP/UDP port type. "
::= { rlPolicyTcpUdpPortServiceClassEntry 1 }
rlPolicyTcpUdpPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"TCP/UDP port number. "
::= { rlPolicyTcpUdpPortServiceClassEntry 2 }
rlPolicyMappedServiceClass OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"ServiceClass value."
::= { rlPolicyTcpUdpPortServiceClassEntry 3 }
rlPolicyTcpUdpPortServiceClassStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyTcpUdpPortServiceClassEntry 4 }
-- Policy ServiceClass Remark mapping
rlPolicyDscpRemarkTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDscpRemarkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
Remark table"
::= { rlPolicyMapping 3 }
rlPolicyDscpRemarkEntry OBJECT-TYPE
SYNTAX RlPolicyDscpRemarkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the new
DSCP for the packet.
The index is Old DSCP represent by rlPolicyOldDscp"
INDEX { rlPolicyRmOldDscp }
::= { rlPolicyDscpRemarkTable 1 }
RlPolicyDscpRemarkEntry::= SEQUENCE {
rlPolicyRmOldDscp INTEGER,
rlPolicyRmNewDscp INTEGER,
rlPolicyDscpRemarkStatus RowStatus
}
rlPolicyRmOldDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Old DSCP."
::= { rlPolicyDscpRemarkEntry 1 }
rlPolicyRmNewDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"New DSCP."
::= { rlPolicyDscpRemarkEntry 2 }
rlPolicyDscpRemarkStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDscpRemarkEntry 3 }
-- Policy DSCP Mutation Table
rlPolicyDscpMutationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDscpMutationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
Mutation table"
::= { rlPolicyMapping 4 }
rlPolicyDscpMutationEntry OBJECT-TYPE
SYNTAX RlPolicyDscpMutationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the new
DSCP for the packet.
The index is Old DSCP represent by rlPolicyOldDscp"
INDEX { rlPolicyOldDscp }
::= { rlPolicyDscpMutationTable 1 }
RlPolicyDscpMutationEntry::= SEQUENCE {
rlPolicyOldDscp INTEGER,
rlPolicyNewDscp INTEGER,
rlPolicyDscpMutationStatus RowStatus
}
rlPolicyOldDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Old DSCP."
::= { rlPolicyDscpMutationEntry 1 }
rlPolicyNewDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"New DSCP."
::= { rlPolicyDscpMutationEntry 2 }
rlPolicyDscpMutationStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDscpMutationEntry 3 }
-- Policy Port set per trust mode table
rlPolicyTrustModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyTrustModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the port state for the trusted basic mode"
::= { rlPolicyMapping 5 }
rlPolicyTrustModeEntry OBJECT-TYPE
SYNTAX RlPolicyTrustModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"describes the ports status that belongs to the global trusted state "
INDEX { rlPolicyTrustModePortNumber }
::= { rlPolicyTrustModeTable 1 }
RlPolicyTrustModeEntry::= SEQUENCE {
rlPolicyTrustModePortNumber INTEGER,
rlPolicyTrustModePortState INTEGER
}
rlPolicyTrustModePortNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"phisical port number ."
::= { rlPolicyTrustModeEntry 1 }
rlPolicyTrustModePortState OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the port state for the trusted mode.
the port can be enabled or disabled for the basic trust mode "
::= { rlPolicyTrustModeEntry 2 }
--- Policy DSCP to VPT mapping
rlPolicyDscpVptTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDscpVptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP to VPT map table"
::= { rlPolicyMapping 6 }
rlPolicyDscpVptEntry OBJECT-TYPE
SYNTAX RlPolicyDscpVptEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The VPT assigned to a Dscp value.
The index is DSCP represent by rlPolicyDscpValue."
INDEX { rlPolicyDscpValue }
::= { rlPolicyDscpVptTable 1 }
RlPolicyDscpVptEntry::= SEQUENCE {
rlPolicyDscpValue INTEGER,
rlPolicyVptValue INTEGER,
rlPolicyDscpVptStatus RowStatus
}
rlPolicyDscpValue OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DSCP value."
::= { rlPolicyDscpVptEntry 1 }
rlPolicyVptValue OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VPT value."
::= { rlPolicyDscpVptEntry 2 }
rlPolicyDscpVptStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDscpVptEntry 3 }
-- Policy DSCP to DP Table
rlPolicyDscpToDpTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDscpToDpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
To Dp table"
::= { rlPolicyMapping 7 }
rlPolicyDscpToDpEntry OBJECT-TYPE
SYNTAX RlPolicyDscpToDpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the new
DP for the packet.
The index is DSCP represent by rlPolicyDscp"
INDEX { rlPolicyDscp }
::= { rlPolicyDscpToDpTable 1 }
RlPolicyDscpToDpEntry::= SEQUENCE {
rlPolicyDscp INTEGER,
rlPolicyDp INTEGER,
rlPolicyDscpToDpStatus RowStatus
}
rlPolicyDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet DSCP."
::= { rlPolicyDscpToDpEntry 1 }
rlPolicyDp OBJECT-TYPE
SYNTAX INTEGER(0..2)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"New DP."
::= { rlPolicyDscpToDpEntry 2 }
rlPolicyDscpToDpStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDscpToDpEntry 3 }
-- Policy Default Forwarding Table
rlPolicyDefaultForwardingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyDefaultForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The default forwarding
values : permit or deny for list of specific ports , vlans"
::= { rlPolicy 11 }
rlPolicyDefaultForwardingEntry OBJECT-TYPE
SYNTAX RlPolicyDefaultForwardingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Since the table is search to find match according to first match
Entries with specific protocol should be set before entries for entire layer."
INDEX { rlPolicyDefaultForwardingIndex }
::= { rlPolicyDefaultForwardingTable 1 }
RlPolicyDefaultForwardingEntry::= SEQUENCE {
rlPolicyDefaultForwardingIndex INTEGER,
rlPolicyDefaultForwardingPortList PortList,
rlPolicyDefaultForwardingVlanId1To1024 VlanList1,
rlPolicyDefaultForwardingVlanId1025To2048 VlanList2,
rlPolicyDefaultForwardingVlanId2049To3072 VlanList3,
rlPolicyDefaultForwardingVlanId3073To4096 VlanList4,
rlPolicyDefaultForwardingLayer INTEGER,
rlPolicyDefaultForwardingAction INTEGER,
rlPolicyDefaultForwardingStatus RowStatus,
rlPolicyDefaultForwardingProtocol INTEGER
}
rlPolicyDefaultForwardingIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Default Forwarding Index."
::= { rlPolicyDefaultForwardingEntry 1 }
rlPolicyDefaultForwardingPortList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding Port List."
::= { rlPolicyDefaultForwardingEntry 2 }
rlPolicyDefaultForwardingVlanId1To1024 OBJECT-TYPE
SYNTAX VlanList1
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding VlanId List 1."
::= { rlPolicyDefaultForwardingEntry 3 }
rlPolicyDefaultForwardingVlanId1025To2048 OBJECT-TYPE
SYNTAX VlanList2
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding VlanId List 2."
::= { rlPolicyDefaultForwardingEntry 4 }
rlPolicyDefaultForwardingVlanId2049To3072 OBJECT-TYPE
SYNTAX VlanList3
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding VlanId List 3."
::= { rlPolicyDefaultForwardingEntry 5 }
rlPolicyDefaultForwardingVlanId3073To4096 OBJECT-TYPE
SYNTAX VlanList4
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding VlanId List 4."
::= { rlPolicyDefaultForwardingEntry 6 }
rlPolicyDefaultForwardingLayer OBJECT-TYPE
SYNTAX INTEGER {
l2(1),
l3(2),
l3-ipv6(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding Action specify layer l2 l3 l3-ipv6"
::= { rlPolicyDefaultForwardingEntry 7 }
rlPolicyDefaultForwardingAction OBJECT-TYPE
SYNTAX INTEGER{
permit(1),
deny(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Default Forwarding Action specify permit or deny "
::= { rlPolicyDefaultForwardingEntry 8 }
rlPolicyDefaultForwardingStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlPolicyDefaultForwardingEntry 9 }
rlPolicyDefaultForwardingProtocol OBJECT-TYPE
SYNTAX INTEGER {
bpdu(1),
icmpv6(2),
none(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol type to be applied with the default action."
DEFVAL{255}
::= { rlPolicyDefaultForwardingEntry 10 }
rlPolicyStatistics
OBJECT IDENTIFIER ::= { rlPolicy 12 }
rlPolicyPortPolicyStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyPortPolicyStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics counter for policies with specific actions"
::= { rlPolicyStatistics 1}
rlPolicyPortPolicyStatisticsEntry OBJECT-TYPE
SYNTAX RlPolicyPortPolicyStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes counter per port.
The index is port represent by rlIfIndex.
In each entry represents counter, it's type , it's size and whether it's enabled. "
INDEX { rlPolicyPortPolicyStatisticsIfIndex,rlPolicyPortPolicyStatisticsCntrType }
::= { rlPolicyPortPolicyStatisticsTable 1 }
RlPolicyPortPolicyStatisticsEntry::= SEQUENCE {
rlPolicyPortPolicyStatisticsIfIndex INTEGER,
rlPolicyPortPolicyStatisticsCntrType StatisticsCntrType,
rlPolicyPolicyStatisticsCntrSize StatisticsCntrNumOfBitsType,
rlPolicyPolicyStatisticsEnableCounting TruthValue,
rlPolicyPolicyStatisticsCounterValue Counter64
}
rlPolicyPortPolicyStatisticsIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Interface index."
::= { rlPolicyPortPolicyStatisticsEntry 1 }
rlPolicyPortPolicyStatisticsCntrType OBJECT-TYPE
SYNTAX StatisticsCntrType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter type."
::= { rlPolicyPortPolicyStatisticsEntry 2 }
rlPolicyPolicyStatisticsCntrSize OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits."
::= { rlPolicyPortPolicyStatisticsEntry 3 }
rlPolicyPolicyStatisticsEnableCounting OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication whether the counter is enabled."
DEFVAL { false }
::= { rlPolicyPortPolicyStatisticsEntry 4 }
rlPolicyPolicyStatisticsCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Counter value. "
::= { rlPolicyPortPolicyStatisticsEntry 5 }
rlPolicyOutQueueStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyOutQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes counter per any permutation of
Port/VLAN/Queue/Drop Precedence . Each of the above can a group off 'All'.
The index is port represent by rlPolicyOutQueueStatisticsCountrID.
In each entry there are fields representing
whether the counter is enabled and counters value. "
::= { rlPolicyStatistics 2 }
rlPolicyOutQueueStatisticsEntry OBJECT-TYPE
SYNTAX RlPolicyOutQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry includes port, vlan, queue, drop precedence and counter value."
INDEX { rlPolicyOutQueueStatisticsCountrID }
::= { rlPolicyOutQueueStatisticsTable 1 }
RlPolicyOutQueueStatisticsEntry::= SEQUENCE {
rlPolicyOutQueueStatisticsCountrID INTEGER,
rlPolicyOutQueueStatisticsIfIndexList PortList,
rlPolicyOutQueueStatisticsPortAll TruthValue,
rlPolicyOutQueueStatisticsVlan INTEGER,
rlPolicyOutQueueStatisticsVlanAll TruthValue,
rlPolicyOutQueueStatisticsQueue INTEGER,
rlPolicyOutQueueStatisticsQueueAll TruthValue,
rlPolicyOutQueueStatisticsDP StatisticsDPType,
rlPolicyOutQueueStatisticsDPAll TruthValue,
rlPolicyOutQueueStatisticsCounterTailDropValue Counter64,
rlPolicyOutQueueStatisticsCounterAllValue Counter64,
rlPolicyOutQueueStatisticsCntrNumOfBits StatisticsCntrNumOfBitsType,
rlPolicyOutQueueStatisticsStatus RowStatus
}
rlPolicyOutQueueStatisticsCountrID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter id, the key of the table."
::= { rlPolicyOutQueueStatisticsEntry 1 }
rlPolicyOutQueueStatisticsIfIndexList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port for which the flow is counted."
::= { rlPolicyOutQueueStatisticsEntry 2 }
rlPolicyOutQueueStatisticsPortAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the port is configured as range of all the ports"
DEFVAL { false }
::= { rlPolicyOutQueueStatisticsEntry 3}
rlPolicyOutQueueStatisticsVlan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN for which the flow is counted."
::= { rlPolicyOutQueueStatisticsEntry 4 }
rlPolicyOutQueueStatisticsVlanAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the Vlan is configured as range of all the Vlans"
DEFVAL { false }
::= { rlPolicyOutQueueStatisticsEntry 5}
rlPolicyOutQueueStatisticsQueue OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Queue for which the flow is counted."
::= { rlPolicyOutQueueStatisticsEntry 6 }
rlPolicyOutQueueStatisticsQueueAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the Queue is configured as range of all the Queues"
DEFVAL { false }
::= { rlPolicyOutQueueStatisticsEntry 7}
rlPolicyOutQueueStatisticsDP OBJECT-TYPE
SYNTAX StatisticsDPType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Drop Precedence for which the flow is counted."
::= { rlPolicyOutQueueStatisticsEntry 8 }
rlPolicyOutQueueStatisticsDPAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the DP is configured as range of all the DPs"
DEFVAL { false }
::= { rlPolicyOutQueueStatisticsEntry 9}
rlPolicyOutQueueStatisticsCounterTailDropValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter for tail dropped value."
::= { rlPolicyOutQueueStatisticsEntry 10 }
rlPolicyOutQueueStatisticsCounterAllValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter for all traffic value."
::= { rlPolicyOutQueueStatisticsEntry 11 }
rlPolicyOutQueueStatisticsCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for the counter."
::= { rlPolicyOutQueueStatisticsEntry 12 }
rlPolicyOutQueueStatisticsStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyOutQueueStatisticsEntry 13 }
-- Global Counter for statistics
rlPolicyGlobalStatisticsCntrsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyGlobalStatisticsCntrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics global counters for specific rules for
all ports that they are connected to "
::= { rlPolicyStatistics 3 }
rlPolicyGlobalStatisticsCntrsEntry OBJECT-TYPE
SYNTAX RlPolicyGlobalStatisticsCntrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents global counter."
INDEX {rlPolicyGlobalStatisticsCntrsType}
::= { rlPolicyGlobalStatisticsCntrsTable 1 }
RlPolicyGlobalStatisticsCntrsEntry::= SEQUENCE {
rlPolicyGlobalStatisticsCntrsType StatisticsCntrType,
rlPolicyGlobalStatisticsCntrsNumOfBits StatisticsCntrNumOfBitsType,
rlPolicyGlobalStatisticsCntrsCounterValue Counter64,
rlPolicyGlobalStatisticsStatus RowStatus
}
rlPolicyGlobalStatisticsCntrsType OBJECT-TYPE
SYNTAX StatisticsCntrType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter type."
::= { rlPolicyGlobalStatisticsCntrsEntry 1 }
rlPolicyGlobalStatisticsCntrsNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits."
::= { rlPolicyGlobalStatisticsCntrsEntry 2 }
rlPolicyGlobalStatisticsCntrsCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter value."
::= { rlPolicyGlobalStatisticsCntrsEntry 3 }
rlPolicyGlobalStatisticsStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete an entry from this table."
::= { rlPolicyGlobalStatisticsCntrsEntry 4 }
-- clear scalar
rlPolicyClearCounters OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar indicates to clear all the counters."
::= { rlPolicyStatistics 4 }
-- ********************
-- Classifier Utilization Table
-- ********************
rlPolicyClassifierUtilization OBJECT IDENTIFIER
::= { rlPolicy 13 }
rlPolicyClassifierUtilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyClassifierUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing Classifier utilization information.
Each row represents objects for a particular Unit
present in this system."
::= { rlPolicyClassifierUtilization 1 }
rlPolicyClassifierUtilizationEntry OBJECT-TYPE
SYNTAX RlPolicyClassifierUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Single entry containing Classifier utilization information."
INDEX { rlPolicyClassifierUtilizationUnitId }
::= { rlPolicyClassifierUtilizationTable 1 }
RlPolicyClassifierUtilizationEntry ::= SEQUENCE {
rlPolicyClassifierUtilizationUnitId Unsigned32,
rlPolicyClassifierUtilizationPercent Unsigned32,
rlPolicyClassifierUtilizationRulesNumber Unsigned32
}
rlPolicyClassifierUtilizationUnitId OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Unit ID of this Classifier. must be unique per entry.
This is an index into the table."
::= { rlPolicyClassifierUtilizationEntry 1 }
rlPolicyClassifierUtilizationPercent OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The classifier utilization percentage. "
DEFVAL { 0 }
::= { rlPolicyClassifierUtilizationEntry 2 }
rlPolicyClassifierUtilizationRulesNumber OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The classifier utilization number of used rules, in short rules resolution."
DEFVAL { 0 }
::= { rlPolicyClassifierUtilizationEntry 3 }
-- reserved tcs scalar
rlPolicyIsTCAvailable OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This scalar indicates the number of currently reserved amount
of traffic conditioners."
::= { rlPolicy 14 }
rlPolicyCPUSafeGuardEnable OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar enables/disables CPU Safeguard."
::= { rlPolicy 15 }
rlPolicyQosModeGlobalCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlPolicyQosModeGlobalCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table responsible to set the global qos mode configuration:
qos mode, qos trust mode, and if port are trusted by default in qos advanced
mode."
::= { rlPolicy 16 }
rlPolicyQosModeGlobalCfgEntry OBJECT-TYPE
SYNTAX RlPolicyQosModeGlobalCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table responsible to set the global qos mode configuration:
qos mode, qos trust mode, and if port are trusted by default in qos advanced
mode.
Current implemnetaion assumes only one entry exist."
INDEX { rlPolicyGlobalIndex}
::= { rlPolicyQosModeGlobalCfgTable 1 }
RlPolicyQosModeGlobalCfgEntry ::= SEQUENCE {
rlPolicyGlobalIndex INTEGER,
rlPolicyGlobalQoSMode RlPolicyQosMode,
rlPolicyBasicGlobalTrustMode RlPolicyTrustTypes,
rlPolicyAdvcGlobalTrustMode RlPolicyTrustTypes,
rlPolicyPortTrustAdvancedMode TruthValue,
rlPolicyDscpMutationEnable TruthValue,
rlPolicyModeGlobalCfgStatus RowStatus
}
rlPolicyGlobalIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry index - currenly only one entry can exist, indexes hard coded with value '1'."
::= { rlPolicyQosModeGlobalCfgEntry 1 }
rlPolicyGlobalQoSMode OBJECT-TYPE
SYNTAX RlPolicyQosMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlPolicyCliQosMode.
Defines the global qos operation mode: disable, basic or advnaced. "
::= { rlPolicyQosModeGlobalCfgEntry 2 }
rlPolicyBasicGlobalTrustMode OBJECT-TYPE
SYNTAX RlPolicyTrustTypes
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlPolicyCliBasicModeCfg.
Defines the global qos trust operation mode when qos mode is basic. "
::= { rlPolicyQosModeGlobalCfgEntry 3 }
rlPolicyAdvcGlobalTrustMode OBJECT-TYPE
SYNTAX RlPolicyTrustTypes
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlPolicyCliBasicModeCfg.
Defines the global qos trust operation mode when qos mode is advanced. "
::= { rlPolicyQosModeGlobalCfgEntry 4 }
rlPolicyPortTrustAdvancedMode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field specified whether ports are set to trused or not-trusted by
default when switching to qos advanced mode."
DEFVAL{ false }
::= { rlPolicyQosModeGlobalCfgEntry 5 }
rlPolicyDscpMutationEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field indicates if dscp to dscp mutation mode is enable.
It can be set to true in the following terms:
1.rlQosGlobalTrustMode is in {dscp, vpt-dscp} ( rlQosGlobalQoSMode must be basic or advanced)
2.if rlQosGlobalQoSMode is advanced then rlQoSPortTrustAdvancedMode must be set to true."
DEFVAL{ false }
::= { rlPolicyQosModeGlobalCfgEntry 6}
rlPolicyModeGlobalCfgStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This status of entry action.
In current implementation only one entry exist, therefor only status = active is
acceptable."
::= { rlPolicyQosModeGlobalCfgEntry 7 }
END
|