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
|
-- *------------------------------------------------------------------
-- * CISCO-CEF-MIB.my: Cisco CEF MIB.
-- *
-- * Jan 2006, Rohit Mendiratta
-- *
-- * This MIB module is used to manage CISCO Express Forwarding
-- * (CEF).
-- *
-- * Copyright (c) 2006 by Cisco Systems, Inc.
-- * All rights reserved.
-- *
-- *------------------------------------------------------------------
CISCO-CEF-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
Counter64,
Counter32,
Integer32,
Gauge32,
Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TimeStamp,
RowStatus,
TruthValue,
TestAndIncr
FROM SNMPv2-TC
CounterBasedGauge64
FROM HCNUM-TC
ifIndex,
InterfaceIndexOrZero
FROM IF-MIB
entPhysicalIndex,
PhysicalIndex
FROM ENTITY-MIB
InetAddressType,
InetAddress,
InetAddressPrefixLength
FROM INET-ADDRESS-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
MplsVpnId
FROM MPLS-VPN-MIB
EntPhysicalIndexOrZero
FROM CISCO-TC
CefIpVersion,
CefAdjLinkType,
CefAdjacencySource,
CefPathType,
CefPrefixSearchState,
CefForwardingElementSpecialType,
CefMplsLabelList,
CefAdminStatus,
CefOperStatus,
CefFailureReason,
CefCCType,
CefCCAction,
CefCCStatus
FROM CISCO-CEF-TC
ciscoMgmt
FROM CISCO-SMI;
ciscoCefMIB MODULE-IDENTITY
LAST-UPDATED "200601300000Z"
ORGANIZATION "Cisco System, Inc."
CONTACT-INFO
"Postal: Cisco Systems, Inc.
170 West Tasman Drive
San Jose, CA 95134-1706
USA
Tel: +1 800 553-NETS
E-mail: cs-cef@cisco.com"
DESCRIPTION
"Cisco Express Forwarding (CEF) describes a high speed
switching mechanism that a router uses to forward packets
from the inbound to the outbound interface.
CEF uses two sets of data structures
or tables, which it stores in router memory:
Forwarding information base (FIB) - Describes a database
of information used to make forwarding decisions. It is
conceptually similar to a routing table or route-cache,
although its implementation is different.
Adjacency - Two nodes in the network are said to be
adjacent if they can reach each other via a single hop
across a link layer.
CEF path is a valid route to reach to a destination
IP prefix. Multiple paths may exist out of a router to the
same destination prefix. CEF Load balancing capability
share the traffic to the destination IP prefix over all
the active paths.
After obtaining the prefix in the CEF table with the
longest match, output forwarding follows the chain of
forwarding elements.
Forwarding element (FE) may process the packet, forward
the packet, drop or punt the packet or it may also
pass the packet to the next forwarding element in the
chain for further processing.
Forwarding Elements are of various types
but this MIB only represents the forwarding elements of
adjacency and label types. Hence a forwarding element
chain will be represented as a list of labels and
adjacency. The adjacency may point to a forwarding element
list again, if it is not the last forwarding element in this
chain.
For the simplest IP forwarding case, the prefix entry will
point at an adjacency forwarding element.
The IP adjacency processing function will apply the output
features, add the encapsulation (performing any required
fixups), and may send the packet out.
If loadbalancing is configured, the prefix entry will point
to lists of forwarding elements. One of these lists will be
selected to forward the packet.
Each forwarding element list dictates which of a set of
possible packet transformations to apply on the way to
the same neighbour.
The following diagram represents relationship
between three of the core tables in this MIB module.
cefPrefixTable cefFESelectionTable
+---------------+ points +--------------+
| | | | a set +----> | | | | |
|---------------| of FE | |--------------|
| | | | Selection | | | | | |
|---------------| Entries | |--------------|
| | | |------------+ | |<----+
|---------------| |--------------| |
| | +--------------| | | | | |
+---------------+ | +--------------+ |
| |
points to an |
adjacency entry |
| |
| cefAdjTable |
| +---------------+ may point |
+->| | | | to a set |
|---------------| of FE |
| | | | Selection |
|---------------| Entries |
| | | |----------------+
|---------------|
| |
+---------------+
Some of the Cisco series routers (e.g. 7500 & 12000)
support distributed CEF (dCEF), in which the line cards
(LCs) make the packet forwarding decisions using locally
stored copies of the same Forwarding information base (FIB)
and adjacency tables as the Routing Processor (RP).
Inter-Process Communication (IPC) is the protocol used
by routers that support distributed packet forwarding.
CEF updates are encoded as external Data Representation
(XDR) information elements inside IPC messages.
This MIB reflects the distributed nature of CEF, e.g. CEF
has different instances running on the RP and the line cards.
There may be instances of inconsistency between the
CEF forwarding databases(i.e between CEF forwarding
database on line cards and the CEF forwarding database
on the RP). CEF consistency checkers (CC) detects
this inconsistency.
When two databases are compared by a consistency checker,
a set of records from the first (master) database is
looked up in the second (slave).
There are two types of consistency checkers,
active and passive. Active consistency checkers
are invoked in response to some stimulus, i.e.
when a packet cannot be forwarded because the
prefix is not in the forwarding table or
in response to a Management Station request.
Passive consistency checkers operate in the background,
scanning portions of the databases on a periodic basis.
The full-scan checkers are active consistency checkers
which are invoked in response to a Management Station
Request.
If 64-bit counter objects in this MIB are supported,
then their associated 32-bit counter objects
must also be supported. The 32-bit counters will
report the low 32-bits of the associated 64-bit
counter count (e.g., cefPrefixPkts will report the
least significant 32 bits of cefPrefixHCPkts).
The same rule should be applied for the 64-bit gauge
objects and their assocaited 32-bit gauge objects.
If 64-bit counters in this MIB are not supported,
then an agent MUST NOT instantiate the corresponding
objects with an incorrect value; rather, it MUST
respond with the appropriate error/exception
condition (e.g., noSuchInstance or noSuchName).
Counters related to CEF accounting (e.g.,
cefPrefixPkts) MUST NOT be instantiated if the
corresponding accounting method has been disabled.
This MIB allows configuration and monitoring of CEF
related objects."
REVISION "200601300000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 492 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- CISCO CEF MIB Object Groups
--
-- This MIB module contains the following groups:
-- CEF FIB Group
-- CEF Adjacency Group
-- CEF Forwarding Element Group
-- CEF Cfg Group
-- CEF Interface Group
-- CEF Peer Group
-- CEF Consistency Checker (CC) group
-- CEF Stats Group
-- CEF Notification Control Group.
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
ciscoCefMIBNotifs OBJECT IDENTIFIER ::= {ciscoCefMIB 0}
ciscoCefMIBObjects OBJECT IDENTIFIER ::= {ciscoCefMIB 1}
ciscoCefMIBConform OBJECT IDENTIFIER ::= {ciscoCefMIB 2}
cefFIB OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 1 }
cefAdj OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 2 }
cefFE OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 3 }
cefGlobal OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 4 }
cefInterface OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 5 }
cefPeer OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 6 }
cefCC OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 7 }
cefStats OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 8 }
cefNotifCntl OBJECT IDENTIFIER ::= { ciscoCefMIBObjects 9 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF FIB Summary
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefFIBSummary OBJECT IDENTIFIER
::= { cefFIB 1 }
cefFIBSummaryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefFIBSummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the summary information
for the cefPrefixTable."
::= { cefFIBSummary 1 }
cefFIBSummaryEntry OBJECT-TYPE
SYNTAX CefFIBSummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the FIB summary related
attributes for the managed entity.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex, cefFIBIpVersion }
::= { cefFIBSummaryTable 1}
CefFIBSummaryEntry ::= SEQUENCE {
cefFIBIpVersion CefIpVersion,
cefFIBSummaryFwdPrefixes Unsigned32
}
cefFIBIpVersion OBJECT-TYPE
SYNTAX CefIpVersion
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The version of IP forwarding."
::= { cefFIBSummaryEntry 1 }
cefFIBSummaryFwdPrefixes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of forwarding Prefixes
in FIB for the IP version specified
by cefFIBIpVersion object."
::= { cefFIBSummaryEntry 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Forwarding Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of CEF forwarding prefixes."
::= { cefFIB 2 }
cefPrefixEntry OBJECT-TYPE
SYNTAX CefPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the forwarding
prefix attributes.
CEF prefix based non-recursive stats are maintained
in internal and external buckets (depending upon the
value of cefIntNonrecursiveAccouting object in the
CefIntEntry).
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefPrefixType,
cefPrefixAddr,
cefPrefixLen
}
::= { cefPrefixTable 1}
CefPrefixEntry ::= SEQUENCE {
cefPrefixType InetAddressType,
cefPrefixAddr InetAddress,
cefPrefixLen InetAddressPrefixLength,
cefPrefixForwardingInfo SnmpAdminString,
cefPrefixPkts Counter32,
cefPrefixHCPkts Counter64,
cefPrefixBytes Counter32,
cefPrefixHCBytes Counter64,
cefPrefixInternalNRPkts Counter32,
cefPrefixInternalNRHCPkts Counter64,
cefPrefixInternalNRBytes Counter32,
cefPrefixInternalNRHCBytes Counter64,
cefPrefixExternalNRPkts Counter32,
cefPrefixExternalNRHCPkts Counter64,
cefPrefixExternalNRBytes Counter32,
cefPrefixExternalNRHCBytes Counter64
}
cefPrefixType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Network Prefix Type.
This object specifies the address type
used for cefPrefixAddr.
Prefix entries are only valid for the address
type of ipv4(1) and ipv6(2)."
::= { cefPrefixEntry 1 }
cefPrefixAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Network Prefix Address.
The type of this address is determined by
the value of the cefPrefixType object.
This object is a Prefix Address containing the
prefix with length specified by cefPrefixLen.
Any bits beyond the length specified by
cefPrefixLen are zeroed."
::= { cefPrefixEntry 2 }
cefPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Length in bits of the FIB Address prefix."
::= { cefPrefixEntry 3 }
cefPrefixForwardingInfo OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the associated forwarding element
selection entries in cefFESelectionTable.
The value of this object is index value (cefFESelectionName)
of cefFESelectionTable."
::= { cefPrefixEntry 4 }
cefPrefixPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable per prefix
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'perPrefix'
accounting), then this object represents the
number of packets switched to this prefix."
::= { cefPrefixEntry 5 }
cefPrefixHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable per prefix
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'perPrefix'
accounting), then this object represents the
number of packets switched to this prefix.
This object is a 64-bit version of
cefPrefixPkts."
::= { cefPrefixEntry 6 }
cefPrefixBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable per prefix
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'perPrefix'
accounting), then this object represents the
number of bytes switched to this prefix."
::= { cefPrefixEntry 7 }
cefPrefixHCBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable per prefix
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'perPrefix'
accounting), then this object represents the
number of bytes switched to this prefix.
This object is a 64-bit version of
cefPrefixBytes."
::= { cefPrefixEntry 8 }
cefPrefixInternalNRPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable non-recursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents the number
of non-recursive packets in the internal bucket
switched using this prefix."
::= { cefPrefixEntry 9 }
cefPrefixInternalNRHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable non-recursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents the number
of non-recursive packets in the internal bucket
switched using this prefix.
This object is a 64-bit version of
cefPrefixInternalNRPkts."
::= { cefPrefixEntry 10 }
cefPrefixInternalNRBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable nonRecursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents
the number of non-recursive bytes in the internal
bucket switched using this prefix."
::= { cefPrefixEntry 11 }
cefPrefixInternalNRHCBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable nonRecursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents
the number of non-recursive bytes in the internal
bucket switched using this prefix.
This object is a 64-bit version of
cefPrefixInternalNRBytes."
::= { cefPrefixEntry 12 }
cefPrefixExternalNRPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable non-recursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents the number
of non-recursive packets in the external bucket
switched using this prefix."
::= { cefPrefixEntry 13 }
cefPrefixExternalNRHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable non-recursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents the number
of non-recursive packets in the external bucket
switched using this prefix.
This object is a 64-bit version of
cefPrefixExternalNRPkts."
::= { cefPrefixEntry 14 }
cefPrefixExternalNRBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable nonRecursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents
the number of non-recursive bytes in the external
bucket switched using this prefix."
::= { cefPrefixEntry 15 }
cefPrefixExternalNRHCBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If CEF accounting is set to enable nonRecursive
accounting (value of cefCfgAccountingMap object in
the cefCfgEntry is set to enable 'nonRecursive'
accounting), then this object represents
the number of non-recursive bytes in the external
bucket switched using this prefix.
This object is a 64-bit version of
cefPrefixExternalNRBytes."
::= { cefPrefixEntry 16 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Longest Match Prefix Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefLMPrefixSpinLock OBJECT-TYPE
SYNTAX TestAndIncr
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An advisory lock used to allow cooperating SNMP
Command Generator applications to coordinate their
use of the Set operation in creating Longest
Match Prefix Entries in cefLMPrefixTable.
When creating a new longest prefix match entry,
the value of cefLMPrefixSpinLock should be retrieved.
The destination address should be determined to be
unique by the SNMP Command Generator application by
consulting the cefLMPrefixTable. Finally, the longest
prefix entry may be created (Set), including the
advisory lock.
If another SNMP Command Generator application has
altered the longest prefix entry in the meantime,
then the spin lock's value will have changed,
and so this creation will fail because it will specify
the wrong value for the spin lock.
Since this is an advisory lock, the use of this lock
is not enforced, but not using this lock may lead
to conflict with the another SNMP command responder
application which may also be acting on the
cefLMPrefixTable."
::= { cefFIB 3 }
cefLMPrefixTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefLMPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Longest Match Prefix Query requests.
Generator application should utilize the
cefLMPrefixSpinLock to try to avoid collisions.
See DESCRIPTION clause of cefLMPrefixSpinLock."
::= { cefFIB 4 }
cefLMPrefixEntry OBJECT-TYPE
SYNTAX CefLMPrefixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the managed device, then each
entry represents a longest Match Prefix request.
A management station wishing to get the longest
Match prefix for a given destination address
should create the associate instance of the
row status. The row status should be set to
active(1) to initiate the request. Note that
this entire procedure may be initiated via a
single set request which specifies a row status
of createAndGo(4).
Once the request completes, the management station
should retrieve the values of the objects of
interest, and should then delete the entry. In order
to prevent old entries from clogging the table,
entries will be aged out, but an entry will never be
deleted within 5 minutes of completion.
Entries are lost after an agent restart.
I.e. to find out the longest prefix match for
destination address of A.B.C.D on entity whose
entityPhysicalIndex is 1, the Management station
will create an entry in cefLMPrefixTable with
cefLMPrefixRowStatus.1(entPhysicalIndex).1(ipv4).A.B.C.D
set to createAndGo(4). Management Station may query the
value of objects cefLMPrefix and cefLMPrefixLen
to find out the corresponding prefix entry from the
cefPrefixTable once the value of cefLMPrefixState
is set to matchFound(2).
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF.
"
INDEX { entPhysicalIndex,
cefLMPrefixDestAddrType,
cefLMPrefixDestAddr }
::= { cefLMPrefixTable 1}
CefLMPrefixEntry ::= SEQUENCE {
cefLMPrefixDestAddrType InetAddressType,
cefLMPrefixDestAddr InetAddress,
cefLMPrefixState CefPrefixSearchState,
cefLMPrefixAddr InetAddress,
cefLMPrefixLen InetAddressPrefixLength,
cefLMPrefixRowStatus RowStatus
}
cefLMPrefixDestAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Destination Address Type.
This object specifies the address type
used for cefLMPrefixDestAddr.
Longest Match Prefix entries are only valid
for the address type of ipv4(1) and ipv6(2)."
::= { cefLMPrefixEntry 1 }
cefLMPrefixDestAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Destination Address.
The type of this address is determined by
the value of the cefLMPrefixDestAddrType object."
::= { cefLMPrefixEntry 2 }
cefLMPrefixState OBJECT-TYPE
SYNTAX CefPrefixSearchState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the state of this prefix search request."
::= { cefLMPrefixEntry 3 }
cefLMPrefixAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Network Prefix Address. Index to the cefPrefixTable.
The type of this address is determined by
the value of the cefLMPrefixDestAddrType object."
::= { cefLMPrefixEntry 4 }
cefLMPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Network Prefix Length. Index to the cefPrefixTable."
::= { cefLMPrefixEntry 5 }
cefLMPrefixRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry. Once the entry
status is set to active(1), the associated entry
cannot be modified until the request completes
(cefLMPrefixState transitions to matchFound(2)
or noMatchFound(3)).
Once the longest match request has been created
(i.e. the cefLMPrefixRowStatus has been made active),
the entry cannot be modified - the only operation
possible after this is to delete the row."
::= { cefLMPrefixEntry 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Path Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefPathTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefPathEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CEF prefix path is a valid route to reach to a
destination IP prefix. Multiple paths may exist
out of a router to the same destination prefix.
This table specify lists of CEF paths."
::= { cefFIB 5 }
cefPathEntry OBJECT-TYPE
SYNTAX CefPathEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contain a CEF prefix path.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefPrefixType,
cefPrefixAddr,
cefPrefixLen,
cefPathId
}
::= { cefPathTable 1 }
CefPathEntry ::= SEQUENCE {
cefPathId Integer32,
cefPathType CefPathType,
cefPathInterface InterfaceIndexOrZero,
cefPathNextHopAddr InetAddress,
cefPathRecurseVrfName MplsVpnId
}
cefPathId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The locally arbitrary, but unique identifier associated
with this prefix path entry."
::= { cefPathEntry 1 }
cefPathType OBJECT-TYPE
SYNTAX CefPathType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type for this CEF Path."
::= { cefPathEntry 2 }
cefPathInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Interface associated with this CEF path.
A value of zero for this object will indicate
that no interface is associated with this path
entry."
::= { cefPathEntry 3 }
cefPathNextHopAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Next hop address associated with this CEF path.
The value of this object is only relevant
for attached next hop and recursive next hop
path types (when the object cefPathType is
set to attachedNexthop(4) or recursiveNexthop(5)).
and will be set to zero for other path types.
The type of this address is determined by
the value of the cefPrefixType object."
::= { cefPathEntry 4 }
cefPathRecurseVrfName OBJECT-TYPE
SYNTAX MplsVpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The recursive vrf name associated with this path.
The value of this object is only relevant
for recursive next hop path types (when the
object cefPathType is set to recursiveNexthop(5)),
and '0x00' will be returned for other path types."
::= { cefPathEntry 5 }
-- End of cefPathTable
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Adjacency Summary
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefAdjSummary OBJECT IDENTIFIER
::= { cefAdj 1 }
cefAdjSummaryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefAdjSummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the summary information
for the cefAdjTable."
::= { cefAdjSummary 1 }
cefAdjSummaryEntry OBJECT-TYPE
SYNTAX CefAdjSummaryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the CEF Adjacency
summary related attributes for the
Managed entity. A row exists for
each adjacency link type.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex, cefAdjSummaryLinkType}
::= { cefAdjSummaryTable 1}
CefAdjSummaryEntry ::= SEQUENCE {
cefAdjSummaryLinkType CefAdjLinkType,
cefAdjSummaryComplete Unsigned32,
cefAdjSummaryIncomplete Unsigned32,
cefAdjSummaryFixup Unsigned32,
cefAdjSummaryRedirect Unsigned32
}
cefAdjSummaryLinkType OBJECT-TYPE
SYNTAX CefAdjLinkType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The link type of the adjacency."
::= { cefAdjSummaryEntry 1 }
cefAdjSummaryComplete OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of complete adjacencies.
The total number of adjacencies which can be used
to switch traffic to a neighbour."
::= { cefAdjSummaryEntry 2 }
cefAdjSummaryIncomplete OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of incomplete adjacencies.
The total number of adjacencies which cannot be
used to switch traffic in their current state."
::= { cefAdjSummaryEntry 3 }
cefAdjSummaryFixup OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of adjacencies for which
the Layer 2 encapsulation string (header) may be
updated (fixed up) at packet switch time."
::= { cefAdjSummaryEntry 4 }
cefAdjSummaryRedirect OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of adjacencies for which
ip redirect (or icmp redirection) is enabled.
The value of this object is only relevant for
ipv4 and ipv6 link type (when the index object
cefAdjSummaryLinkType value is ipv4(1) or ipv6(2))
and will be set to zero for other link types.
"
REFERENCE
"1. Internet Architecture Extensions for Shared Media,
RFC 1620, May 1994."
::= { cefAdjSummaryEntry 5 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Adjacency Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefAdjTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefAdjEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of CEF adjacencies."
::= { cefAdj 2 }
cefAdjEntry OBJECT-TYPE
SYNTAX CefAdjEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the adjacency
attributes. Adjacency entries may exist
for all the interfaces on which packets
can be switched out of the device.
The interface is instantiated by ifIndex.
Therefore, the interface index must have been
assigned, according to the applicable procedures,
before it can be meaningfully used.
Generally, this means that the interface must exist.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX {
entPhysicalIndex,
ifIndex,
cefAdjNextHopAddrType,
cefAdjNextHopAddr,
cefAdjConnId,
cefAdjSummaryLinkType
}
::= { cefAdjTable 1}
CefAdjEntry ::= SEQUENCE {
cefAdjNextHopAddrType InetAddressType,
cefAdjNextHopAddr InetAddress,
cefAdjConnId Unsigned32,
cefAdjSource CefAdjacencySource,
cefAdjEncap SnmpAdminString,
cefAdjFixup SnmpAdminString,
cefAdjMTU Unsigned32,
cefAdjForwardingInfo SnmpAdminString,
cefAdjPkts Counter32,
cefAdjHCPkts Counter64,
cefAdjBytes Counter32,
cefAdjHCBytes Counter64
}
cefAdjNextHopAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Address type for the cefAdjNextHopAddr.
This object specifies the address type
used for cefAdjNextHopAddr.
Adjacency entries are only valid for the
address type of ipv4(1) and ipv6(2)."
::= { cefAdjEntry 1 }
cefAdjNextHopAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The next Hop address for this adjacency.
The type of this address is determined by
the value of the cefAdjNextHopAddrType object."
::= { cefAdjEntry 2 }
cefAdjConnId OBJECT-TYPE
SYNTAX Unsigned32(0 | 1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"In cases where cefLinkType, interface and the
next hop address are not able to uniquely define
an adjacency entry (e.g. ATM and Frame Relay
Bundles), this object is a unique identifier
to differentiate between these adjacency entries.
In all the other cases the value of this
index object will be 0."
::= { cefAdjEntry 3 }
cefAdjSource OBJECT-TYPE
SYNTAX CefAdjacencySource
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the adjacency is created because some neighbour
discovery mechanism has discovered a neighbour
and all the information required to build a frame header to
encapsulate traffic to the neighbour is available
then the source of adjacency is set to the mechanism
by which the adjacency is learned."
::= { cefAdjEntry 4 }
cefAdjEncap OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The layer 2 encapsulation string to be used
for sending the packet out using this adjacency."
::= { cefAdjEntry 5 }
cefAdjFixup OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For the cases, where the encapsulation string
is decided at packet switch time, the adjacency
encapsulation string specified by object cefAdjEncap
require a fixup. I.e. for the adjacencies out of IP
Tunnels, the string prepended is an IP header which has
fields which can only be setup at packet switch time.
The value of this object represent the kind of fixup
applied to the packet.
If the encapsulation string doesn't require any fixup,
then the value of this object will be of zero length."
::= { cefAdjEntry 6 }
cefAdjMTU OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Layer 3 MTU which can be transmitted using
this adjacency."
::= { cefAdjEntry 7 }
cefAdjForwardingInfo OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object selects a forwarding info entry
defined in the cefFESelectionTable. The
selected target is defined by an entry in the
cefFESelectionTable whose index value (cefFESelectionName)
is equal to this object.
The value of this object will be of zero length if
this adjacency entry is the last forwarding
element in the forwarding path."
::= { cefAdjEntry 8 }
cefAdjPkts OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pkts transmitted using this adjacency."
::= { cefAdjEntry 9 }
cefAdjHCPkts OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of pkts transmitted using this adjacency.
This object is a 64-bit version of cefAdjPkts."
::= { cefAdjEntry 10 }
cefAdjBytes OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes transmitted using this adjacency."
::= { cefAdjEntry 11 }
cefAdjHCBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes transmitted using this adjacency.
This object is a 64-bit version of cefAdjBytes."
::= { cefAdjEntry 12 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Forwarding Element Selection Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefFESelectionTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefFESelectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of forwarding element selection entries."
::= { cefFE 1 }
cefFESelectionEntry OBJECT-TYPE
SYNTAX CefFESelectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contain a CEF forwarding element
selection list.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefFESelectionName,
cefFESelectionId }
::= { cefFESelectionTable 1 }
CefFESelectionEntry ::= SEQUENCE {
cefFESelectionName SnmpAdminString,
cefFESelectionId Integer32,
cefFESelectionSpecial CefForwardingElementSpecialType,
cefFESelectionLabels CefMplsLabelList,
cefFESelectionAdjLinkType CefAdjLinkType,
cefFESelectionAdjInterface InterfaceIndexOrZero,
cefFESelectionAdjNextHopAddrType InetAddressType,
cefFESelectionAdjNextHopAddr InetAddress,
cefFESelectionAdjConnId Unsigned32,
cefFESelectionVrfName MplsVpnId,
cefFESelectionWeight Unsigned32
}
cefFESelectionName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The locally arbitrary, but unique identifier used
to select a set of forwarding element lists."
::= { cefFESelectionEntry 1 }
cefFESelectionId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Secondary index to identify a forwarding elements List
in this Table."
::= { cefFESelectionEntry 2 }
cefFESelectionSpecial OBJECT-TYPE
SYNTAX CefForwardingElementSpecialType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Special processing for a destination
is indicated through the use of special
forwarding element.
If the forwarding element list contains the
special forwarding element, then this object
represents the type of special forwarding element."
::= { cefFESelectionEntry 3 }
cefFESelectionLabels OBJECT-TYPE
SYNTAX CefMplsLabelList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the MPLS Labels
associated with this forwarding Element List.
The value of this object will be irrelevant and will
be set to zero length if the forwarding element list
doesn't contain a label forwarding element. A zero
length label list will indicate that there is no label
forwarding element associated with this selection entry."
::= { cefFESelectionEntry 4 }
cefFESelectionAdjLinkType OBJECT-TYPE
SYNTAX CefAdjLinkType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the link type for
the adjacency associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to unknown(5) if the forwarding element list
doesn't contain an adjacency forwarding element."
::= { cefFESelectionEntry 5 }
cefFESelectionAdjInterface OBJECT-TYPE
SYNTAX InterfaceIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the interface for
the adjacency associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to zero if the forwarding element list doesn't
contain an adjacency forwarding element."
::= { cefFESelectionEntry 6 }
cefFESelectionAdjNextHopAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the next hop address type for
the adjacency associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to unknown(0) if the forwarding element list
doesn't contain an adjacency forwarding element."
::= { cefFESelectionEntry 7 }
cefFESelectionAdjNextHopAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the next hop address for
the adjacency associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to zero if the forwarding element list doesn't
contain an adjacency forwarding element."
::= { cefFESelectionEntry 8 }
cefFESelectionAdjConnId OBJECT-TYPE
SYNTAX Unsigned32(0 | 1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the connection id for
the adjacency associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to zero if the forwarding element list doesn't
contain an adjacency forwarding element.
In cases where cefFESelectionAdjLinkType, interface
and the next hop address are not able to uniquely
define an adjacency entry (e.g. ATM and Frame Relay
Bundles), this object is a unique identifier
to differentiate between these adjacency entries."
::= { cefFESelectionEntry 9 }
cefFESelectionVrfName OBJECT-TYPE
SYNTAX MplsVpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the Vrf name for
the lookup associated with this forwarding
Element List.
The value of this object will be irrelevant and will
be set to a string containing the single octet
0x00 if the forwarding element list
doesn't contain a lookup forwarding element."
::= { cefFESelectionEntry 10 }
cefFESelectionWeight OBJECT-TYPE
SYNTAX Unsigned32(0 | 1..4294967295)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object represent the weighting for
load balancing between multiple Forwarding Element
Lists. The value of this object will be zero if
load balancing is associated with this selection
entry."
::= { cefFESelectionEntry 11 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Cfg Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains global config parameter
of CEF on the Managed device."
::= { cefGlobal 1 }
cefCfgEntry OBJECT-TYPE
SYNTAX CefCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If the Managed device supports CEF,
each entry contains the CEF config
parameter for the managed entity.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefFIBIpVersion }
::= { cefCfgTable 1}
CefCfgEntry ::= SEQUENCE {
cefCfgAdminState CefAdminStatus,
cefCfgOperState CefOperStatus,
cefCfgDistributionAdminState CefAdminStatus,
cefCfgDistributionOperState CefOperStatus,
cefCfgAccountingMap BITS,
cefCfgLoadSharingAlgorithm INTEGER,
cefCfgLoadSharingID Unsigned32,
cefCfgTrafficStatsLoadInterval Unsigned32,
cefCfgTrafficStatsUpdateRate Unsigned32
}
cefCfgAdminState OBJECT-TYPE
SYNTAX CefAdminStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of CEF."
::= { cefCfgEntry 1 }
cefCfgOperState OBJECT-TYPE
SYNTAX CefOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of CEF.
If the cefCfgAdminState is disabled(2), then
cefOperState will eventually go to the down(2)
state unless some error has occurred.
If cefCfgAdminState is changed to enabled(1) then
cefCfgOperState should change to up(1) only if the
CEF entity is ready to forward the packets using
Cisco Express Forwarding (CEF) else it should remain
in the down(2) state. The up(1) state for this object
indicates that CEF entity is forwarding the packet
using Cisco Express Forwarding."
::= { cefCfgEntry 2 }
cefCfgDistributionAdminState OBJECT-TYPE
SYNTAX CefAdminStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of CEF distribution."
::= { cefCfgEntry 3 }
cefCfgDistributionOperState OBJECT-TYPE
SYNTAX CefOperStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current operational state of CEF distribution.
If the cefCfgDistributionAdminState is disabled(2), then
cefDistributionOperState will eventually go to the down(2)
state unless some error has occurred.
If cefCfgDistributionAdminState is changed to enabled(1)
then cefCfgDistributionOperState should change to up(1)
only if the CEF entity is ready to forward the packets
using Distributed Cisco Express Forwarding (dCEF) else
it should remain in the down(2) state. The up(1) state
for this object indicates that CEF entity is forwarding
the packet using Distributed Cisco Express Forwarding."
::= { cefCfgEntry 4 }
cefCfgAccountingMap OBJECT-TYPE
SYNTAX BITS {
nonRecursive(0),
perPrefix(1),
prefixLength(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object represents a bitmap of network
accounting options.
CEF network accounting is disabled by default.
CEF network accounting can be enabled
by selecting one or more of the following
CEF accounting option for the value
of this object.
nonRecursive(0): enables accounting through
nonrecursive prefixes.
perPrefix(1): enables the collection of the numbers
of pkts and bytes express forwarded
to a destination (prefix)
prefixLength(2): enables accounting through
prefixlength.
Once the accounting is enabled, the corresponding stats
can be retrieved from the cefPrefixTable and
cefStatsPrefixLenTable.
"
::= { cefCfgEntry 5 }
cefCfgLoadSharingAlgorithm OBJECT-TYPE
SYNTAX INTEGER {
none (1), -- Load sharing is disabled
original (2),
tunnel (3),
universal(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the CEF Load balancing algorithm.
Setting this object to none(1) will disable
the Load sharing for the specified entry.
CEF load balancing can be enabled by setting
this object to one of following Algorithms:
original(2) : This algorithm is based on a
source and destination hash
tunnel(3) : This algorithm is used in
tunnels environments or in
environments where there are
only a few source
universal(4) : This algorithm uses a source and
destination and ID hash
If the value of this object is set to 'tunnel'
or 'universal', then the FIXED ID for these
algorithms may be specified by the managed
object cefLoadSharingID.
"
::= { cefCfgEntry 6 }
cefCfgLoadSharingID OBJECT-TYPE
SYNTAX Unsigned32(0 | 1..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Fixed ID associated with the managed object
cefCfgLoadSharingAlgorithm. The hash of this object
value may be used by the Load Sharing Algorithm.
The value of this object is not relevant and will
be set to zero if the value of managed object
cefCfgLoadSharingAlgorithm is set to none(1) or original(2).
The default value of this object is calculated by
the device at the time of initialization."
::= { cefCfgEntry 7 }
cefCfgTrafficStatsLoadInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The interval time over which the CEF traffic statistics
are collected."
::= { cefCfgEntry 8 }
cefCfgTrafficStatsUpdateRate OBJECT-TYPE
SYNTAX Unsigned32(0 | 1..65535)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The frequency with which the line card sends the
traffic load statistics to the Router Processor.
Setting the value of this object to 0 will disable
the CEF traffic statistics collection."
::= { cefCfgEntry 9 }
cefResourceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains global resource
information of CEF on the Managed device."
::= { cefGlobal 2 }
cefResourceEntry OBJECT-TYPE
SYNTAX CefResourceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If the Managed device supports CEF,
each entry contains the CEF Resource
parameters for the managed entity.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex }
::= { cefResourceTable 1}
CefResourceEntry ::= SEQUENCE {
cefResourceMemoryUsed Gauge32,
cefResourceFailureReason CefFailureReason
}
cefResourceMemoryUsed OBJECT-TYPE
SYNTAX Gauge32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the number of bytes from
the Processor Memory Pool that
are currently in use by CEF on the
managed entity."
::= { cefResourceEntry 1 }
cefResourceFailureReason OBJECT-TYPE
SYNTAX CefFailureReason
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CEF resource failure reason which may lead to CEF
being disabled on the managed entity."
::= { cefResourceEntry 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Interface Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefIntTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefIntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This Table contains interface specific
information of CEF on the Managed
device."
::= { cefInterface 1 }
cefIntEntry OBJECT-TYPE
SYNTAX CefIntEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the CEF attributes
associated with an interface.
The interface is instantiated by ifIndex.
Therefore, the interface index must have been
assigned, according to the applicable procedures,
before it can be meaningfully used.
Generally, this means that the interface must exist.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex, cefFIBIpVersion, ifIndex }
::= { cefIntTable 1}
CefIntEntry ::= SEQUENCE {
cefIntSwitchingState INTEGER,
cefIntLoadSharing INTEGER,
cefIntNonrecursiveAccouting INTEGER
}
cefIntSwitchingState OBJECT-TYPE
SYNTAX INTEGER {
cefEnabled (1),
distCefEnabled (2),
cefDisabled (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CEF switching State for the interface.
If CEF is enabled but distributed CEF(dCEF) is
disabled then CEF is in cefEnabled(1) state.
If distributed CEF is enabled, then CEF is in
distCefEnabled(2) state. The cefDisabled(3) state
indicates that CEF is disabled.
The CEF switching state is only applicable to the
received packet on the interface."
::= { cefIntEntry 1 }
cefIntLoadSharing OBJECT-TYPE
SYNTAX INTEGER {
perPacket (1),
perDestination (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of load sharing on the
interface.
perPacket(1) : Router to send data packets
over successive equal-cost paths
without regard to individual hosts
or user sessions.
perDestination(2) : Router to use multiple, equal-cost
paths to achieve load sharing
Load sharing is enabled by default
for an interface when CEF is enabled."
::= { cefIntEntry 2 }
cefIntNonrecursiveAccouting OBJECT-TYPE
SYNTAX INTEGER {
internal(1),
external(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The CEF accounting mode for the interface.
CEF prefix based non-recursive accounting
on an interface can be configured to store
the stats for non-recursive prefixes in a internal
or external bucket.
internal(1) : Count input traffic in the nonrecursive
internal bucket
external(2) : Count input traffic in the nonrecursive
external bucket
The value of this object will only be effective if
value of the object cefAccountingMap is set to enable
nonRecursive(1) accounting."
::= { cefIntEntry 3 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Peer Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefPeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entity acting as RP (Routing Processor) keeps
the CEF states for the line card entities and
communicates with the line card entities using
XDR. This Table contains the CEF information
related to peer entities on the managed device."
::= { cefPeer 1 }
cefPeerEntry OBJECT-TYPE
SYNTAX CefPeerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the CEF related attributes
associated with a CEF peer entity.
entPhysicalIndex and entPeerPhysicalIndex are
also indexes for this table which represents
entities of 'module' entPhysicalClass which are
capable of running CEF."
INDEX { entPhysicalIndex, entPeerPhysicalIndex }
::= { cefPeerTable 1}
CefPeerEntry ::= SEQUENCE {
entPeerPhysicalIndex PhysicalIndex,
cefPeerOperState INTEGER,
cefPeerNumberOfResets Counter32
}
entPeerPhysicalIndex OBJECT-TYPE
SYNTAX PhysicalIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entity index for the CEF peer entity.
Only the entities of 'module'
entPhysicalClass are included here."
::= { cefPeerEntry 1 }
cefPeerOperState OBJECT-TYPE
SYNTAX INTEGER {
peerDisabled (1),
peerUp (2),
peerHold (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current CEF operational state of the CEF peer entity.
Cef peer entity oper state will be peerDisabled(1) in
the following condition:
: Cef Peer entity encounters fatal error i.e. resource
allocation failure, ipc failure etc
: When a reload/delete request is received from the Cef
Peer Entity
Once the peer entity is up and no fatal error is encountered,
then the value of this object will transits to the peerUp(3)
state.
If the Cef Peer entity is in held stage, then the value
of this object will be peerHold(3). Cef peer entity can only
transit to peerDisabled(1) state from the peerHold(3) state."
::= { cefPeerEntry 2 }
cefPeerNumberOfResets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the session with CEF peer entity
has been reset."
::= { cefPeerEntry 3 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Peer FIB Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefPeerFIBTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefPeerFIBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entity acting as RP (Routing Processor) keep
the CEF FIB states for the line card entities and
communicate with the line card entities using
XDR. This Table contains the CEF FIB State
related to peer entities on the managed device."
::= { cefPeer 2 }
cefPeerFIBEntry OBJECT-TYPE
SYNTAX CefPeerFIBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry contains the CEF FIB State
associated a CEF peer entity.
entPhysicalIndex and entPeerPhysicalIndex are
also indexes for this table which represents
entities of 'module' entPhysicalClass which are
capable of running CEF."
INDEX { entPhysicalIndex,
entPeerPhysicalIndex,
cefFIBIpVersion }
::= { cefPeerFIBTable 1}
CefPeerFIBEntry ::= SEQUENCE {
cefPeerFIBOperState INTEGER
}
cefPeerFIBOperState OBJECT-TYPE
SYNTAX INTEGER {
peerFIBDown (1),
peerFIBUp (2),
peerFIBReloadRequest(3),
peerFIBReloading (4),
peerFIBSynced (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current CEF FIB Operational State for the
CEF peer entity.
"
::= { cefPeerFIBEntry 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Prefix Length Stats Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefStatsPrefixLenTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefStatsPrefixLenEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the CEF stats based
on the Prefix Length."
::= { cefStats 1 }
cefStatsPrefixLenEntry OBJECT-TYPE
SYNTAX CefStatsPrefixLenEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device
and if CEF accounting is set to enable
prefix length based accounting (value of
cefCfgAccountingMap object in the
cefCfgEntry is set to enable 'prefixLength'
accounting), each entry contains the traffic
statistics for a prefix length.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefFIBIpVersion,
cefStatsPrefixLen }
::= { cefStatsPrefixLenTable 1}
CefStatsPrefixLenEntry ::= SEQUENCE {
cefStatsPrefixLen InetAddressPrefixLength,
cefStatsPrefixQueries Counter32,
cefStatsPrefixHCQueries Counter64,
cefStatsPrefixInserts Counter32,
cefStatsPrefixHCInserts Counter64,
cefStatsPrefixDeletes Counter32,
cefStatsPrefixHCDeletes Counter64,
cefStatsPrefixElements Gauge32,
cefStatsPrefixHCElements CounterBasedGauge64
}
cefStatsPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Length in bits of the Destination IP prefix.
As 0.0.0.0/0 is a valid prefix, hence
0 is a valid prefix length."
::= { cefStatsPrefixLenEntry 1 }
cefStatsPrefixQueries OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of queries received in the FIB database
for the specified IP prefix length."
::= { cefStatsPrefixLenEntry 2 }
cefStatsPrefixHCQueries OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of queries received in the FIB database
for the specified IP prefix length.
This object is a 64-bit version of
cefStatsPrefixQueries."
::= { cefStatsPrefixLenEntry 3 }
cefStatsPrefixInserts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of insert operations performed to the FIB
database for the specified IP prefix length."
::= { cefStatsPrefixLenEntry 4 }
cefStatsPrefixHCInserts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of insert operations performed to the FIB
database for the specified IP prefix length.
This object is a 64-bit version of
cefStatsPrefixInsert."
::= { cefStatsPrefixLenEntry 5 }
cefStatsPrefixDeletes OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of delete operations performed to the FIB
database for the specified IP prefix length."
::= { cefStatsPrefixLenEntry 6 }
cefStatsPrefixHCDeletes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of delete operations performed to the FIB
database for the specified IP prefix length.
This object is a 64-bit version of
cefStatsPrefixDelete."
::= { cefStatsPrefixLenEntry 7 }
cefStatsPrefixElements OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of elements in the FIB database for the
specified IP prefix length."
::= { cefStatsPrefixLenEntry 8 }
cefStatsPrefixHCElements OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of elements in the FIB database for the
specified IP prefix length.
This object is a 64-bit version of
cefStatsPrefixElements."
::= { cefStatsPrefixLenEntry 9 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Switching Stats Table
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefSwitchingStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefSwitchingStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies the CEF switch stats."
::= { cefStats 2 }
cefSwitchingStatsEntry OBJECT-TYPE
SYNTAX CefSwitchingStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If CEF is enabled on the Managed device,
each entry specifies the switching stats.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device.
entPhysicalIndex is also an index for this
table which represents entities of
'module' entPhysicalClass which are capable
of running CEF."
INDEX { entPhysicalIndex,
cefFIBIpVersion,
cefSwitchingIndex
}
::= { cefSwitchingStatsTable 1}
CefSwitchingStatsEntry ::= SEQUENCE {
cefSwitchingIndex Integer32,
cefSwitchingPath SnmpAdminString,
cefSwitchingDrop Counter32,
cefSwitchingHCDrop Counter64,
cefSwitchingPunt Counter32,
cefSwitchingHCPunt Counter64,
cefSwitchingPunt2Host Counter32,
cefSwitchingHCPunt2Host Counter64
}
cefSwitchingIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The locally arbitrary, but unique identifier associated
with this switching stats entry."
::= { cefSwitchingStatsEntry 1 }
cefSwitchingPath OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE(1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Switch path where the feature was executed.
Available switch paths are platform-dependent.
Following are the examples of switching paths:
RIB : switching with CEF assistance
Low-end switching (LES) : CEF switch path
PAS : CEF turbo switch path.
"
::= { cefSwitchingStatsEntry 2 }
cefSwitchingDrop OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets dropped by CEF."
::= { cefSwitchingStatsEntry 3 }
cefSwitchingHCDrop OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets dropped by CEF.
This object is a 64-bit version of cefSwitchingDrop."
::= { cefSwitchingStatsEntry 4 }
cefSwitchingPunt OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that could not be switched
in the normal path and were punted to the
next-fastest switching vector."
::= { cefSwitchingStatsEntry 5 }
cefSwitchingHCPunt OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that could not be switched
in the normal path and were punted to the
next-fastest switching vector.
This object is a 64-bit version of cefSwitchingPunt."
::= { cefSwitchingStatsEntry 6 }
cefSwitchingPunt2Host OBJECT-TYPE
SYNTAX Counter32
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that could not be switched
in the normal path and were punted to the host
(process switching path).
For most of the switching paths, the value of
this object may be similar to cefSwitchingPunt."
::= { cefSwitchingStatsEntry 7 }
cefSwitchingHCPunt2Host OBJECT-TYPE
SYNTAX Counter64
UNITS "packets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that could not be switched
in the normal path and were punted to the host
(process switching path).
For most of the switching paths, the value of
this object may be similar to cefSwitchingPunt.
This object is a 64-bit version of cefSwitchingPunt2Host."
::= { cefSwitchingStatsEntry 8 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF IP Prefix Consistency Checker Group
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefCCGlobalTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefCCGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains CEF consistency checker
(CC) global parameters for the managed device."
::= { cefCC 1 }
cefCCGlobalEntry OBJECT-TYPE
SYNTAX CefCCGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If the managed device supports CEF,
each entry contains the global consistency
checker parameter for the managed device.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device."
INDEX { cefFIBIpVersion }
::= { cefCCGlobalTable 1}
CefCCGlobalEntry ::= SEQUENCE {
cefCCGlobalAutoRepairEnabled TruthValue,
cefCCGlobalAutoRepairDelay Unsigned32,
cefCCGlobalAutoRepairHoldDown Unsigned32,
cefCCGlobalErrorMsgEnabled TruthValue,
cefCCGlobalFullScanAction CefCCAction,
cefCCGlobalFullScanStatus CefCCStatus
}
cefCCGlobalAutoRepairEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Once an inconsistency has been detected,
CEF has the ability to repair the problem.
This object indicates the status of auto-repair
function for the consistency checkers."
::= { cefCCGlobalEntry 1 }
cefCCGlobalAutoRepairDelay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indiactes how long the consistency checker
waits to fix an inconsistency.
The value of this object has no effect when the
value of object cefCCGlobalAutoRepairEnabled
is 'false'."
::= { cefCCGlobalEntry 2 }
cefCCGlobalAutoRepairHoldDown OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates how long the consistency checker
waits to re-enable auto-repair after
auto-repair runs.
The value of this object has no effect when the
value of object cefCCGlobalAutoRepairEnabled
is 'false'."
::= { cefCCGlobalEntry 3 }
cefCCGlobalErrorMsgEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the consistency checker to generate
an error message when it detects an inconsistency."
::= { cefCCGlobalEntry 4 }
cefCCGlobalFullScanAction OBJECT-TYPE
SYNTAX CefCCAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting the value of this object to ccActionStart(1)
will start the full scan consistency checkers.
The Management station should poll the
cefCCGlobalFullScanStatus object to get the
state of full-scan operation.
Once the full-scan operation completes (value
of cefCCGlobalFullScanStatus object is ccStatusDone(3)),
the Management station should retrieve the values of the
related stats object from the cefCCTypeTable.
Setting the value of this object to ccActionAbort(2) will
abort the full-scan operation.
The value of this object can't be set to ccActionStart(1),
if the value of object cefCCGlobalFullScanStatus
is ccStatusRunning(2).
The value of this object will be set to cefActionNone(1)
when the full scan consistency checkers have never
been activated.
A Management Station cannot set the value of
this object to cefActionNone(1)."
DEFVAL { ccActionNone }
::= { cefCCGlobalEntry 5 }
cefCCGlobalFullScanStatus OBJECT-TYPE
SYNTAX CefCCStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the full scan consistency
checker request."
::= { cefCCGlobalEntry 6 }
--
-- Consistency Checker Type Table
--
cefCCTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefCCTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains CEF consistency
checker types specific parameters on the managed device.
All detected inconsistency are signaled to the
Management Station via cefInconsistencyDetection
notification.
"
::= { cefCC 2 }
cefCCTypeEntry OBJECT-TYPE
SYNTAX CefCCTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If the managed device supports CEF,
each entry contains the consistency
checker statistics for a consistency
checker type.
A row may exist for each IP version type
(v4 and v6) depending upon the IP version
supported on the device."
INDEX { cefFIBIpVersion,
cefCCType }
::= { cefCCTypeTable 1}
CefCCTypeEntry ::= SEQUENCE {
cefCCType CefCCType,
cefCCEnabled TruthValue,
cefCCCount Unsigned32,
cefCCPeriod Unsigned32,
cefCCQueriesSent Counter32,
cefCCQueriesIgnored Counter32,
cefCCQueriesChecked Counter32,
cefCCQueriesIterated Counter32
}
cefCCType OBJECT-TYPE
SYNTAX CefCCType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Type of the consistency checker."
::= { cefCCTypeEntry 1 }
cefCCEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables the passive consistency checker.
Passive consistency checkers are disabled
by default.
Full-scan consistency checkers are always enabled.
An attempt to set this object to 'false' for
an active consistency checker will result in
'wrongValue' error."
::= { cefCCTypeEntry 2 }
cefCCCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of prefixes to check per scan.
The default value for this object
depends upon the consistency checker type.
The value of this object will be irrelevant
for some of the consistency checkers and
will be set to 0.
A Management Station cannot set the value of
this object to 0."
::= { cefCCTypeEntry 3 }
cefCCPeriod OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The period between scans for the consistency
checker."
::= { cefCCTypeEntry 4 }
cefCCQueriesSent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of prefix consistency queries sent to CEF
forwarding databases by this consistency checker."
::= { cefCCTypeEntry 5 }
cefCCQueriesIgnored OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of prefix consistency queries for which
the consistency checks were not performed by this
consistency checker. This may be because of some
internal error or resource failure."
::= { cefCCTypeEntry 6 }
cefCCQueriesChecked OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of prefix consistency queries processed by this
consistency checker."
::= { cefCCTypeEntry 7 }
cefCCQueriesIterated OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of prefix consistency queries iterated back to
the master database by this consistency checker."
::= { cefCCTypeEntry 8 }
--
-- Inconsistency Record Table
--
cefInconsistencyRecordTable OBJECT-TYPE
SYNTAX SEQUENCE OF CefInconsistencyRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains CEF inconsistency
records."
::= { cefCC 3 }
cefInconsistencyRecordEntry OBJECT-TYPE
SYNTAX CefInconsistencyRecordEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"If the managed device supports CEF,
each entry contains the inconsistency
record."
INDEX { cefFIBIpVersion,
cefInconsistencyRecId }
::= { cefInconsistencyRecordTable 1}
CefInconsistencyRecordEntry ::= SEQUENCE {
cefInconsistencyRecId Integer32,
cefInconsistencyPrefixType InetAddressType,
cefInconsistencyPrefixAddr InetAddress,
cefInconsistencyPrefixLen InetAddressPrefixLength,
cefInconsistencyVrfName MplsVpnId,
cefInconsistencyCCType CefCCType,
cefInconsistencyEntity EntPhysicalIndexOrZero,
cefInconsistencyReason INTEGER
}
cefInconsistencyRecId OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The locally arbitrary, but unique identifier associated
with this inconsistency record entry."
::= { cefInconsistencyRecordEntry 1 }
cefInconsistencyPrefixType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The network prefix type associated with this inconsistency
record."
::= { cefInconsistencyRecordEntry 2 }
cefInconsistencyPrefixAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The network prefix address associated with this
inconsistency record.
The type of this address is determined by
the value of the cefInconsistencyPrefixType object."
::= { cefInconsistencyRecordEntry 3 }
cefInconsistencyPrefixLen OBJECT-TYPE
SYNTAX InetAddressPrefixLength
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Length in bits of the inconsistency address prefix."
::= { cefInconsistencyRecordEntry 4 }
cefInconsistencyVrfName OBJECT-TYPE
SYNTAX MplsVpnId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Vrf name associated with this inconsistency record."
::= { cefInconsistencyRecordEntry 5 }
cefInconsistencyCCType OBJECT-TYPE
SYNTAX CefCCType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of consistency checker who generated this
inconsistency record."
::= { cefInconsistencyRecordEntry 6 }
cefInconsistencyEntity OBJECT-TYPE
SYNTAX EntPhysicalIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The entity for which this inconsistency record was
generated. The value of this object will be
irrelevant and will be set to 0 when the inconsisency
record is applicable for all the entities."
::= { cefInconsistencyRecordEntry 7 }
cefInconsistencyReason OBJECT-TYPE
SYNTAX INTEGER {
missing (1),
checksumErr(2),
unknown (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for generating this inconsistency record.
missing(1): the prefix is missing
checksumErr(2): checksum error was found
unknown(3): reason is unknown
"
::= { cefInconsistencyRecordEntry 8 }
--
-- Global objects for CEF Inconsistency
--
-- last change time stamp for the whole MIB
entLastInconsistencyDetectTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime at the time an
inconsistency is detecetd."
::= { cefCC 4 }
cefInconsistencyReset OBJECT-TYPE
SYNTAX CefCCAction
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting the value of this object to ccActionStart(1)
will reset all the active consistency checkers.
The Management station should poll the
cefInconsistencyResetStatus object to get the
state of inconsistency reset operation.
This operation once started, cannot be aborted.
Hence, the value of this object cannot be set to
ccActionAbort(2).
The value of this object can't be set to ccActionStart(1),
if the value of object cefInconsistencyResetStatus
is ccStatusRunning(2).
"
DEFVAL { ccActionNone }
::= { cefCC 5 }
cefInconsistencyResetStatus OBJECT-TYPE
SYNTAX CefCCStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the consistency reset
request."
::= { cefCC 6 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- The CEF Notif Control Group
--
-- This group of objects controls the sending of CEF Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefResourceFailureNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not a notification should be
generated on the detection of CEF resource Failure."
::= { cefNotifCntl 1 }
cefPeerStateChangeNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not a notification should be
generated on the detection of CEF peer state change."
::= { cefNotifCntl 2 }
cefPeerFIBStateChangeNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether or not a notification should be
generated on the detection of CEF FIB peer state change."
::= { cefNotifCntl 3 }
cefNotifThrottlingInterval OBJECT-TYPE
SYNTAX Integer32 (0 | 1..3600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object controls the generation of the
cefInconsistencyDetection notification.
If this object has a value of zero,
then the throttle control is disabled.
If this object has a non-zero value, then the agent
must not generate more than one
cefInconsistencyDetection 'notification-event' in the
indicated period, where a 'notification-event' is the
transmission of a single trap
or inform PDU to a list of notification destinations.
If additional inconsistency is detected within the
throttling period, then notification-events
for these inconsistencies should be suppressed by the agent
until the current throttling period expires. At the end of a
throttling period, one notification-event should be generated
if any inconsistency was detected since the start of the
throttling period. In such a case, another throttling period
is started right away.
An NMS should periodically poll cefInconsistencyRecordTable
to detect any missed cefInconsistencyDetection
notification-events, e.g., due to throttling or transmission
loss.
If cefNotifThrottlingInterval notification generation
is enabled, the suggested default throttling period is
60 seconds, but generation of the cefInconsistencyDetection
notification should be disabled by default.
If the agent is capable of storing non-volatile
configuration, then the value of this object must be
restored after a re-initialization of the management
system.
The actual transmission of notifications is controlled
via the MIB modules in RFC 3413."
DEFVAL { 0 }
::= { cefNotifCntl 4 }
cefInconsistencyNotifEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether cefInconsistencyDetection notification
should be generated for this managed device."
::= { cefNotifCntl 5 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- CEF Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefResourceFailure NOTIFICATION-TYPE
OBJECTS {
cefResourceFailureReason
}
STATUS current
DESCRIPTION
"A cefResourceFailure notification is generated when
CEF resource failure on the managed entity is
detected. The reason for this failure is indicated
by cefResourcefFailureReason."
::= { ciscoCefMIBNotifs 1 }
cefPeerStateChange NOTIFICATION-TYPE
OBJECTS {
cefPeerOperState
}
STATUS current
DESCRIPTION
"A cefPeerStateChange notification is generated if
change in cefPeerOperState is detected for the
peer entity."
::= { ciscoCefMIBNotifs 2 }
cefPeerFIBStateChange NOTIFICATION-TYPE
OBJECTS {
cefPeerFIBOperState
}
STATUS current
DESCRIPTION
"A cefPeerFIBStateChange notification is generated if
change in cefPeerFIBOperState is detected for the
peer entity."
::= { ciscoCefMIBNotifs 3 }
cefInconsistencyDetection NOTIFICATION-TYPE
OBJECTS {
entLastInconsistencyDetectTime
}
STATUS current
DESCRIPTION
"A cefInconsistencyDetection notification is generated
when CEF consistency checkers detects an inconsistent
prefix in one of the CEF forwarding databases.
Note that the generation of cefInconsistencyDetection
notifications is throttled by the agent, as specified
by the 'cefNotifThrottlingInterval' object."
::= { ciscoCefMIBNotifs 4 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance Information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefMIBGroups OBJECT IDENTIFIER
::= { ciscoCefMIBConform 1 }
cefMIBCompliances OBJECT IDENTIFIER
::= { ciscoCefMIBConform 2 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Compliance Statements
-- +++++++++++++++++++++++++++++++++++ ++++++++++++++++++++
cefMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP Agents which
implement this MIB."
MODULE -- this module
MANDATORY-GROUPS { cefGroup,
cefNotifCntlGroup,
cefNotificationGroup
}
GROUP cefDistributedGroup
DESCRIPTION
"This group should be supported on the agents
which support distributed CEF (dCEF)."
GROUP cefHCStatsGroup
DESCRIPTION
"This group should be supported on the agents
which support 64-bit counters."
-- OBJECT cefFESelectionAdjNextHopAddrType
-- SYNTAX InetAddressType { ipv4(1), ipv6(2) }
-- DESCRIPTION
-- "An implementation is required to support global IPv4
-- and/or IPv6 addresses, depending on its support for
-- IPv4 and IPv6."
OBJECT cefFESelectionAdjNextHopAddr
SYNTAX InetAddress (SIZE(4|16))
DESCRIPTION
"An implementation is required to support global IPv4
and/or IPv6 addresses, depending on its support for
IPv4 and IPv6."
-- OBJECT cefInconsistencyPrefixType
-- SYNTAX InetAddressType { ipv4(1), ipv6(2) }
-- DESCRIPTION
-- "An implementation is required to support global IPv4
-- and/or IPv6 addresses, depending on its support for
-- IPv4 and IPv6."
OBJECT cefInconsistencyPrefixAddr
SYNTAX InetAddress (SIZE(4|16))
DESCRIPTION
"An implementation is required to support global IPv4
and/or IPv6 addresses, depending on its support for
IPv4 and IPv6."
::= { cefMIBCompliances 1 }
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Units of Conformance
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++
cefGroup OBJECT-GROUP
OBJECTS {
cefFIBSummaryFwdPrefixes,
cefPrefixForwardingInfo,
cefPrefixPkts,
cefPrefixBytes,
cefPrefixInternalNRPkts,
cefPrefixInternalNRBytes,
cefPrefixExternalNRPkts,
cefPrefixExternalNRBytes,
cefLMPrefixSpinLock,
cefLMPrefixState,
cefLMPrefixAddr,
cefLMPrefixLen,
cefLMPrefixRowStatus,
cefPathType,
cefPathInterface,
cefPathNextHopAddr,
cefPathRecurseVrfName,
cefAdjSummaryComplete,
cefAdjSummaryIncomplete,
cefAdjSummaryFixup,
cefAdjSummaryRedirect,
cefAdjSource,
cefAdjEncap,
cefAdjFixup,
cefAdjMTU,
cefAdjForwardingInfo,
cefAdjPkts,
cefAdjBytes,
cefFESelectionSpecial,
cefFESelectionLabels,
cefFESelectionAdjLinkType,
cefFESelectionAdjInterface,
cefFESelectionAdjNextHopAddrType,
cefFESelectionAdjNextHopAddr,
cefFESelectionAdjConnId,
cefFESelectionVrfName,
cefFESelectionWeight,
cefCfgAdminState,
cefCfgOperState,
cefCfgAccountingMap,
cefCfgLoadSharingAlgorithm,
cefCfgLoadSharingID,
cefCfgTrafficStatsLoadInterval,
cefCfgTrafficStatsUpdateRate,
cefResourceMemoryUsed,
cefResourceFailureReason,
cefIntSwitchingState,
cefIntLoadSharing,
cefIntNonrecursiveAccouting,
cefStatsPrefixQueries,
cefStatsPrefixInserts,
cefStatsPrefixDeletes,
cefStatsPrefixElements,
cefSwitchingPath,
cefSwitchingDrop,
cefSwitchingPunt,
cefSwitchingPunt2Host
}
STATUS current
DESCRIPTION
"This group consists of all the managed objects
which are applicable to CEF irrespective
of the value of object cefDistributionOperState."
::= { cefMIBGroups 1 }
cefDistributedGroup OBJECT-GROUP
OBJECTS {
cefCfgDistributionAdminState,
cefCfgDistributionOperState,
cefPeerOperState,
cefPeerNumberOfResets,
cefPeerFIBOperState,
cefCCGlobalAutoRepairEnabled,
cefCCGlobalAutoRepairDelay,
cefCCGlobalAutoRepairHoldDown,
cefCCGlobalErrorMsgEnabled,
cefCCGlobalFullScanStatus,
cefCCGlobalFullScanAction,
cefCCEnabled,
cefCCCount,
cefCCPeriod,
cefCCQueriesSent,
cefCCQueriesIgnored,
cefCCQueriesChecked,
cefCCQueriesIterated,
entLastInconsistencyDetectTime,
cefInconsistencyPrefixType,
cefInconsistencyPrefixAddr,
cefInconsistencyPrefixLen,
cefInconsistencyVrfName,
cefInconsistencyCCType,
cefInconsistencyEntity,
cefInconsistencyReason,
cefInconsistencyReset,
cefInconsistencyResetStatus
}
STATUS current
DESCRIPTION
"This group consists of all the Managed objects
which are only applicable to CEF is
the value of object cefDistributionOperState
is 'up'."
::= { cefMIBGroups 2 }
cefHCStatsGroup OBJECT-GROUP
OBJECTS {
cefPrefixHCPkts,
cefPrefixHCBytes,
cefPrefixInternalNRHCPkts,
cefPrefixInternalNRHCBytes,
cefPrefixExternalNRHCPkts,
cefPrefixExternalNRHCBytes,
cefAdjHCPkts,
cefAdjHCBytes,
cefStatsPrefixHCQueries,
cefStatsPrefixHCInserts,
cefStatsPrefixHCDeletes,
cefStatsPrefixHCElements,
cefSwitchingHCDrop,
cefSwitchingHCPunt,
cefSwitchingHCPunt2Host
}
STATUS current
DESCRIPTION
"This group consists of all the 64-bit
counter objects which are applicable to
CEF irrespective of the value of object
cefDistributionOperState."
::= { cefMIBGroups 3 }
cefNotifCntlGroup OBJECT-GROUP
OBJECTS {
cefResourceFailureNotifEnable,
cefPeerStateChangeNotifEnable,
cefPeerFIBStateChangeNotifEnable,
cefNotifThrottlingInterval,
cefInconsistencyNotifEnable
}
STATUS current
DESCRIPTION
"This group of objects controls the sending of
CEF Notifications."
::= { cefMIBGroups 5 }
cefNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
cefResourceFailure,
cefPeerStateChange,
cefPeerFIBStateChange,
cefInconsistencyDetection
}
STATUS current
DESCRIPTION
"This group contains the notifications for the CEF MIB."
::= { cefMIBGroups 6 }
END
|