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
|
LINKSYS-QOS-CLI-MIB DEFINITIONS ::= BEGIN
-- Version: 7.46
-- Date: 04 Jan 2007
-- 28 May 2003 Changed UNITS clause of rlQosPolicerCir to kbps
-- 28 May 2003 Added QoS Access Control Element table two indexes (rlQosAceTidxTable)
-- 29 Sep 2003 Add textual convention to QosObjectMode (service).
-- 15 Nov 2004 Add DSCP to Queue Default map table
-- 27 Jan 2005 Add new advanced action : trustCosDscp
-- 07 Feb 2005 Add vpt,ether-type,tcp-flags,icmp-type,icmp-code,igmp-type to ClassTupleType
-- Add ip-ICMP,ip-IGMP To AceObjectType
-- Add vpt,ethertype To ClassOffsetType
-- 14 March 2005 Add rlQosPortRateLimitStatus,rlQosCirPortRateLimit, rlQosCbsPortRateLimit
-- to rlQosIfPolicyTable
-- 17-Apr-2005 Added rlQosDscpToDpTable
-- 06-Apr-2006 Added branch rlQosStatistics and tables:
-- 08-May-2006 Added innerVlan to ClassOffsetType And inner-vlan to ClassTupleType
-- 11-Dec-2006 Added rlQosClassifierUtilization
-- 24-Dec-2006 Changed rlQosTypeQueue1 ... rlQosTypeQueue8 fields in
-- rlQosQueueProfileTable from read-create to read-write
-- 24-Dec-2006 Added new MIB: rlQosPortToProfileMappingTable
-- 31-Dec-2006 Added support for Time Based ACL
-- 04-Jan-2007 Added rlQosTimeBasedAclTable
-- 17-Apr-2007 Added IPv6 ACL support
-- Change rlQosOffsetTable to deprecated
-- 6-Jun-2007 Added rlQosClassifierUtilizationSystem
-- 18-Jan-2008 Add rlQosClassifierUtilizationRulesNumber to rlQosClassifierUtilizationEntry
-- 01-Jun-2009 Add udp-port-range-start-src, udp-port-range-end-src,
-- udp-port-range-start-dest, udp-port-range-end-dest,
-- tcp-port-range-start-src, tcp-port-range-end-src,
-- tcp-port-range-start-dest, tcp-port-range-end-dest, to ClassTupleType
-- Add rlQosAceTidxTuple9, rlQosAceTidxTuple10 to rlQosAceTidxTable
-- 18-Aug-2009 Removed Time Based Tables : code moved to general TimeBasedInfrastrucure
-- 22-Oct-2009 Added rlQosAceTidxTuple11 to rlQosAceTidxTable in order to keep Src MAC addr of Dynamic ACLs
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,Counter32,
Gauge32, Unsigned32, IpAddress, TimeTicks FROM SNMPv2-SMI
InterfaceIndex FROM IF-MIB
TruthValue, RowStatus, RowPointer,
TEXTUAL-CONVENTION,DisplayString FROM SNMPv2-TC
Counter64, OBJECT-TYPE FROM SNMPv2-SMI
PortList,VlanId FROM Q-BRIDGE-MIB
Percents,rnd FROM LINKSYS-MIB
StatisticsDPType,StatisticsClearActionType FROM LINKSYS-POLICY-MIB;
rlQosCliMib MODULE-IDENTITY
LAST-UPDATED "200604040000Z"
ORGANIZATION "Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"Added:
StatisticsCntrNumOfBitsType
StatisticsCntrType
rlQosStatistics
rlQosPortPolicyStatisticsTable
rlQosSinglePolicerStatisticsTable
rlQosAggregatePolicerStatisticsTable
rlQosOutQueueStatisticsTable
rlQosGlobalStatisticsCntrsTable."
REVISION "200602120000Z"
DESCRIPTION
"The private MIB module definition for Quality Of Service CLI
in Linksys devices."
REVISION "200602120000Z"
DESCRIPTION
"Editorial changes to support new MIB compilers."
REVISION "200503140000Z"
DESCRIPTION
"Add rlQosPortRateLimitStatus,rlQosCirPortRateLimit, rlQosCbsPortRateLimit
to rlQosIfPolicyTable"
REVISION "200502070000Z"
DESCRIPTION
"Add vpt,ether-type,tcp-flags,icmp-type,icmp-code,igmp-type to ClassTupleType
Add mac-Offset,ip-ICMP,ip-IGMP To AceObjectType
Add vpt,ethertype To ClassOffsetType"
REVISION "200501270000Z"
DESCRIPTION
"Add new advanced action : trustCosDscp"
REVISION "200411150000Z"
DESCRIPTION
"Add DSCP to Queue Default map table."
REVISION "200309290000Z"
DESCRIPTION
"Add textual convention to QosObjectMode (service)."
REVISION "200309210000Z"
DESCRIPTION
"Added this MODULE-IDENTITY clause, changed IMPORT, removed ranges in
SEQUENCE elements, changed access of rlQosCliQosMode, rlQosCliBasicModeCfg and
rlQosMaxNumOfAce."
REVISION "200504170000Z"
DESCRIPTION
"Added rlQosDscpToDpTable"
::= { rnd 88 }
ClassOffsetType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 6 offset types:
1- Absolute-start of the packet.
2- Layer 2-start of MAC header.
3- MPLS-start of MPLS header.
4- Layer 3-start of layer 3 header.
5- Layer 4-start of layer 4 header.
6- Layer 5-after TCP/UDP header.
7- VLAN.
8- input device port.
9- input device port.
10-VPT.
11-EtherType.
12-innerVlan.
13-Layer 3 IPv6 - start of layer 3 IPv6 header"
SYNTAX INTEGER {
packetStart(1),
layer2-start(2),
mpls-start(3),
layer3-start(4),
layer4-start(5),
layer5-start(6),
vlan(7),
in-port(8),
out-port(9),
vpt(10),
ethertype(11),
inner-vlan(12),
layer3-ipv6-start(13)
}
ClassTupleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of Tuple types "
SYNTAX INTEGER {
protocol(1),
ip-src(2),
ip-dest(3),
dscp(4),
ip-precedence(5),
udp-port-src(6),
udp-port-dest(7),
tcp-port-src(8),
tcp-port-dest(9),
mac-src(10),
mac-dest(11),
vlan(12),
in-port(13),
out-port(14),
general(15),
vpt(16),
ether-type(17),
tcp-flags(18),
icmp-type(19),
icmp-code(20),
igmp-type(21),
inner-vlan(22),
ipv6-src(23),
ipv6-dest(24),
udp-port-range-start-src(25),
udp-port-range-end-src(26),
udp-port-range-start-dest(27),
udp-port-range-end-dest(28),
tcp-port-range-start-src(29),
tcp-port-range-end-src(30),
tcp-port-range-start-dest(31),
tcp-port-range-end-dest(32)
}
AceActionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 4 ACE Actions:
1- Permit- permit to the traffic that define
by the parameters.
2- Deny- deny the traffic that define
by the parameter.
3- Deny-DisablePort deny the traffic that defined
by the parameters and disable the port.
4- Deny-LogInput deny the traffic that defined
by the parameters and log incoming traffic."
SYNTAX INTEGER {
permit(1),
deny(2),
deny-DisablePort(3),
deny-LogInput(4)
}
AceObjectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 13 ACE types:
1- IP ACE.
2- IP-TCP ACE.
3- IP-UDP ACE.
4- IP-offset ACE.
5- MAC ACE.
6- MAC-offset ACE.
7- IP-ICMP ACE.
8- IP-IGMP ACE.
9- IPv6 ACE.
10- IPv6-TCP ACE.
11- IPv6-UDP ACE.
12- IPv6-offset ACE.
13- IPv6-ICMP ACE."
SYNTAX INTEGER {
ip(1),
ip-TCP(2),
ip-UDP(3),
ip-Offset(4),
mac(5),
mac-Offset(6),
ip-ICMP(7),
ip-IGMP(8),
ipv6(9),
ipv6-TCP(10),
ipv6-UDP(11),
ipv6-Offset(12),
ipv6-ICMP(13)
}
AclObjectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 3 ACL types:
1- MAC ACL.
2- IPv4 ACL.
3- IPv6 ACL."
SYNTAX INTEGER {
mac(1),
ip(2),
ipv6(3)
}
ClassMapType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 2 Class-map types:
1- Match all. logical and between all statements.
2- Match any. logical or between all statements."
SYNTAX INTEGER {
matchAll(1),
matchAny(2)
}
ClassMapAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 8 Class-map actios:
1- none - action not specified - use default action.
2 -Mark IP-Precedence.
3- Mark DSCP.
4- Set Egress queue
5- Mark VPT
6- Choose queue by global trust mode."
SYNTAX INTEGER {
none(1),
setIP-Precedence(2),
setDSCP(3),
setQueue(4),
setCos(5),
trust(6)
--v750 - trust mode it done by globalTrustMode field in RlQosModeGlobalCfgEntry.
-- the class map action is changed to "trust"
--v750 depcrated trustCos(6),
--v750 depcrated trustDSCP(7),
--v750 depcrated trustTCP-UDPport(8),
--v750 depcrated trustCosDscp(9)
}
MarkVlanAction ::= 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)
}
RedirectAction ::= 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, except 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 received.
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)
}
PolicerType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 3 Policer types:
1- Single policer only per one class map.
2- Aggregate policer can be applied to several
class maps.
3- Cascade policer."
SYNTAX INTEGER {
single(1),
aggregate(2),
cascade(3)
}
PolicerAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 4 Policer Action:
1- No Action
2- Drop out of profile packets.
3- Remark out of profile packets.
4- Remark to explicit value out of profile packets
5- this policer is part of cascade chain"
SYNTAX INTEGER {
none(1),
drop(2),
remark(3),
explicit-remark(4),
cascadePointer(5)
}
QosGlobalMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 3 QoS mode:
1- disable no QoS on the system
2- Basic Qos mode only trust mode with ACL are enabled.
3- Advance mode all Qos option are enabled.
4- Service Mode -v750 DEPEREACTED!!! all Qos option are enabled only in
service mode configuration"
SYNTAX INTEGER {
disable(1),
basic(2),
advance(3)
--v750 deprecated service(4)
}
QosTrustMode ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of 6 QoS trust mode:
- none.- v750 DEPRECATED - same as globalMode = disable. means that only ACL can be applied.
- 802.1p. queue is set by the VPT field.
- DSCP. queue is set by the DSCP field
- v750 deprecated. replaced with new scalar rlQosDscpMutationEnable .
DSCP-Mutation. the DSCP mutate in the ingress and
then the queue is set by the DSCP
- tcp/udp.- v750 - DEPRECATED - not supported. the queue is set by the l4 port number.
- cos-dscp. Queue is set for l2 traffic
by VPT field and for l3 traffic by DSCP field. "
SYNTAX INTEGER {
--deprecated none(1),
cos(1),
dscp(2),
--v750 deprecated : dscp-mutation(3),
--deprecated tcp-upd(5),
cos-dscp(3)
}
BinaryStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies Disable or enable."
SYNTAX INTEGER {
disable(1),
enable(2)
}
QueueType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Queue type Ef or WRR."
SYNTAX INTEGER {
ef(1),
wrr(2)
}
AclDefaultAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Default action when the ACL reach end point."
SYNTAX INTEGER {
deny-all(1),
forward-all(2),
application-specific(3)
}
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)
}
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)
}
RlQosTimeBasedAclWeekPeriodicList ::= 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)
}
RlQosAceTidxActionDropType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "The Action Drop Type."
SYNTAX INTEGER {
hardDrop(1),
softDrop(2)
}
RlQosApplicationDefaultActionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Application default actions."
SYNTAX INTEGER {
forward(1),
hard-Drop(2),
soft-Drop(3),
trap(4)
}
-- CLI QOS MODE Scalar
rlQosCliQosMode OBJECT-TYPE
SYNTAX QosGlobalMode
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
" *********This Scalar is deprecated - rlQosGlobalCfgEntry - replaces its
functionality***************
This scalar define in which mode the
system will work: basic , advance or none."
::= { rlQosCliMib 1 }
-- CLI QoS Basic Mode Config Scalar
rlQosCliBasicModeCfg OBJECT-TYPE
SYNTAX QosTrustMode
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"*********This Scalar is deprecated - rlQosGlobalCfgEntry - replaces its
functionality***************
This scalar define in which trust mode the
system will work:802.1p or DSCP or
DSCP-Mutation or TCP/UDP or none or vpt-dscp."
::= { rlQosCliMib 2 }
-- Maximum Number of ACE per system Scalar
rlQosMaxNumOfAce OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This scalar define the max number of aces."
::= { rlQosCliMib 3 }
-- QoS Offset Table
rlQosOffsetTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosOffsetEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table specifies Offset Table information"
::= { rlQosCliMib 4 }
rlQosOffsetEntry OBJECT-TYPE
SYNTAX RlQosOffsetEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Each entry in this table describes one classifier field.
The information includes: Offset Type the offset the mask and the
Pattern.
if the type is vlan then the value will be the vlan tag.
if the Type is in/out port it will be the device in/out port.
The index is sequential integer represent by rlQosOffsetIndex"
INDEX { rlQosOffsetIndex }
::= { rlQosOffsetTable 1 }
RlQosOffsetEntry ::= SEQUENCE {
rlQosOffsetIndex INTEGER,
rlQosOffsetType ClassOffsetType,
rlQosOffsetValue INTEGER,
rlQosOffsetMask INTEGER,
rlQosOffsetPattern INTEGER,
rlQosOffsetTuplePointer INTEGER,
rlQosOffsetStatus RowStatus
}
rlQosOffsetIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An arbitrary incremental Index
for the offset table."
::= { rlQosOffsetEntry 1 }
rlQosOffsetType OBJECT-TYPE
SYNTAX ClassOffsetType
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Start of the offset."
::= { rlQosOffsetEntry 2 }
rlQosOffsetValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The Offset value."
::= { rlQosOffsetEntry 3 }
rlQosOffsetMask OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Define which bit to be extracted from the offset."
::= { rlQosOffsetEntry 4 }
rlQosOffsetPattern OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The value to match too."
::= { rlQosOffsetEntry 5 }
rlQosOffsetTuplePointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"Pointer for the relevant Tuple."
::= { rlQosOffsetEntry 6 }
rlQosOffsetStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosOffsetEntry 7 }
-- QoS Tuple Table
rlQosTupleTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosTupleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies Tuple Table information"
::= { rlQosCliMib 5 }
rlQosTupleEntry OBJECT-TYPE
SYNTAX RlQosTupleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Tuple.
The information includes: Tuple Type and the Tuples values.
The index is sequential integer represent by rlQosTupleIndex"
INDEX { rlQosTupleIndex }
::= { rlQosTupleTable 1 }
RlQosTupleEntry ::= SEQUENCE {
rlQosTupleIndex INTEGER,
rlQosTupleType ClassTupleType,
rlQosTupleValue1 INTEGER,
rlQosTupleValue2 OCTET STRING,
rlQosTupleStatus RowStatus
}
rlQosTupleIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index
for the offset table."
::= { rlQosTupleEntry 1 }
rlQosTupleType OBJECT-TYPE
SYNTAX ClassTupleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Start of the offset."
::= { rlQosTupleEntry 2 }
rlQosTupleValue1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Tuple no.1 value can be regular integer
values only."
::= { rlQosTupleEntry 3 }
rlQosTupleValue2 OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Tuple no.2 value can be IPv4/IPv6/MAC address
or protocol number with mask"
::= { rlQosTupleEntry 4 }
rlQosTupleStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosTupleEntry 5 }
-- QoS Access Control Element table
rlQosAceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies ACE table information"
::= { rlQosCliMib 6 }
rlQosAceEntry OBJECT-TYPE
SYNTAX RlQosAceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Classifier Element.
The information includes: Action the ACE's Type the up to 8 tuples
pointers. The index is sequential integer represent by rlQosAceIndex"
INDEX { rlQosAceIndex }
::= { rlQosAceTable 1 }
RlQosAceEntry ::= SEQUENCE {
rlQosAceIndex INTEGER,
rlQosAceAction AceActionType,
rlQosAceType AceObjectType,
rlQosAceTuple1 INTEGER,
rlQosAceTuple2 INTEGER,
rlQosAceTuple3 INTEGER,
rlQosAceTuple4 INTEGER,
rlQosAceTuple5 INTEGER,
rlQosAceTuple6 INTEGER,
rlQosAceTuple7 INTEGER,
rlQosAceTuple8 INTEGER,
rlQosAceAccount BinaryStatus,
rlQosAceStatus RowStatus
}
rlQosAceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index
for the ACE table."
::= { rlQosAceEntry 1 }
rlQosAceAction OBJECT-TYPE
SYNTAX AceActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Action to take."
::= { rlQosAceEntry 2 }
rlQosAceType OBJECT-TYPE
SYNTAX AceObjectType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Type"
::= { rlQosAceEntry 3 }
rlQosAceTuple1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 4 }
rlQosAceTuple2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 5 }
rlQosAceTuple3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 6 }
rlQosAceTuple4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 7 }
rlQosAceTuple5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 8 }
rlQosAceTuple6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 9 }
rlQosAceTuple7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 10 }
rlQosAceTuple8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple 1 pointer."
::= { rlQosAceEntry 11 }
rlQosAceAccount OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Accounting state.
When set to 'enabled' than appropriate statistic's
counter is provided for an ACE."
::= { rlQosAceEntry 12 }
rlQosAceStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosAceEntry 13 }
-- QoS Access Control List table
rlQosAclTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies ACL table information"
::= { rlQosCliMib 7 }
rlQosAclEntry OBJECT-TYPE
SYNTAX RlQosAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Classifier Element.
The information includes: Action and the row status. The ACE pointer
are in the ACL-ACE reference table.
The index is sequential integer represent by rlQosAceIndex"
INDEX { rlQosAclIndex }
::= { rlQosAclTable 1 }
RlQosAclEntry ::= SEQUENCE {
rlQosAclIndex INTEGER,
rlQosAclName DisplayString,
rlQosAclType AclObjectType,
rlQosAclStatus RowStatus,
rlQosAclNumOfAces INTEGER
}
rlQosAclIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index
for the ACE table."
::= { rlQosAclEntry 1 }
rlQosAclName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
-- Rsyntax OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name ACL."
::= { rlQosAclEntry 2 }
rlQosAclType OBJECT-TYPE
SYNTAX AclObjectType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACL Type."
::= { rlQosAclEntry 3 }
rlQosAclStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosAclEntry 4 }
rlQosAclNumOfAces OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Holds number of aces in the acl."
::= { rlQosAclEntry 5 }
--QoS ACE ACL refernce table
rlQosAclAceRefTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAclAceRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the ACE to ACL
relationship."
::= { rlQosCliMib 8 }
rlQosAclAceRefEntry OBJECT-TYPE
SYNTAX RlQosAclAceRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the relationship
between ACE to ACL. Show which ACE include in one ACL.
The index is the ACE pointer represent
by rlQosAclAceRefAcePointer"
INDEX { rlQosAclAceRefAcePointer }
::= { rlQosAclAceRefTable 1 }
RlQosAclAceRefEntry ::= SEQUENCE {
rlQosAclAceRefAcePointer INTEGER,
rlQosAclAceRefAclPointer INTEGER,
rlQosAclAceRefStatus RowStatus
}
rlQosAclAceRefAcePointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Index is the ACE pointer"
::= { rlQosAclAceRefEntry 1 }
rlQosAclAceRefAclPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACL index Pointer"
::= { rlQosAclAceRefEntry 2 }
rlQosAclAceRefStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosAclAceRefEntry 3 }
-- QoS Class-Map table
rlQosClassMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosClassMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies CCL table information"
::= { rlQosCliMib 9 }
rlQosClassMapEntry OBJECT-TYPE
SYNTAX RlQosClassMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Class Map Element.
The information includes: Classes Name,Class Action,
Policer pointer, and 1 match statements.
The index is sequential integer represent by rlQosClassMapIndex"
INDEX { rlQosClassMapIndex }
::= { rlQosClassMapTable 1 }
RlQosClassMapEntry ::= SEQUENCE {
rlQosClassMapIndex INTEGER,
rlQosClassMapName DisplayString,
rlQosClassMapType ClassMapType,
rlQosClassMapAction ClassMapAction,
rlQosClassMapMarkValue INTEGER,
rlQosClassMapPolicer INTEGER,
rlQosClassMapMatch1 INTEGER,
rlQosClassMapMatch2 INTEGER,
rlQosClassMapMarkVlan MarkVlanAction,
rlQosClassMapNewVlan INTEGER,
rlQosClassMapRedirectAction RedirectAction,
rlQosClassMapDestInterface INTEGER,
rlQosClassMapStatus RowStatus,
rlQosClassMapMatch3 INTEGER,
rlQosClassMapTrapId INTEGER,
rlQosClassMapCounterEnable TruthValue,
rlQosClassMapTunnelIdx Unsigned32
}
rlQosClassMapIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Class Map Index"
::= { rlQosClassMapEntry 1 }
rlQosClassMapName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
-- Rsyntax OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Class Map."
::= { rlQosClassMapEntry 2 }
rlQosClassMapType OBJECT-TYPE
SYNTAX ClassMapType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Class map type"
DEFVAL {1}
::= { rlQosClassMapEntry 3 }
rlQosClassMapAction OBJECT-TYPE
SYNTAX ClassMapAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Class Map Action."
DEFVAL {1}
::= { rlQosClassMapEntry 4 }
rlQosClassMapMarkValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Mark value when mark action has been chosen in
Class Map Action field."
DEFVAL {0}
::= { rlQosClassMapEntry 5 }
rlQosClassMapPolicer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policer pointer. 0-means no policer."
DEFVAL {0}
::= { rlQosClassMapEntry 6 }
rlQosClassMapMatch1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Match ACL 1 pointer."
::= { rlQosClassMapEntry 7 }
rlQosClassMapMatch2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Match ACL 2 pointer."
DEFVAL {0}
::= { rlQosClassMapEntry 8 }
rlQosClassMapMarkVlan OBJECT-TYPE
SYNTAX MarkVlanAction
MAX-ACCESS read-create
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 {1}
::= { rlQosClassMapEntry 9 }
rlQosClassMapNewVlan OBJECT-TYPE
SYNTAX INTEGER(0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If rlQosClassMapMarkVlan is not 'noMark',
than the classified traffic will be
remarked with new VLAN id.
The value of this field sets new VLAN id."
DEFVAL {0}
::= { rlQosClassMapEntry 10 }
rlQosClassMapRedirectAction OBJECT-TYPE
SYNTAX RedirectAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifiy the redirection action."
DEFVAL {disabled}
::= { rlQosClassMapEntry 11 }
rlQosClassMapDestInterface OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Relevant if rlQosClassMapRedirect is either
'redirectToInterface' or 'analyzerPort' or 'toMultipleInterfaces'.
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 forwarded."
DEFVAL {0}
::= { rlQosClassMapEntry 12 }
rlQosClassMapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosClassMapEntry 13 }
rlQosClassMapMatch3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Match ACL 3 pointer."
DEFVAL {0}
::= { rlQosClassMapEntry 14 }
rlQosClassMapTrapId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
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}
::= { rlQosClassMapEntry 15 }
rlQosClassMapCounterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable counting per class map.
Counts packets matche the class map rules."
DEFVAL {false}
::= { rlQosClassMapEntry 16 }
rlQosClassMapTunnelIdx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If not zero, then the tunnel data pointed by rlQosClassMapTunnelIdx
is added to the packet"
DEFVAL {0}
::= { rlQosClassMapEntry 17 }
--- QoS Policer table
rlQosPolicerTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies All the Policers in the system Information"
::= { rlQosCliMib 10 }
rlQosPolicerEntry OBJECT-TYPE
SYNTAX RlQosPolicerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one policer.
The information includes: Policer name, Policer type, Committed Rate,
Committed Burst, Out-of-Profile Action.
The index is sequential integer represent by rlQosPolicerIndex"
INDEX { rlQosPolicerIndex }
::= { rlQosPolicerTable 1 }
RlQosPolicerEntry ::= SEQUENCE {
rlQosPolicerIndex INTEGER,
rlQosPolicerName DisplayString,
rlQosPolicerType PolicerType,
rlQosPolicerCir Unsigned32,
rlQosPolicerCbs Unsigned32,
rlQosPolicerAction PolicerAction,
rlQosPolicerCasPointerRemVal INTEGER,
rlQosPolicerStatus RowStatus
}
rlQosPolicerIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Policer Index."
::= { rlQosPolicerEntry 1 }
rlQosPolicerName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
-- Rsyntax OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of the Policer."
::= { rlQosPolicerEntry 2 }
rlQosPolicerType OBJECT-TYPE
SYNTAX PolicerType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policer type"
::= { rlQosPolicerEntry 3 }
rlQosPolicerCir OBJECT-TYPE
SYNTAX Unsigned32
UNITS "kbps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed rate value."
::= { rlQosPolicerEntry 4 }
rlQosPolicerCbs OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed rate Value."
::= { rlQosPolicerEntry 5 }
rlQosPolicerAction OBJECT-TYPE
SYNTAX PolicerAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Out of profile Action."
::= { rlQosPolicerEntry 6 }
rlQosPolicerCasPointerRemVal OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Pointer to use whan the type is
cascade policer. 0-means no cascade policer. It can also be
Remark value in case of explicit remark"
::= { rlQosPolicerEntry 7 }
rlQosPolicerStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosPolicerEntry 8 }
-- QoS Police-Map table
rlQosPolicyMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPolicyMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies Policy Map Table Information"
::= { rlQosCliMib 11 }
rlQosPolicyMapEntry OBJECT-TYPE
SYNTAX RlQosPolicyMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one policy map.
The information includes: Index, Policy Map name,
Up to 6 class map names.
The index is sequential integer represent by rlQosPolicerIndex"
INDEX { rlQosPolicyMapIndex }
::= { rlQosPolicyMapTable 1 }
RlQosPolicyMapEntry ::= SEQUENCE {
rlQosPolicyMapIndex INTEGER,
rlQosPolicyMapName DisplayString,
rlQosPolicyMapStatus RowStatus
}
rlQosPolicyMapIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Policy map Index."
::= { rlQosPolicyMapEntry 1 }
rlQosPolicyMapName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
-- Rsyntax OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policy map Name."
::= { rlQosPolicyMapEntry 2 }
rlQosPolicyMapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosPolicyMapEntry 3 }
--QoS Policy Class map refernce table
rlQosPolicyClassRefTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPolicyClassRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The relationship
between policy map to class map"
::= { rlQosCliMib 12 }
rlQosPolicyClassRefEntry OBJECT-TYPE
SYNTAX RlQosPolicyClassRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the connection
between class-map entry to policy map by using pointers.
The index is Class map pointer
represent by rlQosPolicyClassRefClassPointer"
INDEX { rlQosPolicyClassRefClassPointer }
::= { rlQosPolicyClassRefTable 1 }
RlQosPolicyClassRefEntry ::= SEQUENCE {
rlQosPolicyClassRefClassPointer INTEGER,
rlQosPolicyClassRefPolicyPointer INTEGER,
rlQosPolicyClassRefStatus RowStatus
}
rlQosPolicyClassRefClassPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Index is the Class-map pointer"
::= { rlQosPolicyClassRefEntry 1 }
rlQosPolicyClassRefPolicyPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policy map index Pointer"
::= { rlQosPolicyClassRefEntry 2 }
rlQosPolicyClassRefStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosPolicyClassRefEntry 3 }
-- QoS Interface Policy table
rlQosIfPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosIfPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies for each interface
the Policy Map attach to it"
::= { rlQosCliMib 13 }
rlQosIfPolicyEntry OBJECT-TYPE
SYNTAX RlQosIfPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes what policy
Map attached to specific Interface.
The index is Interface Index represent by rlIfIndex and
the interface type represent by rlIfType"
INDEX { rlIfIndex,
rlIfType }
::= { rlQosIfPolicyTable 1 }
RlQosIfPolicyEntry ::= SEQUENCE {
rlIfIndex INTEGER,
rlIfType InterfaceType,
rlQosIfPolicyMapPointerIn INTEGER,
rlQosIfPolicyMapPointerOut INTEGER,
rlQosIfTrustActive BinaryStatus,
rlQosPortShaperStatus BinaryStatus,
rlQosCirPortShaper INTEGER,
rlQosCbsPortShaper INTEGER,
rlQosIfProfilePointer DisplayString,
rlQosQueueProfilePointer DisplayString,
rlQosQueueShapeProfilePointer INTEGER,
rlQosAclDefaultAction AclDefaultAction,
rlQosIfPolicyMapStatus RowStatus,
rlQosIfAclIn INTEGER,
rlQosIfAclOut INTEGER,
rlQosIfPolicerIn INTEGER,
rlQosPortRateLimitStatus BinaryStatus,
rlQosCirPortRateLimit INTEGER,
rlQosCbsPortRateLimit INTEGER,
rlQosIfIpv6AclIn INTEGER,
rlQosIfIpv6AclOut INTEGER
}
rlIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface Index."
::= { rlQosIfPolicyEntry 1 }
rlIfType OBJECT-TYPE
SYNTAX InterfaceType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface Type(vlan/port)."
::= { rlQosIfPolicyEntry 2 }
rlQosIfPolicyMapPointerIn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policy map pointer Input."
::= { rlQosIfPolicyEntry 3 }
rlQosIfPolicyMapPointerOut OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policy map pointer Output."
::= { rlQosIfPolicyEntry 4 }
rlQosIfTrustActive OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Interface Basic Mode Trust is active or not ."
::= { rlQosIfPolicyEntry 5 }
rlQosPortShaperStatus OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If there is shaper on the port"
::= { rlQosIfPolicyEntry 6 }
rlQosCirPortShaper OBJECT-TYPE
SYNTAX INTEGER
UNITS "bps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CIR for the port shaper.
N/A when the shper is disabled"
::= { rlQosIfPolicyEntry 7}
rlQosCbsPortShaper OBJECT-TYPE
SYNTAX INTEGER
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CBS for the port shaper.
N/A when the shper is disabled"
::= { rlQosIfPolicyEntry 8 }
rlQosIfProfilePointer OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Interface Profile name pointer."
::= { rlQosIfPolicyEntry 9 }
rlQosQueueProfilePointer OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Queue Profile name pointer."
::= { rlQosIfPolicyEntry 10 }
rlQosQueueShapeProfilePointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" Queue shape Profile pointer."
::= { rlQosIfPolicyEntry 11 }
rlQosAclDefaultAction OBJECT-TYPE
SYNTAX AclDefaultAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
" When one ACL is enterd then what to do for the last rull."
::= { rlQosIfPolicyEntry 12 }
rlQosIfPolicyMapStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosIfPolicyEntry 13 }
rlQosIfAclIn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of an ACL in the rlQosAclTable, which is applied
to the ingress of an interface.
0 - means no ACL applied."
DEFVAL {0}
::= { rlQosIfPolicyEntry 14 }
rlQosIfAclOut OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of an ACL in the rlQosAclTable, which is applied
to the egress of an interface.
0 - means no ACL applied."
DEFVAL {0}
::= { rlQosIfPolicyEntry 15 }
rlQosIfPolicerIn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of an Policer in the rlQosPolicerTable, which is applied
to the ingress of an interface.
0 - means no Policer applied."
DEFVAL {0}
::= { rlQosIfPolicyEntry 16 }
rlQosPortRateLimitStatus OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If there is Rate limit on the port"
DEFVAL {disable}
::= { rlQosIfPolicyEntry 17 }
rlQosCirPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
UNITS "bps"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CIR for the port rate limit.
N/A when the Rate limit is disabled"
DEFVAL {0}
::= { rlQosIfPolicyEntry 18}
rlQosCbsPortRateLimit OBJECT-TYPE
SYNTAX INTEGER
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The CBS for the port Rate limit.
N/A when the Rate limit is disabled"
DEFVAL {0}
::= { rlQosIfPolicyEntry 19 }
rlQosIfIpv6AclIn OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of an IPv6 ACL in the rlQosAclTable, which is applied
to the ingress of an interface.
0 - means no ACL applied."
DEFVAL {0}
::= { rlQosIfPolicyEntry 20 }
rlQosIfIpv6AclOut OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of an IPv6 ACL in the rlQosAclTable, which is applied
to the egress of an interface.
0 - means no ACL applied."
DEFVAL {0}
::= { rlQosIfPolicyEntry 21 }
-- QoS Interface Profile table
rlQosIfProfileCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosIfProfileCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies for each Queue the Tail
Drop or WRED parameters and the EF of WRR
parameters."
::= { rlQosCliMib 14 }
rlQosIfProfileCfgEntry OBJECT-TYPE
SYNTAX RlQosIfProfileCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one queue
parameters: Tail-drop threshold for drop precedence
0,1,3 and the WRED min-max threshold and the probability
factor for Drop precedence 0,1,2 and the WRED Q factor
and the EF priority and the WRR weight.
The index is Interface Index represent by rlIfProfileName
and queue-id represent by rlQosQueueId"
INDEX { rlIfProfileName,
rlQosQueueId
}
::= { rlQosIfProfileCfgTable 1 }
RlQosIfProfileCfgEntry ::= SEQUENCE {
rlIfProfileName DisplayString,
rlQosQueueId INTEGER,
rlQosTdThersholdDp0 INTEGER,
rlQosTdThersholdDp1 INTEGER,
rlQosTdThersholdDp2 INTEGER,
rlQosRedMinDp0 INTEGER,
rlQosRedMaxDp0 INTEGER,
rlQosRedProbDp0 INTEGER,
rlQosRedMinDp1 INTEGER,
rlQosRedMaxDp1 INTEGER,
rlQosRedProbDp1 INTEGER,
rlQosRedMinDp2 INTEGER,
rlQosRedMaxDp2 INTEGER,
rlQosRedProbDp2 INTEGER,
rlQosRedQweight INTEGER,
rlQosIfprofileStatus RowStatus
}
rlIfProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface Index."
::= { rlQosIfProfileCfgEntry 1 }
rlQosQueueId OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Queue id Index."
::= { rlQosIfProfileCfgEntry 2 }
rlQosTdThersholdDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 0."
::= { rlQosIfProfileCfgEntry 3 }
rlQosTdThersholdDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 1."
::= { rlQosIfProfileCfgEntry 4 }
rlQosTdThersholdDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Tail Drop Threshold for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 5 }
rlQosRedMinDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 6 }
rlQosRedMaxDp0 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 0."
::= { rlQosIfProfileCfgEntry 7 }
rlQosRedProbDp0 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 0."
::= { rlQosIfProfileCfgEntry 8 }
rlQosRedMinDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 9 }
rlQosRedMaxDp1 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 1."
::= { rlQosIfProfileCfgEntry 10 }
rlQosRedProbDp1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 1."
::= { rlQosIfProfileCfgEntry 11 }
rlQosRedMinDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Min Threshold for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 12 }
rlQosRedMaxDp2 OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED Max Threshold for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 13 }
rlQosRedProbDp2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"WRED probability for Drop Precedence 2."
::= { rlQosIfProfileCfgEntry 14 }
rlQosRedQweight OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Q factor for WRED."
::= { rlQosIfProfileCfgEntry 15 }
rlQosIfprofileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosIfProfileCfgEntry 16 }
-- QoS DSCP Mutation Map
rlQosDscpMutationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDscpMutationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
Mutation table"
::= { rlQosCliMib 15 }
rlQosDscpMutationEntry OBJECT-TYPE
SYNTAX RlQosDscpMutationEntry
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 rlQosOldDscp"
INDEX { rlQosOldDscp }
::= { rlQosDscpMutationTable 1 }
RlQosDscpMutationEntry ::= SEQUENCE {
rlQosOldDscp INTEGER,
rlQosNewDscp INTEGER
}
rlQosOldDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Old DSCP."
::= { rlQosDscpMutationEntry 1 }
rlQosNewDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"New DSCP."
::= { rlQosDscpMutationEntry 2 }
-- QoS DSCP Police Transmit(Remark) map
rlQosDscpRemarkTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDscpRemarkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
Remark table"
::= { rlQosCliMib 16 }
rlQosDscpRemarkEntry OBJECT-TYPE
SYNTAX RlQosDscpRemarkEntry
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 rlQosOldDscp"
INDEX { rlQosRmOldDscp }
::= { rlQosDscpRemarkTable 1 }
RlQosDscpRemarkEntry ::= SEQUENCE {
rlQosRmOldDscp INTEGER,
rlQosRmNewDscp INTEGER
}
rlQosRmOldDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Old DSCP."
::= { rlQosDscpRemarkEntry 1 }
rlQosRmNewDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"New DSCP."
::= { rlQosDscpRemarkEntry 2 }
-- QoS CoS (VPT) to Queue map
rlQosCosQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosCosQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The Cos
to queue map table"
::= { rlQosCliMib 17 }
rlQosCosQueueEntry OBJECT-TYPE
SYNTAX RlQosCosQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes queue ID.
The index is CoS represent by rlQosCosIndex"
INDEX { rlQosCosIndex }
::= { rlQosCosQueueTable 1 }
RlQosCosQueueEntry::= SEQUENCE {
rlQosCosIndex INTEGER,
rlQosCosQueueId INTEGER
}
rlQosCosIndex OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CoS value (0-7)."
::= { rlQosCosQueueEntry 1 }
rlQosCosQueueId OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Queue ID."
::= { rlQosCosQueueEntry 2 }
-- QoS DSCP to Queue (VPT) map
rlQosDscpQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDscpQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
to Queue map table"
::= { rlQosCliMib 18 }
rlQosDscpQueueEntry OBJECT-TYPE
SYNTAX RlQosDscpQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The
Queue Number.
The index is DSCP represent by rlQosDscpIndex"
INDEX { rlQosDscpIndex }
::= { rlQosDscpQueueTable 1 }
RlQosDscpQueueEntry ::= SEQUENCE {
rlQosDscpIndex INTEGER,
rlQosQueueNum INTEGER
}
rlQosDscpIndex OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DSCP value."
::= { rlQosDscpQueueEntry 1 }
rlQosQueueNum OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Queue Number."
::= { rlQosDscpQueueEntry 2 }
-- QoS TCP port to Queue map
rlQosTcpPortQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosTcpPortQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies TCP
Port to Queue map table"
::= { rlQosCliMib 19 }
rlQosTcpPortQueueEntry OBJECT-TYPE
SYNTAX RlQosTcpPortQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The
Queue Number.
The index is TCP/UDP port represent by rlQosTcpUdpPort"
INDEX { rlQosTcpPort }
::= { rlQosTcpPortQueueTable 1 }
RlQosTcpPortQueueEntry ::= SEQUENCE {
rlQosTcpPort INTEGER,
rlQosTcpQueueValue INTEGER,
rlQosTcpPortQueueStatus RowStatus
}
rlQosTcpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"TCP port number."
::= { rlQosTcpPortQueueEntry 1 }
rlQosTcpQueueValue OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Queue Number."
::= { rlQosTcpPortQueueEntry 2 }
rlQosTcpPortQueueStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosTcpPortQueueEntry 3 }
-- QoS UDP port to Queue map
rlQosUdpPortQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosUdpPortQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies UDP
Port to Queue map table"
::= { rlQosCliMib 20 }
rlQosUdpPortQueueEntry OBJECT-TYPE
SYNTAX RlQosUdpPortQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The
Queue Number.
The index is UDP port represent by rlQosTcpUdpPort"
INDEX { rlQosUdpPort }
::= { rlQosUdpPortQueueTable 1 }
RlQosUdpPortQueueEntry ::= SEQUENCE {
rlQosUdpPort INTEGER,
rlQosUdpQueueValue INTEGER,
rlQosUdpPortQueueStatus RowStatus
}
rlQosUdpPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"UDP port number."
::= { rlQosUdpPortQueueEntry 1 }
rlQosUdpQueueValue OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Queue value."
::= { rlQosUdpPortQueueEntry 2 }
rlQosUdpPortQueueStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosUdpPortQueueEntry 3 }
-- CLI QoS Number of EF Scalar
rlQosEfManageTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosEfManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies UDP
Port to DSCP map table"
::= { rlQosCliMib 21 }
rlQosEfManageEntry OBJECT-TYPE
SYNTAX RlQosEfManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This Table describes The
EF management for the system.
The index is UDP port represent by rlQosEfQueueId"
INDEX { rlQosEfQueueId }
::= { rlQosEfManageTable 1 }
RlQosEfManageEntry ::= SEQUENCE {
rlQosEfQueueId INTEGER,
rlQosEfState BinaryStatus,
rlQosEfPriority INTEGER
}
rlQosEfQueueId OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Queue-ID."
::= { rlQosEfManageEntry 1 }
rlQosEfState OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable"
::= { rlQosEfManageEntry 2 }
rlQosEfPriority OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The priority of the queue"
::= { rlQosEfManageEntry 3 }
-- CLI QoS Queue Profile
rlQosQueueProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosQueueProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table describes the queue managment profiles "
::= { rlQosCliMib 22 }
rlQosQueueProfileEntry OBJECT-TYPE
SYNTAX RlQosQueueProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The
queue managment profile Value.
The index is profile name represent by rlQueueProfileName"
INDEX { rlQueueProfileName }
::= { rlQosQueueProfileTable 1 }
RlQosQueueProfileEntry ::= SEQUENCE {
rlQueueProfileName DisplayString,
rlQosTypeQueue1 QueueType,
rlQosValueQueue1 INTEGER,
rlQosTypeQueue2 QueueType,
rlQosValueQueue2 INTEGER,
rlQosTypeQueue3 QueueType,
rlQosValueQueue3 INTEGER,
rlQosTypeQueue4 QueueType,
rlQosValueQueue4 INTEGER,
rlQosTypeQueue5 QueueType,
rlQosValueQueue5 INTEGER,
rlQosTypeQueue6 QueueType,
rlQosValueQueue6 INTEGER,
rlQosTypeQueue7 QueueType,
rlQosValueQueue7 INTEGER,
rlQosTypeQueue8 QueueType,
rlQosValueQueue8 INTEGER,
rlQosQueueProfileStatus RowStatus,
rlQosNumOfIfConnections INTEGER
}
rlQueueProfileName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Profile name for the Queue profile."
::= { rlQosQueueProfileEntry 1 }
rlQosTypeQueue1 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 2 }
rlQosValueQueue1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 3 }
rlQosTypeQueue2 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 4 }
rlQosValueQueue2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 5 }
rlQosTypeQueue3 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 6 }
rlQosValueQueue3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 7 }
rlQosTypeQueue4 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 8 }
rlQosValueQueue4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 9 }
rlQosTypeQueue5 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 10 }
rlQosValueQueue5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 11 }
rlQosTypeQueue6 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 12 }
rlQosValueQueue6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 13 }
rlQosTypeQueue7 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 14}
rlQosValueQueue7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 15 }
rlQosTypeQueue8 OBJECT-TYPE
SYNTAX QueueType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"EF or WRR"
::= { rlQosQueueProfileEntry 16 }
rlQosValueQueue8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"for EF read-only for wrr the weight"
::= { rlQosQueueProfileEntry 17 }
rlQosQueueProfileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosQueueProfileEntry 18 }
rlQosNumOfIfConnections OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"how many time this entry connected to the if policy table"
::= { rlQosQueueProfileEntry 19 }
-- CLI QoS Queue Shape Profile
rlQosQueueShapeProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosQueueShapeProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the queue shaper profile"
::= { rlQosCliMib 23 }
rlQosQueueShapeProfileEntry OBJECT-TYPE
SYNTAX RlQosQueueShapeProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes The
shaper profile for all queues.
The index sequencial index represent by rlQosQueueShapeIndex"
INDEX { rlQosQueueShapeIndex}
::= { rlQosQueueShapeProfileTable 1 }
RlQosQueueShapeProfileEntry ::= SEQUENCE {
rlQosQueueShapeIndex INTEGER,
rlQosCirQueue1 INTEGER,
rlQosCbsQueue1 INTEGER,
rlQosCirQueue2 INTEGER,
rlQosCbsQueue2 INTEGER,
rlQosCirQueue3 INTEGER,
rlQosCbsQueue3 INTEGER,
rlQosCirQueue4 INTEGER,
rlQosCbsQueue4 INTEGER,
rlQosCirQueue5 INTEGER,
rlQosCbsQueue5 INTEGER,
rlQosCirQueue6 INTEGER,
rlQosCbsQueue6 INTEGER,
rlQosCirQueue7 INTEGER,
rlQosCbsQueue7 INTEGER,
rlQosCirQueue8 INTEGER,
rlQosCbsQueue8 INTEGER,
rlQosQueueShapeProfileStatus RowStatus
}
rlQosQueueShapeIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Profile Index."
::= { rlQosQueueShapeProfileEntry 1 }
rlQosCirQueue1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue1 0 for not active"
::= { rlQosQueueShapeProfileEntry 2 }
rlQosCbsQueue1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue1 0 for not active"
::= { rlQosQueueShapeProfileEntry 3 }
rlQosCirQueue2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue2 0 for not active"
::= { rlQosQueueShapeProfileEntry 4 }
rlQosCbsQueue2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue2 0 for not active"
::= { rlQosQueueShapeProfileEntry 5 }
rlQosCirQueue3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue3 0 for not active"
::= { rlQosQueueShapeProfileEntry 6 }
rlQosCbsQueue3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue3 0 for not active"
::= { rlQosQueueShapeProfileEntry 7 }
rlQosCirQueue4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue4 0 for not active"
::= { rlQosQueueShapeProfileEntry 8 }
rlQosCbsQueue4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue4 0 for not active"
::= { rlQosQueueShapeProfileEntry 9 }
rlQosCirQueue5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue5 0 for not active"
::= { rlQosQueueShapeProfileEntry 10 }
rlQosCbsQueue5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue5 0 for not active"
::= { rlQosQueueShapeProfileEntry 11 }
rlQosCirQueue6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue6 0 for not active"
::= { rlQosQueueShapeProfileEntry 12 }
rlQosCbsQueue6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue6 0 for not active"
::= { rlQosQueueShapeProfileEntry 13 }
rlQosCirQueue7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue7 0 for not active"
::= { rlQosQueueShapeProfileEntry 14 }
rlQosCbsQueue7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue7 0 for not active"
::= { rlQosQueueShapeProfileEntry 15 }
rlQosCirQueue8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR for Queue8 0 for not active"
::= { rlQosQueueShapeProfileEntry 16 }
rlQosCbsQueue8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CBS for Queue8 0 for not active"
::= { rlQosQueueShapeProfileEntry 17 }
rlQosQueueShapeProfileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosQueueShapeProfileEntry 18 }
-- ACL counters table
rlQosAclCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAclCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to show statistics for
ACL applied on an interface."
::= { rlQosCliMib 24 }
rlQosAclCounterEntry OBJECT-TYPE
SYNTAX RlQosAclCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry shows value of conter for a
particular ACE of an ACL."
INDEX { rlQosAclCounterInterface,
rlQosAclCounterAclIndex,
rlQosAclCounterAceIndex}
::= { rlQosAclCounterTable 1 }
RlQosAclCounterEntry ::= SEQUENCE {
rlQosAclCounterInterface InterfaceIndex,
rlQosAclCounterAclIndex INTEGER,
rlQosAclCounterAceIndex INTEGER,
rlQosAclCounterValue Counter32
}
rlQosAclCounterInterface OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface Index on which ACL is applied."
::= { rlQosAclCounterEntry 1 }
rlQosAclCounterAclIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of ACL, which was applied on the IfIndex."
::= { rlQosAclCounterEntry 2 }
rlQosAclCounterAceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of ACE, which is belong to an ACL."
::= { rlQosAclCounterEntry 3 }
rlQosAclCounterValue OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the ACE counter."
::= { rlQosAclCounterEntry 4 }
-- Free indexes table
rlQosFreeIndexesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosFreeIndexesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to get free indexes of tables to create
new entries. The algorithm for free indexes depends on
table's type:
Tuple table - first free index.
Offset table - first free index.
ACE table - last used index + ACE indexes delta.
ACL table - first free index.
Class Map table - last used index + Class Map indexes delta.
Policy Map table - first free index.
Policer Table - first free index.
The ACE indexes delta and Class Map indexes delta are used
to supply QoS MIB user easy insert entry capabilities.
Values of these deltas depend on the MIB implementation.
The 'Get and increment' approach is used in all cases. "
::= { rlQosCliMib 25 }
rlQosFreeIndexesEntry OBJECT-TYPE
SYNTAX RlQosFreeIndexesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to get free index for particular table."
INDEX { rlQosFreeIndexesTableId}
::= { rlQosFreeIndexesTable 1 }
RlQosFreeIndexesEntry ::= SEQUENCE {
rlQosFreeIndexesTableId INTEGER,
rlQosFreeIndexesValue INTEGER
}
rlQosFreeIndexesTableId OBJECT-TYPE
SYNTAX INTEGER {
tuple (1),
offset(2),
ace(3),
acl(4),
class(5),
policy(6),
policer(7),
shaper(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identification of the table, for which free index
is retrieved."
::= { rlQosFreeIndexesEntry 1 }
rlQosFreeIndexesValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Free index for table. 0 means no free entries."
::= { rlQosFreeIndexesEntry 2 }
-- names to indexes table
rlQosNamesToIndexesTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosNamesToIndexesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to get the ACL,Class-Map and Policy-Map
indexes from the name."
::= { rlQosCliMib 26 }
rlQosNamesToIndexesEntry OBJECT-TYPE
SYNTAX RlQosNamesToIndexesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to get index form particular name and table type."
INDEX { rlQosNamesToIndexesTableId,
rlQosNamesToIndexesName}
::= { rlQosNamesToIndexesTable 1 }
RlQosNamesToIndexesEntry ::= SEQUENCE {
rlQosNamesToIndexesTableId INTEGER,
rlQosNamesToIndexesName DisplayString,
rlQosNamesToIndexesValue INTEGER
}
rlQosNamesToIndexesTableId OBJECT-TYPE
SYNTAX INTEGER {
acl(1),
class(2),
policy(3),
policer(4)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identification of the table, for which the index
is retrieved."
::= { rlQosNamesToIndexesEntry 1 }
rlQosNamesToIndexesName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the entry"
::= { rlQosNamesToIndexesEntry 2 }
rlQosNamesToIndexesValue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the index for table"
::= { rlQosNamesToIndexesEntry 3 }
-- Stack Control Queue number
rlQosStackControlQueue OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This scalar object defines queue ID, which is
used for stack control information transfer.
For standalone systems the scalar value equals 0.
This scalar object can be used for warning messages
when users assign a QoS map item, or a Class to the
stack control queue."
::= { rlQosCliMib 27 }
-- Stack Control CoS
rlQosStackControlCos OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This scalar object defines CoS (VPT), which is used
for stack control information transfer.
For standalone systems the scalar value equals 8
(not valid for VPT).
This scalar object can be used for warning messages
when users assign a stack control CoS to a non-stacking
control queue."
::= { rlQosCliMib 28 }
-- Cos to Queue Default map table
rlQosCosQueueDefaultMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosCosQueueDefaultMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to set default 802.1p map (vpt to queue)"
::= { rlQosCliMib 29 }
rlQosCosQueueDefaultMapEntry OBJECT-TYPE
SYNTAX RlQosCosQueueDefaultMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to get index form particular name and table type."
INDEX { rlQosCosQueueDefaultMapVpt }
::= { rlQosCosQueueDefaultMapTable 1 }
RlQosCosQueueDefaultMapEntry ::= SEQUENCE {
rlQosCosQueueDefaultMapVpt INTEGER,
rlQosCosQueueDefaultMapQueueId INTEGER
}
rlQosCosQueueDefaultMapVpt OBJECT-TYPE
SYNTAX INTEGER (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"vlan priority tag , 3 bits of priority which determine
the service class."
::= { rlQosCosQueueDefaultMapEntry 1 }
rlQosCosQueueDefaultMapQueueId OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the queue id vary from the first queue id to Max Number of queues supported"
::= { rlQosCosQueueDefaultMapEntry 2 }
-- Predefined ACLs interface table
rlQosPredefBlockAclTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPredefBlockAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used apply predefined ACLs to interfaces.
Predefined ACLs is ACL to filter particular protocol or
protocol's family. These ACL may operate simultaneously
with IP and MAC ACLs."
::= { rlQosCliMib 30 }
rlQosPredefBlockAclEntry OBJECT-TYPE
SYNTAX RlQosPredefBlockAclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to apply predefined ACLs to the interface."
INDEX { rlQosPredefBlockAclIfIndex, rlQosPredefBlockAclIfType }
::= { rlQosPredefBlockAclTable 1 }
RlQosPredefBlockAclEntry ::= SEQUENCE {
rlQosPredefBlockAclIfIndex InterfaceIndex,
rlQosPredefBlockAclIfType InterfaceType,
rlQosPredefBlockAclMask OCTET STRING,
rlQosPredefBlockAclStatus RowStatus
}
rlQosPredefBlockAclIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"IfIndex of port/trunk or VLAN tag of VLAN
on which predefined ACLa will be configured."
::= { rlQosPredefBlockAclEntry 1 }
rlQosPredefBlockAclIfType OBJECT-TYPE
SYNTAX InterfaceType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface Type(vlan/port)."
::= { rlQosPredefBlockAclEntry 2 }
rlQosPredefBlockAclMask OBJECT-TYPE
-- SYNTAX BITS {
-- LLCNetBueiNetBios(0),
-- IPNetBueiNetBios(1)
-- }
SYNTAX OCTET STRING (SIZE(1))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This bitmap defines predefined ACL which are applied
on an interface. The table below defines bitmasks for
supported predefined ACL.
Protocol/Family bitmask Description
=====================================================
LLC NetBuei/NetBios 0x01 ACL filters out LLC encapsulated
NetBuei/NetBios frames
IP NetBuei/NetBios 0x02 ACL filters out IP encapsulated
NetBuei/NetBios frames
"
::= { rlQosPredefBlockAclEntry 3 }
rlQosPredefBlockAclStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosPredefBlockAclEntry 4 }
-- QoS Access Control Element table two indexes
rlQosAceTidxTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAceTidxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies ACE table with two index information"
::= { rlQosCliMib 31 }
rlQosAceTidxEntry OBJECT-TYPE
SYNTAX RlQosAceTidxEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Classifier Element.
The information includes: Action the ACE's Type the up to 11 tuples
pointers. The index is sequential integer represent by
rlQosAceTidxAclIndex ACL index and rlQosAceTidxIndex ACE index"
INDEX { rlQosAceTidxAclIndex,
rlQosAceTidxIndex}
::= { rlQosAceTidxTable 1 }
RlQosAceTidxEntry ::= SEQUENCE {
rlQosAceTidxAclIndex INTEGER,
rlQosAceTidxIndex INTEGER,
rlQosAceTidxAction AceActionType,
rlQosAceTidxType AceObjectType,
rlQosAceTidxTuple1 INTEGER,
rlQosAceTidxTuple2 INTEGER,
rlQosAceTidxTuple3 INTEGER,
rlQosAceTidxTuple4 INTEGER,
rlQosAceTidxTuple5 INTEGER,
rlQosAceTidxTuple6 INTEGER,
rlQosAceTidxTuple7 INTEGER,
rlQosAceTidxTuple8 INTEGER,
rlQosAceTidxAccount BinaryStatus,
rlQosAceTidxStatus RowStatus,
rlQosAceTidxTimeRange DisplayString,
rlQosAceTidxTimeRangeIsActive TruthValue,
rlQosAceTidxTuple9 INTEGER,
rlQosAceTidxTuple10 INTEGER,
rlQosAceTidxTuple11 INTEGER,
rlQosAceTidxActionDropType RlQosAceTidxActionDropType
}
rlQosAceTidxAclIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index
for the ACL ACE connection."
::= { rlQosAceTidxEntry 1 }
rlQosAceTidxIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index
for the ACE table."
::= { rlQosAceTidxEntry 2 }
rlQosAceTidxAction OBJECT-TYPE
SYNTAX AceActionType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Action to take."
::= { rlQosAceTidxEntry 3 }
rlQosAceTidxType OBJECT-TYPE
SYNTAX AceObjectType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Type"
::= { rlQosAceTidxEntry 4 }
rlQosAceTidxTuple1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 5 }
rlQosAceTidxTuple2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 6 }
rlQosAceTidxTuple3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 7 }
rlQosAceTidxTuple4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 8 }
rlQosAceTidxTuple5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 9 }
rlQosAceTidxTuple6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 10 }
rlQosAceTidxTuple7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 11 }
rlQosAceTidxTuple8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 12 }
rlQosAceTidxAccount OBJECT-TYPE
SYNTAX BinaryStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Accounting state.
When set to 'enabled' than appropriate statistic's
counter is provided for an ACE."
::= { rlQosAceTidxEntry 13 }
rlQosAceTidxStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosAceTidxEntry 14 }
rlQosAceTidxTimeRange OBJECT-TYPE
SYNTAX DisplayString( SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE time range name."
::= { rlQosAceTidxEntry 15 }
rlQosAceTidxTimeRangeIsActive OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ACE time range is rule active state shows is ACE currently active or not."
::= { rlQosAceTidxEntry 16 }
rlQosAceTidxTuple9 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 17 }
rlQosAceTidxTuple10 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 18 }
rlQosAceTidxTuple11 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ACE Tuple pointer."
::= { rlQosAceTidxEntry 19 }
rlQosAceTidxActionDropType OBJECT-TYPE
SYNTAX RlQosAceTidxActionDropType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This field is valid only if AceActionType is
deny or deny-DisablePort."
::= { rlQosAceTidxEntry 20 }
rlQosMibVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MIB's version, the current version is 11
1 - original version
2 - Add new two MIB's items.
- rlQosAceTidxTable - Ace table with two indexes
- rlQosMibVersion.
Change the unit in Policer table from bps to kbps
3 - Add new MIB's value for Textual convention QosObjectMode
4 - Add new MIBs rlQosDscpQueueDefaultMapTable
5 - Add new advanced action : trustCosDscp
6 - Add vpt,ether-type,tcp-flags,icmp-type,icmp-code,igmp-type to ClassTupleType
Add ip-ICMP,ip-IGMP To AceObjectType
Add vpt,ethertype To ClassOffsetType
7- Add rlQosPortRateLimitStatus,rlQosCirPortRateLimit, rlQosCbsPortRateLimit
to rlQosIfPolicyTable
8 - Add Added rlQosDscpToDpTable
9 - Add statistics
10 - Add innerVlan to ClassOffsetType And inner-vlan to ClassTupleType
11 - Added rlQosCPUSafeGuardEnable"
::= { rlQosCliMib 32 }
-- DSCP to Queue Default map table
rlQosDscpQueueDefaultMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDscpQueueDefaultMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to set default dscp to queue map"
::= { rlQosCliMib 33 }
rlQosDscpQueueDefaultMapEntry OBJECT-TYPE
SYNTAX RlQosDscpQueueDefaultMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry is used to get index form particular name and table type."
INDEX { rlQosDscpQueueDefaultMapDscp }
::= { rlQosDscpQueueDefaultMapTable 1 }
RlQosDscpQueueDefaultMapEntry ::= SEQUENCE {
rlQosDscpQueueDefaultMapDscp INTEGER,
rlQosDscpQueueDefaultMapQueueId INTEGER
}
rlQosDscpQueueDefaultMapDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"dscp , 6 bits of priority which determine
the service class."
::= { rlQosDscpQueueDefaultMapEntry 1 }
rlQosDscpQueueDefaultMapQueueId OBJECT-TYPE
SYNTAX INTEGER (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the queue id vary from the first queue id to Max Number of queues supported"
::= { rlQosDscpQueueDefaultMapEntry 2 }
-- QoS DSCP to DP Map
rlQosDscpToDpTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDscpToDpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The DSCP
To Dp table"
::= { rlQosCliMib 34 }
rlQosDscpToDpEntry OBJECT-TYPE
SYNTAX RlQosDscpToDpEntry
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 rlQosDscp"
INDEX { rlQosDscp }
::= { rlQosDscpToDpTable 1 }
RlQosDscpToDpEntry ::= SEQUENCE {
rlQosDscp INTEGER,
rlQosDp INTEGER
}
rlQosDscp OBJECT-TYPE
SYNTAX INTEGER (0..63)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Packet DSCP."
::= { rlQosDscpToDpEntry 1 }
rlQosDp OBJECT-TYPE
SYNTAX INTEGER (0..2)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"New DP."
::= { rlQosDscpToDpEntry 2 }
rlQosStatistics
OBJECT IDENTIFIER ::= { rlQosCliMib 35 }
rlQosPortPolicyStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPortPolicyStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics counter for policies with specific actions "
::= { rlQosStatistics 1 }
rlQosPortPolicyStatisticsEntry OBJECT-TYPE
SYNTAX RlQosPortPolicyStatisticsEntry
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 { rlIfIndex,rlIfType, rlQosPortPolicyStatisticsCntrType }
::= { rlQosPortPolicyStatisticsTable 1 }
RlQosPortPolicyStatisticsEntry::= SEQUENCE {
rlQosPortPolicyStatisticsCntrType StatisticsCntrType,
rlQosPortPolicyStatisticsCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosPortPolicyStatisticsEnableCounting TruthValue,
rlQosPortPolicyStatisticsCounterValue Counter64
}
rlQosPortPolicyStatisticsCntrType OBJECT-TYPE
SYNTAX StatisticsCntrType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Counter type."
::= { rlQosPortPolicyStatisticsEntry 1 }
rlQosPortPolicyStatisticsCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits."
::= { rlQosPortPolicyStatisticsEntry 2 }
rlQosPortPolicyStatisticsEnableCounting OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication whether the counter is enabled."
DEFVAL { false }
::= { rlQosPortPolicyStatisticsEntry 3 }
rlQosPortPolicyStatisticsCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter value."
::= { rlQosPortPolicyStatisticsEntry 4 }
rlQosSinglePolicerStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosSinglePolicerStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics counters per QoS meter "
::= { rlQosStatistics 2 }
rlQosSinglePolicerStatisticsEntry OBJECT-TYPE
SYNTAX RlQosSinglePolicerStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes counter per meter. The index is port represent by RlQosMeterStatisticsPort and RlQosMeterStatisticsPolicerPointer. In each entry there are fields representing whether the counter for the meter is enabled and two counters value - for in-profile bytes and for out-of-profile bytes. "
INDEX { rlIfIndex, rlQosPolicerIndex }
::= { rlQosSinglePolicerStatisticsTable 1 }
RlQosSinglePolicerStatisticsEntry::= SEQUENCE {
rlQosSinglePolicerStatisticsInProfileCounterValue Counter64,
rlQosSinglePolicerStatisticsInProfileCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosSinglePolicerStatisticsOutProfileCounterValue Counter64,
rlQosSinglePolicerStatisticsOutProfileCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosSinglePolicerStatisticsStatus RowStatus
}
rlQosSinglePolicerStatisticsInProfileCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Counter value of in profile traffic."
::= { rlQosSinglePolicerStatisticsEntry 1 }
rlQosSinglePolicerStatisticsInProfileCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for in profile counter."
::= { rlQosSinglePolicerStatisticsEntry 2 }
rlQosSinglePolicerStatisticsOutProfileCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Counter value of Out Profile traffic."
::= { rlQosSinglePolicerStatisticsEntry 3 }
rlQosSinglePolicerStatisticsOutProfileCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for out profile counter."
::= { rlQosSinglePolicerStatisticsEntry 4 }
rlQosSinglePolicerStatisticsStatus 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."
::= { rlQosSinglePolicerStatisticsEntry 5 }
rlQosAggregatePolicerStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosAggregatePolicerStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics counters per QoS aggregate meter "
::= { rlQosStatistics 3 }
rlQosAggregatePolicerStatisticsEntry OBJECT-TYPE
SYNTAX RlQosAggregatePolicerStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes counter per aggregate meter.
The index is rlQosPolicerIndex.
In each entry there are fields representing whether the counter for the
meter is enabled and three counters values - for green, yellow and red
profiles bytes. "
INDEX { rlQosPolicerIndex }
::= { rlQosAggregatePolicerStatisticsTable 1 }
RlQosAggregatePolicerStatisticsEntry::= SEQUENCE {
rlQosAggregatePolicerStatisticsInProfileCounterValue Counter64,
rlQosAggregatePolicerStatisticsInProfileCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosAggregatePolicerStatisticsOutProfileCounterValue Counter64,
rlQosAggregatePolicerStatisticsOutProfileCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosAggregatePolicerStatisticsStatus RowStatus
}
rlQosAggregatePolicerStatisticsInProfileCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter value of In Profile amount of bytes."
::= { rlQosAggregatePolicerStatisticsEntry 1}
rlQosAggregatePolicerStatisticsInProfileCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for In Profile ."
::= { rlQosAggregatePolicerStatisticsEntry 2 }
rlQosAggregatePolicerStatisticsOutProfileCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Counter value of Out Profile amount of bytes."
::= { rlQosAggregatePolicerStatisticsEntry 3 }
rlQosAggregatePolicerStatisticsOutProfileCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for Out Profile."
::= { rlQosAggregatePolicerStatisticsEntry 4 }
rlQosAggregatePolicerStatisticsStatus 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."
::= { rlQosAggregatePolicerStatisticsEntry 5 }
rlQosOutQueueStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosOutQueueStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics counters per VLAN/Port/Queue/Drop Precedence "
::= { rlQosStatistics 4 }
rlQosOutQueueStatisticsEntry OBJECT-TYPE
SYNTAX RlQosOutQueueStatisticsEntry
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 rlQosOutQueueStatisticsCountrID.
In each entry there are fields representing
whether the counter is enabled and counters value. "
INDEX {rlQosOutQueueStatisticsCountrID}
::= { rlQosOutQueueStatisticsTable 1 }
RlQosOutQueueStatisticsEntry::= SEQUENCE {
rlQosOutQueueStatisticsCountrID INTEGER,
rlQosOutQueueStatisticsIfIndexList PortList,
rlQosOutQueueStatisticsPortAll TruthValue,
rlQosOutQueueStatisticsVlan INTEGER,
rlQosOutQueueStatisticsVlanAll TruthValue,
rlQosOutQueueStatisticsQueue INTEGER,
rlQosOutQueueStatisticsQueueAll TruthValue,
rlQosOutQueueStatisticsDP StatisticsDPType,
rlQosOutQueueStatisticsDPAll TruthValue,
rlQosOutQueueStatisticsCounterTailDropValue Counter64,
rlQosOutQueueStatisticsCounterAllValue Counter64,
rlQosOutQueueStatisticsCntrNumOfBits StatisticsCntrNumOfBitsType,
rlQosOutQueueStatisticsStatus RowStatus
}
rlQosOutQueueStatisticsCountrID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Counter id, the key of the table."
::= { rlQosOutQueueStatisticsEntry 1 }
rlQosOutQueueStatisticsIfIndexList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Port for which the flow is counted."
::= { rlQosOutQueueStatisticsEntry 2 }
rlQosOutQueueStatisticsPortAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the port is configured as range of all the ports"
::= {rlQosOutQueueStatisticsEntry 3 }
rlQosOutQueueStatisticsVlan OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VLAN for which the flow is counted."
::= { rlQosOutQueueStatisticsEntry 4 }
rlQosOutQueueStatisticsVlanAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the VLAN is configured as range of all the VLANS"
::= { rlQosOutQueueStatisticsEntry 5 }
rlQosOutQueueStatisticsQueue OBJECT-TYPE
SYNTAX INTEGER(1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Queue for which the flow is counted."
::= { rlQosOutQueueStatisticsEntry 6 }
rlQosOutQueueStatisticsQueueAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the queue is configured as range of all the Queues"
::= { rlQosOutQueueStatisticsEntry 7 }
rlQosOutQueueStatisticsDP OBJECT-TYPE
SYNTAX StatisticsDPType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Drop Precedence for which the flow is counted."
::= { rlQosOutQueueStatisticsEntry 8 }
rlQosOutQueueStatisticsDPAll OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indication for whether the DP is configured as range of all the DPs"
::= { rlQosOutQueueStatisticsEntry 9}
rlQosOutQueueStatisticsCounterTailDropValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter for tail dropped value."
::= { rlQosOutQueueStatisticsEntry 10 }
rlQosOutQueueStatisticsCounterAllValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter for all traffic value."
::= { rlQosOutQueueStatisticsEntry 11 }
rlQosOutQueueStatisticsCntrNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits for the counter."
::= { rlQosOutQueueStatisticsEntry 12 }
rlQosOutQueueStatisticsStatus 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."
::= { rlQosOutQueueStatisticsEntry 13 }
-- Global Counter for statistics
rlQosGlobalStatisticsCntrsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosGlobalStatisticsCntrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies statistics global counters for specific rules for all ports
that they are connected to "
::= { rlQosStatistics 5 }
rlQosGlobalStatisticsCntrsEntry OBJECT-TYPE
SYNTAX RlQosGlobalStatisticsCntrsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry represents global counter."
INDEX {rlQosGlobalStatisticsCntrsType}
::= { rlQosGlobalStatisticsCntrsTable 1 }
RlQosGlobalStatisticsCntrsEntry::= SEQUENCE {
rlQosGlobalStatisticsCntrsType StatisticsCntrType,
rlQosGlobalStatisticsCntrsNumOfBits StatisticsCntrNumOfBitsType,
rlQosGlobalStatisticsCntrsCounterValue Counter64,
rlQosGlobalStatisticsStatus RowStatus
}
rlQosGlobalStatisticsCntrsType OBJECT-TYPE
SYNTAX StatisticsCntrType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter type."
::= { rlQosGlobalStatisticsCntrsEntry 1 }
rlQosGlobalStatisticsCntrsNumOfBits OBJECT-TYPE
SYNTAX StatisticsCntrNumOfBitsType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter size in bits."
::= { rlQosGlobalStatisticsCntrsEntry 2 }
rlQosGlobalStatisticsCntrsCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Counter value."
::= { rlQosGlobalStatisticsCntrsEntry 3 }
rlQosGlobalStatisticsStatus 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."
::= { rlQosGlobalStatisticsCntrsEntry 4 }
-- clear scalar
rlQosClearCounters OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar indicates to clear all the counters."
::= { rlQosStatistics 6 }
-- CLI QoS Classifier Utilization
rlQosClassifierUtilization OBJECT IDENTIFIER
::= { rlQosCliMib 36 }
rlQosClassifierUtilizationTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosClassifierUtilizationEntry
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."
::= { rlQosClassifierUtilization 1 }
rlQosClassifierUtilizationEntry OBJECT-TYPE
SYNTAX RlQosClassifierUtilizationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Single entry containing Classifier utilization information."
INDEX { rlQosClassifierUtilizationUnitId }
::= { rlQosClassifierUtilizationTable 1 }
RlQosClassifierUtilizationEntry ::= SEQUENCE {
rlQosClassifierUtilizationUnitId Unsigned32,
rlQosClassifierUtilizationPercent Unsigned32,
rlQosClassifierUtilizationRulesNumber Unsigned32,
rlQosClassifierUtilizationFreeRulesNumber Unsigned32
}
rlQosClassifierUtilizationUnitId 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."
::= { rlQosClassifierUtilizationEntry 1 }
rlQosClassifierUtilizationPercent OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The classifier utilization percentage. "
DEFVAL { 0 }
::= { rlQosClassifierUtilizationEntry 2 }
rlQosClassifierUtilizationRulesNumber 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 }
::= { rlQosClassifierUtilizationEntry 3 }
rlQosClassifierUtilizationFreeRulesNumber OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The classifier utilization number of not used yet rules on the unit, in short rules resolution."
DEFVAL { 0 }
::= { rlQosClassifierUtilizationEntry 4 }
-- CLI QoS Port to Profile Mapping Table
rlQosPortToProfileMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPortToProfileMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table maps between port and profile"
::= { rlQosCliMib 37 }
rlQosPortToProfileMappingEntry OBJECT-TYPE
SYNTAX RlQosPortToProfileMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes
mapping between port and profile"
INDEX { rlQosPort }
::= { rlQosPortToProfileMappingTable 1 }
RlQosPortToProfileMappingEntry ::= SEQUENCE {
rlQosPort INTEGER,
rlQosProfileName DisplayString
}
rlQosPort OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Port number"
::= { rlQosPortToProfileMappingEntry 1 }
rlQosProfileName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"profile"
::= { rlQosPortToProfileMappingEntry 2 }
rlQosCPUSafeGuardEnable OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar enables/disables CPU Safeguard."
::= { rlQosCliMib 38 }
rlQosClassifierUtilizationSystem OBJECT-TYPE
SYNTAX Unsigned32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system classifier utilization percentage. "
::= { rlQosClassifierUtilization 2 }
rlQosClassifierRulesNumberUtilizationSystem OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of used rules per system, in short rule resolution "
::= { rlQosClassifierUtilization 3 }
--QoS Policy Class map priotiry refernce table
rlQosPolicyClassPriorityRefTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosPolicyClassPriorityRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies The relationship
between policy map to class map"
::= { rlQosCliMib 39 }
rlQosPolicyClassPriorityRefEntry OBJECT-TYPE
SYNTAX RlQosPolicyClassPriorityRefEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes the connection
between class-map entry to policy map by using pointers.
The index is Class map pointer
represent by rlQosPolicyClassRefClassPointer.
It is also specifies the class-map priotiry in the policy-map, which set the
rules order within the policy-map"
INDEX { rlQosPolicyClassPriorityRefPriority, rlQosPolicyClassPriorityRefClassPointer}
::= { rlQosPolicyClassPriorityRefTable 1 }
RlQosPolicyClassPriorityRefEntry ::= SEQUENCE {
rlQosPolicyClassPriorityRefPriority INTEGER,
rlQosPolicyClassPriorityRefClassPointer INTEGER,
rlQosPolicyClassPriorityRefPolicyPointer INTEGER,
rlQosPolicyClassPriorityRefStatus RowStatus
}
rlQosPolicyClassPriorityRefPriority OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The class-map priority within the policy-map"
::= { rlQosPolicyClassPriorityRefEntry 1 }
rlQosPolicyClassPriorityRefClassPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Class-map index Pointer"
::= { rlQosPolicyClassPriorityRefEntry 2 }
rlQosPolicyClassPriorityRefPolicyPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Policy map index Pointer"
::= { rlQosPolicyClassPriorityRefEntry 3 }
rlQosPolicyClassPriorityRefStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosPolicyClassPriorityRefEntry 4 }
rlQosDenyAceStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosDenyAceStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds statistics for deny ACEs."
::= { rlQosCliMib 42 }
rlQosDenyAceStatisticsEntry OBJECT-TYPE
SYNTAX RlQosDenyAceStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table holds number of hits for deny ACEs
attached to specific Interface."
INDEX { rlQosDenyAceStatisticsIfIndex }
::= { rlQosDenyAceStatisticsTable 1 }
RlQosDenyAceStatisticsEntry ::= SEQUENCE {
rlQosDenyAceStatisticsIfIndex INTEGER,
rlQosDenyAceStatisticsIfCounter INTEGER
}
rlQosDenyAceStatisticsIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface Index."
::= { rlQosDenyAceStatisticsEntry 1 }
rlQosDenyAceStatisticsIfCounter OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of hits on deny ACEs for this interface."
::= { rlQosDenyAceStatisticsEntry 2 }
rlQosDenyAceStatisticsOtherFlowCounter OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of hits on deny ACEs for 'Other'-type flow."
::= { rlQosCliMib 43 }
rlQosDenyAceStatisticsClearIfCounters OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each bit that is set in this portList represent a port or trunk that
its hit counters should be reset."
::= { rlQosCliMib 44 }
rlQosDenyAceStatisticsClearOtherFlowCounter OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar indicates clearing 'Other'-type flow counter operation."
::= { rlQosCliMib 45 }
rlQosModeGlobalCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosModeGlobalCfgEntry
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."
::= { rlQosCliMib 46 }
rlQosModeGlobalCfgEntry OBJECT-TYPE
SYNTAX RlQosModeGlobalCfgEntry
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 { rlQosGlobalIndex}
::= { rlQosModeGlobalCfgTable 1 }
RlQosModeGlobalCfgEntry ::= SEQUENCE {
rlQosGlobalIndex INTEGER,
rlQosGlobalQoSMode QosGlobalMode,
rlQosBasicGlobalTrustMode QosTrustMode,
rlQosAdvcGlobalTrustMode QosTrustMode,
rlQoSPortTrustAdvancedMode TruthValue,
rlQosDscpMutationEnable TruthValue,
rlQosModeGlobalCfgStatus RowStatus
}
rlQosGlobalIndex 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'."
::= { rlQosModeGlobalCfgEntry 1 }
rlQosGlobalQoSMode OBJECT-TYPE
SYNTAX QosGlobalMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlQosCliQosMode.
Defines the global qos operation mode: disable, basic or advnaced. "
::= { rlQosModeGlobalCfgEntry 2 }
rlQosBasicGlobalTrustMode OBJECT-TYPE
SYNTAX QosTrustMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlQosCliBasicModeCfg.
Defines the global qos trust operation mode relevant for qos basic mode. "
::= { rlQosModeGlobalCfgEntry 3 }
rlQosAdvcGlobalTrustMode OBJECT-TYPE
SYNTAX QosTrustMode
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This field replaces deprecated scalar rlQosCliBasicModeCfg.
Defines the global qos trust operation mode relevant for qos advanced mode. "
::= { rlQosModeGlobalCfgEntry 4 }
rlQoSPortTrustAdvancedMode 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 }
::= { rlQosModeGlobalCfgEntry 5 }
rlQosDscpMutationEnable 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 }
::= { rlQosModeGlobalCfgEntry 6 }
rlQosModeGlobalCfgStatus 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."
::= { rlQosModeGlobalCfgEntry 7 }
-- ClassMapCounterTable
rlQosClassMapCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosClassMapCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table is used to show statistics for
ACL applied on an interface."
::= { rlQosCliMib 47 }
rlQosClassMapCounterEntry OBJECT-TYPE
SYNTAX RlQosClassMapCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry returns the value of the class map counter.
Entry is added/deleted to this MIB when counting is enabled/disabled
on the class map.
The counter is set to zero upon reading its value."
INDEX { rlQosClassMapIndex }
::= { rlQosClassMapCounterTable 1 }
RlQosClassMapCounterEntry ::= SEQUENCE {
rlQosClassMapCounterValue Counter64
}
rlQosClassMapCounterValue OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field returns the current value of the class map counter. "
::= { rlQosClassMapCounterEntry 2 }
--- rlQosApplicationTrapIdTable
rlQosApplicationTrapIdTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosApplicationTrapIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The read only table is used to get the trapId
assisated to application wants to use the trap action in
the class map table"
::= { rlQosCliMib 48 }
rlQosApplicationTrapIdEntry OBJECT-TYPE
SYNTAX RlQosApplicationTrapIdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry holds the trapId for application using the trap
action in the class map table."
INDEX { IMPLIED rlQosApplicationName }
::= { rlQosApplicationTrapIdTable 1 }
RlQosApplicationTrapIdEntry ::= SEQUENCE {
rlQosApplicationName DisplayString,
rlQosApplicationTrapId INTEGER
}
rlQosApplicationName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This field represents the application name and traffic type. "
::= { rlQosApplicationTrapIdEntry 1 }
rlQosApplicationTrapId OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This field defines the trap id to be use in the class map entry. "
::= { rlQosApplicationTrapIdEntry 2 }
-- RevitalR 1-Feb-2012: add new scalar to define application-specific default action
rlQoSApplicationDefaultAction OBJECT-TYPE
SYNTAX RlQosApplicationDefaultActionType
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This scalar specifies application-specific default action"
::= { rlQosCliMib 49 }
END
|