1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
|
-- *****************************************************************
-- Cisco Switch Engine MIB
--
-- February 2000, Steven To
-- July 2000, Edward Pham
-- February 2002, Edward Pham
-- February 2003, Edward Pham
-- May 2003, Jayakumar Kadirvelu
-- August 2003, Edward Pham
-- %DNP% March 2005, Jayakumar Kadirvelu
--
-- Copyright (c) 2000-2020 by cisco Systems Inc.
-- by cisco Systems, Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-SWITCH-ENGINE-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Gauge32,
Counter32,
Counter64,
IpAddress,
Integer32,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP
FROM SNMPv2-CONF
ifIndex,
OwnerString,
InterfaceIndexOrZero
FROM IF-MIB
InetAddressType,
InetAddress
FROM INET-ADDRESS-MIB
entPhysicalIndex
FROM ENTITY-MIB
TEXTUAL-CONVENTION,
DisplayString,
RowStatus,
TimeInterval,
MacAddress,
TruthValue,
TimeStamp
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
MplsVpnId
FROM MPLS-VPN-MIB
CiscoNetworkProtocol,
CiscoPort
FROM CISCO-TC
VlanIndex
FROM CISCO-VTP-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoSwitchEngineMIB MODULE-IDENTITY
LAST-UPDATED "202005260000Z"
ORGANIZATION "Cisco Systems Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-lan-switch-snmp@cisco.com"
DESCRIPTION
"This MIB module defines management objects for Cisco Layer 2/3
switches. These devices may either have a single (central) switching
engine entity or may consist of multiple (distributed) switching
engine entities which are inter-connected via a common 'switching
fabric'. In the central switching engine model, all the physical
ports in the system are handled by the only switching engine in the
system. In the distributed switching model, each switching engine
will handle a set of 'local' physical ports and when necessary,
packets are also switched between switching engines over the
switching fabric.
Cisco L2/L3 switching devices use regular routers to assist them
in learning packet 'flows' by observing how a router routes a
candidate flow. A flow is some combination of source network address,
destination network address and the transport port numbers, as
applicable. Once a flow is established (learned), all traffic
belonging to that flow will be switched at Layer 3 by the switch
engine, effectively bypassing the router, until the flow has been
'aged' out. Most Cisco L2/L3 switching devices employ built-in
(internal) router module(s) for integrating Layer 3 switching with
Layer 2 forwarding. However, they can also learn 'flows' through
other physically-separate (external) Cisco routers that are
connected to the switch-engine through the network."
REVISION "202005260000Z"
DESCRIPTION
"Add enumerated value 304 - 308 to cseTcamResourceType."
REVISION "202003060000Z"
DESCRIPTION
"Add enumerated value 282 - 303 to cseTcamResourceType."
REVISION "201907110000Z"
DESCRIPTION
"Add enumerated value 232 - 281 to cseTcamResourceType."
REVISION "201806200000Z"
DESCRIPTION
"Add enumerated value 229 - 231 to cseTcamResourceType."
REVISION "201712070000Z"
DESCRIPTION
"Add enumerated value 86 - 228 to cseTcamResourceType."
REVISION "201302130000Z"
DESCRIPTION
"Add enumerated value 37 - 85 to cseTcamResourceType."
REVISION "201203120000Z"
DESCRIPTION
"Add cseStatisticsFlowGroup1."
REVISION "201012170000Z"
DESCRIPTION
"Add the following new enumerations to cseTcamResourceType:
dgtSgtRegion(31), anyAnyRegion(32), tcamALabel(33),
tcamBLabel(34), destInfoIn(35) and destInfoOut(36)."
REVISION "200811110000Z"
DESCRIPTION
"Add new enumerations to cseTcamResourceType."
REVISION "200801290000Z"
DESCRIPTION
"Add cseL3SwitchedPktsPerSecGroup.
Add cseCacheStatisticsGroup.
Add new enumerations to cseTcamResourceType.
Add new enumerations to cseFlowIPFlowMask object."
REVISION "200509160000Z"
DESCRIPTION
"Add cseFlowMcastMgmtGroup2.
Deprecate the objects:
cseFlowMcastQuerySrc,
cseFlowMcastQueryGrp,
cseFlowMcastResultGrp,
cseFlowMcastResultSrc.
Add new enumerations to cseFlowMcastQueryMask."
REVISION "200504120000Z"
DESCRIPTION
"Add new enumerations to cseFlowIPFlowMask object.
Add ingressInterfaceMapping and egressInterfaceMapping
enumerations to cseTcamResourceType object."
REVISION "200411150000Z"
DESCRIPTION
"Add cseMetUsageGroup."
REVISION "200406090000Z"
DESCRIPTION
"Add the following Groups:
cseNetflowASInfoExportGroup
cseNetflowPerVlanIfGroup"
REVISION "200311070000Z"
DESCRIPTION
"Add cseErrorStatsLCTable."
REVISION "200308200000Z"
DESCRIPTION
"Add the following tables to support forwarding information base:
cseCefFibTable,
cseCefAdjacencyTable.
Add the following table to support TCAM (Ternary Content
Addressable Memory) resource usage:
cseTcamUsageTable.
Add default value for the following objects:
cseFlowQuerySource,
cseFlowQuerySourceMask,
cseFlowQueryDestination,
cseFlowQueryDestinationMask,
cseFlowQueryOwner."
REVISION "200306100000Z"
DESCRIPTION
"Deprecated the objects:
cseNetflowLSExportHost,
cseNetflowLSExportTransportNumber"
REVISION "200305060000Z"
DESCRIPTION
"Added the object cseFlowQuerySkipNFlows"
REVISION "200302210000Z"
DESCRIPTION
"Added the following objects and table:
cseFlowLongAgingTime,
cseNetFlowIfIndexEnable,
cseFlowStatsTable,
cseFlowExcludeTable.
Modified the description of the following objects:
cseL2IpPkts,
cseL2IpxPkts,
cseL2AssignedProtoPkts,
cseL2OtherProtoPkts,
cseL2HCIpPkts,
cseL2HCIpxPkts,
cseL2HCAssignedProtoPkts,
cseL2HCOtherProtoPkts."
REVISION "200208050000Z"
DESCRIPTION
"Added the following objects: cseFlowIPFlowMask,
cseFlowIPXFlowMask, cseProtocolFilterEnable."
REVISION "200202070000Z"
DESCRIPTION
"Added the objects in cseBridgedFlowStatsCtrlTable and
cseErrorStatsTable.
Added the following objects:
cseL3VlanInUnicastPkts
cseL3VlanInUnicastOctets
cseL3VlanOutUnicastPkts
cseL3VlanOutUnicastOctets."
REVISION "200110260000Z"
DESCRIPTION
"Added the object cseFlowQueryTotalFlows"
REVISION "200109130000Z"
DESCRIPTION
"Added the follwowing objects
o cseNetflowLSFilterSupport
o cseNetflowLSFilterTable.
Also created the new groups
o cseNDEMandatoryGroup
o cseNDESingleFilterGroup
o cseNDEMultipleFiltersGroup"
REVISION "200105160000Z"
DESCRIPTION
"Added 4k Vlan support"
REVISION "200103090000Z"
DESCRIPTION
"Update the range of cseFlowEstablishedAgingTime,
cseFlowIPXEstablishedAgingTime, cseFlowOperEstablishedAgingTime,
cseFlowOperIPXAgingTime.
Replace cseFlowQueryResult with cseFlowQueryResultingRows."
REVISION "200006230000Z"
DESCRIPTION
"Added the following objects:
o cseFlowOperEstablishedAgingTime.
o cseFlowOperFastAgingTime.
o cseFlowOperFastAgePktThreshold.
o cseFlowOperIPXAgingTime."
REVISION "200001311130Z"
DESCRIPTION
"Added one High Capacity L2 Statistics table, an extension
of cseL2StatsTable and new objects in NetflowLS group for
new netflow export features. Also added a new enum type of
cseRouterFlowMask to support L3 multicast."
REVISION "9912091130Z"
DESCRIPTION
"Added MIB objects to manage Switch Engine (SE) portion of
Multicast MLS control protocol."
REVISION "9806241130Z"
DESCRIPTION
"Added 2 groups, for the purging (clearing) of layer 3 unicast and
multicast flow entries stored in the cache. Also added new objects
for layer 3 flow statistics."
REVISION "9805281130Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 97 }
-- Overview of MIB Objects:
--
-- Defines 9 groups of objects.
--
-- 1. cseL2Objects: Contains mainly Layer 2 statistics maintained by the
-- switching engine hardware.
--
-- 2. cseFlow: This group has all the important objects used in the
-- management of switching engine hardware. It contains :
-- - Scalars for configuring aging times that determine how long
-- certain learned flows, are used for L3 switching its traffic.
-- - A table of all routers whose "flows" are learned by the
-- switching
-- engine.
-- - A table for adding external routers to the router table and
-- enabling
-- the switching engine to learn of all the flows through those
-- routers.
-- - A table listing the MAC address and VLAN number used for each
-- router.
-- - A query/result table pair for monitoring the switching
-- performance
-- of the switching engine(s).
-- - A control table for enabling/disabling the flow switching
-- feature
-- per protocol type (ip, ipx).
--
-- 3. cseNetflowLS: A group of objects used to manage
-- the Netflow LAN Switching data export feature.
--
-- 4. cseL3Objects: Contains
-- - L3 statistics maintained by the switching engine hardware.
-- - L3 packet/octets statistics (in/out) maintained per vlan.
--
-- 5. cseProtocolFilter: Contains
-- - Table for configuring protocol filters per (non-trunking) port.
--
-- 6. cseUcastCache: Contains
-- - a MIB table to perform actions of purging IP/IPX
-- flows in switch engine cache pools.
--
-- 7. cseMcastCache:
-- - a MIB table to perform actions of purging IP
-- multicast flows in switch engine caches.
--
-- 8. cseCef: CEF (Cisco Express Forwarding) group. It contains:
-- - tables provide information on IP forwarding database
-- and statistics.
--
-- 9. cseTcamUsage: Contains
-- - table provides resource usage information on TCAM (Ternary
-- Content Addressable Memory) in the device.
--
-- 10. cseMet: MET group. It contains:
-- - table provides resource usage information on MET (Multicast
-- Expansion Table) in the device.
cseMIBObjects OBJECT IDENTIFIER
::= { ciscoSwitchEngineMIB 1 }
-- object groups
cseL2Objects OBJECT IDENTIFIER
::= { cseMIBObjects 1 }
cseFlow OBJECT IDENTIFIER
::= { cseMIBObjects 2 }
cseNetflowLS OBJECT IDENTIFIER
::= { cseMIBObjects 3 }
cseL3Objects OBJECT IDENTIFIER
::= { cseMIBObjects 4 }
cseProtocolFilter OBJECT IDENTIFIER
::= { cseMIBObjects 5 }
cseUcastCache OBJECT IDENTIFIER
::= { cseMIBObjects 6 }
cseMcastCache OBJECT IDENTIFIER
::= { cseMIBObjects 7 }
cseCef OBJECT IDENTIFIER
::= { cseMIBObjects 8 }
cseTcamUsage OBJECT IDENTIFIER
::= { cseMIBObjects 9 }
cseMet OBJECT IDENTIFIER
::= { cseMIBObjects 10 }
CiscoGauge64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes an object with a nonnegative integer value
that may increase or decrease, with a maximum value of 2^64-1."
SYNTAX Counter64
ControlStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"This TC describes the current status of a controlled object
value."
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
McastGroupIp ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1d.1d.1d.1d"
STATUS current
DESCRIPTION
"This TC specifies an multicast group IP address,
a class D IP address with the first byte in the range of
224 to 239."
SYNTAX IpAddress
FlowAddressComponent ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x:"
STATUS current
DESCRIPTION
"Represents a network layer address. The length and format of
the address is protocol dependent as follows:
ip 6 octets
first 4 octets are the IP address in network
order
last 2 bytes is the transport's port number.
ipx 10 octets
first 4 octets are the net number
last 6 octets are the host number"
SYNTAX OCTET STRING (SIZE (6..6 | 10..10))
-- Layer 2 statistics per switching engine
cseL2StatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseL2StatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing switching engine's L2 statistics counters."
::= { cseL2Objects 1 }
cseL2StatsEntry OBJECT-TYPE
SYNTAX CseL2StatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing L2 statistics maintained by a
switching engine (identified by entPhysicalIndex).
Each switching engine managed by this MIB module has an
entry in this table."
INDEX { entPhysicalIndex }
::= { cseL2StatsTable 1 }
CseL2StatsEntry ::= SEQUENCE {
cseL2ForwardedLocalPkts Counter32,
cseL2ForwardedLocalOctets Counter64,
cseL2ForwardedTotalPkts Counter32,
cseL2NewAddressLearns Counter32,
cseL2AddrLearnFailures Counter32,
cseL2DstAddrLookupMisses Counter32,
cseL2IpPkts Counter32,
cseL2IpxPkts Counter32,
cseL2AssignedProtoPkts Counter32,
cseL2OtherProtoPkts Counter32
}
cseL2ForwardedLocalPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received from ports local to this switching
engine and forwarded at layer 2."
::= { cseL2StatsEntry 1 }
cseL2ForwardedLocalOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in the packets received from ports local to this
switching engine and forwarded at layer 2."
::= { cseL2StatsEntry 2 }
cseL2ForwardedTotalPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received from all sources (local and over
the fabric) and forwarded at layer 2 by this switching engine."
::= { cseL2StatsEntry 3 }
cseL2NewAddressLearns OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of new MAC addresses learned by the switching engine."
::= { cseL2StatsEntry 4 }
cseL2AddrLearnFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MAC addresses failed to be learned because the L2
forwarding address table was full. If the value keeps increasing,
the network topology should be reconfigured."
::= { cseL2StatsEntry 5 }
cseL2DstAddrLookupMisses OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of misses during destination MAC address table lookups.
A few misses happen normally. Large numbers of misses occur as
a result of cseL2AddrLearnFailures."
::= { cseL2StatsEntry 6 }
cseL2IpPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to the IP family received by this
switching engine from all sources. This value includes L3
switched packets."
::= { cseL2StatsEntry 7 }
cseL2IpxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to the IPX family received by this
switching engine from all sources. This value includes L3
switched packets."
::= { cseL2StatsEntry 8 }
cseL2AssignedProtoPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to an assigned group of network
protocols (typically AppleTalk, DecNet and Vines) received
by this switching engine from all sources.
This value includes L3 switched packets."
::= { cseL2StatsEntry 9 }
cseL2OtherProtoPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to all other protocol families,
received by this switching engine from all sources.
This value includes L3 switched packets."
::= { cseL2StatsEntry 10 }
-- High Capacity extensions for cseL2StatsTable.
cseL2StatsHCTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseL2StatsHCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains the High Capacity L2 Statistics extensions to the
cseL2StatsTable."
::= { cseL2Objects 2 }
cseL2StatsHCEntry OBJECT-TYPE
SYNTAX CseL2StatsHCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains the High Capacity L2 Statistics extensions to
cseL2StatsEntry. These objects will be created by the agent
for all cseL2StatsEntries it deems appropriate."
INDEX { entPhysicalIndex }
::= { cseL2StatsHCTable 1 }
CseL2StatsHCEntry ::= SEQUENCE {
cseL2HCOverflowForwardedLocalPkts Counter32,
cseL2HCForwardedLocalPkts Counter64,
cseL2HCOverflowForwardedTotalPkts Counter32,
cseL2HCForwardedTotalPkts Counter64,
cseL2HCOverflowIpPkts Counter32,
cseL2HCIpPkts Counter64,
cseL2HCOverflowIpxPkts Counter32,
cseL2HCIpxPkts Counter64,
cseL2HCOverflowAssignedProtoPkts Counter32,
cseL2HCAssignedProtoPkts Counter64,
cseL2HCOverflowOtherProtoPkts Counter32,
cseL2HCOtherProtoPkts Counter64
}
cseL2HCOverflowForwardedLocalPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2ForwardedLocalPkts
counter has overflowed."
::= { cseL2StatsHCEntry 1 }
cseL2HCForwardedLocalPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets received from ports local to this switching
engine and forwarded at layer 2."
::= { cseL2StatsHCEntry 2 }
cseL2HCOverflowForwardedTotalPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2ForwardeTotalPkts counter
has overflowed."
::= { cseL2StatsHCEntry 3 }
cseL2HCForwardedTotalPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets received from all sources
(local and over the fabric) and forwarded at layer 2
by this switching engine."
::= { cseL2StatsHCEntry 4 }
cseL2HCOverflowIpPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2IpPkts counter
has overflowed."
::= { cseL2StatsHCEntry 5 }
cseL2HCIpPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to the IP family received by this
switching engine from all sources. This value includes
L3 switched packets."
::= { cseL2StatsHCEntry 6 }
cseL2HCOverflowIpxPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2IpxPkts counter
has overflowed."
::= { cseL2StatsHCEntry 7 }
cseL2HCIpxPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to the IPX family received by this
switching engine from all sources.
This value includes L3 switched packets."
::= { cseL2StatsHCEntry 8 }
cseL2HCOverflowAssignedProtoPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2HCAssignedProtoPkts
counter has overflowed."
::= { cseL2StatsHCEntry 9 }
cseL2HCAssignedProtoPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to an assigned group of network
protocols (typically AppleTalk, DecNet and Vines) received
by this switching engine from all sources.
This value includes L3 switched packets."
::= { cseL2StatsHCEntry 10 }
cseL2HCOverflowOtherProtoPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the associated cseL2HCOtherProtoPkts
counter has overflowed."
::= { cseL2StatsHCEntry 11 }
cseL2HCOtherProtoPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets belonging to all other protocol families,
received by this switching engine from all sources. This value
includes L3 switched packets."
::= { cseL2StatsHCEntry 12 }
-- Flow group of objects
--
-- Global aging times for the flows learned
cseFlowEstablishedAgingTime OBJECT-TYPE
SYNTAX Integer32 (1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The adminstrative aging time for IP established flows.
The default value for this object is implementation specific.
If the cseFlowEstablishedAgingTime is not configured to the
appropriate value, it will be adjusted to the closest value.
The corresponding operational object, taken effect on the
a device, is cseFlowOperIPEstablishedAgingTime."
::= { cseFlow 1 }
cseFlowFastAgingTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative fast aging time for the established flow
entries, that have less number of packets than the value set in
the cseFlowFastAgePktThreshold, switched within this time.
Setting to value of 0 turns off fast aging.
The default value for this object is implementation specific.
If the cseFlowFastAgingTime is not configured to the
appropriate value, it will be adjusted to the closest value.
The corresponding operational object, taken effect on the
device, is cseFlowOperFastAgingTime."
::= { cseFlow 2 }
cseFlowFastAgePktThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "packets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative packet threshold setting for the
cseFlowFastAgingTime. The default for Fast Aging Packet
Threshold is 0, i.e. no packets switched within the time
set in cseFlowFastAgingTime, after an L3 flow was established.
If the cseFlowFastAgingTime is not configured to the
appropriate value, it will be adjusted to the closest value.
The corresponding operational object, taken effect on the
device, is cseFlowOperFastAgePktThreshold."
::= { cseFlow 3 }
-- Router Table
cseRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing information about all routers that are
discovered by the switch, including internal and external
routers."
::= { cseFlow 4 }
cseRouterEntry OBJECT-TYPE
SYNTAX CseRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseRouterTable containing information
about a router. A row appears either directly through dynamic
learning or indirectly through management configuration
(via SNMP,by creating an entry in the
cseStaticExtRouterTable or via CLI)."
INDEX { cseRouterIndex }
::= { cseRouterTable 1 }
CseRouterEntry ::= SEQUENCE {
cseRouterIndex IpAddress,
cseRouterFlowMask INTEGER,
cseRouterName DisplayString,
cseRouterStatic TruthValue,
cseRouterIpxFlowMask INTEGER
}
cseRouterIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The router's IP address which is used to uniquely identify
it for L3 flows."
::= { cseRouterEntry 1 }
cseRouterFlowMask OBJECT-TYPE
SYNTAX INTEGER {
dstOnly(1),
srcDst(2),
fullFlow(3),
notApplicable(4),
srcDstVlan(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP type of mask configured for the router represented by
this row. Each flow known to the switching engine has a mask
which is applied to all packets in order to compare them to
that flow. Each hardware-learned flow has the mask configured
for the router which logically forwards that flow."
::= { cseRouterEntry 2 }
cseRouterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS name (if available) of the router."
::= { cseRouterEntry 3 }
cseRouterStatic OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of the object is true, this router was
configured via SNMP or CLI. Otherwise, this router was
learned automatically."
::= { cseRouterEntry 4 }
cseRouterIpxFlowMask OBJECT-TYPE
SYNTAX INTEGER {
dstOnly(1),
srcDst(2),
fullFlow(3),
notApplicable(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IPX type of mask configured for the router represented by
this row. Each flow known to the switching engine has a mask
which is applied to all packets in order to compare them to
that flow. Each hardware-learned flow has the mask configured
for the router which logically forwards that flow."
::= { cseRouterEntry 5 }
-- Table of external routers that are enabled.
cseStaticExtRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseStaticExtRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of external routers which are enabled for Layer 3 IP
switching by the switching engine. This table may contain
routers that have not yet been discovered by the device."
::= { cseFlow 5 }
cseStaticExtRouterEntry OBJECT-TYPE
SYNTAX CseStaticExtRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseStaticExtRouterTable for
enabling an external router to be installed in the switch's
router table. The entry is created and deleted by using
cseStaticRouterStatus."
INDEX { cseRouterIndex }
::= { cseStaticExtRouterTable 1 }
CseStaticExtRouterEntry ::= SEQUENCE {
cseStaticRouterName DisplayString,
cseStaticRouterOwner OwnerString,
cseStaticRouterStatus RowStatus,
cseStaticRouterType BITS
}
cseStaticRouterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS name (if available) of the external router."
::= { cseStaticExtRouterEntry 1 }
cseStaticRouterOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"String indicating the owner who created the static entry."
::= { cseStaticExtRouterEntry 2 }
cseStaticRouterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage creation and deletion of rows in this table.
Once a row becomes active, values within that row cannot be
modified except by deleting and creating the row."
::= { cseStaticExtRouterEntry 3 }
-- per Router, per VLAN MAC address table for the flows
cseStaticRouterType OBJECT-TYPE
SYNTAX BITS {
unicast(0),
multicast(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates if the router is included for unicast switching,
or multicast switching, or both."
DEFVAL { { unicast } }
::= { cseStaticExtRouterEntry 4 }
cseRouterVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseRouterVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table listing the MAC address used by routers on
particular VLANs."
::= { cseFlow 6 }
cseRouterVlanEntry OBJECT-TYPE
SYNTAX CseRouterVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of the cseRouterVlanTable.
An entry exists for each known VLAN of each known router."
INDEX {
cseRouterIndex,
cseRouterMac,
cseRouterVlan
}
::= { cseRouterVlanTable 1 }
CseRouterVlanEntry ::= SEQUENCE {
cseRouterMac MacAddress,
cseRouterVlan VlanIndex,
cseRouterProtocol BITS
}
cseRouterMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mac address used by the router for this VLAN number."
::= { cseRouterVlanEntry 1 }
cseRouterVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Vlan number associated with the router's MAC address."
::= { cseRouterVlanEntry 2 }
cseRouterProtocol OBJECT-TYPE
SYNTAX BITS {
ip(0),
ipx(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates which protocols are routed by this router on this
VLAN using this Mac address."
::= { cseRouterVlanEntry 3 }
-- Unicast Flow Query table
cseFlowMaxQueries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of query entries allowed to be outstanding at
any time, in the cseFlowQueryTable. The typical value for
this object is 5."
::= { cseFlow 7 }
cseFlowQueryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowQueryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A control table used to query the switching engine by
specifying retrieval criteria for L3 flows.
The resulting data for each instance of a query in this
table is returned in the cseFlowDataTable.
The maximum number of entries (rows) in this table
cannot exceed the value returned by cseFlowMaxQueries."
::= { cseFlow 8 }
cseFlowQueryEntry OBJECT-TYPE
SYNTAX CseFlowQueryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of the cesFlowQueryTable used to setup
retrieval criteria to search for L3 flows on a particular
switching engine entity identified by entPhysicalIndex.
The actual search is started by setting the value of
cseFlowQueryStatus to 'active'. Once a row becomes active,
values within the row cannot be modified, except by
deleting and re-creating the row."
INDEX {
entPhysicalIndex,
cseFlowQueryIndex
}
::= { cseFlowQueryTable 1 }
CseFlowQueryEntry ::= SEQUENCE {
cseFlowQueryIndex Unsigned32,
cseFlowQueryMask INTEGER,
cseFlowQueryTransport BITS,
cseFlowQuerySource FlowAddressComponent,
cseFlowQuerySourceMask FlowAddressComponent,
cseFlowQueryDestination FlowAddressComponent,
cseFlowQueryDestinationMask FlowAddressComponent,
cseFlowQueryRouterIndex IpAddress,
cseFlowQueryOwner OwnerString,
cseFlowQueryResultingRows Integer32,
cseFlowQueryResultTotalPkts CiscoGauge64,
cseFlowQueryResultTotalOctets CiscoGauge64,
cseFlowQueryResultAvgDuration TimeInterval,
cseFlowQueryResultAvgIdle TimeInterval,
cseFlowQueryStatus RowStatus,
cseFlowQueryCreateTime TimeStamp,
cseFlowQueryTotalFlows Unsigned32,
cseFlowQuerySkipNFlows Integer32
}
cseFlowQueryIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which uniquely identifies the control
query among all those specified for the switching engine
indicated by entPhysicalIndex."
::= { cseFlowQueryEntry 1 }
cseFlowQueryMask OBJECT-TYPE
SYNTAX INTEGER {
dstOnly(1),
srcOrDst(2),
srcAndDst(3),
fullFlow(4),
ipxDstOnly(5),
ipxSrcAndDst(6),
any(7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting each value causes the appropriate action:
'dstOnly' - causes the creation of rows in the
cseFlowDataTable corresponding to the current L3 flow
information for the absolute destination IP address
set in the cseFlowQueryDestination object in this table.
If cseFlowQueryDestinationMask is also specified at the
same time, it will be applied to the address part of
cseFlowQueryDestination.
'srcOrDst' - causes the creation of rows in the
cseFlowDataTable corresponding to the current L3 flow
information for EITHER of the absolute IP addresses set in
the cseFlowQueryDestination or cseFlowQuerySource objects.
If either of cseFlowQueryDestinationMask and
cseFlowQuerySourceMask
objects are also specified at the same time,
they will be applied to the respective address parts
of cseFlowQueryDestination and cseFlowQuerySource
objects. This option is typically used to
setup queries for flows on traffic in either directions.
'srcAndDst' - causes the creation of rows in the
cseFlowDataTable corresponding to the current L3 flow
information for BOTH the absolute IP addresses set in
the cseFlowQueryDestination and cseFlowQuerySource objects.
If either of cseFlowQueryDestinationMask and
cseFlowQuerySourceMask objects are also specified
at the same time, they will be applied to the
respective address parts of cseFlowQueryDestination and
cseFlowQuerySource objects. This option is typically used to
setup queries for flows on traffic in one direction only.
'fullFlow' - causes the creation of row(s) in the
cseFlowDataTable exactly corresponding to the current
L3 flow information for the complete IP flow (including the
transport port numbers) set in the cseFlowQueryDestination and
cseFlowQuerySource objects. If either of
cseFlowQueryDestinationMask and cseFlowQuerySourceMask
objects are also specified at the same
time, they will be applied to the respective address parts of
cseFlowQueryDestination and cseFlowQuerySource objects.
This option is typically used to setup queries for flows
on traffic for specific (TCP/UDP) port numbers
corresponding to standard protocols such as FTP,
WWW, TELNET, etc.
'ipxDstOnly' - causes the creation of rows in the
cseFlowDataTable corresponding to the current L3 flow
information for the absolute destination IPX address
set in the cseFlowQueryDestination object in this table.
If cseFlowQueryDestinationMask is also specified at
the same time, it will be applied to the address part
of cseFlowQueryDestination.
'ipxSrcAndDst' - causes the creation of rows in the
cseFlowDataTable corresponding to the current L3 flow
information for BOTH the absolute IPX addresses set in
the cseFlowQueryDestination and cseFlowQuerySource objects.
If either of cseFlowQueryDestinationMask and
cseFlowQuerySourceMask objects are also specified at the
same time, they will be applied to the respective address
parts of cseFlowQueryDestination and
cseFlowQuerySource objects.
'any' - returns all rows corresponding to all established
flow entries in the cseFlowDataTable.
Note:
1. The type FlowAddressComponent used for objects
cseFlowQuerySource and cseFlowQueryDestination, has the
network address part and also the transport port
number part, if applicable.
2. The value of this object cannot be modified when the
corresponding instance of cseFlowQueryStatus is 'active'."
DEFVAL { any }
::= { cseFlowQueryEntry 2 }
cseFlowQueryTransport OBJECT-TYPE
SYNTAX BITS {
udp(0),
tcp(1)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP transport protocol type specified for this query. Ignored
for IPX flow queries. The value of this object cannot be
modified when the corresponding instance of cseFlowQueryStatus
is 'active'."
DEFVAL { { udp , tcp } }
::= { cseFlowQueryEntry 3 }
cseFlowQuerySource OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source network address and port (if applicable). The
value of this object cannot be modified when the
corresponding instance of
cseFlowQueryStatus is 'active'."
DEFVAL { '000000000000'H }
::= { cseFlowQueryEntry 4 }
cseFlowQuerySourceMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source address mask to be applied to the corresponding
instance of cseFlowQuerySource. The value of this object
cannot be modified when the corresponding instance of
cseFlowQueryStatus is 'active'."
DEFVAL { 'FFFFFFFFFFFF'H }
::= { cseFlowQueryEntry 5 }
cseFlowQueryDestination OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination network address and port (if applicable).
The value of this object cannot be modified when the
corresponding instance of cseFlowQueryStatus is 'active'."
DEFVAL { '000000000000'H }
::= { cseFlowQueryEntry 6 }
cseFlowQueryDestinationMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination address mask to be applied to the corresponding
instance of cseFlowQueryDestination. The value of this object
cannot be modified when the corresponding instance of
cseFlowQueryStatus is 'active'."
DEFVAL { 'FFFFFFFFFFFF'H }
::= { cseFlowQueryEntry 7 }
cseFlowQueryRouterIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of the router for which the flows are available.
An 'all-zero' IP address indicates that the query is for
any router. The value of this object cannot be modified
when the corresponding instance of cseFlowQueryStatus
is 'active'."
::= { cseFlowQueryEntry 8 }
cseFlowQueryOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The manager entity that configured this entry and is therefore
using the resources assigned to it."
DEFVAL { "" }
::= { cseFlowQueryEntry 9 }
cseFlowQueryResultingRows OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The result status of the query. Possible values are:
-1 - Either the query has not been initiated or
the agent is busy processing this query instance.
Time to completion of the query processing
depends on the complexity of the query and
the number of matches that satisfy this query.
0..2147483647 - The search has ended and this is the number of
rows in the cseFlowDataTable, resulting
from this query."
::= { cseFlowQueryEntry 10 }
cseFlowQueryResultTotalPkts OBJECT-TYPE
SYNTAX CiscoGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aggregate number of total packets switched by the system on
all the flows matching this query. This is a snapshot value and
is valid only when the corresponding instance of
cseFlowQueryResultingRows is greater than or equal to 0."
::= { cseFlowQueryEntry 11 }
cseFlowQueryResultTotalOctets OBJECT-TYPE
SYNTAX CiscoGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The aggregate number of total octets switched by the system on
all the flows matching this query. This is a snapshot value
and is valid only when the corresponding instance of
cseFlowQueryResultingRows is greater than or equal to 0."
::= { cseFlowQueryEntry 12 }
cseFlowQueryResultAvgDuration OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average duration of the flows matching this query. This is
a snapshot value and is valid only when the corresponding
instance of cseFlowQueryResultingRows is greater
than or equal to 0."
::= { cseFlowQueryEntry 13 }
cseFlowQueryResultAvgIdle OBJECT-TYPE
SYNTAX TimeInterval
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The elapsed time since the flows were last used, averaged over
all flows matching this query. This is a snapshot value
and is valid only when the corresponding instance of
cseFlowQueryResultingRows is greater than or equal to 0."
::= { cseFlowQueryEntry 14 }
cseFlowQueryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status object used to manage rows in this table.
When set to active(1), the query is initiated.
Once initiated, the value may
not be modified until the value of cseFlowQueryResultingRows is
greater than or equal to 0. However, this object can be set to
active(1) only after all the appropriate objects for this query
as defined by the value set in the cseFlowQueryMask object,
have also been set.
Once a row becomes active, values within the row cannot
be modified, except by deleting and re-creating it."
::= { cseFlowQueryEntry 15 }
cseFlowQueryCreateTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when this query was created."
::= { cseFlowQueryEntry 16 }
cseFlowQueryTotalFlows OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of L3 flows matching the query criterion."
::= { cseFlowQueryEntry 17 }
cseFlowQuerySkipNFlows OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of searched flows to be skipped before storing
any L3 flows in cseFlowDataTable.
This object can be used along with cseFloQueryTotalFlows
object to skip previously found flows by setting the variable
equal to the number of the associated rows in
cseFlowDataTable, and only query the remaining flows
in the table.
Note that due to the dynamical nature of the L3 flows, the
queried flows may be missed or repeated by setting this object.
The value of this object cannot be modified
when the corresponding instance of cseFlowQueryStatus
is 'active'."
DEFVAL { 0 }
::= { cseFlowQueryEntry 18 }
-- The Unicast Flow query results data table
cseFlowDataTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing L3 flow information corresponding to all
the completed queries setup in the cseFlowQueryTable, that were
initiated on the switch engine(s)."
::= { cseFlow 9 }
cseFlowDataEntry OBJECT-TYPE
SYNTAX CseFlowDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of the cseFlowDataTable used to return
information about one of the L3 flows which matched the
search criteria set by the cseFlowQueryMask object in the
corresponding instance of the cseFlowQueryTable."
INDEX {
entPhysicalIndex,
cseFlowQueryIndex,
cseFlowDataIndex
}
::= { cseFlowDataTable 1 }
CseFlowDataEntry ::= SEQUENCE {
cseFlowDataIndex Unsigned32,
cseFlowDataSrcMac MacAddress,
cseFlowDataDstMac MacAddress,
cseFlowDataStaticFlow TruthValue,
cseFlowDataEncapType INTEGER,
cseFlowDataSource FlowAddressComponent,
cseFlowDataDestination FlowAddressComponent,
cseFlowDataDestVlan VlanIndex,
cseFlowDataIpQOS Integer32,
cseFlowDataIpQOSPolicy Integer32,
cseFlowDataWhenCreated TimeStamp,
cseFlowDataLastUsed TimeStamp,
cseFlowDataPkts Gauge32,
cseFlowDataOctets CiscoGauge64
}
cseFlowDataIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A number to uniquely identify a result entry that matches a
particular query for a specific switching engine."
::= { cseFlowDataEntry 1 }
cseFlowDataSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Source Mac Address of the router's outgoing interface."
::= { cseFlowDataEntry 2 }
cseFlowDataDstMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination Mac Address used to forward the packets in
this flow."
::= { cseFlowDataEntry 3 }
cseFlowDataStaticFlow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this flow was software-installed."
::= { cseFlowDataEntry 4 }
cseFlowDataEncapType OBJECT-TYPE
SYNTAX INTEGER {
ipArpa(1),
ipxEthernet(2),
ipx802raw(3),
ipx802sap(4),
ipx802snap(5),
other(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Protocol encapsulation type used to forward packets in this flow
to their destination."
::= { cseFlowDataEntry 5 }
cseFlowDataSource OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source network address and the port (if appropriate) of this
flow."
::= { cseFlowDataEntry 6 }
cseFlowDataDestination OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination network address and port (if appropriate) of this
flow."
::= { cseFlowDataEntry 7 }
cseFlowDataDestVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vlan number on which packets belonging to this flow are
forwarded."
::= { cseFlowDataEntry 8 }
cseFlowDataIpQOS OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Level of Quality of service for this IP flow.
If it is not an IP flow, this object will not be instantiated."
::= { cseFlowDataEntry 9 }
cseFlowDataIpQOSPolicy OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Level of the Quality of service policy for this IP flow.
If it is not an IP flow, this object will not be instantiated."
::= { cseFlowDataEntry 10 }
cseFlowDataWhenCreated OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when this flow was created in the switching engine."
::= { cseFlowDataEntry 11 }
cseFlowDataLastUsed OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time since this flow was last used to forward a packet by the
switching engine."
::= { cseFlowDataEntry 12 }
cseFlowDataPkts OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A snapshot value of the number of packets forwarded on this flow
at the time of corresponding query."
::= { cseFlowDataEntry 13 }
cseFlowDataOctets OBJECT-TYPE
SYNTAX CiscoGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A snapshot value of octets forwarded on this flow at the time of
corresponding query."
::= { cseFlowDataEntry 14 }
cseFlowSwitchControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowSwitchControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table used to control the L3 flow switching operation, per
protocol type."
::= { cseFlow 10 }
cseFlowSwitchControlEntry OBJECT-TYPE
SYNTAX CseFlowSwitchControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row for the configuration of Flow switching
feature for an L3 protocol type."
INDEX { cseFlowSwitchProtocol }
::= { cseFlowSwitchControlTable 1 }
CseFlowSwitchControlEntry ::= SEQUENCE {
cseFlowSwitchProtocol CiscoNetworkProtocol,
cseFlowSwitchStatus ControlStatus
}
cseFlowSwitchProtocol OBJECT-TYPE
SYNTAX CiscoNetworkProtocol
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Protocol type for which this row instance. Only ip(1) and ipx(14)
values are currently supported."
::= { cseFlowSwitchControlEntry 1 }
cseFlowSwitchStatus OBJECT-TYPE
SYNTAX ControlStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current status of the global flow switching capability for
the specified L3 protocol type."
::= { cseFlowSwitchControlEntry 2 }
-- Multicast Flow Query table
cseFlowMcastMaxQueries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of query entries allowed to be outstanding
at any time, in the cseFlowMcastQueryTable. The typical value
for this object is 5."
::= { cseFlow 11 }
cseFlowMcastQueryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowMcastQueryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A control table used to query the switching engine by
specifying retrieval criteria for IP multicast L3 flows.
Each row instance in the table represents a query with
its parameters. The resulting data for each instance of
a query in this table is returned in the
cseFlowMcastResultTable.
The maximum number of entries (rows) in this table cannot
exceed the value of cseFlowMcastMaxQueries object.
Unlike unicast switched layer 3 flows, an IP multicast
switched flow is created and installed by software, and
is uniquely identified by flow's source IP address, and
multicast group IP address. It is stored with input Vlan
ID in the cache entry, so that the packets in the flow
will not be replicated and forwarded to the receivers on the
same (input) Vlan.
Another difference is that all IP multicast hardware
switched flows belonging to the same (source, group) are
stored only on one switch engine on a Cisco L3 switch with
distributed switch engines, whereas unicast flows identified
by certain criterion may resident on multiple switch engines
in the system."
::= { cseFlow 12 }
cseFlowMcastQueryEntry OBJECT-TYPE
SYNTAX CseFlowMcastQueryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of the cesMcastFlowQueryTable used to
setup retrieval criteria to search for IP multicast L3
flows on all switching engine entities in the device.
The actual search is started by setting the value of
cseFlowMcastQueryStatus to 'active'. Once a row becomes
active, values within the row cannot be modified, without
setting the associated RowStatus object to 'notInService'
first, or deleting and re-creating the row."
INDEX { cseFlowMcastQueryIndex }
::= { cseFlowMcastQueryTable 1 }
CseFlowMcastQueryEntry ::= SEQUENCE {
cseFlowMcastQueryIndex Unsigned32,
cseFlowMcastQueryMask BITS,
cseFlowMcastQuerySrc IpAddress,
cseFlowMcastQueryGrp McastGroupIp,
cseFlowMcastQuerySrcVlan VlanIndex,
cseFlowMcastQueryRtrIndex IpAddress,
cseFlowMcastQuerySkipNFlows Integer32,
cseFlowMcastQueryOwner OwnerString,
cseFlowMcastQueryTotalFlows Integer32,
cseFlowMcastQueryRows Integer32,
cseFlowMcastQueryStatus RowStatus,
cseFlowMcastQueryCreateTime TimeStamp,
cseFlowMcastQueryMvrf MplsVpnId,
cseFlowMcastQueryAddrType InetAddressType,
cseFlowMcastQuerySource InetAddress,
cseFlowMcastQueryGroup InetAddress
}
cseFlowMcastQueryIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer in the range of 1 to
cseFlowMcastMaxQueries to identify this control query."
::= { cseFlowMcastQueryEntry 1 }
cseFlowMcastQueryMask OBJECT-TYPE
SYNTAX BITS {
source(0),
group(1),
vlan(2),
router(3),
mvrf(4),
sourceip(5),
groupip(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object is used to set up the query criterion for
the multicast flows of interest. If any one of the
defined BITs is set, then the value of the corresponding
object in the same row instance will be used for the search.
Specifically, if the 'source(0)' BIT is set, then the
cseFlowMcastQuerySrc object will be included in the
search criterion.
If the group(1) BIT is set, then the
cseFlowMcastQueryGrp object will be included in the
search criterion.
If the vlan(2) BIT is set, then the
cseFlowMcastQuerySrcVlan object will be included in the
search criterion.
If the router(3) BIT is set, then the
cseFlowMcastQueryRtrIndex object will be included in the
search criterion.
If the mvrf(4) BIT is set, then the
cseFlowMcastQueryMvrf object will be included in the
search criterion;
If the sourceip(5) BIT is set, then the
cseFlowMcastQueryAddrType and cseFlowMcastQuerySource
objects will be included in the search criterion.
If the groupip(6) BIT is set, then the
cseFlowMcastQueryAddrType and cseFlowMcastQueryGroup
objects will be included in the search criterion.
If the source(0) or group(1) BIT is set, then the
sourceip(5) or groupip(6) cannot be set, and vice-versa.
If any of the BITs in this variable is cleared, the
corresponding parameter object in the same row is
treated as a wildcard. When the row is instantiated,
the BITs in the variable will be cleared, and none of
query parameter objects in this row will be instantiated.
This will be considered as a wildcard search for flows
on the default Multicast Virtual Private Network (MVPN)
routing/forwarding (MVRF) instance.
i.e. it will return all rows corresponding
to all established multicast flow entries in the default
MVRF, in cseFlowMcastResultTable. The address type of this
wildcard search will be specified be cseFlowMcastQueryAddrType.
It is SNMP managers' responsibility to set certain
bits on in this object instance, if necessary,
and the corresponding flow parameter variables to the
appropriate values in order to setup the desired
query criteria.
The value of this object can not be altered when the
corresponding instance of cseFlowMcastQueryStatus is 'active'."
DEFVAL { { } }
::= { cseFlowMcastQueryEntry 2 }
cseFlowMcastQuerySrc OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The source address of the IP multicast layer 3 flows.
This object should be instantiated and assigned a
proper IP address whenever the 'source' bit of
cseFlowMcastQueryMask object in the same row is on.
If the 'source' bit is set, and an appropriate IP address
is assigned to this object, then only flows with the
specified source address will be containing in the
result table.
If the 'source' bit in the associated cseFlowMcastQueryMask
is cleared, this object is ignored during the query, and all
flows will be considered regardless of their source IP address.
This object is deprecated and replaced by
cseFlowMcastQueryAddrType and cseFlowMcastQuerySource."
::= { cseFlowMcastQueryEntry 3 }
cseFlowMcastQueryGrp OBJECT-TYPE
SYNTAX McastGroupIp
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION
"The IP multicast group address of the queried flows.
This object should be instantiated and set whenever
the 'group' bit of the associated cseFlowMcastQueryMask object
is on.
If the 'group' bit is set, and a multicast group address is
assigned to the object, only flows with the specified group
address will be contained in the result table.
If the 'group' bit in the associated cseFlowMcastQueryMask
is cleared, this object is ignored during the query, and all
flows will be considered regardless of their group address.
This object is deprecated and replaced by
cseFlowMcastQueryAddrType and cseFlowMcastQueryGroup."
::= { cseFlowMcastQueryEntry 4 }
cseFlowMcastQuerySrcVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source Vlan ID of the IP multicast layer 3 flows.
This object should be instantiated and set whenever
the 'vlan' bit of the associated cseFlowMcastQueryMask object
is on.
If the 'vlan' bit is set, and a Vlan ID is assigned to this
object, only flows belonging to that vlan will be contained
in the result table.
If the 'vlan' bit in the associated cseFlowMcastQueryMask object
is cleared, this object is ignored during the query, and all
flows will be considered regardless of their vlan IDs."
::= { cseFlowMcastQueryEntry 5 }
cseFlowMcastQueryRtrIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of the router for which the multicast flows are
available, that is the flows would be replicated
and routed by the specified
router, should the flows did not get switched.
This object should be instantiated and set whenever the 'router'
bit of the asociated cseFlowMcastQueryMask object is on.
If the 'router' bit is set, and a router's IP address
is assigned to this object, then only flows associated with
that router will be contained in the result table.
If the 'router' bit in the cseFlowMcastQueryMask object
is cleared, this object is ignored during the query, and all
flows will be considered regardless of the routers
being switched."
::= { cseFlowMcastQueryEntry 6 }
cseFlowMcastQuerySkipNFlows OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of searched flows to be skipped before storing
any multicast flows in cseFlowMcastResultTable.
This object can be used along with cseFlowMcastQueryTotalFlows
object to skip previously found flows by setting the variable
equal to the number of the associated rows in
cseFlowMcastResultTable, and only query the remaining flows
in the table.
Note that due to the dynamical nature of the L3 flows, the
queried flows may be missed or repeated by setting this object."
DEFVAL { 0 }
::= { cseFlowMcastQueryEntry 7 }
cseFlowMcastQueryOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The manager entity that configured this entry and is therefore
using the resources assigned to it. It is used to model an
administratively assigned name of the owner of a resource.
It is recommended that this object have one or more the following
information: IP address, management station name, network
manager's name, location, or phone number."
::= { cseFlowMcastQueryEntry 8 }
cseFlowMcastQueryTotalFlows OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of flows matching the query criterion."
::= { cseFlowMcastQueryEntry 9 }
cseFlowMcastQueryRows OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicating the status of the query by following values:
-1 - Either the query has not been started or the
agent is still processing this query instance.
It is the default value when the row is instantiated.
0..2147483647 - The search has ended and this is the
number of rows in the cseFlowMcastResultTable,
resulting from this query."
::= { cseFlowMcastQueryEntry 10 }
cseFlowMcastQueryStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status object used to manage rows in this table.
When set to 'active', the query of flows is initiated.
This object can be set to active only after all the
appropriate objects for this query as defined by the
bits in the cseFlowMcastQueryMask object, have also been
instantiated. The completion of the query is indicated
by the value of cseFlowMcastQueryRows as soon as it
becomes greater than or equal to 0.
Once a row becomes active, values within the row cannot be
modified without setting it to 'notInService' first, or just
deleting and re-creating it.
To abort a lengthy on-going query, setting this object to
'notInService', or 'destroy' will terminate a search
if one is in progress, and cause the associated rows in
cseFlowMcastResultTable, if any, to be deleted."
::= { cseFlowMcastQueryEntry 11 }
cseFlowMcastQueryCreateTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when this query was last set to active."
::= { cseFlowMcastQueryEntry 12 }
cseFlowMcastQueryMvrf OBJECT-TYPE
SYNTAX MplsVpnId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The human-readable name of the Multicast
Virtual Private Network (MVPN) routing/forwarding
instance (MVRF). When the 'mvrf' bit of
cseFlowMcastQueryMask object in the same row is on,
an appropriate value should be specified and only flows
with the specified MVRF name will be contained in the
result table. If the 'mvrf' bit in the associated
cseFlowMcastQueryMask is cleared, this object is ignored
during the query, and all the flows corresponding to the
default MVRF will be considered."
::= { cseFlowMcastQueryEntry 13 }
cseFlowMcastQueryAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Internet address type for this multicast search
query."
DEFVAL { ipv4 }
::= { cseFlowMcastQueryEntry 14 }
cseFlowMcastQuerySource OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source Internet address of the IP multicast layer 3
flows. When the 'sourceip' bit of cseFlowMcastQueryMask
cseFlowMcastQueryMask object in the same row is on,
an appropriate value should be specified and only flows
with the specified source address will be contained in the
result table. If the 'sourceip' bit in the associated
cseFlowMcastQueryMask is cleared, this object is ignored
during the query, and all flows will be considered regardless
of their source address.
The type of this address is determined by the value of the
cseFlowMcastQueryAddrType object.
The default value of this object is all zeros."
DEFVAL { '00000000'H }
::= { cseFlowMcastQueryEntry 15 }
cseFlowMcastQueryGroup OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The multicast group Internet address of the queried flows.
When the 'mvrf' bit of cseFlowMcastQueryMask object
in the same row is on, an appropriate value should be
specified and only flows with the specified group address
will be contained in the result table. If the 'groupip' bit
in the associated cseFlowMcastQueryMask is cleared, this
object is ignored during the query, and all flows will
be considered regardless of their group address.
The type of this address is determined by the value of the
cseFlowMcastQueryAddrType object.
The default value of this object is all zeros."
DEFVAL { '00000000'H }
::= { cseFlowMcastQueryEntry 16 }
-- The multicast flow query result data table
cseFlowMcastResultTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowMcastResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing current IP multicast flow information
corresponding to all the completed queries set up in
the cseFlowMcastQueryTable, that were initiated on the switch
engine(s). The query result will not become available until
the current search completes."
::= { cseFlow 13 }
cseFlowMcastResultEntry OBJECT-TYPE
SYNTAX CseFlowMcastResultEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of cseFlowMcastResultTable, containing
information about an IP multicast layer 3 flow that matchs
the search criteria set in the corresponding row of
cseFlowMcastQueryTable. This row instance is indexed by
the query index (cseFlowMcastQueryIndex), the switch engine
entity (entPhysicalIndex), and data entry index
(cseFlowMcastResultIndex). The value of entPhysicalIndex
object is assigned by Entity-MIB, and uniquely identifies
a switching engine on which the IP multicast flow is stored."
INDEX {
cseFlowMcastQueryIndex,
entPhysicalIndex,
cseFlowMcastResultIndex
}
::= { cseFlowMcastResultTable 1 }
CseFlowMcastResultEntry ::= SEQUENCE {
cseFlowMcastResultIndex Integer32,
cseFlowMcastResultGrp McastGroupIp,
cseFlowMcastResultSrc IpAddress,
cseFlowMcastResultSrcVlan VlanIndex,
cseFlowMcastResultRtrIp IpAddress,
cseFlowMcastResultRtrMac MacAddress,
cseFlowMcastResultCreatedTS TimeStamp,
cseFlowMcastResultLastUsedTS TimeStamp,
cseFlowMcastResultPkts Counter64,
cseFlowMcastResultOctets Counter64,
cseFlowMcastResultDstVlans OCTET STRING,
cseFlowMcastResultDstVlans2k OCTET STRING,
cseFlowMcastResultDstVlans3k OCTET STRING,
cseFlowMcastResultDstVlans4k OCTET STRING,
cseFlowMcastResultMvrf MplsVpnId,
cseFlowMcastResultAddrType InetAddressType,
cseFlowMcastResultGroup InetAddress,
cseFlowMcastResultSource InetAddress,
cseFlowMcastResultFlowType INTEGER,
cseFlowMcastResultHFlag1k2k OCTET STRING,
cseFlowMcastResultHFlag3k4k OCTET STRING
}
cseFlowMcastResultIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A positive integer which uniquely identify a result entry
on a specific switching engine matching a particular query."
::= { cseFlowMcastResultEntry 1 }
cseFlowMcastResultGrp OBJECT-TYPE
SYNTAX McastGroupIp
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The multicast group IP address of the multicast layer 3 flow.
This object is deprecated and replaced by
cseFlowMcastResultAddrType and cseFlowMcastResultGroup."
::= { cseFlowMcastResultEntry 2 }
cseFlowMcastResultSrc OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The source address of the multicast layer 3 flow.
This object is deprecated and replaced by
cseFlowMcastResultAddrType and cseFlowMcastResultSource."
::= { cseFlowMcastResultEntry 3 }
cseFlowMcastResultSrcVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source Vlan ID of the IP multicast layer 3 flow."
::= { cseFlowMcastResultEntry 4 }
cseFlowMcastResultRtrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface IP address of the router this multicast flow
is switching for. Since IP multicast flows can only be
established for a router's trunk ports, it is the primary
IP address of the router's trunk link that connects to the
switch."
::= { cseFlowMcastResultEntry 5 }
cseFlowMcastResultRtrMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default MAC address of the router the multicast flow is
switching for. Different multicast flows switching different
ports of the same router will have the identical value of this
object."
::= { cseFlowMcastResultEntry 6 }
cseFlowMcastResultCreatedTS OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when the IP multicast flow was created."
::= { cseFlowMcastResultEntry 7 }
cseFlowMcastResultLastUsedTS OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time when this IP multicast flow was last used."
::= { cseFlowMcastResultEntry 8 }
cseFlowMcastResultPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of multicast traffic packets forwarded
for this flow (replicated packets are not counted)."
::= { cseFlowMcastResultEntry 9 }
cseFlowMcastResultOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of multicast traffic octets forwarded
for this flow (replicated packets are not counted)."
::= { cseFlowMcastResultEntry 10 }
cseFlowMcastResultDstVlans OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN.
Each octet within the value of this object specifies a
set of eight VLANs, e.g. the first octet corresponding to
VLANs with VlanIndex values of 0 through 7, the second
octet to VLANs 8 through 15, etc. Within each octet,
the most significant bit represents the lowest numbered
VLAN, and the least significant bit represents the highest
numbered VLAN, thus each vlan is represented by a single bit
within the octet. The bits in this object will be set
to '1' if the corresponding Vlans are in the out-going
interface (vlan) list of the IP multicast flow described
by this row instance."
::= { cseFlowMcastResultEntry 11 }
cseFlowMcastResultDstVlans2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN,
with VlanIndex values of 1024 through 2047,with
each octet within the value of this object specifies a
set of eight VLANs, e.g. the first octet corresponding to
VLANs with VlanIndex values of 1024 through 1031, the second
octet to VLANs 1032 through 1039 etc. Within each octet,
the most significant bit represents the lowest numbered
VLAN, and the least significant bit represents the highest
numbered VLAN, thus each vlan is represented by a single bit
within the octet. The bits in this object will be set
to '1' if the corresponding Vlans are in the out-going
interface (vlan) list of the IP multicast flow described
by this row instance."
::= { cseFlowMcastResultEntry 12 }
cseFlowMcastResultDstVlans3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN.
With VlanIndex values of 2048 through 3071 with
each octet within the value of this object specifies a
set of eight VLANs, e.g. the first octet corresponding to
VLANs with VlanIndex values of 2048 through 2055, the second
octet to VLANs 2056 through 2063 etc. Within each octet,
the most significant bit represents the lowest numbered
VLAN, and the least significant bit represents the highest
numbered VLAN, thus each vlan is represented by a single bit
within the octet. The bits in this object will be set
to '1' if the corresponding Vlans are in the out-going
interface (vlan) list of the IP multicast flow described
by this row instance."
::= { cseFlowMcastResultEntry 13 }
cseFlowMcastResultDstVlans4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN.
With VlanIndex values of 3072 through 4095, with
each octet within the value of this object specifies a
set of eight VLANs, e.g. the first octet corresponding to
VLANs with VlanIndex values of 3072 through 3079 the second
octet to VLANs 3080 through 3087 etc. Within each octet,
the most significant bit represents the lowest numbered
VLAN, and the least significant bit represents the highest
numbered VLAN, thus each vlan is represented by a single bit
within the octet. The bits in this object will be set
to '1' if the corresponding Vlans are in the out-going
interface (vlan) list of the IP multicast flow described
by this row instance."
::= { cseFlowMcastResultEntry 14 }
cseFlowMcastResultMvrf OBJECT-TYPE
SYNTAX MplsVpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MVRF to which this flow belongs to."
::= { cseFlowMcastResultEntry 15 }
cseFlowMcastResultAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Internet address type of cseFlowMcastResultGroup
and cseFlowMcastResultSource."
::= { cseFlowMcastResultEntry 16 }
cseFlowMcastResultGroup OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The multicast group IP address of the multicast layer
3 flow."
::= { cseFlowMcastResultEntry 17 }
cseFlowMcastResultSource OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The source address of the multicast layer 3 flow."
::= { cseFlowMcastResultEntry 18 }
cseFlowMcastResultFlowType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
rpfMfd(2),
partialSC(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the type of multicast layer 3 flow.
other - Multicast flow type is none of the followoing.
rpfMfd - This flow is a RPF MFD flow.
partial - This flow is a partial shortcut flow."
::= { cseFlowMcastResultEntry 19 }
cseFlowMcastResultHFlag1k2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per out-going
interface (VLAN) with VlanIndex values of 0 through 2047.
Each octet within the value of this object specifies
a set of eight VLANs, e.g. the first octet
corresponding to VLANs with VlanIndex values of
0 through 7, the second octet to VLANs 8 through 15,
etc. Within each octet, the most significant bit
represents the lowest numbered VLAN, and the least
significant bit represents the highest numbered VLAN,
thus each vlan is represented by a single bit within the
octet.
The bits in this object will be set to '1' if the
multicast layer 3 flow described by this row instance
is hardware switched on the corresponding VLAN.
If the length of this string is less than 256 octets,
any 'missing' octets are assumed to contain the value
of zero."
::= { cseFlowMcastResultEntry 20 }
cseFlowMcastResultHFlag3k4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per out-going
interface (VLAN) with VlanIndex values of 2048 through
4095. Each octet within the value of this object
specifies a set of eight VLANs, e.g. the first octet
corresponding to VLANs with VlanIndex values of 2048
through 2055, the second octet to VLANs 2056 through
2063 etc. Within each octet, the most significant
bit represents the lowest numbered VLAN, and the least
significant bit represents the highest numbered VLAN,
thus each vlan is represented by a single bit within
the octet.
The bits in this object will be set to '1' if the
multicast layer 3 flow described by this row instance
is hardware switched on the corresponding VLAN.
If the length of this string is less than 256 octets,
any 'missing' octets are assumed to contain the value
of zero."
::= { cseFlowMcastResultEntry 21 }
-- Multicast MLS-SE global configuration
cseFlowMcastSwitchStatus OBJECT-TYPE
SYNTAX ControlStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current status of the global IP multicast flow switching
capability. When enabled, the switch engine will be able to
install multicast flow entries in its L3 forwarding table,
and perform hardware assisted switching for the flows."
::= { cseFlow 14 }
-- Now that our hardware can L3 switch IPX traffic
cseFlowIPXEstablishedAgingTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative aging time for established IPX flows. The
default value for this object is implementation specific.
The corresponding operational object is
cseFlowOperIPXAgingTime."
::= { cseFlow 15 }
cseStaticIpxExtRouterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseStaticIpxExtRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of external routers which are enabled for
Layer 3 IPX switching by the switching engine.
This table may contain routers
that have not yet been discovered by the device."
::= { cseFlow 16 }
cseStaticIpxExtRouterEntry OBJECT-TYPE
SYNTAX CseStaticIpxExtRouterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseStaticIpxExtRouterTable for
enabling an external router to be installed in the
switch's router table. The entry is created and deleted
by using cseStaticIpxRouterStatus."
INDEX { cseRouterIndex }
::= { cseStaticIpxExtRouterTable 1 }
CseStaticIpxExtRouterEntry ::= SEQUENCE {
cseStaticIpxRouterName DisplayString,
cseStaticIpxRouterOwner OwnerString,
cseStaticIpxRouterStatus RowStatus
}
cseStaticIpxRouterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DNS name (if available) of the external router."
::= { cseStaticIpxExtRouterEntry 1 }
cseStaticIpxRouterOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"String indicating the owner who created the static entry."
::= { cseStaticIpxExtRouterEntry 2 }
cseStaticIpxRouterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Used to manage creation and deletion of rows in this table.
Once a row becomes active, values within that row cannot be
modified except by deleting and creating the row."
::= { cseStaticIpxExtRouterEntry 3 }
cseFlowOperEstablishedAgingTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational aging time for IP established flows."
::= { cseFlow 17 }
cseFlowOperFastAgingTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational fast aging time for the established flow
entries, that have less number of packets than the value set
in the cseFlowOperFastAgePktThreshold,switched within this
time."
::= { cseFlow 18 }
cseFlowOperFastAgePktThreshold OBJECT-TYPE
SYNTAX Unsigned32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational packet threshold for the
cseFlowOperFastAgingTime."
::= { cseFlow 19 }
cseFlowOperIPXAgingTime OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational aging time for established IPX flows."
::= { cseFlow 20 }
-- The bridged flow statistics control table
cseBridgedFlowStatsCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseBridgedFlowStatsCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table controls the reporting of intra-vlan statistics
for bridged flow per vlan. When a vlan is created in
a device supporting this table, a corresponding entry
of this table will be added."
::= { cseFlow 21 }
cseBridgedFlowStatsCtrlEntry OBJECT-TYPE
SYNTAX CseBridgedFlowStatsCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row instance contains the configuration to enable
or disable the reporting of intra-vlan statistics for
bridged flow per vlan."
INDEX { cseBridgedFlowVlan }
::= { cseBridgedFlowStatsCtrlTable 1 }
CseBridgedFlowStatsCtrlEntry ::= SEQUENCE {
cseBridgedFlowVlan VlanIndex,
cseFlowBridgedFlowStatsEnable TruthValue
}
cseBridgedFlowVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the Vlan number on which the reporting of
intra-vlan bridged flow statistics is configured."
::= { cseBridgedFlowStatsCtrlEntry 1 }
cseFlowBridgedFlowStatsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether intra-vlan bridged flow statistics is
enabled. If this object is set to 'true', intra-vlan
bridged flow statistics is reported in cseFlowDataTable
when a corresponding query is set up in cseFlowQueryTable.
If this object is set to 'false', intra-vlan bridged flow
statistics is not reported. The default is false."
DEFVAL { false }
::= { cseBridgedFlowStatsCtrlEntry 2 }
cseFlowIPFlowMask OBJECT-TYPE
SYNTAX INTEGER {
dstOnly(1),
srcDst(2),
fullFlow(3),
srcOnly(4),
intDstSrc(5),
intFull(6),
null(7),
intDstOnly(8),
intSrcOnly(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the flow mask for IP flows.
If dstOnly(1) is used, it enables flows based on Layer 3
destination addresses only.
If srcDst(2) is used, it enables flows based on both Layer 3
source and destination addresses only.
If fullFlow(3) is used, it enables flows based on Layer 4 port
numbers in addition to source and destination addresses.
If srcOnly(4) is used, it enables flows based on Layer 3
source addresses only.
If intDstSrc(5) is used, it enables flows based on source
interface in addition to source and destination addresses.
If intFull(6) is used, it enables flows based on source
interface in addition to Layer 4 port numbers, source and
destination addresses.
If null(7) is used, no flow will be enabled.
If intDstOnly(8) is used, it enables flows based on source
interface in addition to the destination addresses.
If intSrcOnly(9) is used, it enables flows based on source
interface in addition to the source addresses."
::= { cseFlow 22 }
cseFlowIPXFlowMask OBJECT-TYPE
SYNTAX INTEGER {
dstOnly(1),
srcDst(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the flow mask for IPX flows.
If dstOnly(1) is used, it enables flows based on Layer 3
destination addresses only.
If srcDst(2) is used, it enables flows based on both Layer 3
source and destination addresses only."
::= { cseFlow 23 }
cseFlowLongAgingTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative long aging time for the established
flow entries. Setting to value of 0 turns off long aging."
::= { cseFlow 24 }
-- The protocol exclude table
cseFlowExcludeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowExcludeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table controls the flow creation based on protocol
and port number. If a packet matches the protocol and
port number specified in this table entries, a flow
entry will not be established."
::= { cseFlow 25 }
cseFlowExcludeEntry OBJECT-TYPE
SYNTAX CseFlowExcludeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row instance contains the configuration to enable or
disable the establishment of flow entry for matching
traffic."
INDEX { cseFlowExcludePort }
::= { cseFlowExcludeTable 1 }
CseFlowExcludeEntry ::= SEQUENCE {
cseFlowExcludePort CiscoPort,
cseFlowExcludeProtocol INTEGER,
cseFlowExcludeStatus RowStatus
}
cseFlowExcludePort OBJECT-TYPE
SYNTAX CiscoPort
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the TCP or UDP port number that matching
traffic will be excluded from flow establishment.
The value of 0 is not allowed."
::= { cseFlowExcludeEntry 1 }
cseFlowExcludeProtocol OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2),
both(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the protocol that matching traffic will be
excluded from flow establishment."
::= { cseFlowExcludeEntry 2 }
cseFlowExcludeStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this conceptual row. New rows are created
using 'createAndGo' and deleted using 'destroy'.
Once 'active' this object may be set to only 'destroy'.
cseFlowExcludeProtocol may be modified at any time (even
while the row is active)."
::= { cseFlowExcludeEntry 3 }
-- The flow statistics table
cseFlowStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseFlowStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing flow statistics information on each switching
engine."
::= { cseFlow 26 }
cseFlowStatsEntry OBJECT-TYPE
SYNTAX CseFlowStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of cseFlowStatsTable, containing flow
statistics maintained by a switching engine entity
(identified by entPhysicalIndex). Each switching engine
managed by this MIB module has an entry in this table."
INDEX { entPhysicalIndex }
::= { cseFlowStatsTable 1 }
CseFlowStatsEntry ::= SEQUENCE {
cseFlowTotalFlows Gauge32,
cseFlowTotalIpv4Flows Gauge32
}
cseFlowTotalFlows OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of flow entries installed in
this switching engine."
::= { cseFlowStatsEntry 1 }
cseFlowTotalIpv4Flows OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total number of IPv4 flow entries in
this switching engine."
::= { cseFlowStatsEntry 2 }
-- Optional NetFlow Lan Switching group
cseNetflowLSExportStatus OBJECT-TYPE
SYNTAX ControlStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Status of the Netflow LAN Switching data export feature."
::= { cseNetflowLS 1 }
cseNetflowLSExportHost OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Network(IP) address in dotted decimal format or the DNS hostname
of the host to which Netflow LAN switching statistics are
exported.
This object is deprecated and replaced by cndeCollectorAddress
in CISCO-NDE-MIB."
::= { cseNetflowLS 2 }
cseNetflowLSExportTransportNumber OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The transport(UDP) port number to be used for the Netflow LAN
switching statistics being exported.
This object is deprecated and replaced by cndeCollectorPort
in CISCO-NDE-MIB."
::= { cseNetflowLS 3 }
cseNetflowLSExportDataSource OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The source network address used as a filter for selecting
the flows to which the netflow LAN switching data export
feature is applied."
::= { cseNetflowLS 4 }
cseNetflowLSExportDataSourceMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask to be applied to the corresponding instance of
cseNetflowExportDataSource."
::= { cseNetflowLS 5 }
cseNetflowLSExportDataDest OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The destination network address used as a filter for
selecting the flows to which the netflow LAN switching
data export feature is applied."
::= { cseNetflowLS 6 }
cseNetflowLSExportDataDestMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mask to be applied to its corresponding instance
of cseNetflowExportDataDest."
::= { cseNetflowLS 7 }
cseNetflowLSExportDataProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol used as a filter for selecting the
flows to which the netflow LAN switching data export feature
is applied."
REFERENCE "The protocol value is defined in the RFC 1700."
::= { cseNetflowLS 8 }
cseNetflowLSExportDataFilterSelection OBJECT-TYPE
SYNTAX INTEGER {
included(1),
excluded(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The filter set can be chosen either included(1) or
excluded(2) mutually exclusive. If this object is set to
included(1) - exports the flows that match
cseNetflowLSExportDataSource,
cseNetflowLSExportDataSourceMask,
cseNetflowLSExportDataDest,
cseNetflowLSExportDataDestMask and
cseNetflowLSExportDataProtocol.
excluded(2) - exports the flows that don't match
cseNetflowLSExportDataSource,
cseNetflowLSExportDataSourceMask,
cseNetflowLSExportDataDest,
cseNetflowLSExportDataDestMask and
cseNetflowLSExportDataProtocol."
::= { cseNetflowLS 9 }
cseNetflowLSExportNDEVersionNumber OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The netflow data export version number which is
supported by the device.
The typical value of this object can be 1, 7 or 8."
::= { cseNetflowLS 10 }
cseNetflowLSFilterSupport OBJECT-TYPE
SYNTAX INTEGER {
single(1),
multiple(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether this device supports single filter or
multiple filters.
single - use objects in cseNDESingleFilterGroupRev1 to
configure NDE filtering paramaters.
multiple - use objects in cseNDEMultipleFiltersGroup to
configure NDE filtering paramaters."
::= { cseNetflowLS 11 }
cseNetflowLSFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseNetflowLSFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Table containing Netflow Data Export filtering
configuration."
::= { cseNetflowLS 12 }
cseNetflowLSFilterEntry OBJECT-TYPE
SYNTAX CseNetflowLSFilterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptutal row in the cseNetflowLSFilterTable,
representing a NDE filter configuration."
INDEX { cseNetflowLSFilterIndex }
::= { cseNetflowLSFilterTable 1 }
CseNetflowLSFilterEntry ::= SEQUENCE {
cseNetflowLSFilterIndex Unsigned32,
cseNetflowLSFilterDataSource FlowAddressComponent,
cseNetflowLSFilterDataSourceMask FlowAddressComponent,
cseNetflowLSFilterDataDest FlowAddressComponent,
cseNetflowLSFilterDataDestMask FlowAddressComponent,
cseNetflowLSFilterDataProtocol Integer32,
cseNetflowLSFilterSelection INTEGER,
cseNetflowLSFilterStatus RowStatus
}
cseNetflowLSFilterIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which uniquely identifies the filter"
::= { cseNetflowLSFilterEntry 1 }
cseNetflowLSFilterDataSource OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source network address used as a filter for selecting
the flows to which the netflow LAN switching data export
feature is applied. If cseNetflowLSNDEFilterDataSource
contains all zeros, then the
cseNetflowLSNDEFilterDataSource object will not be
included in the filtering criterion."
DEFVAL { '000000000000'H }
::= { cseNetflowLSFilterEntry 2 }
cseNetflowLSFilterDataSourceMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The mask to be applied to the corresponding instance of
cseNetflowExportDataSource.
If cseNetflowLSFilterDataSourceMask contains all zeros,
then the cseNetflowLSFilterDataSourceMask object will
not be included in the filtering criterion."
DEFVAL { '000000000000'H }
::= { cseNetflowLSFilterEntry 3 }
cseNetflowLSFilterDataDest OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The destination network address used as a filter for
selecting the flows to which the netflow LAN switching data
export feature is applied.
If cseNetflowLSFilterDataDest contains all zeros, then the
cseNetflowLSFilterDataDest object will not be included in
the filtering criterion."
DEFVAL { '000000000000'H }
::= { cseNetflowLSFilterEntry 4 }
cseNetflowLSFilterDataDestMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The mask to be applied to its corresponding instance
of cseNetflowExportDataDest.
If cseNetflowLSFilterDataDestMask contains all zeros,
then the cseNetflowLSFilterDataDestMask object will not be
included in the filtering criterion."
DEFVAL { '000000000000'H }
::= { cseNetflowLSFilterEntry 5 }
cseNetflowLSFilterDataProtocol OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The protocol used as a filter for selecting the
flows to which the netflow LAN switching data export
feature is applied.
The default value is set to 0, to specify that no value
has been set.
If cseNetflowLSFilterDataProtocol is set to 0, then the
cseNetflowLSFilterDataProtocol object will not be included in
the filtering criterion."
DEFVAL { 0 }
::= { cseNetflowLSFilterEntry 6 }
cseNetflowLSFilterSelection OBJECT-TYPE
SYNTAX INTEGER {
included(1),
excluded(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The filter set can be chosen either included(1) or
excluded(2).
If this object is set to
included(1) - exports the flows that match
cseNetflowLSFilterDataSource,
cseNetflowLSFilterDataSourceMask,
cseNetflowLSFilterDataDest,
cseNetflowLSFilterDataDestMask and
cseNetflowLSFilterDataProtocol.
excluded(2) - exports the flows that don't match
cseNetflowLSFilterDataSource,
cseNetflowLSFilterDataSourceMask,
cseNetflowLSFilterDataDest,
cseNetflowLSFilterDataDestMask and
cseNetflowLSFilterDataProtocol."
::= { cseNetflowLSFilterEntry 7 }
cseNetflowLSFilterStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status object used to manage the rows in this table.
Once a row becomes active, values within that row cannot be
modified except by deleting and creating the row."
::= { cseNetflowLSFilterEntry 8 }
cseNetFlowIfIndexEnable OBJECT-TYPE
SYNTAX BITS {
destIfIndex(0),
srcIfIndex(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether ifIndex reporting in NDE (Netflow
Data Export) is enabled.
if bit destIfIndex(0) is on, destination ifIndex reporting
in NDE is enabled.
if bit srcIfIndex(1) is on, source ifIndex reporting in NDE
is enabled."
::= { cseNetflowLS 13 }
cseNetflowASInfoExportCtrl OBJECT-TYPE
SYNTAX INTEGER {
disable(1),
originate(2),
peer(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether export of Autonomous System(AS) number
information, in the NDE records, is enabled.
disable - Disables the export of AS number information.
originate - Enables the export of origination AS numbers of
source and destination IP addresses.
peer - Enables the export of peer AS numbers of
source and destination IP addresses."
::= { cseNetflowLS 14 }
cseNetflowPerVlanIfGlobalEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether 'creation of Netflow entries per
VLAN interface' feature is enabled at the device level.
If this object is set to 'false',
netflow entries will be created for all VLANs.
If this object is set to 'true', creation of netflow
entries can be controlled by cseNetflowPerVlanIfCtrlTable."
::= { cseNetflowLS 15 }
cseNetflowPerVlanIfCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseNetflowPerVlanIfCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table to control netflow entry creation for each VLAN.
When a VLAN is created, a corresponding entry is added
to this table."
::= { cseNetflowLS 16 }
cseNetflowPerVlanIfCtrlEntry OBJECT-TYPE
SYNTAX CseNetflowPerVlanIfCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the configuration to enable or
disable netflow entry creation for each VLAN."
INDEX { cseNetflowPerVlanIfCtrlVlan }
::= { cseNetflowPerVlanIfCtrlTable 1 }
CseNetflowPerVlanIfCtrlEntry ::= SEQUENCE {
cseNetflowPerVlanIfCtrlVlan VlanIndex,
cseNetflowPerVlanIfEnable TruthValue
}
cseNetflowPerVlanIfCtrlVlan OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the VLAN number on which creation of netflow
entries is configured."
::= { cseNetflowPerVlanIfCtrlEntry 1 }
cseNetflowPerVlanIfEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether creation of netflow entries is enabled
on this VLAN.
If this object is set to 'true', the system will create
netflow entries for this VLAN.
If this object is set to 'false', the system will not create
any netflow entries for this VLAN.
When the value of cseNetflowPerVlanIfGlobalEnable is 'false',
this object will not take effect."
::= { cseNetflowPerVlanIfCtrlEntry 2 }
-- L3 switching statistics
cseL3StatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseL3StatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing L3 statistics information on each switching
engine."
::= { cseL3Objects 1 }
cseL3StatsEntry OBJECT-TYPE
SYNTAX CseL3StatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of cseL3StatsTable, containing L3 statistics
maintained by a switching engine entity (identified by
entPhysicalIndex). Each switching engine managed by this
MIB module has an entry in this table."
INDEX { entPhysicalIndex }
::= { cseL3StatsTable 1 }
CseL3StatsEntry ::= SEQUENCE {
cseL3SwitchedTotalPkts Counter32,
cseL3SwitchedTotalOctets Counter64,
cseL3CandidateFlowHits Counter32,
cseL3EstablishedFlowHits Counter32,
cseL3ActiveFlows Gauge32,
cseL3FlowLearnFailures Counter32,
cseL3IntFlowInvalids Counter32,
cseL3ExtFlowInvalids Counter32,
cseL3SwitchedPktsPerSec Counter32
}
cseL3SwitchedTotalPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of packets switched at Layer 3 by this switching
engine."
::= { cseL3StatsEntry 1 }
cseL3SwitchedTotalOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in the total packets switched at Layer 3 by this
switching engine."
::= { cseL3StatsEntry 2 }
cseL3CandidateFlowHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of L3 Cache hits for the candidate flow entries in this
switching engine."
::= { cseL3StatsEntry 3 }
cseL3EstablishedFlowHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of L3 Cache hits for established flow entries in this
switching engine."
::= { cseL3StatsEntry 4 }
cseL3ActiveFlows OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of active flows in the Layer 3 flow table of this switching
engine."
::= { cseL3StatsEntry 5 }
cseL3FlowLearnFailures OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of flows that failed to be learned because the Layer 3
flow table in this switching engine was full."
::= { cseL3StatsEntry 6 }
cseL3IntFlowInvalids OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of flow invalidation events received by this switching
engine from the internal router(s)."
::= { cseL3StatsEntry 7 }
cseL3ExtFlowInvalids OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of flow invalidation events received by this switching
engine from external routers."
::= { cseL3StatsEntry 8 }
cseL3SwitchedPktsPerSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets switched per second at Layer 3 by this
switching engine."
::= { cseL3StatsEntry 9 }
-- Per-VLAN L3 statistics
cseL3VlanStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseL3VlanStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing per-VLAN, Layer 3 statistics information per
switching engine."
::= { cseL3Objects 2 }
cseL3VlanStatsEntry OBJECT-TYPE
SYNTAX CseL3VlanStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row of cseL3VlanStatsTable, containing per-VLAN
Layer 3 statistics maintained by a switching engine (identified
by entPhysicalIndex). An entry exists for each known VLAN for
each switching engine."
INDEX {
entPhysicalIndex,
cseL3VlanIndex
}
::= { cseL3VlanStatsTable 1 }
CseL3VlanStatsEntry ::= SEQUENCE {
cseL3VlanIndex VlanIndex,
cseL3VlanInPkts Counter64,
cseL3VlanInOctets Counter64,
cseL3VlanOutPkts Counter64,
cseL3VlanOutOctets Counter64,
cseL3VlanInUnicastPkts Counter64,
cseL3VlanInUnicastOctets Counter64,
cseL3VlanOutUnicastPkts Counter64,
cseL3VlanOutUnicastOctets Counter64
}
cseL3VlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Vlan number for which the statistics are maintained by this
entry."
::= { cseL3VlanStatsEntry 1 }
cseL3VlanInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets Layer 3 forwarded from this Vlan to some
other VLAN by this switching engine."
::= { cseL3VlanStatsEntry 2 }
cseL3VlanInOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in packets Layer-3 forwarded from this Vlan
to some other VLAN by this switching engine."
::= { cseL3VlanStatsEntry 3 }
cseL3VlanOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets Layer-3 forwarded to this Vlan by this
switching engine."
::= { cseL3VlanStatsEntry 4 }
cseL3VlanOutOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in packets Layer-3 forwarded to this Vlan
by this switching engine."
::= { cseL3VlanStatsEntry 5 }
cseL3VlanInUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unicast packets Layer 3 forwarded from this Vlan
to some other VLAN by this switching engine."
::= { cseL3VlanStatsEntry 6 }
cseL3VlanInUnicastOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in unicast packets Layer-3 forwarded from
this Vlan to some other VLAN by this switching engine."
::= { cseL3VlanStatsEntry 7 }
cseL3VlanOutUnicastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of unicast packets Layer 3 forwarded to this
Vlan by this switching engine."
::= { cseL3VlanStatsEntry 8 }
cseL3VlanOutUnicastOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of octets in unicast packets Layer-3 forwarded
to this Vlan by this switching engine."
::= { cseL3VlanStatsEntry 9 }
-- Switch Engine based layer 3 flow statistics; it is protocol
-- independent, i.e. IP and IPX statistics are not separated
-- This group is an augmentation of cseL3StatsTable
cseStatsFlowTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseStatsFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of flow statistics per switch engine that is
not covered in cseL3StatsTable."
::= { cseL3Objects 3 }
cseStatsFlowEntry OBJECT-TYPE
SYNTAX CseStatsFlowEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row about slot based L3 flow statistics."
AUGMENTS { cseL3StatsEntry }
::= { cseStatsFlowTable 1 }
CseStatsFlowEntry ::= SEQUENCE {
cseStatsFlowAged Counter32,
cseStatsFlowPurged Counter32,
cseStatsFlowParityFail Counter32
}
cseStatsFlowAged OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of layer 3 flows aged out by hardware. Management
applications can control flow aging by setting the value of
cseFlowEstablishedAgingTime object."
::= { cseStatsFlowEntry 1 }
cseStatsFlowPurged OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of layer 3 flows purged by software; it may happen
because a router invalidates certain flows, or a router for which
flows are being switched has been excluded from cseRouterTable, or
access-list has changed, or certain features have been enabled
that would purge certain flows (TCP interception, Web cache are
examples of such features)."
::= { cseStatsFlowEntry 2 }
cseStatsFlowParityFail OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of memory parity errors on accessing flows in
the cache pools. It may be due to the internal RAM reading
error, not necessarily the corrupted flow data."
::= { cseStatsFlowEntry 3 }
-- Utilization level of flow cache pool per Switch Engine
-- Flows are combined for IP and IPX
cseCacheUtilTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseCacheUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of utilization levels in percentage of cache
capacity per switch engine. Each row instance is the
current flow utilization information in the cache pool
of the corresponding switching engine."
::= { cseL3Objects 4 }
cseCacheUtilEntry OBJECT-TYPE
SYNTAX CseCacheUtilEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row instance represents layer 3 flow utilization of
a particular cache pool on a switching engine."
INDEX { entPhysicalIndex }
::= { cseCacheUtilTable 1 }
CseCacheUtilEntry ::= SEQUENCE {
cseCacheUtilization Gauge32,
cseCacheEntriesCreated Unsigned32,
cseCacheEntriesFailed Unsigned32
}
cseCacheUtilization OBJECT-TYPE
SYNTAX Gauge32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flow utilization level in percentage in this switching engine.
It includes the flow entries for both unicast and multicast.
The lighter the utilization level, the less risk of dropping
flows, i.e. the higher success-rate of flow insertion."
::= { cseCacheUtilEntry 1 }
cseCacheEntriesCreated OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the total number of flow entries
successfully created in this switching engine."
::= { cseCacheUtilEntry 2 }
cseCacheEntriesFailed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the number of flow entries
which were failed to be created in this switching engine."
::= { cseCacheUtilEntry 3 }
-- L3 error counters table.
cseErrorStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseErrorStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of IP and IPX error counters per switch engine."
::= { cseL3Objects 5 }
cseErrorStatsEntry OBJECT-TYPE
SYNTAX CseErrorStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row instance represents layer-3 IP and IPX error counters
on a switching engine."
INDEX { entPhysicalIndex }
::= { cseErrorStatsTable 1 }
CseErrorStatsEntry ::= SEQUENCE {
cseIpPlenErrors Counter64,
cseIpTooShortErrors Counter64,
cseIpCheckSumErrors Counter64,
cseIpxPlenErrors Counter64,
cseIpxTooShortErrors Counter64
}
cseIpPlenErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP length against physical length
errors."
::= { cseErrorStatsEntry 1 }
cseIpTooShortErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP length too short errors."
::= { cseErrorStatsEntry 2 }
cseIpCheckSumErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP checksum errors."
::= { cseErrorStatsEntry 3 }
cseIpxPlenErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IPX length against physical length
errors."
::= { cseErrorStatsEntry 4 }
cseIpxTooShortErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IPX length too short errors."
::= { cseErrorStatsEntry 5 }
-- L3 error counters table.
cseErrorStatsLCTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseErrorStatsLCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of IP and IPX error counters per switch engine."
::= { cseL3Objects 6 }
cseErrorStatsLCEntry OBJECT-TYPE
SYNTAX CseErrorStatsLCEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row instance represents layer-3 IP and IPX error counters
on a switching engine."
INDEX { entPhysicalIndex }
::= { cseErrorStatsLCTable 1 }
CseErrorStatsLCEntry ::= SEQUENCE {
cseLCIpPlenErrors Counter32,
cseLCIpTooShortErrors Counter32,
cseLCIpCheckSumErrors Counter32,
cseLCIpxPlenErrors Counter32,
cseLCIpxTooShortErrors Counter32
}
cseLCIpPlenErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP length against physical length
errors."
::= { cseErrorStatsLCEntry 1 }
cseLCIpTooShortErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP length too short errors."
::= { cseErrorStatsLCEntry 2 }
cseLCIpCheckSumErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IP checksum errors."
::= { cseErrorStatsLCEntry 3 }
cseLCIpxPlenErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IPX length against physical length
errors."
::= { cseErrorStatsLCEntry 4 }
cseLCIpxTooShortErrors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of IPX length too short errors."
::= { cseErrorStatsLCEntry 5 }
-- Packets Switched Per Second
cseL3SwitchedAggrPktsPerSec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets switched per second at Layer 3 by the
entire system."
::= { cseL3Objects 7 }
-- Protocol Filter capability
cseProtocolFilterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates if protocol filtering is enabled in the device."
::= { cseProtocolFilter 1 }
cseProtocolFilterPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseProtocolFilterPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the protocol filtering configuration and status
information on ports."
::= { cseProtocolFilter 2 }
cseProtocolFilterPortEntry OBJECT-TYPE
SYNTAX CseProtocolFilterPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseProtocolFilterPortTable,
representing a Protocol filter configuration
status information for a particular
port (identified by ifIndex) and protocol type."
INDEX {
ifIndex,
cseProtocolFilterPortProtocol
}
::= { cseProtocolFilterPortTable 1 }
CseProtocolFilterPortEntry ::= SEQUENCE {
cseProtocolFilterPortProtocol INTEGER,
cseProtocolFilterPortAdminStatus INTEGER,
cseProtocolFilterPortOperStatus INTEGER
}
cseProtocolFilterPortProtocol OBJECT-TYPE
SYNTAX INTEGER {
ip(1),
ipx(2),
grpProtocols(3) -- Appletalk/Decnet/Vines
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The protocol (group) to filter, used here as the secondary
index."
::= { cseProtocolFilterPortEntry 1 }
cseProtocolFilterPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of the administrative status of the protocol
filtering on this interface.
- on(1) indicates that the interface will send and receive the
traffic for protocol specified in
cseProtocolFilterPortProtocol.
- off(2) indicates that the interface will not receive
traffic for this protocol, or if this feature is not
supported.
- auto(3) indicates that the corresponding
cseProtocolFilterPortOperStatus will transit to 'on' after
receiving one packet of this protocol type."
::= { cseProtocolFilterPortEntry 2 }
cseProtocolFilterPortOperStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2),
notSupported(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the operational status of filtering for
this protocol on this interface.
- on(1) indicates that the interface will send and receive the
protocol traffic.
- off(2) indicates that the interface will drop all traffic
belonging to this protocol.
- notSupported(3) indicates the hardware does not support
protocol filtering."
::= { cseProtocolFilterPortEntry 3 }
-- This MIB group/table is designed for control of purging flow caches
-- The caches are distributed in the switching engines across the system
cseUcastCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseUcastCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A control table used to purge certain types of IP/IPX layer 3
unicast flows stored in the cache pool."
::= { cseUcastCache 1 }
cseUcastCacheEntry OBJECT-TYPE
SYNTAX CseUcastCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseUcastCacheTable, used to set up
flow clearing criteria. The actual purging is started by setting
the value of cseUcastCacheStatus to 'active'. Once a row becomes
active, values within the row cannot be modified, except by
setting it to 'notInService' first or deleting and re-creating
the row."
INDEX { cseUcastCacheIndex }
::= { cseUcastCacheTable 1 }
CseUcastCacheEntry ::= SEQUENCE {
cseUcastCacheIndex Unsigned32,
cseUcastCacheFlowType INTEGER,
cseUcastCacheTransport INTEGER,
cseUcastCacheDest FlowAddressComponent,
cseUcastCacheDestMask FlowAddressComponent,
cseUcastCacheSource FlowAddressComponent,
cseUcastCacheSrcMask FlowAddressComponent,
cseUcastCacheRtrIp IpAddress,
cseUcastCacheOwner OwnerString,
cseUcastCacheResult INTEGER,
cseUcastCacheStatus RowStatus
}
cseUcastCacheIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which uniquely identifies the flow
purge contained in this row instance."
::= { cseUcastCacheEntry 1 }
cseUcastCacheFlowType OBJECT-TYPE
SYNTAX INTEGER {
any(1),
dstOnly(2),
srcOrDst(3),
srcAndDst(4),
fullFlow(5),
ipxDstOnly(6),
ipxSrcAndDst(7)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting each value causes the appropriate action:
'dstOnly' - causes purge of flows in the cache whose absolute
destination IP addresses match the address part of the value set
in the cseUcastCacheDest object. If cseUcastCacheDestMask is also
specified at the same time, it will be applied to the address part
of cseUcastCacheDest.
'srcOrDst' - causes purge of flows in the cache whose either
absolute source or destination IP addresses match the address
parts of the values set in cseUcastCacheSource or
cseUcastCacheDest.
If cseUcastCacheDestMask/cseUcastCacheSrcMask also specified,
they will be applied to the address parts of cseUcastCacheSource/
cseUcastCacheDest appropriately.
'srcAndDst' - causes purge of flows in the cache whose both
absolute source and destination IP addresses match the address
parts of values set in cseUcastCacheSource and cseUcastCacheDest
objects. If cseUcastCacheSrcMask and cseUcastCacheDestMask also
specified, they will be applied to the address parts of
cseUcastCacheSource and cseUcastCacheDest.
'fullFlow' - causes purge of IP flows whose IP addresses and
transport port numbers match the values set in cseUcastCacheDest
and cseUcastCacheSource objects.
If either cseUcastCacheDestMask or cseUcastCacheSrcMask objects
have valid values, they will be applied to the respective address
parts of cseUcastCacheDest and cseUcastCacheSource objects.
This option is typically used to purge flows relevant to specific
applications such as FTP, WWW, TELNET, etc.
'ipxDstOnly' - causes purge of IPX flows in the cache whose
absolute destination IPX address match the address part of
the value set in cseUcastCacheDest object.
if cseUcastCacheDestMask holds valid value at the same time,
it will be applied to the address part of cseUcastCacheDest.
'ipxSrcAndDst' - causes purge of IPX flows in the cache whose
both absolute source and destination IPX addresses match the
address parts of the values set in cseUcastCacheSource and
cseUcastCacheDest objects.
If either of cseUcastCacheSrcMask or cseUcastCacheDestMask
have valid values at the same time, they will be applied to
the respective address parts of cseUcastCacheSource and
cseUcastCacheDest objects.
'any' - causes purge of all established flows currently in
the cache. The values of cseUcastCacheDest, cseUcastCacheSource,
cseUcastCacheDestMask, cseUcastCacheSrcMask, and
cseUcastCacheTransport should be ignored in this case.
Note:
1. When the row instance is initialized, the value of this
object instance will be set to 'any'.
2. The rest flow parameter variables will not be instantiated
until they get set by management applications based on
the value of cseUcastCacheFlowType object."
DEFVAL { any }
::= { cseUcastCacheEntry 2 }
cseUcastCacheTransport OBJECT-TYPE
SYNTAX INTEGER {
udp(1),
tcp(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP transport protocol type (if applicable) of the specified
switched flows to be purged; it will be instantiated if and only
if it gets set by the management applications and the value of
cseUcastCacheFlowMask is equal to 'fullFlow'.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 3 }
cseUcastCacheDest OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Destination network address and port number (if applicable).
The port field is ignored for IPX flows and IP flows if the
value of cseUcastCacheFlowMask is not equal to 'fullFlow'.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 4 }
cseUcastCacheDestMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If instantiated, specified and applicable, the destination
address mask will be applied to the value of
cseUcastCacheDest in the same row instance.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 5 }
cseUcastCacheSource OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Source network address and port number (if applicable).
The port field is ignored for IPX flows and IP flows if the
value of cseUcastCacheFlowMask is not equal to 'fullFlow'.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 6 }
cseUcastCacheSrcMask OBJECT-TYPE
SYNTAX FlowAddressComponent
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If instantiated, specified and applicable, the source address
mask will be applied to the value of cseUcastCacheSource
in the same row instance.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 7 }
cseUcastCacheRtrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP address of the router (internal or external) for which the
flows are being switched, and need to be purged. An 'all-zero'
value is a wildcard IP address for any router.
Its value can not be modified when the corresponding instance
of cseUcastCacheStatus is 'active'."
::= { cseUcastCacheEntry 8 }
cseUcastCacheOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The manager entity that configured this entry and is therefore
using the resources assigned to it."
::= { cseUcastCacheEntry 9 }
cseUcastCacheResult OBJECT-TYPE
SYNTAX INTEGER {
purging(1),
notPurging(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"state of the flow purging operation.
'purging' - purging operation is proceeding
'notPurging' - the purging operation completed, or not
started yet."
DEFVAL { notPurging }
::= { cseUcastCacheEntry 11 }
cseUcastCacheStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status object used to manage rows in this table.
When set to active(1), the flow purge is initiated, and
the value of cseUcastCacheResult object becomes 'purging'.
However, this object can be set to active(1) only after
all the appropriate objects for this query as defined
by the value set in the cseUcastCacheFlowType object,
have also been set. Upon the completion of flow purge,
the value of cseUcastCacheResult object changes to
'notPurging'.
Once a row becomes active, values within the row cannot
be modified, except by setting it to 'notInService' first,
or deleting and re-creating it."
::= { cseUcastCacheEntry 10 }
-- This MIB group/table is designed for purging IP multicast
-- flows. For a multicast switch, a row instance can be used to clear
-- specified multicast L3 flows from its cache pools
cseMcastCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseMcastCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A control table used to purge specified IP multicast flows
from the switch engine."
::= { cseMcastCache 1 }
cseMcastCacheEntry OBJECT-TYPE
SYNTAX CseMcastCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row in the cseMcastCacheTable, used to set up
flow clearing criteria. The actual purging is started by setting
the value of cseMcastCacheStatus to 'active'. Once a row becomes
active, values within the row cannot be modified, except by
setting it to 'notInService' first, or deleting and re-creating
the row."
INDEX { cseMcastCacheIndex }
::= { cseMcastCacheTable 1 }
CseMcastCacheEntry ::= SEQUENCE {
cseMcastCacheIndex Unsigned32,
cseMcastCacheFlowType INTEGER,
cseMcastCacheGrp McastGroupIp,
cseMcastCacheSrc IpAddress,
cseMcastCacheRtrIp IpAddress,
cseMcastCacheOwner OwnerString,
cseMcastCacheResult INTEGER,
cseMcastCacheStatus RowStatus
}
cseMcastCacheIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer which uniquely identifies the flow
purge contained in the current row instance."
::= { cseMcastCacheEntry 1 }
cseMcastCacheFlowType OBJECT-TYPE
SYNTAX INTEGER {
any(1),
group(2),
grpAndSrc(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Setting each value causes the appropriate action:
'any' - causes purge of all established IP multicast
layer 3 flows in the cache. The value of cseMcastCacheGrp,
and cseMcastCacheSrc will be ignored in this case.
'group' - causes purge of flows whose multicast
group IP address match the values of cseMcastCacheGrp.
'grpAndSrc' - causes purge of multicast flows whose both
group IP address and source Ip address match the
values of cseMcastCacheGrp and cseMcastCacheSrc.
Note:
1. The instance of this object is initialized to
'any' when the corresponding row instance is
being instantiated.
2. Flow parameter variables, cseMcastCacheGrp,
cseMcastCacheSrc, cseMcastCacheRtrIp will not
be instantiated until they get set by management
applications (in such cases, cseMcastCacheFlowType
object should be set to a value other than 'any')."
DEFVAL { any }
::= { cseMcastCacheEntry 2 }
cseMcastCacheGrp OBJECT-TYPE
SYNTAX McastGroupIp
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specifying multicast group IP address of the flows to be
cleared. Its value can not be modified when the corresponding
instance of cseMcastCacheStatus is 'active'."
::= { cseMcastCacheEntry 3 }
cseMcastCacheSrc OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The source address of the IP multicast flows to be purged.
Its value can not be modified when the corresponding instance
of cseMcastCacheStatus is 'active'."
::= { cseMcastCacheEntry 4 }
cseMcastCacheRtrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address of the router whose flows are currently
being switched, and will be purged. An 'all-zero' value is
a wildcard IP address for any router.
Its value can not be modified when the corresponding instance
of cseMcastCacheStatus is 'active'."
::= { cseMcastCacheEntry 5 }
cseMcastCacheOwner OBJECT-TYPE
SYNTAX OwnerString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The manager entity that configured this entry and is therefore
using the resources assigned to it."
::= { cseMcastCacheEntry 6 }
cseMcastCacheResult OBJECT-TYPE
SYNTAX INTEGER {
purging(1),
notPurging(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"state of the flow purging operation.
'purging' - purging operation is proceeding
'notPurging' - the purging operation completed, or not
started yet."
DEFVAL { notPurging }
::= { cseMcastCacheEntry 7 }
cseMcastCacheStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status object used to manage rows in this table.
When set to active(1), the flow purge is initiated, and
the value of cseMcastCacheResult object becomes 'purging'.
However, this object can be set to active(1) only after
all the appropriate objects for this query as defined
by the value set in the cseMcastCacheFlowType object,
have also been set. Upon the completion of flow purge,
the value of cseMcastCacheResult object changes to
'notPurging'.
Once a row becomes active, values within the row cannot
be modified, except by setting it to 'notInService' first,
or deleting and re-creating it."
::= { cseMcastCacheEntry 8 }
-- cseCef Group
--
--
-- The cseCefFibTable
cseCefFibTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseCefFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the information stored in the device's
forwarding information base (FIB).
FIB is a forwarding scheme that utilizes matching pattern
to provide optimized lookup for efficient packet forwarding.
It contains a forwarding table which consist of matching
criteria for incoming traffic as well as information to
forward traffic that matched defined criteria."
::= { cseCef 1 }
cseCefFibEntry OBJECT-TYPE
SYNTAX CseCefFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row contains the IP address type, the final destination
IP address, the final destination IP address mask as well as
the FIB entry type."
INDEX { cseCefFibIndex }
::= { cseCefFibTable 1 }
CseCefFibEntry ::= SEQUENCE {
cseCefFibIndex Unsigned32,
cseCefFibAddrType InetAddressType,
cseCefFibDestIp InetAddress,
cseCefFibDestIpMask InetAddress,
cseCefFibType INTEGER
}
cseCefFibIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of this table entry."
::= { cseCefFibEntry 1 }
cseCefFibAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of IP address denoted in cseCefFibDestIp and
cseCefFibDestIpMask object."
::= { cseCefFibEntry 2 }
cseCefFibDestIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The destination IP address specified in IP packet header."
::= { cseCefFibEntry 3 }
cseCefFibDestIpMask OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The specified destination IP address mask."
::= { cseCefFibEntry 4 }
cseCefFibType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
resolved(2),
bridge(3),
drop(4),
connected(5),
receive(6),
wildcard(7),
tunnel(8),
default(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the FIB entry type.
other(1) indicates that this FIB entry type is none
of the following.
resolved(2) indicates that IP traffic matched the
destination prefix of this entry is associated with a
valid next-hop address.
bridge(3) indicates that IP traffic matched the destination
prefix of this entry will be forwarded using Layer 2
look up result.
drop(4) indicates that IP traffic matched the destination
prefix of this entry will be dropped.
connected(5) indicates that IP traffic matched the destination
prefix of this entry is associated with a connected network.
receive(6) indicates that IP traffic matched the destination
prefix of this entry will be sent to a router interface.
wildcard(7) indicates this FIB entry will match all traffic.
tunnel(8) indicates this FIB entry applied to tunneling
traffic.
default(9) indicates that IP traffic matched the destination
prefix of this entry will be forwarded using a default route."
::= { cseCefFibEntry 5 }
-- The cseCefAdjacencyTable
cseCefAdjacencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseCefAdjacencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information stored in the device's
adjacency table. Entry in this table is linked to entry
of cseCefFibTable by its cseCefFibIndex object."
::= { cseCef 3 }
cseCefAdjacencyEntry OBJECT-TYPE
SYNTAX CseCefAdjacencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row contains next hop IP address, next-hop Ethernet
address, adjacency type, and number of bytes and packets
transmitted to each adjacency entry. Next hop encapsulation
type and MTU value are also available if supported by the
device."
INDEX {
cseCefFibIndex,
cseCefAdjacencyIndex
}
::= { cseCefAdjacencyTable 1 }
CseCefAdjacencyEntry ::= SEQUENCE {
cseCefAdjacencyIndex Unsigned32,
cseCefAdjacencyAddrType InetAddressType,
cseCefAdjacencyNextHopIp InetAddress,
cseCefAdjacencyNextHopMac MacAddress,
cseCefAdjacencyNextHopIfIndex InterfaceIndexOrZero,
cseCefAdjacencyType INTEGER,
cseCefAdjacencyPkts Counter64,
cseCefAdjacencyOctets Counter64,
cseCefAdjacencyEncap INTEGER,
cseCefAdjacencyMTU Unsigned32
}
cseCefAdjacencyIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The adjacency index of this table entry."
::= { cseCefAdjacencyEntry 1 }
cseCefAdjacencyAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of IP address denoted in cseCefAdjacencyNextHopIp
object."
::= { cseCefAdjacencyEntry 2 }
cseCefAdjacencyNextHopIp OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next hop IP address."
::= { cseCefAdjacencyEntry 3 }
cseCefAdjacencyNextHopMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The next hop Ethernet address."
::= { cseCefAdjacencyEntry 4 }
cseCefAdjacencyNextHopIfIndex OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the next hop interface ifIndex."
::= { cseCefAdjacencyEntry 5 }
cseCefAdjacencyType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
punt(2),
glean(3),
drop(4),
null(5),
noRewrite(6),
forceDrop(7),
connect(8),
unresolved(9),
loopback(10),
tunnel(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates this adjacency entry type.
other(1) indicates the adjacency entry type is none of
the following.
punt(2) indicates entry that sends traffic to the router.
glean(3) indicates entry that needs to be gleaned for incoming
traffic.
drop(4) indicates entry that drops packets.
null(5) indicates entry that drops packets destined
for the Null0 interface.
noRewrite(6) indicates entry that sends traffic to the router
when rewrite information is incomplete.
forceDrop(7) indicates entry that drop packets due to ARP
throttling.
connect(8) indicates entry that contains complete rewrite
information.
unresolved(9) indicates entry that next hop traffic is
unresolved.
loopback(10) indicates entry that drops packets destined
for loopback interface.
tunnel(11) indicates entry that next hop traffic is
through a tunnel."
::= { cseCefAdjacencyEntry 6 }
cseCefAdjacencyPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of Layer 3 packets transmitted to
this adjacency entry."
::= { cseCefAdjacencyEntry 7 }
cseCefAdjacencyOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of Layer 3 octets transmitted to
this adjacency entry."
::= { cseCefAdjacencyEntry 8 }
cseCefAdjacencyEncap OBJECT-TYPE
SYNTAX INTEGER {
arpa(1),
raw(2),
sap(3),
snap(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the next hop destination encapsulation type.
arpa(1) indicates that next hop destination used ARPA
encapsulation type to forward packets.
raw(2) indicates that next hop destination used RAW
encapsulation type to forward packets.
sap(3) indicates that next hop destination used SAP
encapsulation type to forward packets.
snap(4) indicates that next hop destination used SNAP
encapsulation type to forward packets."
::= { cseCefAdjacencyEntry 9 }
cseCefAdjacencyMTU OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the next hop destination MTU value."
::= { cseCefAdjacencyEntry 10 }
-- cseTcamUsage group
--
--
-- The cseTcamUsageTable
cseTcamUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseTcamUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the resource usage of TCAM (Ternary
Content Addressable Memory) in the device. Not all the
resource types denoted by cseTcamResourceType object
are supported. If that is the case, the corresponding row
for that type will not be instantiated in this table."
::= { cseTcamUsage 1 }
cseTcamUsageEntry OBJECT-TYPE
SYNTAX CseTcamUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row contains a short description of the resource type,
the total amount of TCAM allocated for that type as well
as the amount of allocated resource has been used up."
INDEX {
entPhysicalIndex,
cseTcamResourceType
}
::= { cseTcamUsageTable 1 }
CseTcamUsageEntry ::= SEQUENCE {
cseTcamResourceType INTEGER,
cseTcamResourceDescr SnmpAdminString,
cseTcamResourceUsed Unsigned32,
cseTcamResourceTotal Unsigned32
}
cseTcamResourceType OBJECT-TYPE
SYNTAX INTEGER {
aclStorageMask(1),
aclStorageValue(2),
aclDynamicStorageMask(3),
aclDynamicStorageValue(4),
qosStorageMask(5),
qosStorageValue(6),
qosDynamicStorageMask(7),
qosDynamicStorageValue(8),
l4PortOperator(9),
interfaceMapping(10),
ingressInterfaceMapping(11),
egressInterfaceMapping(12),
louSource(13),
louDestination(14),
andOr(15),
orAnd(16),
aclAdjacency(17),
aclHighStorageMask(18),
aclHighStorageValue(19),
aclLowStorageMask(20),
aclLowStorageValue(21),
qosHighStorageMask(22),
qosHighStorageValue(23),
qosLowStorageMask(24),
qosLowStorageValue(25),
sgacl(26),
accounting(27),
ipv6Ext(28),
ethertype(29),
destInfo(30),
dgtSgtRegion(31),
anyAnyRegion(32),
tcamALabel(33),
tcamBLabel(34),
destInfoIn(35),
destInfoOut(36),
tcam0Bank0(37),
tcam0Bank1(38),
tcam1Bank0(39),
tcam1Bank1(40),
tcam0Aggregate(41),
tcam1Aggregate(42),
bank0Aggregate(43),
bank1Aggregate(44),
lou(45),
bothLouOperands(46),
singleLouOperands(47),
louL4SourcePort(48),
louL4DstPort(49),
louL3PacketLength(50),
louIpTos(51),
louIpDscp(52),
louIpPrecedence(53),
louIpTtl(54),
tcpFlags(55),
l4DynamicProtocolCam(56),
macEtypeOrProtoCam(57),
nonL4OpLabelsTcam0(58),
nonL4OpLabelsTcam1(59),
l4OpLabelTcam0(60),
l4OpLabelTcam1(61),
ingressDestInfoTable(62),
egressDestInfoTable(63),
ingressTcam(64),
ingressIpv6Tcam(65),
ingressLou(66),
ingressBothLouOperands(67),
ingressSingleLouOperands(68),
ingressLouL4SourcePort(69),
ingressLouL4DstPort(70),
ingressLouL3PacketLength(71),
ingressLouL3Ttl(72),
ingressLouL2Ttl(73),
ingressTcpFlags(74),
egressTcam(75),
egressIpv6Tcam(76),
egressLou(77),
egressBothLouOperands(78),
egressSingleLouOperands(79),
egressLouL4SourcePort(80),
egressLouL4DstPort(81),
egressLouL3PacketLength(82),
egressLouL3Ttl(83),
egressLouL2Ttl(84),
egressTcpFlags(85),
l4OpLabelTcam2(86),
l4OpLabelTcam3(87),
l4OpLabelTcam4(88),
l4OpLabelTcam5(89),
l4OpLabelTcam6(90),
l4OpLabelTcam7(91),
l4OpLabelTcam8(92),
l4OpLabelTcam9(93),
l4OpLabelTcam10(94),
l4OpLabelTcam11(95),
l4OpLabelTcam12(96),
l4OpLabelTcam13(97),
l4OpLabelTcam14(98),
l4OpLabelTcam15(99),
l4OpLabelTcam16(100),
l4OpLabelTcam17(101),
l4OpLabelTcam18(102),
l4OpLabelTcam19(103),
ingressPacl(104),
ingressVacl(105),
ingressRacl(106),
ingressRbacl(107),
ingressNbm(108),
ingressL2Qos(109),
ingressL3VlanQos(110),
ingressSup(111),
ingressL2SpanAcl(112),
ingressL3VlanSpanAcl(113),
ingressFstat(114),
ingressLatency(115),
span(116),
nat(117),
egressVacl(118),
egressRacl(119),
egressRbacl(120),
egressSup(121),
egressL2Qos(122),
egressL3VlanQos(123),
netflowAnalyticsFilterTcam(124),
ingressNetflowL3(125),
ingressNetflowL2(126),
featureVxLanOam(127),
featureBfd(128),
featureDhcpSnoop(129),
ingressRedirect(130),
featureDhcpV6Relay(131),
featureArpSnoop(132),
featureDhcpSnoopFhs(133),
featureDhcpVaclFhs(134),
featureDhcpSisf(135),
egressSystem(136),
rplusEgressSystem(137),
supSystem(138),
rplusSupSystem(139),
fmSupSystem(140),
supCopp(141),
rplusSupCopp(142),
supCoppReasonCode(143),
ingressIpv4Pacl(144),
ingressIpv6Pacl(145),
ingressMacPacl(146),
ingressFexIpv4Pacl(147),
ingressFexIpv6Pacl(148),
ingressFexMacPacl(149),
ingressIpv4PortQos(150),
ingressIpv4PortQosLite(151),
ingressIpv6PortQos(152),
ingressMacPortQos(153),
ingressIpv4FexPortQos(154),
ingressIpv4FexPortQosLite(155),
ingressIpv6FexPortQos(156),
ingressMacFexPortQos(157),
ingressIpv4Vacl(158),
ingressIpv6Vacl(159),
ingressMacVacl(160),
ingressIpv4VlanQos(161),
ingressIpv4VlanQosLite(162),
ingressIpv6VlanQos(163),
ingressMacVlanQos(164),
ingressIpv4Racl(165),
ingressIpv6Racl(166),
ingressIpv4L3Qos(167),
ingressIPv4L3QosLite(168),
ingressIPv6L3Qos(169),
ingressMacL3Qos(170),
ingressFlowCounters(171),
ingressSviCounters(172),
egressIpv4Vacl(173),
egressIpv6Vacl(174),
egressMacVacl(175),
egressIpv4Qos(176),
egressIpv4QosLite(177),
egressIpv6Qos(178),
egressMacQos(179),
rplusIngressEgressIpv4Qos(180),
redirect(181),
rplusIngressEgressIpv4QosLite(182),
rplusIngressEgressIpv6Qos(183),
rplusIngressEgressMacQos(184),
egressIpv4Racl(185),
egressIpv6Racl(186),
egressFlowCounters(187),
ingressNsIpv4PortQos(188),
ingressNsIpv6PortQos(189),
ingressNsMacPortQos(190),
ingressNsIpv4VlanQos(191),
ingressNsIpv6VlanQos(192),
ingressNsMacVlanQos(193),
ingressNsIpv4L3Qos(194),
ingressNsIpv6L3Qos(195),
vpcConvergence(196),
ipsgSmacIpBindingTable(197),
openflowAcl(198),
openflowIpv6Acl(199),
ingressEtherAcl(200),
mplsFeature(201),
ingressIpv4Qos(202),
ingressIpv6Qos(203),
ipv6Sup(204),
ingressIpv4Pbr(205),
ingressIpv6Pbr(206),
ingressIpv4PaclDoubleWide(207),
arpAcl(208),
sflowNorthstarAcl(209),
mcastBidir(210),
redirectTunnel(211),
ingressFcoeCounters(212),
egressFcoeCounters(213),
spanSflowCombined(214),
mcastPerformance(215),
fhs(216),
openflowLiteAcl(217),
ipv6DestCompression(218),
ingressIpv4RaclLite(219),
ipv6SrcCompression(220),
ipv4RaclSpanUdf(221),
ingressIpv4PortQosIntraTcamLite(222),
ingressIpv4L3QosIntraTcamLite(223),
ingressIpv4VlanQosIntraTcamLite(224),
ipv4PaclSpanUdf(225),
coppSystem(226),
ingressIpv4PaclLite(227),
ingressIpv4VaclLite(228),
vxLanXConnect(229),
dot1X(230),
dot1XMultiAuth(231),
ingressPaclAll(232),
ingressRaclAll(233),
ingressVaclAll(234),
ingressMacPqos(235),
ingressIpv4Pqos(236),
ingressIpv6Pqos(237),
ingressPqos(238),
ingressMacVqos(239),
ingressIpv4Vqos(240),
ingressIpv6Vqos(241),
ingressVqosAll(242),
ingressIpv4L3qos(243),
ingressIpv6L3qos(244),
ingressL3qosAll(245),
ingressCopp(246),
ingressMacSpan(247),
ingressIpv4Span(248),
ingressSpan(249),
ingressSpanAll(250),
egressRaclAll(251),
egressVaclAll(252),
egressMacPortQos(253),
egressIpv4PortQos(254),
egressIv6PortQos(255),
egressPortQos(256),
egressMacVlanQos(257),
egressIpv4VlanQos(258),
egressIpv6VlanQos(259),
egressVlanQos(260),
egressIpv4L3Qos(261),
egressIpv6L3Qos(262),
egressL3QosAll(263),
egressMacSpan(264),
egressIpv4Span(265),
egressIpv6Span(266),
egressSpanAll(267),
dhcp(268),
labelLblA(269),
labelLblB(270),
labelLblD(271),
labelLblE(272),
labelLblF(273),
labelLblG(274),
labelLblH(275),
labelLblI(276),
labelLblK(277),
ingressSupAll(278),
egressSupAll(279),
ingressVlanSpan(280),
ingressNetflow(281),
ingressCntAcl(282),
egressCntAcl(283),
ingressHwTelemetry(284),
labelLblAv1(285),
labelLblBv1(286),
labelLblCv1(287),
labelLblDv1(288),
labelLblEv1(289),
labelLblFv1(290),
labelLblGv1(291),
labelLblHv1(292),
labelLblIv1(293),
labelLblJv1(294),
labelLblKv1(295),
labelLblLv1(296),
labelLblMv1(297),
labelLblNv1(298),
labelLblOv1(299),
labelLblPv1(300),
labelLblQv1(301),
labelLblRv1(302),
ingressNetflowAnalytics(303),
ingressNatOutside(304),
ingressNatInside(305),
ingressL2L3QosAll(306),
natRewriteTable(307),
tcpAwareNat(308)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The resource type which take up TCAM space.
aclStorageMask(1) indicates that TCAM space is allocated
to store ACL masks.
aclStorageValue(2) indicates that TCAM space is allocated
to store ACL value.
aclDynamicStorageMask(3) indicates that TCAM space is
allocated to dynamically store ACL masks.
aclDynamicStorageValue(4) indicates that TCAM space is
allocated to dynamically store ACL values.
qosStorageMask(5) indicates that TCAM space is allocated
to store QoS masks.
qosStorageValue(6) indicates that TCAM space is allocated
to store QoS value.
qosDynamicStorageMask(7) indicates that TCAM space is
allocated to dynamically store QoS masks.
qosDynamicStorageValue(8) indicates that TCAM space is
allocated to dynamically store QoS values.
l4PortOperator(9) indicates that TCAM space is allocated
for layer 4 port operators purpose.
interfaceMapping(10) indicates that TCAM space is allocated
for interface mapping purpose.
ingressInterfaceMapping(11) indicates that TCAM space is
allocated for ingress interface mapping purpose.
egressInterfaceMapping(12) indicates that TCAM space is
allocated for egress interface mapping purpose.
louSource(13) indicates that TCAM space is allocated
as source LOUs (Logical Operation Unit).
louDestination(14) indicates that TCAM space is allocated
as destination LOUs.
andOr(15) indicates that TCAM space is allocated for
ANDOR purpose.
orAnd(16) indicates that TCAM space is allocated for
ORAND purpose.
aclAdjacency(17) indicates that TCAM space is allocated
for ACL adjacency purpose.
aclHighStorageMask(18) indicates that high bank TCAM
space is allocated to store ACL masks.
aclHighStorageValue(19) indicates that high bank TCAM
space is allocated to store ACL value.
aclLowStorageMask(20) indicates that low bank TCAM space
is allocated to store ACL masks.
aclLowStorageValue(21) indicates that low bank TCAM space
is allocated to store ACL values.
qosHighStorageMask(22) indicates that high bank TCAM space
is allocated to store QoS masks.
qosHighStorageValue(23) indicates that high bank TCAM space
is allocated to store QoS value.
qosLowStorageMask(24) indicates that low bank TCAM space is
allocated to store QoS masks.
qosLowStorageValue(25) indicates that low bank TCAM space is
allocated to store QoS values.
sgacl(26) indicates that TCAM space is allocated for SGACL
(Security Group Access Control List) purpose.
accounting(27) indicates that TCAM space is allocated
for accounting purpose such as AS (Autonomous System)
based accounting, classification based accounting.
ipv6Ext(28) indicates that TCAM space is allocated for
IPv6 Extended Header lookup purpose.
ethertype(29) indicates that TCAM space is allocated for
layer2 ethertype lookup purpose.
destInfo(30) indicates that TCAM space is allocated for
destination information lookup purpose.
dgtSgtRegion(31) indicates that TCAM space is allocated for
specific SGT (Secutiry Group Tag), DGT (Destination Group Tag)
pairs.
anyAnyRegion(32) indicates that TCAM space is allocated for
SGT (Secutiry Group Tag), DGT (Destination Group Tag) pairs
with one or both of them as ANY.
tcamALabel(33) indicates that TCAM space is allocated for
labels used by TCAM A entries.
tcamBLabel(34) indicates that TCAM space is allocated for
labels used by TCAM B entries.
destInfoIn(35) indicates that TCAM space is allocated for
destination information table for IFE (Ingress Forwarding Engine)
ACL redirects.
destInfoOut(36) indicates that TCAM space is allocated for
destination information table for OFE (Output/Egress Forwarding
Engine) ACL redirects.
tcam0Bank0(37) indicates that TCAM space is allocated for
TCAM 0 Bank 0.
tcam0Bank1(38) indicates that TCAM space is allocated for
TCAM 0 Bank 1.
tcam1Bank0(39) indicates that TCAM space is allocated for
TCAM 1 Bank 0.
tcam1Bank1(40) indicates that TCAM space is allocated for
TCAM 1 Bank 1.
tcam0Aggregate(41) indicates that TCAM space is allocated for
the aggregate of Bank 0 and Bank 1 on TCAM 0.
tcam1Aggregate(42) indicates that TCAM space is allocated for
the aggregate of Bank 0 and Bank 1 on TCAM 1.
bank0Aggregate(43) indicates that TCAM space is allocated for
the aggregate of TCAM 0 and TCAM 1 for Bank 0.
bank1Aggregate(44) indicates that TCAM space is allocated for
the aggregate of TCAM 0 and TCAM 1 for Bank 1.
lou(45) indicates that TCAM space is allocated for
LOUs (Logical Operation Unit).
bothLouOperands(46) indicates that TCAM space is allocated for
LOUs with both operands.
singleLouOperands(47) indicates that TCAM space is allocated for
LOUs with single operands.
louL4SourcePort(48) indicates that TCAM space is allocated for
LOUs with L4 source port in comparison.
louL4DstPort(49) indicates that TCAM space is allocated for
LOUs with L4 destination port in comparison.
louL3PacketLength(50) indicates that TCAM space is allocated for
LOUs with L3 Length in comparison.
louIpTos(51) indicates that TCAM space is allocated for
LOUs with IP ToS (Type of Service) in comparison.
louIpDscp(52) indicates that TCAM space is allocated for
LOUs with IP DSCP (Differentiated Services Code Point)
in comparison.
louIpPrecedence(53) indicates that TCAM space is allocated for
LOUs with IP Precedence in comparison.
louIpTtl(54) indicates that TCAM space is allocated for
LOUs with IP TTL in comparison.
tcpFlags(55) indicates that TCAM space is allocated for
TCP Flags.
l4DynamicProtocolCam(56) indicates that TCAM space is allocated for
L4 Dynamic Protocol CAM.
macEtypeOrProtoCam(57) indicates that TCAM space is allocated for
MAC Etype or Protocol CAM.
nonL4OpLabelsTcam0(58) indicates that TCAM space is allocated for
labels without using any L4 operator resources like LOUs or TCP Flags
for TCAM 0.
nonL4OpLabelsTcam1(59) indicates that TCAM space is allocated for
labels without using any L4 operator resources like LOUs or TCP Flags
for TCAM 1.
l4OpLabelTcam0(60) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 0.
l4OpLabelTcam1(61) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 1.
ingressDestInfoTable(62) indicates that TCAM space is allocated for
Ingress Destination Info Table.
egressDestInfoTable(63) indicates that TCAM space is allocated for
Egress Destination Info Table.
ingressTcam(64) indicates that ingress TCAM resource utilization.
ingressIpv6Tcam(65) indicates that ingress TCAM space is allocated
for IPv6 compression.
ingressLou(66) indicates that ingress TCAM space is allocated for
LOUs (Logical Operation Unit).
ingressBothLouOperands(67) indicates that ingress TCAM space is
allocated for LOUs with both operands.
ingressSingleLouOperands(68) indicates that ingress TCAM space is
allocated for LOUs with single operands.
ingressLouL4SourcePort(69) indicates that ingress TCAM space is
allocated for LOUs with L4 source port in comparison.
ingressLouL4DstPort(70) indicates that ingress TCAM space is
allocated for LOUs with L4 destination port in comparison.
ingressLouL3PacketLength(71) indicates that ingress TCAM space is
allocated for LOUs with L3 Length in comparison.
ingressLouL3Ttl(72) indicates that ingress TCAM space is allocated
for LOUs with L3 TTL in comparison.
ingressLouL2Ttl(73) indicates that ingress TCAM space is allocated
for LOUs with L2 TTL in comparison.
ingressTcpFlags(74) indicates that ingress TCAM space is allocated
for TCP Flags.
egressTcam(75) indicates that egress TCAM resource utilization.
egressIpv6Tcam(76) indicates that egress TCAM space is allocated
for IPv6 compression.
egressLou(77)indicates that egress TCAM space is allocated for
LOUs (Logical Operation Unit).
egressBothLouOperands(78) indicates that egress TCAM space is
allocated for LOUs with both operands.
egressSingleLouOperands(79) indicates that egress TCAM space is
allocated for LOUs with single operands.
egressLouL4SourcePort(80) indicates that egress TCAM space is
allocated for LOUs with L4 source port in comparison.
egressLouL4DstPort(81) indicates that egress TCAM space is
allocated for LOUs with L4 destination port in comparison.
egressLouL3PacketLength(82) indicates that egress TCAM space is
allocated for LOUs with L3 Length in comparison.
egressLouL3Ttl(83) indicates that egress TCAM space is allocated
for the LOUs with L3 TTL in comparison.
egressLouL2Ttl(84) indicates that egress TCAM space is allocated
for LOUs with L2 TTL in comparison.
egressTcpFlags(85) indicates that egress TCAM space is allocated
for TCP Flags.
l4OpLabelTcam2(86) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 2.
l4OpLabelTcam3(87) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 3.
l4OpLabelTcam4(88) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 4.
l4OpLabelTcam5(89) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 5.
l4OpLabelTcam6(90) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 6.
l4OpLabelTcam7(91) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 7.
l4OpLabelTcam8(92) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 8.
l4OpLabelTcam9(93) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 9.
l4OpLabelTcam10(94) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 10.
l4OpLabelTcam11(95) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 11.
l4OpLabelTcam12(96) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 12.
l4OpLabelTcam13(97) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 13.
l4OpLabelTcam14(98) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 14.
l4OpLabelTcam15(99) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 15.
l4OpLabelTcam16(100) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 16.
l4OpLabelTcam17(101) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 17.
l4OpLabelTcam18(102) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 18.
l4OpLabelTcam19(103) indicates that TCAM space is allocated for
labels using any L4 operator resources like LOUs or TCP Flags
for TCAM 19.
ingressPacl(104) indicates that ingress TCAM space is allocated
for PACL.
ingressVacl(105) indicates that ingress TCAM space is allocated
for VACL.
ingressRacl(106) indicates that ingress TCAM space is allocated
for RACL.
ingressRbacl(107) indicates that ingress TCAM space is allocated
for RBACL.
ingressNbm(108) indicates that ingress TCAM space is allocated
for NBM.
ingressL2Qos(109) indicates that ingress TCAM space is allocated
for L2 QoS.
ingressL3VlanQos(110) indicates that ingress TCAM space is allocated
for L3/VLAN QOS.
ingressSup(111) indicates that ingress TCAM space is allocated for
SUP.
ingressL2SpanAcl(112) indicates that ingress TCAM space is allocated
for L2 SPAN ACL.
ingressL3VlanSpanAcl(113) indicates that ingress TCAM space is
allocated for L3/VLAN SPAN ACL.
ingressFstat(114) indicates that ingress TCAM space is allocated
for FSTAT.
ingressLatency(115) indicates that ingress TCAM space is allocated
for LATENCY.
span(116) indicates that TCAM space is allocated for SPAN.
nat(117) indicates that TCAM space is allocated for NAT.
egressVacl(118) indicates that egress TCAM space is allocated
for VACL.
egressRacl(119) indicates that egress TCAM space is allocated
for RACL.
egressRbacl(120) indicates that egress TCAM space is allocated
for RBACL.
egressSup(121) indicates that egress TCAM space is allocated for
SUP.
egressL2Qos(122) indicates that egress TCAM space is allocated
for L2 QoS.
egressL3VlanQos(123) indicates that egress TCAM space is allocated
for L3/VLAN QoS.
netflowAnalyticsFilterTcam(124) indicates that TCAM space is
allocated for Netflow/Analytics Filter.
ingressNetflowL3(125) indicates that ingress TCAM space is allocated
for L3 Netflow.
ingressNetflowL2(126) indicates that ingress TCAM space is allocated
for L2 Netflow.
featureVxLanOam(127) indicates that TCAM space is allocated for
Feature VxLAN OAM.
featureBfd(128) indicates that TCAM space is allocated for Feature
BFD.
featureDhcpSnoop(129) indicates that TCAM space is allocated for
Feature DHCP SNOOP.
ingressRedirect(130) indicates that TCAM space is allocated for
ingress REDIRECT.
featureDhcpV6Relay(131) indicates that TCAM space is allocated for
Feature DHCPv6 RELAY.
featureArpSnoop(132) indicates that TCAM space is allocated for
Feature ARP SNOOP.
featureDhcpSnoopFhs(133) indicates that TCAM space is allocated for
Feature DHCP SNOOP FHS.
featureDhcpVaclFhs(134) indicates that TCAM space is allocated for
Feature DHCP VACL FHS.
featureDhcpSisf(135) indicates that TCAM space is allocated for
Feature DHCP SISF.
egressSystem(136) indicates that egress TCAM space is allocated for
System.
rplusEgressSystem(137) indicates that TCAM space is allocated for
RPLUS Egress System.
supSystem(138) indicates that TCAM space is allocated for SUP System.
rplusSupSystem(139) indicates that TCAM space is allocated for RPLUS
SUP System.
fmSupSystem(140) indicates that TCAM space is allocated for FM SUP
System.
supCopp(141) indicates that TCAM space is allocated for SUP COPP.
rplusSupCopp(142) indicates that TCAM space is allocated for RPLUS
SUP COPP.
supCoppReasonCode(143) indicates that TCAM space is allocated for
SUP COPP Reason Code.
ingressIpv4Pacl(144) indicates that ingress TCAM space is allocated
for IPv4 PACL.
ingressIpv6Pacl(145) indicates that ingress TCAM space is allocated
for IPv6 PACL.
ingressMacPacl(146) indicates that ingress TCAM space is allocated
for MAC PACL.
ingressFexIpv4Pacl(147) indicates that ingress TCAM space is
allocated for Fex IPv4 PACL.
ingressFexIpv6Pacl(148) indicates that ingress TCAM space is
allocated for Ingress Fex IPv6 PACL.
ingressFexMacPacl(149) indicates that ingress TCAM space is
allocated for Ingress Fex MAC PACL.
ingressIpv4PortQos(150) indicates that ingress TCAM space is
allocated for IPv4 Port QoS.
ingressIpv4PortQosLite(151) indicates that ingress TCAM space is
allocated for IPv4 Port QoS (Lite).
ingressIpv6PortQos(152) indicates that ingress TCAM space is
allocated for IPv6 Port QoS.
ingressMacPortQos(153) indicates that ingress TCAM space is
allocated for MAC Port QoS.
ingressIpv4FexPortQos(154) indicates that ingress TCAM space is
allocated for IPv4 FEX Port QoS.
ingressIpv4FexPortQosLite(155) indicates that ingress TCAM space
is allocated for IPv4 FEX Port QoS (Lite).
ingressIpv6FexPortQos(156) indicates that ingress TCAM space is
allocated for IPv6 FEX Port QoS.
ingressMacFexPortQos(157) indicates that ingress TCAM space is
allocated for MAC FEX Port QoS.
ingressIpv4Vacl(158) indicates that ingress TCAM space is allocated
for IPv4 VACL.
ingressIpv6Vacl(159) indicates that ingress TCAM space is allocated
for IPv6 VACL.
ingressMacVacl(160) indicates that ingress TCAM space is allocated
for MAC VACL.
ingressIpv4VlanQos(161) indicates that ingress TCAM space is
allocated for IPv4 VLAN QoS.
ingressIpv4VlanQosLite(162) indicates that ingress TCAM space is
allocated for IPv4 VLAN QoS (Lite).
ingressIpv6VlanQos(163) indicates that ingress TCAM space is
allocated for IPv6 VLAN QoS.
ingressMacVlanQos(164) indicates that ingress TCAM space is allocated
for MAC VLAN QoS.
ingressIpv4Racl(165) indicates that ingress TCAM space is allocated
for IPv4 RACL.
ingressIpv6Racl(166) indicates that ingress TCAM space is allocated
for IPv6 RACL.
ingressIpv4L3Qos(167) indicates that ingress TCAM space is allocated
for IPv4 L3 QoS.
ingressIPv4L3QosLite(168) indicates that ingress TCAM space is
allocated for IPv4 L3 QoS (Lite).
ingressIPv6L3Qos(169) indicates that ingress TCAM space is allocated
for IPv6 L3 QoS.
ingressMacL3Qos(170) indicates that ingress TCAM space is allocated
for MAC L3 QoS.
ingressFlowCounters(171) indicates that TCAM space is allocated for
ingress Flow Counters.
ingressSviCounters(172) indicates that TCAM space is allocated for
Ingress SVI Counters.
egressIpv4Vacl(173) indicates that egress TCAM space is allocated
for IPv4 VACL.
egressIpv6Vacl(174) indicates that egress TCAM space is allocated
for IPv6 VACL.
egressMacVacl(175) indicates that egress TCAM space is allocated
for MAC VACL.
egressIpv4Qos(176) indicates that egress TCAM space is allocated
for IPv4 QoS.
egressIpv4QosLite(177) indicates that egress TCAM space is allocated
for IPv4 QoS Lite.
egressIpv6Qos(178) indicates that egress TCAM space is allocated for
IPv6 QoS.
egressMacQos(179) indicates that egress TCAM space is allocated for
MAC QoS.
rplusIngressEgressIpv4Qos(180) indicates that TCAM space is allocated
for RPLUS Ingress/Egress IPv4 QoS.
redirect(181) indicates that TCAM space is allocated for Redirect.
rplusIngressEgressIpv4QosLite(182) indicates that TCAM space is
allocated for RPLUS Ingress/Egress IPv4 QoS Lite.
rplusIngressEgressIpv6Qos(183) indicates that TCAM space is allocated
for Ingress/Egress IPv6 QoS.
rplusIngressEgressMacQos(184) indicates that TCAM space is allocated
for Ingress/Egress MAC QoS.
egressIpv4Racl(185) indicates that egress TCAM space is allocated for
IPv4 RACL.
egressIpv6Racl(186) indicates that egress TCAM space is allocated for
IPv6 RACL.
egressFlowCounters(187) indicates that TCAM space is allocated for
Egress Flow Counters.
ingressNsIpv4PortQos(188) indicates that ingress TCAM space is
allocated for NS IPv4 Port QoS.
ingressNsIpv6PortQos(189) indicates that ingress TCAM space is
allocated for NS IPv6 Port QoS.
ingressNsMTCAM_MIB.myacPortQos(190) indicates that ingress TCAM space is
allocated for NS MAC Port QoS.
ingressNsIpv4VlanQos(191) indicates that ingress TCAM space is
allocated for NS IPv4 VLAN QoS.
ingressNsIpv6VlanQos(192) indicates that ingress TCAM space is
allocated for NS IPv6 VLAN QoS.
ingressNsMacVlanQos(193) indicates that ingress TCAM space is
allocated for NS MAC VLAN QoS.
ingressNsIpv4L3Qos(194) indicates that ingress TCAM space is
allocated for NS IPv4 L3 QoS.
ingressNsIpv6L3Qos(195) indicates that ingress TCAM space is
allocated for NS IPv6 L3 QoS.
vpcConvergence(196) indicates that TCAM space is allocated for
VPC Convergence.
ipsgSmacIpBindingTable(197) indicates that TCAM space is
allocated for IPSG SMAC-IP binding table.
openflowAcl(198) indicates that TCAM space is allocated for
OPENFLOW ACL.
openflowIpv6Acl(199) indicates that TCAM space is allocated
for OPENFLOW IPV6 ACL.
ingressEtherAcl(200) indicates that ingress TCAM space is
allocated for Ether ACL.
mplsFeature(201) indicates that TCAM space is allocated for
MPLS feature.
ingressIpv4Qos(202) indicates that ingress TCAM space is
allocated for IPv4 QoS.
ingressIpv6Qos(203) indicates that ingress TCAM space is
allocated for IPv6 QoS.
ipv6Sup(204) indicates that TCAM space is allocated for
IPV6 SUP.
ingressIpv4Pbr(205) indicates that ingress TCAM space is
allocated for IPv4 PBR.
ingressIpv6Pbr(206) indicates that ingress TCAM space is
allocated for IPv6 PBR.
ingressIpv4PaclDoubleWide(207) indicates that ingress TCAM
space is allocated for IPv4 PACL DoubleWide.
arpAcl(208) indicates that TCAM space is allocated for ARP ACL.
sflowNorthstarAcl(209) indicates that TCAM space is allocated for
sFlow Northstar ACL.
mcastBidir(210) indicates that TCAM space is allocated for mcast
bidir.
redirectTunnel(211) indicates that TCAM space is allocated for
Redirect TUNNEL.
ingressFcoeCounters(212) indicates that TCAM space is allocated
for Ingress FCoE Counters.
egressFcoeCounters(213) indicates that egress TCAM space is
allocated for Egress FCoE Counters.
spanSflowCombined(214) indicates that TCAM space is allocated for
SPAN SFLOW combined.
mcastPerformance(215) indicates that TCAM space is allocated for
mcast performance.
fhs(216) indicates that TCAM space is allocated for FHS.
openflowLiteAcl(217) indicates that TCAM space is allocated for
OPENFLOW LITE ACL.
ipv6DestCompression(218) indicates that TCAM space is allocated
for IPv6 Dest Compression.
ingressIpv4RaclLite(219) indicates that TCAM space is allocated
for Ingress IPv4 RACL Lite.
ipv6SrcCompression(220) indicates that TCAM space is allocated for
IPv6 Src Compression.
ipv4RaclSpanUdf(221) indicates that TCAM space is allocated for
IPV4 RACL SPAN UDF.
ingressIpv4PortQosIntraTcamLite(222) indicates that TCAM space is
allocated for Ingress IPv4 Port QoS (Intra-TCAM Lite).
ingressIpv4L3QosIntraTcamLite(223) indicates that TCAM space is
allocated for Ingress IPv4 L3 QoS (Intra-TCAM Lite).
ingressIpv4VlanQosIntraTcamLite(224) indicates that TCAM space is
allocated for Ingress IPv4 VLAN QoS (Intra-TCAM Lite).
ipv4PaclSpanUdf(225) indicates that TCAM space is allocated for IPV4
PACL SPAN UDF.
coppSystem(226) indicates that TCAM space is allocated for COPP
SYSTEM.
ingressIpv4PaclLite(227) indicates that TCAM space is allocated for
ingress IPv4 PACL lite.
ingressIpv4VaclLite(228) indicates that TCAM space is allocated for
ingress IPv4 VACL lite.
vxLanXConnect(229) indicates that TCAM space is allocated for VxLAN XConnect.
dot1X(230) indicates that TCAM space is allocated for DOT1X.
dot1XMultiAuth(231) indicates that TCAM space is allocated for DOT1X Multi
Auth.
ingressPaclAll(232) indicates that TCAM space is allocated for
Ingress PACL ALL.
ingressRaclAll(233) indicates that TCAM space is allocated for
Ingress RACL ALL.
ingressVaclAll(234) indicates that TCAM space is allocated for
Ingress VACL ALL.
ingressMacPqos(235) indicates that TCAM space is allocated for
Ingress MAC PQOS.
ingressIpv4Pqos(236) indicates that TCAM space is allocated for
Ingress IPV4 PQOS.
ingressIpv6Pqos(237) indicates that TCAM space is allocated for
Ingress IPV6 PQOS.
ingressPqos(238) indicates that TCAM space is allocated for Ingress PQOS.
ingressMacVqos(239) indicates that TCAM space is allocated for
Ingress MAC VQOS.
ingressIpv4Vqos(240) indicates that TCAM space is allocated for
Ingress IPV4 VQOS.
ingressIpv6Vqos(241) indicates that TCAM space is allocated for
Ingress IPV6 VQOS.
ingressVqosAll(242) indicates that TCAM space is allocated for
Ingress VQOS ALL.
ingressIpv4L3qos(243) indicates that TCAM space is allocated for
Ingress IPV4 L3QOS.
ingressIpv6L3qos(244) indicates that TCAM space is allocated for
Ingress IPV6 L3QOS.
ingressL3qosAll(245) indicates that TCAM space is allocated for
Ingress L3QOS ALL.
ingressCopp(246) indicates that TCAM space is allocated for Ingress COPP.
ingressMacSpan(247) indicates that TCAM space is allocated for
Ingress MAC SPAN.
ingressIpv4Span(248) indicates that TCAM space is allocated for
Ingress IPV4 SPAN.
ingressSpan(249) indicates that TCAM space is allocated for Ingress SPAN.
ingressSpanAll(250) indicates that TCAM space is allocated for
Ingress SPAN ALL.
egressRaclAll(251) indicates that TCAM space is allocated for
Egress RACL ALL.
egressVaclAll(252) indicates that TCAM space is allocated for
Egress VACL ALL.
egressMacPortQos(253) indicates that TCAM space is allocated for
Egress MAC Port QOS.
egressIpv4PortQos(254) indicates that TCAM space is allocated for
Egress IPV4 Port QOS.
egressIv6PortQos(255) indicates that TCAM space is allocated for
Egress IPv6 Port QOS.
egressPortQos(256) indicates that TCAM space is allocated for
Egress Port QOS.
egressMacVlanQos(257) indicates that TCAM space is allocated for
Egress MAC VLAN QOS.
egressIpv4VlanQos(258) indicates that TCAM space is allocated for
Egress IPV4 VLAN QOS.
egressIpv6VlanQos(259) indicates that TCAM space is allocated for
Egress IPV6 VLAN QOS.
egressVlanQos(260) indicates that TCAM space is allocated for
Egress VLAN QOS.
egressIpv4L3Qos(261) indicates that TCAM space is allocated for
Egress IPV4 L3 QOS.
egressIpv6L3Qos(262) indicates that TCAM space is allocated for
Egress IPV6 L3 QOS.
egressL3QosAll(263) indicates that TCAM space is allocated for
Egress L3 QOS ALL.
egressMacSpan(264) indicates that TCAM space is allocated for
Egress MAC SPAN.
egressIpv4Span(265) indicates that TCAM space is allocated for
Egress IPV4 SPAN.
egressIpv6Span(266) indicates that TCAM space is allocated for
Egress IPV6 SPAN.
egressSpanAll(267) indicates that TCAM space is allocated for
Egress SPAN ALL.
dhcp(268) indicates that TCAM space is allocated for DHCP.
labelLblA(269) indicates that TCAM space is allocated for
Label LBL A, Ingress-Physical interface-PACL,PQOS.
labelLblB(270) indicates that TCAM space is allocated for
Label LBL B, Ingress-Logical interface-PACL,PQOS.
labelLblD(271) indicates that TCAM space is allocated for
Label LBL D, Ingress-Physical interface-RACL,L3QOS.
labelLblE(272) indicates that TCAM space is allocated for
Label LBL E, Ingress-Logical interface-RACL,L3QOS.
labelLblF(273) indicates that TCAM space is allocated for
Label LBL F, Egress-Physical interface-RACL,L3QOS.
labelLblG(274) indicates that TCAM space is allocated for
Label LBL G, Egress-Logical interface-RACL,L3QOS.
labelLblH(275) indicates that TCAM space is allocated for
Label LBL H, Ingress-VLAN-VACL,VQOS.
labelLblI(276) indicates that TCAM space is allocated for
Label LBL I, Egress-VLAN-VACL,VQOS.
labelLblK(277) indicates that TCAM space is allocated for
Label LBL K, Ingress-All interface-DHCP.
ingressSupAll(278) indicates that TCAM space is allocated for
Ingress SUP ALL.
egressSupAll(279) indicates that TCAM space is allocated for
Egress SUP ALL.
ingressVlanSpan(280) indicates that TCAM space is allocated for
Ingress Vlan SPAN.
ingressNetflow(281) indicates that TCAM space is allocated for
Ingress Netflow.
ingressCntAcl(282) indicates that TCAM space is allocated for
Ingress CNTACL.
egressCntAcl(283) indicates that TCAM space is allocated for
Egress CNTACL.
ingressHwTelemetry(284) indicates that TCAM space is allocated for
Ingress HW-TELEMETRY.
labelLblAv1(285) indicates that TCAM space is allocated for Label LBL A.
labelLblBv1(286) indicates that TCAM space is allocated for Label LBL B.
labelLblCv1(287) indicates that TCAM space is allocated for Label LBL C.
labelLblDv1(288) indicates that TCAM space is allocated for Label LBL D.
labelLblEv1(289) indicates that TCAM space is allocated for Label LBL E.
labelLblFv1(290) indicates that TCAM space is allocated for Label LBL F.
labelLblGv1(291) indicates that TCAM space is allocated for Label LBL G.
labelLblHv1(292) indicates that TCAM space is allocated for Label LBL H.
labelLblIv1(293) indicates that TCAM space is allocated for Label LBL I.
labelLblJv1(294) indicates that TCAM space is allocated for Label LBL J.
labelLblKv1(295) indicates that TCAM space is allocated for Label LBL K.
labelLblLv1(296) indicates that TCAM space is allocated for Label LBL L.
labelLblMv1(297) indicates that TCAM space is allocated for Label LBL M.
labelLblNv1(298) indicates that TCAM space is allocated for Label LBL N.
labelLblOv1(299) indicates that TCAM space is allocated for Label LBL O.
labelLblPv1(300) indicates that TCAM space is allocated for Label LBL P.
labelLblQv1(301) indicates that TCAM space is allocated for Label LBL Q.
labelLblRv1(302) indicates that TCAM space is allocated for Label LBL R.
ingressNetflowAnalytics(303) indicates that TCAM space is allocated for
Ingress Netflow/Analytics.
ingressNatOutside(304) indicates that TCAM space is allocated for Ingress
NAT OUTSIDE.
ingressNatInside(305) indicates that TCAM space is allocated for Ingress
NAT INSIDE.
ingressL2L3QosAll(306) indicates that TCAM space is allocated for
Ingress L2 L3 QOS ALL.
natRewriteTable(307) indicates that TCAM space is allocated for NAT
Rewrite Table.
tcpAwareNat(308) indicates that TCAM space is allocated for TCP
Aware NAT."
::= { cseTcamUsageEntry 1 }
cseTcamResourceDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The short description of the resource type."
::= { cseTcamUsageEntry 2 }
cseTcamResourceUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of TCAM resource has been used up for this resource
type."
::= { cseTcamUsageEntry 3 }
cseTcamResourceTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of TCAM resource is allocated for this
resource type."
::= { cseTcamUsageEntry 4 }
-- cseMet group
--
--
-- The cseMetUsageTable
cseMetUsageTable OBJECT-TYPE
SYNTAX SEQUENCE OF CseMetUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the resource usage of MET (Multicast
Expansion Table) in the device."
::= { cseMet 1 }
cseMetUsageEntry OBJECT-TYPE
SYNTAX CseMetUsageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each row contains the total number of entries in each MET,
the number of free entries in unallocated as well as
allocated space of the MET. Each row represents MET data
maintained by each module (identified by its entPhysicalIndex)
which is capable of this feature."
INDEX {
entPhysicalIndex,
cseMetIndex
}
::= { cseMetUsageTable 1 }
CseMetUsageEntry ::= SEQUENCE {
cseMetIndex Unsigned32,
cseMetTotalEntries Unsigned32,
cseMetUnallocatedSpcFreeEntries Unsigned32,
cseMetAllocatedSpcFreeEntries Unsigned32
}
cseMetIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A value uniquely identifies a MET in a module."
::= { cseMetUsageEntry 1 }
cseMetTotalEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of entries in this MET."
::= { cseMetUsageEntry 2 }
cseMetUnallocatedSpcFreeEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of free entries reside in unallocated
space of this MET."
::= { cseMetUsageEntry 3 }
cseMetAllocatedSpcFreeEntries OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of free entries reside in allocated
space of this MET."
::= { cseMetUsageEntry 4 }
-- Notifications
cseMIBNotifications OBJECT IDENTIFIER
::= { ciscoSwitchEngineMIB 2 }
-- no notifications defined
--
-- Conformance
cseMIBConformance OBJECT IDENTIFIER
::= { ciscoSwitchEngineMIB 3 }
cseMIBCompliances OBJECT IDENTIFIER
::= { cseMIBConformance 1 }
cseMIBGroups OBJECT IDENTIFIER
::= { cseMIBConformance 2 }
-- compliance statements
cseMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH_ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
::= { cseMIBCompliances 1 }
cseMIBCompliance2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
::= { cseMIBCompliances 2 }
cseMIBCompliance3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
::= { cseMIBCompliances 3 }
cseMIBCompliance4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
GROUP cseNDEMandatoryGroup
DESCRIPTION
"This group is mandatory for those switched which
support Netflow Data Export"
GROUP cseNDESingleFilterGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is single."
GROUP cseNDEMultipleFiltersGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is multiple."
GROUP cseProtocolFilterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseStatisticsGroup2
DESCRIPTION
"Implementation of this group is optional."
OBJECT cseNetflowLSFilterSelection
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter."
OBJECT cseNetflowLSFilterStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter"
::= { cseMIBCompliances 4 }
cseMIBCompliance5 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroupRev1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
GROUP cseNDEMandatoryGroup
DESCRIPTION
"This group is mandatory for those switched which
support Netflow Data Export"
GROUP cseNDESingleFilterGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is single."
GROUP cseNDEMultipleFiltersGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is multiple."
GROUP cseProtocolFilterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseStatisticsGroup2
DESCRIPTION
"Implementation of this group is optional."
OBJECT cseNetflowLSFilterSelection
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter."
OBJECT cseNetflowLSFilterStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter"
::= { cseMIBCompliances 5 }
cseMIBCompliance6 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroupRev1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
GROUP cseNDEMandatoryGroup
DESCRIPTION
"This group is mandatory for those switched which
support Netflow Data Export"
GROUP cseNDESingleFilterGroupRev1
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is single."
GROUP cseNDEMultipleFiltersGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is multiple."
GROUP cseProtocolFilterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseStatisticsGroup2
DESCRIPTION
"Implementation of this group is optional."
GROUP cseFlowMgmtExtGroup2
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
OBJECT cseNetflowLSFilterSelection
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter."
OBJECT cseNetflowLSFilterStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter"
::= { cseMIBCompliances 6 }
cseMIBCompliance7 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroupRev1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
GROUP cseNDEMandatoryGroup
DESCRIPTION
"This group is mandatory for those switched which
support Netflow Data Export"
GROUP cseNDESingleFilterGroupRev1
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is single."
GROUP cseNDEMultipleFiltersGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is multiple."
GROUP cseProtocolFilterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseStatisticsGroup2
DESCRIPTION
"Implementation of this group is optional."
GROUP cseFlowMgmtExtGroup2
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastRtrMgmtGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseFlowMcastMgmtGroup2
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
OBJECT cseNetflowLSFilterSelection
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter."
OBJECT cseNetflowLSFilterStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter"
::= { cseMIBCompliances 7 }
cseMIBCompliance8 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for
the CISCO-SWITCH-ENGINE-MIB MIB."
MODULE -- this module
MANDATORY-GROUPS { cseStatisticsGroup }
GROUP cseRouterGroup
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseVlanStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
can provide per-vlan statistics."
GROUP cseFlowMgmtGroupRev1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastMgmtGroup1
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseUcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP/IPX unicast flow cache purging in the system."
GROUP cseMcastCachePurgeGroup
DESCRIPTION
"This group is mandatory only for those switches which
supports IP multicast flow cache purging in the system."
GROUP cseFlowMgmtOperStatusGroup
DESCRIPTION
"This group is mandatory only for those switches which
support operating status on aging time for flows used
in L3 switching."
GROUP cse4kVlanGroup
DESCRIPTION
"This group must be implemented by the devices which
support the range of VlanIndex between 1024 and 4095"
GROUP cseNDEMandatoryGroup
DESCRIPTION
"This group is mandatory for those switched which
support Netflow Data Export"
GROUP cseNDESingleFilterGroupRev1
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is single."
GROUP cseNDEMultipleFiltersGroup
DESCRIPTION
"This group is mandatory in agents for which the value of
cseNetflowLSFilterSupport is multiple."
GROUP cseProtocolFilterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseStatisticsGroup2
DESCRIPTION
"Implementation of this group is optional."
GROUP cseFlowMgmtExtGroup2
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 switching in the system."
GROUP cseFlowMcastRtrMgmtGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP cseFlowMcastMgmtGroup2
DESCRIPTION
"This group is mandatory only for those switches which
support layer 3 IP multicast switching in the system."
GROUP cseCacheStatisticsGroup
DESCRIPTION
"This group is mandatory only for those switches which
support switch engine statistics on flow cache entries
in the system."
GROUP cseL3SwitchedPktsPerSecGroup
DESCRIPTION
"This group is mandatory only for those switches which
support switch engine statistics on total number of
packets switched per second in the system."
GROUP cseStatisticsFlowGroup1
DESCRIPTION
"This group is mandatory only for those switches which
support switch engine statistics on total number of
Ipv4 flow entries."
OBJECT cseNetflowLSFilterSelection
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter."
OBJECT cseNetflowLSFilterStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, for systems which
support just one include and one exclude filter"
::= { cseMIBCompliances 8 }
-- units of conformance
cseStatisticsGroup OBJECT-GROUP
OBJECTS {
cseL2ForwardedLocalPkts,
cseL2ForwardedLocalOctets,
cseL2ForwardedTotalPkts,
cseL2NewAddressLearns,
cseL2AddrLearnFailures,
cseL2DstAddrLookupMisses,
cseL3SwitchedTotalPkts,
cseL3SwitchedTotalOctets,
cseL3CandidateFlowHits,
cseL3EstablishedFlowHits,
cseL3ActiveFlows,
cseL3FlowLearnFailures,
cseL3IntFlowInvalids,
cseL3ExtFlowInvalids,
cseL2HCOverflowForwardedLocalPkts,
cseL2HCForwardedLocalPkts,
cseL2HCOverflowForwardedTotalPkts,
cseL2HCForwardedTotalPkts,
cseL2HCOverflowIpPkts,
cseL2HCIpPkts,
cseL2HCOverflowIpxPkts,
cseL2HCIpxPkts,
cseL2HCOverflowAssignedProtoPkts,
cseL2HCAssignedProtoPkts,
cseL2HCOverflowOtherProtoPkts,
cseL2HCOtherProtoPkts
}
STATUS current
DESCRIPTION
"A collection of objects providing switch engine statistics."
::= { cseMIBGroups 1 }
cseStatisticsGroup2 OBJECT-GROUP
OBJECTS {
cseStatsFlowAged,
cseStatsFlowPurged,
cseStatsFlowParityFail,
cseCacheUtilization
}
STATUS current
DESCRIPTION
"A collection of objects providing switch engine statistics
on aged/purged flows, and the cache utilizations."
::= { cseMIBGroups 2 }
cseVlanStatisticsGroup OBJECT-GROUP
OBJECTS {
cseL3VlanInPkts,
cseL3VlanInOctets,
cseL3VlanOutPkts,
cseL3VlanOutOctets
}
STATUS current
DESCRIPTION
"A collection of objects providing per-vlan switch engine
statistics, if supported."
::= { cseMIBGroups 3 }
cseRouterGroup OBJECT-GROUP
OBJECTS {
cseRouterFlowMask,
cseRouterName,
cseRouterStatic,
cseStaticRouterOwner,
cseStaticRouterName,
cseStaticRouterType,
cseStaticRouterStatus,
cseRouterIpxFlowMask,
cseStaticIpxRouterOwner,
cseStaticIpxRouterName,
cseStaticIpxRouterStatus,
cseRouterMac,
cseRouterProtocol
}
STATUS current
DESCRIPTION
"A collection of objects providing information on routers which
are used to support layer 3 switching in the system."
::= { cseMIBGroups 4 }
cseFlowMgmtGroup OBJECT-GROUP
OBJECTS {
cseFlowEstablishedAgingTime,
cseFlowFastAgingTime,
cseFlowFastAgePktThreshold,
cseFlowIPXEstablishedAgingTime,
cseFlowMaxQueries,
cseFlowQueryMask,
cseFlowQueryTransport,
cseFlowQuerySource,
cseFlowQuerySourceMask,
cseFlowQueryDestination,
cseFlowQueryDestinationMask,
cseFlowQueryRouterIndex,
cseFlowQueryOwner,
cseFlowQueryResultingRows,
cseFlowQueryResultTotalPkts,
cseFlowQueryResultTotalOctets,
cseFlowQueryResultAvgDuration,
cseFlowQueryResultAvgIdle,
cseFlowQueryStatus,
cseFlowQueryCreateTime,
cseFlowDataSrcMac,
cseFlowDataDstMac,
cseFlowDataEncapType,
cseFlowDataSource,
cseFlowDataStaticFlow,
cseFlowDataDestination,
cseFlowDataDestVlan,
cseFlowDataIpQOS,
cseFlowDataIpQOSPolicy,
cseFlowDataWhenCreated,
cseFlowDataLastUsed,
cseFlowDataPkts,
cseFlowDataOctets,
cseFlowSwitchStatus
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing information for determining the
L3 flow switching performance in the switching engine. There may
be some platform specific limitations when performing a SET
on some of these objects.
The following are valid for Catalyst 5000 platforms:
- cseFlowEstablishedAgingTime has a default value of 256.
- cseFlowFastAgePktThreshold can only be set to 1, 3, 7, 15, 31
or 63 packets. If the packet threshold is not configured to one
of these values, it will be adjusted to the closest value.
- cseFlowFastAgingTime can be set to only values that are
multiples of 8 in the range (0..128).
If it is set to a value that is not
multiple of 8, then the closest value that is a multiple of 8
will take effect. The default value for fast aging time is 32
seconds. (i.e. less than cseFlowFastAgePktThreshold number of
packets were switched within 32 seconds after the an L3
flow entry was established).
- cseFlowIPXEstablishedAgingTime has a default value of 256.
cseFlowMgmtGroup object is superseded by cseFlowMgmtGroupRev1."
::= { cseMIBGroups 5 }
cseNetflowLSGroup OBJECT-GROUP
OBJECTS {
cseNetflowLSExportHost,
cseNetflowLSExportTransportNumber,
cseNetflowLSExportStatus,
cseNetflowLSExportDataSource,
cseNetflowLSExportDataSourceMask,
cseNetflowLSExportDataDest,
cseNetflowLSExportDataDestMask,
cseNetflowLSExportDataProtocol,
cseNetflowLSExportDataFilterSelection,
cseNetflowLSExportNDEVersionNumber
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing information on the Netflow LAN
switching Data Export feature, if supported.
cseNetflowLSGroup object is superseded by cseNDESingleFilterGroupRev1."
::= { cseMIBGroups 6 }
cseProtocolFilterGroup OBJECT-GROUP
OBJECTS {
cseProtocolFilterPortAdminStatus,
cseProtocolFilterPortOperStatus,
cseL2IpPkts,
cseL2IpxPkts,
cseL2AssignedProtoPkts,
cseL2OtherProtoPkts
}
STATUS current
DESCRIPTION
"A collection of objects providing information on the Protocol
filter feature, if supported."
::= { cseMIBGroups 7 }
cseFlowMcastMgmtGroup OBJECT-GROUP
OBJECTS {
cseFlowMcastMaxQueries,
cseFlowMcastQueryMask,
cseFlowMcastQuerySrc,
cseFlowMcastQueryGrp,
cseFlowMcastQuerySrcVlan,
cseFlowMcastQueryRtrIndex,
cseFlowMcastQuerySkipNFlows,
cseFlowMcastQueryOwner,
cseFlowMcastQueryTotalFlows,
cseFlowMcastQueryRows,
cseFlowMcastQueryStatus,
cseFlowMcastQueryCreateTime,
cseFlowMcastResultSrc,
cseFlowMcastResultGrp,
cseFlowMcastResultSrcVlan,
cseFlowMcastResultRtrIp,
cseFlowMcastResultRtrMac,
cseFlowMcastResultCreatedTS,
cseFlowMcastResultLastUsedTS,
cseFlowMcastResultPkts,
cseFlowMcastResultOctets,
cseFlowMcastResultDstVlans,
cseFlowMcastSwitchStatus
}
STATUS deprecated
DESCRIPTION
"A collection of objects for querying IP multicast flows
stored in hardware switching cache.
cseFlowMcastMgmtGroup object is superseded by cseFlowMcastMgmtGroup1."
::= { cseMIBGroups 8 }
cseUcastCachePurgeGroup OBJECT-GROUP
OBJECTS {
cseUcastCacheFlowType,
cseUcastCacheTransport,
cseUcastCacheDest,
cseUcastCacheDestMask,
cseUcastCacheSource,
cseUcastCacheSrcMask,
cseUcastCacheRtrIp,
cseUcastCacheOwner,
cseUcastCacheStatus,
cseUcastCacheResult
}
STATUS current
DESCRIPTION
"A collection of objects providing IP/IPX unicast flow cache
purging function."
::= { cseMIBGroups 9 }
cseMcastCachePurgeGroup OBJECT-GROUP
OBJECTS {
cseMcastCacheFlowType,
cseMcastCacheGrp,
cseMcastCacheSrc,
cseMcastCacheRtrIp,
cseMcastCacheOwner,
cseMcastCacheStatus,
cseMcastCacheResult
}
STATUS current
DESCRIPTION
"A collection of objects providing IP multicast flow cache purge
function."
::= { cseMIBGroups 10 }
cseFlowMgmtOperStatusGroup OBJECT-GROUP
OBJECTS {
cseFlowOperEstablishedAgingTime,
cseFlowOperFastAgingTime,
cseFlowOperFastAgePktThreshold,
cseFlowOperIPXAgingTime
}
STATUS current
DESCRIPTION
"A collection of objects providing operating status information
on aging time for flows used in L3 switching."
::= { cseMIBGroups 11 }
cse4kVlanGroup OBJECT-GROUP
OBJECTS {
cseFlowMcastResultDstVlans2k,
cseFlowMcastResultDstVlans3k,
cseFlowMcastResultDstVlans4k
}
STATUS current
DESCRIPTION
"A collection of objects providing information
for VLANS with VlanIndex from 1024 to 4095."
::= { cseMIBGroups 12 }
cseNDEMandatoryGroup OBJECT-GROUP
OBJECTS {
cseNetflowLSFilterSupport,
cseNetflowLSExportStatus,
cseNetflowLSExportNDEVersionNumber
}
STATUS current
DESCRIPTION
"A collection of objects providing information on the type
of filter support, status and the version of NDE used."
::= { cseMIBGroups 13 }
cseNDESingleFilterGroup OBJECT-GROUP
OBJECTS {
cseNetflowLSExportHost,
cseNetflowLSExportTransportNumber,
cseNetflowLSExportDataSource,
cseNetflowLSExportDataSourceMask,
cseNetflowLSExportDataDest,
cseNetflowLSExportDataDestMask,
cseNetflowLSExportDataProtocol,
cseNetflowLSExportDataFilterSelection
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing information on the Netflow LAN
switching Data Export feature, with a single host and a
single filter support.
cseNDESingleFilterGroup object is superseded by cseNDESingleFilterGroupRev1."
::= { cseMIBGroups 14 }
cseNDEMultipleFiltersGroup OBJECT-GROUP
OBJECTS {
cseNetflowLSFilterDataSource,
cseNetflowLSFilterDataSourceMask,
cseNetflowLSFilterDataDest,
cseNetflowLSFilterDataDestMask,
cseNetflowLSFilterDataProtocol,
cseNetflowLSFilterSelection,
cseNetflowLSFilterStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing information on the Netflow LAN
switching Data Export feature, with multiple filter support."
::= { cseMIBGroups 15 }
cseFlowMgmtGroupRev1 OBJECT-GROUP
OBJECTS {
cseFlowEstablishedAgingTime,
cseFlowFastAgingTime,
cseFlowFastAgePktThreshold,
cseFlowIPXEstablishedAgingTime,
cseFlowMaxQueries,
cseFlowQueryMask,
cseFlowQueryTransport,
cseFlowQuerySource,
cseFlowQuerySourceMask,
cseFlowQueryDestination,
cseFlowQueryDestinationMask,
cseFlowQueryRouterIndex,
cseFlowQueryOwner,
cseFlowQueryResultingRows,
cseFlowQueryResultTotalPkts,
cseFlowQueryResultTotalOctets,
cseFlowQueryResultAvgDuration,
cseFlowQueryResultAvgIdle,
cseFlowQueryStatus,
cseFlowQueryCreateTime,
cseFlowQueryTotalFlows,
cseFlowDataSrcMac,
cseFlowDataDstMac,
cseFlowDataEncapType,
cseFlowDataSource,
cseFlowDataStaticFlow,
cseFlowDataDestination,
cseFlowDataDestVlan,
cseFlowDataIpQOS,
cseFlowDataIpQOSPolicy,
cseFlowDataWhenCreated,
cseFlowDataLastUsed,
cseFlowDataPkts,
cseFlowDataOctets,
cseFlowSwitchStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing information for determining the
L3 flow switching performance in the switching engine. There may
be some platform specific limitations when performing a SET
on some of these objects.
The following are valid for Catalyst 5000 platforms:
- cseFlowEstablishedAgingTime has a default value of 256.
- cseFlowFastAgePktThreshold can only be set to 1, 3, 7, 15, 31
or 63 packets. If the packet threshold is not configured to one
of these values, it will be adjusted to the closest value.
- cseFlowFastAgingTime can be set to only values that are
multiples of 8 in the range (0..128).
If it is set to a value that is not
multiple of 8, then the closest value that is a multiple of 8
will take effect. The default value for fast aging time is 32
seconds. (i.e. less than cseFlowFastAgePktThreshold number of
packets were switched within 32 seconds after the an L3
flow entry was established).
- cseFlowIPXEstablishedAgingTime has a default value of 256."
::= { cseMIBGroups 16 }
cseL3ErrorsGroup OBJECT-GROUP
OBJECTS {
cseIpPlenErrors,
cseIpTooShortErrors,
cseIpCheckSumErrors,
cseIpxPlenErrors,
cseIpxTooShortErrors
}
STATUS current
DESCRIPTION
"A collection of objects providing the IP and IPX error
statistics."
::= { cseMIBGroups 17 }
cseBridgedFlowGroup OBJECT-GROUP
OBJECTS { cseFlowBridgedFlowStatsEnable }
STATUS current
DESCRIPTION
"A collection of objects control the reporting of intra-vlan
bridged flow statistics."
::= { cseMIBGroups 18 }
cseVlanStatisticsExtGroup OBJECT-GROUP
OBJECTS {
cseL3VlanInUnicastPkts,
cseL3VlanInUnicastOctets,
cseL3VlanOutUnicastPkts,
cseL3VlanOutUnicastOctets
}
STATUS current
DESCRIPTION
"A collection of objects providing additional per-vlan switch
engine statistics, if supported."
::= { cseMIBGroups 19 }
cseProtocolFilterExtGroup OBJECT-GROUP
OBJECTS { cseProtocolFilterEnable }
STATUS current
DESCRIPTION
"A collection of objects providing additional information on the
Protocol filter feature, if supported."
::= { cseMIBGroups 20 }
cseFlowMgmtExtGroup OBJECT-GROUP
OBJECTS {
cseFlowIPFlowMask,
cseFlowIPXFlowMask
}
STATUS current
DESCRIPTION
"A collection of objects providing additional information on the
L3 flow switching in the switching engine."
::= { cseMIBGroups 21 }
cseFlowMgmtExtGroup1 OBJECT-GROUP
OBJECTS {
cseFlowLongAgingTime,
cseFlowExcludeProtocol,
cseFlowExcludeStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing additional information on the
L3 flow switching in the switching engine."
::= { cseMIBGroups 22 }
cseNDEReportGroup OBJECT-GROUP
OBJECTS { cseNetFlowIfIndexEnable }
STATUS current
DESCRIPTION
"A collection of objects providing the configuration
on NDE ifIndex report feature."
::= { cseMIBGroups 23 }
cseStatisticsFlowGroup OBJECT-GROUP
OBJECTS { cseFlowTotalFlows }
STATUS current
DESCRIPTION
"A collection of object providing switch engine statistics
on total number of installed flows."
::= { cseMIBGroups 24 }
cseFlowMgmtExtGroup2 OBJECT-GROUP
OBJECTS { cseFlowQuerySkipNFlows }
STATUS current
DESCRIPTION
"A collection of objects providing additional information on the
L3 flow switching in the switching engine."
::= { cseMIBGroups 25 }
cseNDESingleFilterGroupRev1 OBJECT-GROUP
OBJECTS {
cseNetflowLSExportDataSource,
cseNetflowLSExportDataSourceMask,
cseNetflowLSExportDataDest,
cseNetflowLSExportDataDestMask,
cseNetflowLSExportDataProtocol,
cseNetflowLSExportDataFilterSelection
}
STATUS current
DESCRIPTION
"A collection of objects providing information on the Netflow LAN
switching Data Export feature, with a single filter support."
::= { cseMIBGroups 26 }
cseCefFibAdjacencyGroup OBJECT-GROUP
OBJECTS {
cseCefFibAddrType,
cseCefFibDestIp,
cseCefFibDestIpMask,
cseCefFibType,
cseCefAdjacencyAddrType,
cseCefAdjacencyNextHopIp,
cseCefAdjacencyNextHopMac,
cseCefAdjacencyNextHopIfIndex,
cseCefAdjacencyType,
cseCefAdjacencyPkts,
cseCefAdjacencyOctets
}
STATUS current
DESCRIPTION
"A collection of objects providing FIB and adjacency
information available in the device."
::= { cseMIBGroups 27 }
cseCefAdjacencyEncapGroup OBJECT-GROUP
OBJECTS { cseCefAdjacencyEncap }
STATUS current
DESCRIPTION
"A collection of object providing adjacency next hop
encapsulation information available in the device."
::= { cseMIBGroups 28 }
cseCefAdjacencyMTUGroup OBJECT-GROUP
OBJECTS { cseCefAdjacencyMTU }
STATUS current
DESCRIPTION
"A collection of object providing adjacency next hop
MTU information available in the device."
::= { cseMIBGroups 29 }
cseTcamUsageGroup OBJECT-GROUP
OBJECTS {
cseTcamResourceDescr,
cseTcamResourceUsed,
cseTcamResourceTotal
}
STATUS current
DESCRIPTION
"A collection of objects providing the resource usage
information on TCAM available in the device."
::= { cseMIBGroups 30 }
cseL3ErrorsLCGroup OBJECT-GROUP
OBJECTS {
cseLCIpPlenErrors,
cseLCIpTooShortErrors,
cseLCIpCheckSumErrors,
cseLCIpxPlenErrors,
cseLCIpxTooShortErrors
}
STATUS current
DESCRIPTION
"A collection of objects providing the IP and IPX error
statistics."
::= { cseMIBGroups 31 }
cseNetflowASInfoExportGroup OBJECT-GROUP
OBJECTS { cseNetflowASInfoExportCtrl }
STATUS current
DESCRIPTION
"A collection of object providing AS number information
export control."
::= { cseMIBGroups 32 }
cseNetflowPerVlanIfGroup OBJECT-GROUP
OBJECTS {
cseNetflowPerVlanIfGlobalEnable,
cseNetflowPerVlanIfEnable
}
STATUS current
DESCRIPTION
"A collection of objects providing control of netflow entry
creation per vlan."
::= { cseMIBGroups 33 }
cseMetUsageGroup OBJECT-GROUP
OBJECTS {
cseMetTotalEntries,
cseMetUnallocatedSpcFreeEntries,
cseMetAllocatedSpcFreeEntries
}
STATUS current
DESCRIPTION
"A collection of objects providing MET utilization
information."
::= { cseMIBGroups 34 }
cseFlowMcastMgmtGroup1 OBJECT-GROUP
OBJECTS {
cseFlowMcastMaxQueries,
cseFlowMcastQueryMask,
cseFlowMcastQuerySrcVlan,
cseFlowMcastQuerySkipNFlows,
cseFlowMcastQueryOwner,
cseFlowMcastQueryTotalFlows,
cseFlowMcastQueryRows,
cseFlowMcastQueryStatus,
cseFlowMcastQueryCreateTime,
cseFlowMcastResultSrcVlan,
cseFlowMcastResultCreatedTS,
cseFlowMcastResultLastUsedTS,
cseFlowMcastResultPkts,
cseFlowMcastResultOctets,
cseFlowMcastResultDstVlans,
cseFlowMcastSwitchStatus
}
STATUS current
DESCRIPTION
"A collection of objects for querying IP multicast flows
stored in hardware switching cache."
::= { cseMIBGroups 35 }
cseFlowMcastRtrMgmtGroup OBJECT-GROUP
OBJECTS {
cseFlowMcastQueryRtrIndex,
cseFlowMcastResultRtrIp,
cseFlowMcastResultRtrMac
}
STATUS current
DESCRIPTION
"A collection of objects for specifying the router based
information while IP multicast flows stored in the hardware
switching cache are queried."
::= { cseMIBGroups 36 }
cseFlowMcastMgmtGroup2 OBJECT-GROUP
OBJECTS {
cseFlowMcastQueryMvrf,
cseFlowMcastQueryAddrType,
cseFlowMcastQuerySource,
cseFlowMcastQueryGroup,
cseFlowMcastResultMvrf,
cseFlowMcastResultAddrType,
cseFlowMcastResultGroup,
cseFlowMcastResultSource,
cseFlowMcastResultFlowType,
cseFlowMcastResultHFlag1k2k,
cseFlowMcastResultHFlag3k4k
}
STATUS current
DESCRIPTION
"A collection of objects for enhanced querying of
IP multicast flows stored in hardware switching cache."
::= { cseMIBGroups 37 }
cseCacheStatisticsGroup OBJECT-GROUP
OBJECTS {
cseCacheEntriesCreated,
cseCacheEntriesFailed
}
STATUS current
DESCRIPTION
"A collection of objects providing switch engine statistics
on the flow cache entries."
::= { cseMIBGroups 38 }
cseL3SwitchedPktsPerSecGroup OBJECT-GROUP
OBJECTS {
cseL3SwitchedPktsPerSec,
cseL3SwitchedAggrPktsPerSec
}
STATUS current
DESCRIPTION
"A collection of objects providing switch engine
statistics on total number of packets switched per
second."
::= { cseMIBGroups 39 }
cseStatisticsFlowGroup1 OBJECT-GROUP
OBJECTS { cseFlowTotalIpv4Flows }
STATUS current
DESCRIPTION
"A collection of object providing switch engine statistics
on total number of Ipv4 flow entries."
::= { cseMIBGroups 40 }
END
|