1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
|
Network Working Group M. Greene
Request for Comments: 2677 Contractor
Category: Standards Track J. Cucchiara
IronBridge Networks
J. Luciani
Bay Networks
August 1999
Definitions of Managed Objects for
the NBMA Next Hop Resolution Protocol (NHRP)
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (1999). All Rights Reserved.
Abstract
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in the Internet community.
In particular, it describes managed objects for the Next Hop
Resolution Protocol (NHRP) as defined in RFC 2332.
Table of Contents
1 Introduction ................................................. 2
2 The SNMP Management Framework ................................ 2
3 Structure of the MIB ......................................... 3
3.1 The NHRP General Group ..................................... 3
3.1.1 The NHRP Cache Table ..................................... 4
3.1.2 The NHRP Purge Request Table ............................. 4
3.2 The NHRP Client Group ...................................... 4
3.2.1 The NHRP Client Table .................................... 4
3.2.2 The NHRP Client Registration Table ....................... 5
3.2.3 The NHRP Client NHS Table ................................ 5
3.2.4 The NHRP Client Statistics Table ......................... 5
3.3 The NHRP Server Group ...................................... 5
3.3.1 The NHRP Server Table .................................... 5
3.3.2 The NHRP Server Cache Table .............................. 5
3.3.3 The NHRP Server NHC Table ................................ 6
Greene, et al. Standards Track [Page 1]
^L
RFC 2677 NHRP MIB August 1999
3.3.4 The NHRP Server Statistics Table ......................... 6
4 NBMA Next Hop Resolution Protocol MIB Definitions ............ 6
5 IANA Considerations .......................................... 62
6 Security ..................................................... 62
7 Intellectual Property ........................................ 63
8 Acknowledgments .............................................. 63
9 References ................................................... 64
10 Authors' Addresses .......................................... 66
11 Full Copyright Statement .................................... 67
1. Introduction
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in the Internet community.
In particular, it describes managed objects for the Next Hop
Resolution Protocol (NHRP) as defined in RFC 2332 [17].
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [21].
2. The SNMP Management Framework
The SNMP Management Framework presently consists of five major
components:
o An overall architecture, described in RFC 2571 [1].
o Mechanisms for describing and naming objects and events for the
purpose of management. The first version of this Structure of
Management Information (SMI) is called SMIv1 and described in
STD 16, RFC 1155 [2], STD 16, RFC 1212 [3] and RFC 1215 [4]. The
second version, called SMIv2, is described in STD 58, RFC 2578
[5], STD 58, RFC 2579 [6] and STD 58, RFC 2580 [7].
o Message protocols for transferring management information. The
first version of the SNMP message protocol is called SNMPv1 and
described in STD 15, RFC 1157 [8]. A second version of the SNMP
message protocol, which is not an Internet standards track
protocol, is called SNMPv2c and described in RFC 1901 [9] and RFC
1906 [10]. The third version of the message protocol is called
SNMPv3 and described in RFC 1906 [10], RFC 2572 [11] and RFC 2574
[12].
Greene, et al. Standards Track [Page 2]
^L
RFC 2677 NHRP MIB August 1999
o Protocol operations for accessing management information. The
first set of protocol operations and associated PDU formats is
described in STD 15, RFC 1157 [8]. A second set of protocol
operations and associated PDU formats is described in RFC 1905
[13].
o A set of fundamental applications described in RFC 2573 [14] and
the view-based access control mechanism described in RFC 2575
[15].
A more detailed introduction to the current SNMP Management Framework
can be found in RFC 2570 [16].
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the mechanisms defined in the SMI.
This memo specifies a MIB module that is compliant to the SMIv2. A
MIB conforming to the SMIv1 can be produced through the appropriate
translations. The resulting translated MIB must be semantically
equivalent, except where objects or events are omitted because no
translation is possible (use of Counter64). Some machine readable
information in SMIv2 will be converted into textual descriptions in
SMIv1 during the translation process. However, this loss of machine
readable information is not considered to change the semantics of the
MIB.
3. Structure of the MIB
The NHRP MIB contains three groups: the General Group, the Client
Group, and the Server Group.
3.1. The NHRP General Group
The General Group contains objects that apply to both clients and
servers -- in particular the nhrpNextIndex scalar object, the NHRP
Cache Table and the NHRP Purge Request Table.
The nhrpNextIndex scalar object is used to provide unique indices for
the nhprClientIndex in the nhrpClientTable and the nhrpServerIndex in
the nhrpServerTable. If used consistently, this object may prevent
conflicts when multiple managers attempt to create rows
simultaneously in the same table.
Greene, et al. Standards Track [Page 3]
^L
RFC 2677 NHRP MIB August 1999
3.1.1. The NHRP Cache Table
The NHRP Cache Table represents the internetwork layer address to
NBMA address cache that is maintained by both NHRP clients and NHRP
servers.
The NHRP Cache Table contains an ifIndex as part of the Index Clause.
This ifIndex represents the use of a generic ifIndex, such that the
value of this ifIndex SHOULD reflect a specific NBMA subnetwork
related interface as determined by an implementation. For example,
assuming that the NBMA subnetwork is ATM, then it is up to the
implementors of this MIB to determine their own ATM interface
layering (assuming compliance with the IF-MIB, RFC 2233 [18] and the
ATM-MIB, RFC 2515 [19]). In other words, assuming that the NBMA
subnetwork is ATM, the ifIndex in the NHRP Cache Table would
represent the ifIndex containing or consisting of the VC (or
shortcut) denoted by this Table entry.
The indexing scheme for the NHRP Cache Table is very similar to the
MPC Ingress Cache Table and the MPS Ingress Cache Table in the
Multiprotocol Over ATM (MPOA) MIB [23]. This MIB and the MPOA MIB
were designed to be complementary and non-overlapping. The MPOA MIB
should also support this MIB. The MPOA MIB was designed prior to
this MIB, and was designed by the LANE/MPOA Working Group in the ATM
FORUM. The indexing scheme of the NHRP Cache Table (and the NHRP
Server Cache Table) reflect the indexing scheme of the MPC Ingress
Cache Table and the MPS Ingress Cache Table. Although, other
indexing schemes could have been used for the NHRP Cache Table, a
consistent indexing scheme between these tables was thought to be
more advantageous from an implementation standpoint.
3.1.2. The NHRP Purge Request Table
The NHRP Purge Request Table is a way to track Purge Request
Information.
3.2. The NHRP Client Group
The Client Group contains objects that only apply to NHRP clients
(NHCs).
3.2.1. The NHRP Client Table
The NHRP Client Table contains entries for NHRP Next Hop Clients
(NHCs) associated with this agent. Each row in the table represents
a single NHC. The RequestID used in Registration requests needs to
be saved to non-volatile storage. Depending upon the implementation,
Greene, et al. Standards Track [Page 4]
^L
RFC 2677 NHRP MIB August 1999
this may or may not impact how the StorageType is used. For a
complete description of how the Registration RequestID is used, see
Section 5.2.3 of [17].
3.2.2. The NHRP Client Registration Table
The NHRP Client Registration Table contains information on
registration requests which need to be maintained by the Clients.
Each entry in this table represents a single registration request.
Note: since the NHRP specification does not mandate a refresh
algorithm, this table omits refresh information, however, this table
does contain information for all the registration requests which need
to be maintained by the NHRP Clients.
3.2.3. The NHRP Client NHS Table
The NHRP Client NHS Table contains the NBMA subnetwork addresses of
servers configured for use by the client. By default, the agent will
add an entry to this table which corresponds to the client's default
router.
3.2.4. The NHRP Client Statistics Table
The NHRP Client Statistics Table contains NHRP statistics maintained
by a client. These statistics include counters on requests and
replies, as well as counters for errors which are encountered by the
Clients.
3.3. The NHRP Server Group
The Server Group contains objects that only apply to NHRP servers
(NHSes).
3.3.1. The NHRP Server Table
The NHRP Server Table contains entries for each server associated
with this agent.
3.3.2. The NHRP Server Cache Table
The NHRP Server Cache Table contains additional objects that a server
keeps for each entry in its cache. This table extends the NHRP Cache
Table defined in the General Group.
Greene, et al. Standards Track [Page 5]
^L
RFC 2677 NHRP MIB August 1999
3.3.3. The NHRP Server NHC Table
This table contains information about all the Clients known to the
Servers.
3.3.4. The NHRP Server Statistics Table
The NHRP Server Statistics Table contains NHRP statistics maintained
by a server. These statistics include counters on requests and
replies, as well as counters for errors which are encountered by the
Servers.
4. NBMA Next Hop Resolution Protocol MIB Definitions
NHRP-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, mib-2, Integer32,
Counter32, Unsigned32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, TruthValue, RowStatus, StorageType,
TimeStamp
FROM SNMPv2-TC
ifIndex
FROM IF-MIB
AddressFamilyNumbers
FROM IANA-ADDRESS-FAMILY-NUMBERS-MIB
;
nhrpMIB MODULE-IDENTITY
LAST-UPDATED "9908260000Z" -- August 26, 1999
ORGANIZATION "Internetworking Over NBMA (ion) Working Group"
CONTACT-INFO
"Maria Greene (maria@xedia.com)
Contractor
Joan Cucchiara (joan@ironbridgenetworks.com)
IronBridge Networks
James V. Luciani (luciani@baynetworks.com)
Bay Networks"
Greene, et al. Standards Track [Page 6]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"This MIB contains managed object definitions for the Next
Hop Resolution Procol, NHRP, as defined in RFC 2332 [17]."
-- revision history
REVISION "9908260000Z" -- August 26, 1999
DESCRIPTION "Initial version, published as RFC 2677."
::= { mib-2 71 }
--****************************************************************
-- NHRP Textual Conventions
--****************************************************************
NhrpGenAddr ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of an internetwork layer or NBMA address."
SYNTAX OCTET STRING (SIZE (0..64))
nhrpObjects OBJECT IDENTIFIER ::= { nhrpMIB 1 }
--****************************************************************
-- NHRP General (Client and Server) Objects
--****************************************************************
nhrpGeneralObjects OBJECT IDENTIFIER ::= { nhrpObjects 1 }
--
-- The following scalar is to be used to
-- provided indices for the
-- nhrpClientTable, and/or the nhrpServerTable.
--
nhrpNextIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This scalar is used for creating rows in the
nhrpClientTable and the nhrpServerTable.
The value of this variable is a currently unused value
for nhrpClientIndex and nhrpServerIndex.
Greene, et al. Standards Track [Page 7]
^L
RFC 2677 NHRP MIB August 1999
The value returned when reading this variable must be
unique for the NHC's and NHS's indices associated with
this row. Subsequent attempts to read this variable
must return different values.
NOTE: this object exists in the General Group because
it is to be used in establishing rows in the
nhrpClientTable and the nhrpServerTable. In other words,
the value retrieved from this object could become the
value of nhrpClientIndex and nhprServerIndex.
In the situation of an agent re-initialization the value
of this object must be saved in non-volatile storage.
This variable will return the special value 0 if no new
rows can be created."
::= { nhrpGeneralObjects 1 }
--
-- The NHRP Cache Table
--
nhrpCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains mappings between internetwork layer
addresses and NBMA subnetwork layer addresses."
::= { nhrpGeneralObjects 2 }
nhrpCacheEntry OBJECT-TYPE
SYNTAX NhrpCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A cached mapping between an internetwork layer address
and an NBMA address. Entries can be created by the
network administrator using the nhrpCacheRowStatus
column, or they may be added dynamically based on
protocol operation (including NHRP, SCSP, and others,
such as ATMARP).
When created based by NHRP protocol operations
this entry is largely based on contents contained in
the Client Information Entry (CIE).
Greene, et al. Standards Track [Page 8]
^L
RFC 2677 NHRP MIB August 1999
Zero or more Client Information Entries (CIEs) may be
included in the NHRP Packet. For a complete description
of the CIE, refer to Section 5.2.0.1 of
RFC 2332 [17]."
INDEX {
nhrpCacheInternetworkAddrType,
nhrpCacheInternetworkAddr,
ifIndex,
nhrpCacheIndex
}
::= { nhrpCacheTable 1 }
NhrpCacheEntry ::= SEQUENCE {
nhrpCacheInternetworkAddrType AddressFamilyNumbers,
nhrpCacheInternetworkAddr NhrpGenAddr,
nhrpCacheIndex Unsigned32,
nhrpCachePrefixLength Integer32,
nhrpCacheNextHopInternetworkAddr NhrpGenAddr,
nhrpCacheNbmaAddrType AddressFamilyNumbers,
nhrpCacheNbmaAddr NhrpGenAddr,
nhrpCacheNbmaSubaddr NhrpGenAddr,
nhrpCacheType INTEGER,
nhrpCacheState INTEGER,
nhrpCacheHoldingTimeValid TruthValue,
nhrpCacheHoldingTime Unsigned32,
nhrpCacheNegotiatedMtu Integer32,
nhrpCachePreference Integer32,
nhrpCacheStorageType StorageType,
nhrpCacheRowStatus RowStatus
}
nhrpCacheInternetworkAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The internetwork layer address type of this Next Hop
Resolution Cache entry. The value of this object indicates
how to interpret the values of nhrpCacheInternetworkAddr
and nhrpCacheNextHopInternetworkAddr."
::= { nhrpCacheEntry 1 }
nhrpCacheInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS not-accessible
STATUS current
Greene, et al. Standards Track [Page 9]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The value of the internetwork address of the
destination."
::= { nhrpCacheEntry 2 }
nhrpCacheIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for this entry that has local
significance within the scope of the General
Group. This identifier is used here to
uniquely identify this row, and also used
in the 'nhrpPurgeTable' for the value of
the 'nhrpPurgeCacheIdentifier'."
::= { nhrpCacheEntry 3 }
nhrpCachePrefixLength OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bits that define the internetwork layer
prefix associated with the nhrpCacheInternetworkAddr."
::= { nhrpCacheEntry 4 }
nhrpCacheNextHopInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the internetwork address of the next hop."
::= { nhrpCacheEntry 5 }
nhrpCacheNbmaAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NBMA address type. The value of this
object indicates how to interpret
the values of nhrpCacheNbmaAddr and
nhrpCacheNbmaSubaddr."
::= { nhrpCacheEntry 6 }
Greene, et al. Standards Track [Page 10]
^L
RFC 2677 NHRP MIB August 1999
nhrpCacheNbmaAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the NBMA subnetwork address of the next
hop."
::= { nhrpCacheEntry 7 }
nhrpCacheNbmaSubaddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the NBMA subaddress of the next hop. If
there is no subaddress concept for the NBMA address
family, this value will be a zero-length OCTET STRING."
::= { nhrpCacheEntry 8 }
nhrpCacheType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
register(2),
resolveAuthoritative(3),
resoveNonauthoritative(4),
transit(5),
administrativelyAdded(6),
atmarp(7),
scsp(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An indication of how this cache entry
was created. The values are:
'other(1)' The entry was added by some
other means.
'register(2)' In a server, added based on a
client registration.
'resolveAuthoritative(3)' In a client, added based on
receiving an Authoritative
NHRP Resolution Reply.
Greene, et al. Standards Track [Page 11]
^L
RFC 2677 NHRP MIB August 1999
'resolveNonauthoritative(4)' In a client, added based on
receiving a Nonauthoritative
NHRP Resolution Reply.
'transit(5)' In a transit server, added by
examining a forwarded NHRP
packet.
'administrativelyAdded(6)' In a client or server,
manually added by the
administrator. The
StorageType of this entry is
reflected in
'nhrpCacheStorageType'.
'atmarp(7)' The entry was added due to an
ATMARP.
'scsp(8)' The entry was added due to
SCSP.
When the entry is under creation using the
nhrpCacheRowStatus column, the only value that can be
specified by the administrator is 'administrativelyAdded'.
Attempting to set any other value will cause an
'inconsistentValue' error.
The value cannot be modified once the entry is active."
::= { nhrpCacheEntry 9 }
nhrpCacheState OBJECT-TYPE
SYNTAX INTEGER {
incomplete(1),
ackReply(2),
nakReply(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of the state of this entry. The values are:
'incomplete(1)' The client has sent a NHRP Resolution
Request but has not yet received the
NHRP Resolution Reply.
Greene, et al. Standards Track [Page 12]
^L
RFC 2677 NHRP MIB August 1999
'ackReply(2)' For a client or server, this is a
cached valid mapping.
'nakReply(3)' For a client or server, this is a
cached NAK mapping."
::= { nhrpCacheEntry 10 }
nhrpCacheHoldingTimeValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"True(1) is returned if the value of
'nhrpCacheType' is not
'administrativelyAdded'. Since the
value of 'nhrpCacheType' was not
configured by a user, the value of
'nhrpCacheHoldingTime' is
considered valid. In other words, the value of
'nhrpCacheHoldingTime' represents
the Holding Time for the cache Entry.
If 'nhrpCacheType has been configured by a
user, (i.e. the value of 'nhrpCacheType' is
'administrativelyAdded') then false(2) will be returned.
This indicates that the value of
'nhrpCacheHoldingTime' is undefined because this row
could possibly be backed up in nonvolatile storage."
::= { nhrpCacheEntry 11 }
nhrpCacheHoldingTime OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the value of 'nhrpCacheHoldingTimeValid is
true(1) then this object represents the number
of seconds that the cache entry will remain in this
table. When this value reaches 0 (zero) the row should
be deleted.
If the value of 'nhrpCacheHoldingTimeValid is
false(2) then this object is undefined."
::= { nhrpCacheEntry 12 }
Greene, et al. Standards Track [Page 13]
^L
RFC 2677 NHRP MIB August 1999
nhrpCacheNegotiatedMtu OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum transmission unit (MTU) that was negotiated
or registered for this entity. In other words, this is the
actual MTU being used."
::= { nhrpCacheEntry 13 }
nhrpCachePreference OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object which reflects the Preference value of the
Client Information Entry (CIE).
Zero or more Client Information Entries (CIEs) may be
included in the NHRP Packet. One of the fields in the
CIE is the Preference. For a complete description of
the CIE, refer to Section 5.2.0.1 of RFC 2332 [17]."
REFERENCE
"Section 5.2.0.1 Mandatory Part Format, RFC 2332 [17]."
::= { nhrpCacheEntry 14 }
nhrpCacheStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This value only has meaning when the 'nhrpCacheType'
has the value of 'administrativelyAdded'.
When the row is created due to being
'administrativelyAdded', this object reflects whether
this row is kept in volatile storage
and lost upon reboot or if this row is backed up by
non-volatile or permanent storage.
If the value of 'nhrpCacheType' has a value which
is not 'administrativelyAdded, then the value of this
object is 'other(1)'."
DEFVAL { nonVolatile }
::= { nhrpCacheEntry 15 }
Greene, et al. Standards Track [Page 14]
^L
RFC 2677 NHRP MIB August 1999
nhrpCacheRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpCacheEntry 16 }
--
-- The NHRP Purge Request Table
--
nhrpPurgeReqTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpPurgeReqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table will track Purge Request Information."
::= { nhrpGeneralObjects 3 }
nhrpPurgeReqEntry OBJECT-TYPE
SYNTAX NhrpPurgeReqEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information regarding a Purge Request."
INDEX { nhrpPurgeIndex }
::= { nhrpPurgeReqTable 1 }
NhrpPurgeReqEntry ::= SEQUENCE {
nhrpPurgeIndex Unsigned32,
nhrpPurgeCacheIdentifier Unsigned32,
nhrpPurgePrefixLength Integer32,
nhrpPurgeRequestID Unsigned32,
nhrpPurgeReplyExpected TruthValue,
nhrpPurgeRowStatus RowStatus
}
nhrpPurgeIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index for this entry that has local significance
within the scope of this table."
::= { nhrpPurgeReqEntry 1 }
Greene, et al. Standards Track [Page 15]
^L
RFC 2677 NHRP MIB August 1999
nhrpPurgeCacheIdentifier OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object identifies which row in
'nhrpCacheTable' is being purged. This object
should have the same value as the 'nhrpCacheIndex'
in the 'nhrpCacheTable'."
::= { nhrpPurgeReqEntry 2 }
nhrpPurgePrefixLength OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In the case of NHRP Purge Requests, this specifies the
equivalence class of addresses which match the first
'Prefix Length' bit positions of the Client Protocol
Address specified in the Client Information Entry (CIE)."
::= { nhrpPurgeReqEntry 3 }
nhrpPurgeRequestID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Request ID used in the purge request."
::= { nhrpPurgeReqEntry 4 }
nhrpPurgeReplyExpected OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An indication of whether this Purge Request has the
'N' Bit cleared (off)."
::= { nhrpPurgeReqEntry 5 }
nhrpPurgeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpPurgeReqEntry 6 }
Greene, et al. Standards Track [Page 16]
^L
RFC 2677 NHRP MIB August 1999
--****************************************************************
-- NHRP Client Objects
--****************************************************************
nhrpClientObjects OBJECT IDENTIFIER ::= { nhrpObjects 2 }
--
-- The NHRP Client Table
--
nhrpClientTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about NHRP clients (NHCs) managed by this
agent."
::= { nhrpClientObjects 1 }
nhrpClientEntry OBJECT-TYPE
SYNTAX NhrpClientEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single NHC."
INDEX { nhrpClientIndex }
::= { nhrpClientTable 1 }
NhrpClientEntry ::= SEQUENCE {
nhrpClientIndex Unsigned32,
nhrpClientInternetworkAddrType AddressFamilyNumbers,
nhrpClientInternetworkAddr NhrpGenAddr,
nhrpClientNbmaAddrType AddressFamilyNumbers,
nhrpClientNbmaAddr NhrpGenAddr,
nhrpClientNbmaSubaddr NhrpGenAddr,
nhrpClientInitialRequestTimeout Integer32,
nhrpClientRegistrationRequestRetries Integer32,
nhrpClientResolutionRequestRetries Integer32,
nhrpClientPurgeRequestRetries Integer32,
nhrpClientDefaultMtu Unsigned32,
nhrpClientHoldTime Unsigned32,
nhrpClientRequestID Unsigned32,
nhrpClientStorageType StorageType,
nhrpClientRowStatus RowStatus
}
Greene, et al. Standards Track [Page 17]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for the NHRP client that is unique within
the scope of this agent. The 'nhrpNextIndex' value
should be consulted (read), prior to creating a row in
this table, and the value returned from reading
'nhrpNextIndex' should be used as this object's value."
::= { nhrpClientEntry 1 }
nhrpClientInternetworkAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the internetwork layer address of this
client. This object indicates how the value of
nhrpClientInternetworkAddr is to be interpreted."
::= { nhrpClientEntry 2 }
nhrpClientInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the internetwork layer address of this
client."
::= { nhrpClientEntry 3 }
nhrpClientNbmaAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the NBMA subnetwork address of this client.
This object indicates how the values of
nhrpClientNbmaAddr and nhrpClientNbmaSubaddr are to be
interpreted."
::= { nhrpClientEntry 4 }
nhrpClientNbmaAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
Greene, et al. Standards Track [Page 18]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The NBMA subnetwork address of this client."
::= { nhrpClientEntry 5 }
nhrpClientNbmaSubaddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NBMA subaddress of this client. For NBMA address
families without a subaddress concept, this will be a
zero-length OCTET STRING."
::= { nhrpClientEntry 6 }
nhrpClientInitialRequestTimeout OBJECT-TYPE
SYNTAX Integer32 (1..900)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of seconds that the client will wait before
timing out an NHRP initial request. This object only has
meaning for the initial timeout period."
DEFVAL { 10 }
::= { nhrpClientEntry 7 }
nhrpClientRegistrationRequestRetries OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of times the client will retry the
registration request before failure. A value of
0 means don't retry. A value of 65535 means
retry forever."
DEFVAL { 3 }
::= { nhrpClientEntry 8 }
nhrpClientResolutionRequestRetries OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of times the client will retry the resolution
request before failure. A value of 0 means don't retry.
A value of 65535 means retry forever."
DEFVAL { 3 }
::= { nhrpClientEntry 9 }
Greene, et al. Standards Track [Page 19]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientPurgeRequestRetries OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of times the client will retry a purge request
before failure. A value of 0 means don't retry. A value of
65535 means retry forever."
DEFVAL { 3 }
::= { nhrpClientEntry 10 }
nhrpClientDefaultMtu OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The default maximum transmission unit (MTU) of the
LIS/LAG which this client should use. This object
will be initialized by the agent to the default MTU
of the LIS/LAG (which is 9180) unless a different MTU
value is specified during creation of this Client."
REFERENCE
"RFC 2225 [25], Classical IP and ARP over ATM, Section 7,
DEFAULT VALUE FOR IP MTU OVER ATM AAL5."
DEFVAL { 9180 }
::= { nhrpClientEntry 11 }
nhrpClientHoldTime OBJECT-TYPE
SYNTAX Unsigned32(0..65535)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The hold time the client will register."
DEFVAL { 900 }
::= { nhrpClientEntry 12 }
nhrpClientRequestID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Request ID used to register this client with its
server. According to Section 5.2.3 of the NHRP
Specification, RFC 2332 [17], the Request ID must
be kept in non-volatile storage, so that if an NHC
crashes and re-initializes, it will use a different
Greene, et al. Standards Track [Page 20]
^L
RFC 2677 NHRP MIB August 1999
Request ID during the registration process
when reregistering with the same NHS."
REFERENCE
"Section 5.2.3 NHRP Registration Request, RFC 2332 [17]."
::= { nhrpClientEntry 13 }
nhrpClientStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object defines whether this row is kept in
volatile storage and lost upon a Client crash or
reboot situation, or if this row is backed up by
nonvolatile or permanent storage."
DEFVAL { nonVolatile }
::= { nhrpClientEntry 14 }
nhrpClientRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpClientEntry 15 }
--
-- The NHRP Client Registration Table
--
nhrpClientRegistrationTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpClientRegistrationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Registration Request Information that
needs to be maintained by the NHCs (clients)."
REFERENCE
"Section 5.2.3 NHRP Registration Request, RFC 2332 [17]."
::= { nhrpClientObjects 2 }
nhrpClientRegistrationEntry OBJECT-TYPE
SYNTAX NhrpClientRegistrationEntry
MAX-ACCESS not-accessible
STATUS current
Greene, et al. Standards Track [Page 21]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"An NHC needs to maintain registration request information
between the NHC and the NHS. An entry in this table
represents information for a single registration request."
INDEX { nhrpClientIndex,
nhrpClientRegIndex
}
::= { nhrpClientRegistrationTable 1 }
NhrpClientRegistrationEntry ::= SEQUENCE {
nhrpClientRegIndex Unsigned32,
nhrpClientRegUniqueness INTEGER,
nhrpClientRegState INTEGER,
nhrpClientRegRowStatus RowStatus
}
nhrpClientRegIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for this entry such that it
identifies a specific Registration Request from
the NHC represented by the nhrpClientIndex."
::= { nhrpClientRegistrationEntry 1 }
nhrpClientRegUniqueness OBJECT-TYPE
SYNTAX INTEGER {
requestUnique(1),
requestNotUnique(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Uniqueness indicator for this Registration Request.
If this object has the value of requestUnique(1), then
the Uniqueness bit is set in the the NHRP Registration
Request represented by this row. The value cannot
be changed once the row is created."
::= { nhrpClientRegistrationEntry 2 }
nhrpClientRegState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
registering(2),
ackRegisterReply(3),
nakRegisterReply(4)
Greene, et al. Standards Track [Page 22]
^L
RFC 2677 NHRP MIB August 1999
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The registration state of this client. The values are:
'other(1)' The state of the registration
request is not one of
'registering',
'ackRegisterReply' or
'nakRegisterReply'.
'registering(2)' A registration request has
been issued and a registration
reply is expected.
'ackRegisterReply(3)' A positive registration reply
has been received.
'nakRegisterReply(4)' The client has received a
negative registration
reply (NAK)."
::= { nhrpClientRegistrationEntry 3 }
nhrpClientRegRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpClientRegistrationEntry 4 }
--
-- The NHRP Client->Server Table
--
nhrpClientNhsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpClientNhsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of NHSes that are available for use by this NHC
(client). By default, the agent will add an entry to this
table that corresponds to the client's default router."
::= { nhrpClientObjects 3 }
Greene, et al. Standards Track [Page 23]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientNhsEntry OBJECT-TYPE
SYNTAX NhrpClientNhsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An NHS that may be used by an NHC."
INDEX { nhrpClientIndex, nhrpClientNhsIndex }
::= { nhrpClientNhsTable 1 }
NhrpClientNhsEntry ::= SEQUENCE {
nhrpClientNhsIndex Unsigned32,
nhrpClientNhsInternetworkAddrType AddressFamilyNumbers,
nhrpClientNhsInternetworkAddr NhrpGenAddr,
nhrpClientNhsNbmaAddrType AddressFamilyNumbers,
nhrpClientNhsNbmaAddr NhrpGenAddr,
nhrpClientNhsNbmaSubaddr NhrpGenAddr,
nhrpClientNhsInUse TruthValue,
nhrpClientNhsRowStatus RowStatus
}
nhrpClientNhsIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for an NHS available to an NHC."
::= { nhrpClientNhsEntry 1 }
nhrpClientNhsInternetworkAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the internetwork layer address of the
NHRP server represented in this entry. This object
indicates how the value of
nhrpClientNhsInternetworkAddr is to be interpreted."
::= { nhrpClientNhsEntry 2 }
nhrpClientNhsInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the destination internetwork layer
address of the NHRP server represented by this
Greene, et al. Standards Track [Page 24]
^L
RFC 2677 NHRP MIB August 1999
entry. If this value is not known, this will be
a zero-length OCTET STRING."
::= { nhrpClientNhsEntry 3 }
nhrpClientNhsNbmaAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the NBMA subnetwork address of the NHRP
Server represented by this entry. This object indicates
how the values of nhrpClientNhsNbmaAddr and
nhrpClientNhsNbmaSubaddr are to be interpreted."
::= { nhrpClientNhsEntry 4 }
nhrpClientNhsNbmaAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NBMA subnetwork address of the NHS. The type of
the address is indicated by the corresponding value of
nhrpClientNhsNbmaAddrType."
::= { nhrpClientNhsEntry 5 }
nhrpClientNhsNbmaSubaddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NBMA subaddress of the NHS. For NMBA address
families that do not have the concept of subaddress,
this will be a zero-length OCTET STRING."
::= { nhrpClientNhsEntry 6 }
nhrpClientNhsInUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether this NHS is in use by the NHC."
::= { nhrpClientNhsEntry 7 }
nhrpClientNhsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
Greene, et al. Standards Track [Page 25]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpClientNhsEntry 8 }
--
-- The NHRP Client StatisticsTable
--
nhrpClientStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpClientStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains statistics collected by NHRP
clients."
::= { nhrpClientObjects 4 }
nhrpClientStatEntry OBJECT-TYPE
SYNTAX NhrpClientStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Statistics collected by a NHRP client."
INDEX { nhrpClientIndex }
::= { nhrpClientStatTable 1 }
NhrpClientStatEntry ::= SEQUENCE {
nhrpClientStatTxResolveReq Counter32,
nhrpClientStatRxResolveReplyAck Counter32,
nhrpClientStatRxResolveReplyNakProhibited Counter32,
nhrpClientStatRxResolveReplyNakInsufResources Counter32,
nhrpClientStatRxResolveReplyNakNoBinding Counter32,
nhrpClientStatRxResolveReplyNakNotUnique Counter32,
nhrpClientStatTxRegisterReq Counter32,
nhrpClientStatRxRegisterAck Counter32,
nhrpClientStatRxRegisterNakProhibited Counter32,
nhrpClientStatRxRegisterNakInsufResources Counter32,
nhrpClientStatRxRegisterNakAlreadyReg Counter32,
nhrpClientStatRxPurgeReq Counter32,
nhrpClientStatTxPurgeReq Counter32,
nhrpClientStatRxPurgeReply Counter32,
nhrpClientStatTxPurgeReply Counter32,
nhrpClientStatTxErrorIndication Counter32,
nhrpClientStatRxErrUnrecognizedExtension Counter32,
nhrpClientStatRxErrLoopDetected Counter32,
Greene, et al. Standards Track [Page 26]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientStatRxErrProtoAddrUnreachable Counter32,
nhrpClientStatRxErrProtoError Counter32,
nhrpClientStatRxErrSduSizeExceeded Counter32,
nhrpClientStatRxErrInvalidExtension Counter32,
nhrpClientStatRxErrAuthenticationFailure Counter32,
nhrpClientStatRxErrHopCountExceeded Counter32,
nhrpClientStatDiscontinuityTime TimeStamp
}
nhrpClientStatTxResolveReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Resolution Requests transmitted
by this client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 1 }
nhrpClientStatRxResolveReplyAck OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of positively acknowledged NHRP Resolution
Replies received by this client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 2 }
nhrpClientStatRxResolveReplyNakProhibited OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies received
by this client that contained the code indicating
'Administratively Prohibited'.
Greene, et al. Standards Track [Page 27]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 3 }
nhrpClientStatRxResolveReplyNakInsufResources OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies received
by this client that contained the code indicating
'Insufficient Resources'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 4 }
nhrpClientStatRxResolveReplyNakNoBinding OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies received
by this client that contained the code indicating
'No Internetworking Layer Address to NBMA Address
Binding Exists'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 5 }
nhrpClientStatRxResolveReplyNakNotUnique OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 28]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NAKed NHRP Resolution Replies received
by this client that contained the code indicating
'Binding Exists But Is Not Unique'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 6 }
nhrpClientStatTxRegisterReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Registration Requests transmitted
by this client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 7 }
nhrpClientStatRxRegisterAck OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of positively acknowledged NHRP Registration
Replies received by this client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 8 }
nhrpClientStatRxRegisterNakProhibited OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 29]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NAKed NHRP Registration Replies received
by this client that contained the code indicating
'Administratively Prohibited'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 9 }
nhrpClientStatRxRegisterNakInsufResources OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Registration Replies received
by this client that contained the code indicating
'Insufficient Resources'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 10 }
nhrpClientStatRxRegisterNakAlreadyReg OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Registration Replies received
by this client that contained the code indicating 'Unique
Internetworking Layer Address Already Registered'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 11 }
nhrpClientStatRxPurgeReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 30]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NHRP Purge Requests received by this
client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 12 }
nhrpClientStatTxPurgeReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Requests transmitted by this
client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 13 }
nhrpClientStatRxPurgeReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Replies received by this
client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 14 }
nhrpClientStatTxPurgeReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Replies transmitted by this
client.
Greene, et al. Standards Track [Page 31]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
::= { nhrpClientStatEntry 15 }
nhrpClientStatTxErrorIndication OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets transmitted
by this client.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 16 }
nhrpClientStatRxErrUnrecognizedExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code
'Unrecognized Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 17 }
nhrpClientStatRxErrLoopDetected OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 32]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'NHRP Loop Detected'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 18 }
nhrpClientStatRxErrProtoAddrUnreachable OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'Protocol Address
Unreachable'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 19 }
nhrpClientStatRxErrProtoError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'Protocol Error'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 20 }
Greene, et al. Standards Track [Page 33]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientStatRxErrSduSizeExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'NHRP SDU Size
Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 21 }
nhrpClientStatRxErrInvalidExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'Invalid Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 22 }
nhrpClientStatRxErrAuthenticationFailure OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'Authentication
Failure'.
Greene, et al. Standards Track [Page 34]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 23 }
nhrpClientStatRxErrHopCountExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this client with the error code 'Hop Count Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Client re-initialization and at
other times as indicated by the value of
nhrpClientStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpClientStatEntry 24 }
nhrpClientStatDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion at
which any one or more of this Client's counters
suffered a discontinuity. If no such discontinuities
have occurred since the last re-initialization of the
local management subsystem or the NHRP Client
re-initialization associated with this entry, then
this object contains a zero value."
REFERENCE
"RFC 2233 [18]."
::= { nhrpClientStatEntry 25 }
Greene, et al. Standards Track [Page 35]
^L
RFC 2677 NHRP MIB August 1999
--****************************************************************
-- NHRP Server Objects
--****************************************************************
nhrpServerObjects OBJECT IDENTIFIER ::= { nhrpObjects 3 }
--
-- The NHRP Next Hop Server Table
--
nhrpServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information for a set of NHSes
associated with this agent."
::= { nhrpServerObjects 1 }
nhrpServerEntry OBJECT-TYPE
SYNTAX NhrpServerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single NHS."
INDEX { nhrpServerIndex }
::= { nhrpServerTable 1 }
NhrpServerEntry ::= SEQUENCE {
nhrpServerIndex Unsigned32,
nhrpServerInternetworkAddrType AddressFamilyNumbers,
nhrpServerInternetworkAddr NhrpGenAddr,
nhrpServerNbmaAddrType AddressFamilyNumbers,
nhrpServerNbmaAddr NhrpGenAddr,
nhrpServerNbmaSubaddr NhrpGenAddr,
nhrpServerStorageType StorageType,
nhrpServerRowStatus RowStatus
}
nhrpServerIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for the server that is unique within the
scope of this agent."
::= { nhrpServerEntry 1 }
Greene, et al. Standards Track [Page 36]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerInternetworkAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the internetwork layer address of this
server. This object is used to interpret the value of
nhrpServerInternetworkAddr."
::= { nhrpServerEntry 2 }
nhrpServerInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the internetwork layer address of this
server."
::= { nhrpServerEntry 3 }
nhrpServerNbmaAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the NBMA subnetwork address of this server.
This object is used to interpret the value of
nhrpServerNbmaAddr."
::= { nhrpServerEntry 4 }
nhrpServerNbmaAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the NBMA subnetwork address of this
server."
::= { nhrpServerEntry 5 }
nhrpServerNbmaSubaddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the NBMA subaddress of this server.
For NBMA address families without a subaddress
concept, this will be a zero-length OCTET STRING."
::= { nhrpServerEntry 6 }
Greene, et al. Standards Track [Page 37]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStorageType OBJECT-TYPE
SYNTAX StorageType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object defines whether this row is kept in
volatile storage and lost upon a Server crash or
reboot situation, or if this row is backed up by
nonvolatile or permanent storage."
DEFVAL { nonVolatile }
::= { nhrpServerEntry 7 }
nhrpServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpServerEntry 8 }
--
-- The Server Cache Table
--
nhrpServerCacheTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpServerCacheEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table extends the nhrpCacheTable for
NHSes. If the nhrpCacheTable has a row added due to
an NHS or based on information regarding an NHS then
a row is also added in this table.
The rows in this table will be created when rows in
the nhrpCacheTable are created. However, there may
be rows created in the nhrpCacheTable which do not
have corresponding rows in this table. For example,
if the nhrpCacheTable has a row added due to a Next
Hop Client which is co-resident on the same device
as the NHS, a row will not be added to this table."
::= { nhrpServerObjects 2 }
nhrpServerCacheEntry OBJECT-TYPE
SYNTAX NhrpServerCacheEntry
MAX-ACCESS not-accessible
STATUS current
Greene, et al. Standards Track [Page 38]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"Additional information kept by a NHS for a relevant
Next Hop Resolution Cache entry."
INDEX {
nhrpCacheInternetworkAddrType,
nhrpCacheInternetworkAddr,
ifIndex,
nhrpCacheIndex
}
::= { nhrpServerCacheTable 1 }
NhrpServerCacheEntry ::= SEQUENCE {
nhrpServerCacheAuthoritative TruthValue,
nhrpServerCacheUniqueness TruthValue
}
nhrpServerCacheAuthoritative OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether this cache entry is
authoritative, which means the entry was added because
of a direct registration request with this server or
by Server Cache Synchronization Protocol (SCSP) from
an authoritative source."
::= { nhrpServerCacheEntry 1 }
nhrpServerCacheUniqueness OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Uniqueness indicator for this cache
entry used in duplicate address detection. This value
cannot be changed after the entry is active."
::= { nhrpServerCacheEntry 2 }
--
-- The NHRP Server->Client Table
--
nhrpServerNhcTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpServerNhcEntry
MAX-ACCESS not-accessible
STATUS current
Greene, et al. Standards Track [Page 39]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"A table of NHCs that are available for use by this NHS
(Server)."
REFERENCE
"Section 4 Configuration (Next Hop Servers),
RFC 2332 [17]."
::= { nhrpServerObjects 3 }
nhrpServerNhcEntry OBJECT-TYPE
SYNTAX NhrpServerNhcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An NHC that may be used by an NHS."
INDEX { nhrpServerIndex, nhrpServerNhcIndex }
::= { nhrpServerNhcTable 1 }
NhrpServerNhcEntry ::= SEQUENCE {
nhrpServerNhcIndex Unsigned32,
nhrpServerNhcPrefixLength Integer32,
nhrpServerNhcInternetworkAddrType AddressFamilyNumbers,
nhrpServerNhcInternetworkAddr NhrpGenAddr,
nhrpServerNhcNbmaAddrType AddressFamilyNumbers,
nhrpServerNhcNbmaAddr NhrpGenAddr,
nhrpServerNhcNbmaSubaddr NhrpGenAddr,
nhrpServerNhcInUse TruthValue,
nhrpServerNhcRowStatus RowStatus
}
nhrpServerNhcIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An identifier for an NHC available to an NHS."
::= { nhrpServerNhcEntry 1 }
nhrpServerNhcPrefixLength OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of bits that define the internetwork
layer prefix associated with the
nhrpServerNhcInternetworkAddr."
::= { nhrpServerNhcEntry 2 }
Greene, et al. Standards Track [Page 40]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerNhcInternetworkAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the internetwork layer address of the
NHRP Client represented in this entry. This object
indicates how the value of nhrpServerNhcInternetworkAddr
is to be interpreted."
::= { nhrpServerNhcEntry 3 }
nhrpServerNhcInternetworkAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the internetwork layer address of
the NHRP Client represented by this entry. If this
value is not known, this will be a zero-length
OCTET STRING."
::= { nhrpServerNhcEntry 4 }
nhrpServerNhcNbmaAddrType OBJECT-TYPE
SYNTAX AddressFamilyNumbers
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the NBMA subnetwork address of the NHRP
Client represented by this entry. This object indicates
how the values of nhrpServerNhcNbmaAddr and
nhrpServerNhcNbmaSubaddr are to be interpreted."
::= { nhrpServerNhcEntry 5 }
nhrpServerNhcNbmaAddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The NBMA subnetwork address of the NHC. The type of the
address is indicated by the corresponding value of
nhrpServerNbmaAddrType."
::= { nhrpServerNhcEntry 6 }
nhrpServerNhcNbmaSubaddr OBJECT-TYPE
SYNTAX NhrpGenAddr
MAX-ACCESS read-create
STATUS current
Greene, et al. Standards Track [Page 41]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The NBMA subaddress of the NHC. For NMBA address familes
that do not have the concept of subaddress, this will
be a zero-length OCTET STRING."
::= { nhrpServerNhcEntry 7 }
nhrpServerNhcInUse OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether this NHC is in use by the NHS."
::= { nhrpServerNhcEntry 8 }
nhrpServerNhcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An object that allows entries in this table to be
created and deleted using the RowStatus convention."
::= { nhrpServerNhcEntry 9 }
--
-- The Next Hop Server Statistics Table
--
nhrpServerStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF NhrpServerStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Statistics collected by Next Hop Servers."
::= { nhrpServerObjects 4 }
nhrpServerStatEntry OBJECT-TYPE
SYNTAX NhrpServerStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Statistics for a particular NHS. The statistics are
broken into received (Rx), transmitted (Tx)
and forwarded (Fw). Forwarded (Fw) would be done
by a transit NHS."
INDEX { nhrpServerIndex }
::= { nhrpServerStatTable 1 }
Greene, et al. Standards Track [Page 42]
^L
RFC 2677 NHRP MIB August 1999
NhrpServerStatEntry ::= SEQUENCE {
nhrpServerStatRxResolveReq Counter32,
nhrpServerStatTxResolveReplyAck Counter32,
nhrpServerStatTxResolveReplyNakProhibited Counter32,
nhrpServerStatTxResolveReplyNakInsufResources Counter32,
nhrpServerStatTxResolveReplyNakNoBinding Counter32,
nhrpServerStatTxResolveReplyNakNotUnique Counter32,
nhrpServerStatRxRegisterReq Counter32,
nhrpServerStatTxRegisterAck Counter32,
nhrpServerStatTxRegisterNakProhibited Counter32,
nhrpServerStatTxRegisterNakInsufResources Counter32,
nhrpServerStatTxRegisterNakAlreadyReg Counter32,
nhrpServerStatRxPurgeReq Counter32,
nhrpServerStatTxPurgeReq Counter32,
nhrpServerStatRxPurgeReply Counter32,
nhrpServerStatTxPurgeReply Counter32,
-- Error Indications
nhrpServerStatRxErrUnrecognizedExtension Counter32,
nhrpServerStatRxErrLoopDetected Counter32,
nhrpServerStatRxErrProtoAddrUnreachable Counter32,
nhrpServerStatRxErrProtoError Counter32,
nhrpServerStatRxErrSduSizeExceeded Counter32,
nhrpServerStatRxErrInvalidExtension Counter32,
nhrpServerStatRxErrInvalidResReplyReceived Counter32,
nhrpServerStatRxErrAuthenticationFailure Counter32,
nhrpServerStatRxErrHopCountExceeded Counter32,
nhrpServerStatTxErrUnrecognizedExtension Counter32,
nhrpServerStatTxErrLoopDetected Counter32,
nhrpServerStatTxErrProtoAddrUnreachable Counter32,
nhrpServerStatTxErrProtoError Counter32,
nhrpServerStatTxErrSduSizeExceeded Counter32,
nhrpServerStatTxErrInvalidExtension Counter32,
nhrpServerStatTxErrAuthenticationFailure Counter32,
nhrpServerStatTxErrHopCountExceeded Counter32,
-- Transit NHS statistics
nhrpServerStatFwResolveReq Counter32,
nhrpServerStatFwResolveReply Counter32,
nhrpServerStatFwRegisterReq Counter32,
nhrpServerStatFwRegisterReply Counter32,
nhrpServerStatFwPurgeReq Counter32,
nhrpServerStatFwPurgeReply Counter32,
nhrpServerStatFwErrorIndication Counter32,
nhrpServerStatDiscontinuityTime TimeStamp
Greene, et al. Standards Track [Page 43]
^L
RFC 2677 NHRP MIB August 1999
}
nhrpServerStatRxResolveReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Resolution Requests received by this
server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 1 }
nhrpServerStatTxResolveReplyAck OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of positively acknowledged NHRP
Resolution Replies transmitted by this server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 2 }
nhrpServerStatTxResolveReplyNakProhibited OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies
transmitted by this server with the code
'Administratively Prohibited'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 3 }
Greene, et al. Standards Track [Page 44]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatTxResolveReplyNakInsufResources OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies
transmitted by this server with the code
'Insufficient Resources'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 4 }
nhrpServerStatTxResolveReplyNakNoBinding OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies
transmitted by this server with the code
'No Internetworking Layer Address to NBMA
Address Binding Exists'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 5 }
nhrpServerStatTxResolveReplyNakNotUnique OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Resolution Replies
transmitted by this server with the code
'Binding Exists But Is Not Unique'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 6 }
Greene, et al. Standards Track [Page 45]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatRxRegisterReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Registration Requests received
by this server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 7 }
nhrpServerStatTxRegisterAck OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of positively acknowledged NHRP Registration
Replies transmitted by this server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 8 }
nhrpServerStatTxRegisterNakProhibited OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Registration Replies
transmitted by this server with the code
'Administratively Prohibited'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 9 }
Greene, et al. Standards Track [Page 46]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatTxRegisterNakInsufResources OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Registration Replies
transmitted by this server with the code
'Insufficient Resources'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 10 }
nhrpServerStatTxRegisterNakAlreadyReg OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NAKed NHRP Registration Replies
transmitted by this server with the code
'Unique Internetworking Layer Address Already
Registered'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 11 }
nhrpServerStatRxPurgeReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Requests received by
this server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 12 }
Greene, et al. Standards Track [Page 47]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatTxPurgeReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Requests transmitted by this
server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 13 }
nhrpServerStatRxPurgeReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Replies received by this
server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 14 }
nhrpServerStatTxPurgeReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Replies transmitted by
this server.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 15 }
nhrpServerStatRxErrUnrecognizedExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
Greene, et al. Standards Track [Page 48]
^L
RFC 2677 NHRP MIB August 1999
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code
'Unrecognized Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 16 }
nhrpServerStatRxErrLoopDetected OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'NHRP Loop Detected'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 17 }
nhrpServerStatRxErrProtoAddrUnreachable OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'Protocol Address
Unreachable'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
Greene, et al. Standards Track [Page 49]
^L
RFC 2677 NHRP MIB August 1999
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 18 }
nhrpServerStatRxErrProtoError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'Protocol Error'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 19 }
nhrpServerStatRxErrSduSizeExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'NHRP SDU Size
Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 20 }
nhrpServerStatRxErrInvalidExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 50]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'Invalid Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 21 }
nhrpServerStatRxErrInvalidResReplyReceived OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets received
by this server with the error code 'Invalid Resolution
Reply Received'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 22 }
nhrpServerStatRxErrAuthenticationFailure OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
received by this server with the error code
'Authentication Failure'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 23 }
Greene, et al. Standards Track [Page 51]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatRxErrHopCountExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
received by this server with the error code
'Hop Count Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 24 }
nhrpServerStatTxErrUnrecognizedExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'Unrecognized Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 25 }
nhrpServerStatTxErrLoopDetected OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'NHRP Loop Detected'.
Greene, et al. Standards Track [Page 52]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 26 }
nhrpServerStatTxErrProtoAddrUnreachable OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'Protocol Address Unreachable'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 27 }
nhrpServerStatTxErrProtoError OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error
code 'Protocol Error'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 28 }
Greene, et al. Standards Track [Page 53]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatTxErrSduSizeExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'NHRP SDU Size Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 29 }
nhrpServerStatTxErrInvalidExtension OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'Invalid Extension'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 30 }
nhrpServerStatTxErrAuthenticationFailure OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error code
'Authentication Failure'.
Greene, et al. Standards Track [Page 54]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 31 }
nhrpServerStatTxErrHopCountExceeded OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets
transmitted by this server with the error
code 'Hop Count Exceeded'.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
REFERENCE
"Section 5.2.7 NHRP Error Indication, RFC 2332 [17]."
::= { nhrpServerStatEntry 32 }
nhrpServerStatFwResolveReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Resolution Requests
forwarded by this server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 33 }
nhrpServerStatFwResolveReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
Greene, et al. Standards Track [Page 55]
^L
RFC 2677 NHRP MIB August 1999
DESCRIPTION
"The number of NHRP Resolution Replies forwarded
by this server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 34 }
nhrpServerStatFwRegisterReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Registration Requests forwarded
by this server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 35 }
nhrpServerStatFwRegisterReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Registration Replies forwarded
by this server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 36 }
nhrpServerStatFwPurgeReq OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Requests forwarded
by this server acting as a transit NHS.
Greene, et al. Standards Track [Page 56]
^L
RFC 2677 NHRP MIB August 1999
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 37 }
nhrpServerStatFwPurgeReply OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Purge Replies forwarded by this
server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 38 }
nhrpServerStatFwErrorIndication OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of NHRP Error Indication packets forwarded
by this server acting as a transit NHS.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, at
NHRP Server re-initialization and at
other times as indicated by the value of
nhrpServerStatDiscontinuityTime."
::= { nhrpServerStatEntry 39 }
nhrpServerStatDiscontinuityTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime on the most recent occasion at
which any one or more of this Server's counters
suffered a discontinuity. If no such discontinuities
have occurred since the last re-initialization of the
Greene, et al. Standards Track [Page 57]
^L
RFC 2677 NHRP MIB August 1999
local management subsystem or the NHRP Server
re-initialization associated with this entry, then
this object contains a zero value."
REFERENCE
"RFC 2233 [18]."
::= { nhrpServerStatEntry 40 }
--****************************************************************
-- Module Compliance Statement
--****************************************************************
nhrpConformance OBJECT IDENTIFIER ::= { nhrpMIB 2 }
nhrpCompliances
OBJECT IDENTIFIER ::= { nhrpConformance 1 }
nhrpGroups
OBJECT IDENTIFIER ::= { nhrpConformance 2 }
nhrpModuleCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for the NHRP MIB."
MODULE -- this module
MANDATORY-GROUPS { nhrpGeneralGroup }
GROUP nhrpClientGroup
DESCRIPTION
"This group must be supported only by stations that
are NHRP clients."
GROUP nhrpServerGroup
DESCRIPTION
"This group must be supported only by stations that
are NHRP servers."
::= { nhrpCompliances 1 }
nhrpGeneralGroup OBJECT-GROUP
OBJECTS {
nhrpNextIndex,
nhrpCachePrefixLength,
nhrpCacheNextHopInternetworkAddr,
nhrpCacheNbmaAddrType,
nhrpCacheNbmaAddr,
nhrpCacheNbmaSubaddr,
nhrpCacheType,
nhrpCacheState,
Greene, et al. Standards Track [Page 58]
^L
RFC 2677 NHRP MIB August 1999
nhrpCacheHoldingTimeValid,
nhrpCacheHoldingTime,
nhrpCacheNegotiatedMtu,
nhrpCachePreference,
nhrpCacheStorageType,
nhrpCacheRowStatus,
nhrpPurgeCacheIdentifier,
nhrpPurgePrefixLength,
nhrpPurgeRequestID,
nhrpPurgeReplyExpected,
nhrpPurgeRowStatus
}
STATUS current
DESCRIPTION
"Objects that apply to both NHRP clients and NHRP
servers."
::= { nhrpGroups 1 }
nhrpClientGroup OBJECT-GROUP
OBJECTS {
nhrpClientInternetworkAddrType,
nhrpClientInternetworkAddr,
nhrpClientNbmaAddrType,
nhrpClientNbmaAddr,
nhrpClientNbmaSubaddr,
nhrpClientInitialRequestTimeout,
nhrpClientRegistrationRequestRetries,
nhrpClientResolutionRequestRetries,
nhrpClientPurgeRequestRetries,
nhrpClientDefaultMtu,
nhrpClientHoldTime,
nhrpClientRequestID,
nhrpClientStorageType,
nhrpClientRowStatus,
nhrpClientRegUniqueness,
nhrpClientRegState,
nhrpClientRegRowStatus,
nhrpClientNhsInternetworkAddrType,
nhrpClientNhsInternetworkAddr,
nhrpClientNhsNbmaAddrType,
nhrpClientNhsNbmaAddr,
nhrpClientNhsNbmaSubaddr,
nhrpClientNhsInUse,
nhrpClientNhsRowStatus,
nhrpClientStatTxResolveReq,
nhrpClientStatRxResolveReplyAck,
nhrpClientStatRxResolveReplyNakProhibited,
Greene, et al. Standards Track [Page 59]
^L
RFC 2677 NHRP MIB August 1999
nhrpClientStatRxResolveReplyNakInsufResources,
nhrpClientStatRxResolveReplyNakNoBinding,
nhrpClientStatRxResolveReplyNakNotUnique,
nhrpClientStatTxRegisterReq,
nhrpClientStatRxRegisterAck,
nhrpClientStatRxRegisterNakProhibited,
nhrpClientStatRxRegisterNakInsufResources,
nhrpClientStatRxRegisterNakAlreadyReg,
nhrpClientStatRxPurgeReq,
nhrpClientStatTxPurgeReq,
nhrpClientStatRxPurgeReply,
nhrpClientStatTxPurgeReply,
nhrpClientStatTxErrorIndication,
nhrpClientStatRxErrUnrecognizedExtension,
nhrpClientStatRxErrLoopDetected,
nhrpClientStatRxErrProtoAddrUnreachable,
nhrpClientStatRxErrProtoError,
nhrpClientStatRxErrSduSizeExceeded,
nhrpClientStatRxErrInvalidExtension,
nhrpClientStatRxErrAuthenticationFailure,
nhrpClientStatRxErrHopCountExceeded,
nhrpClientStatDiscontinuityTime
}
STATUS current
DESCRIPTION
"Objects that apply only to NHRP clients."
::= { nhrpGroups 2 }
nhrpServerGroup OBJECT-GROUP
OBJECTS {
nhrpServerInternetworkAddrType,
nhrpServerInternetworkAddr,
nhrpServerNbmaAddrType,
nhrpServerNbmaAddr,
nhrpServerNbmaSubaddr,
nhrpServerStorageType,
nhrpServerRowStatus,
nhrpServerCacheAuthoritative,
nhrpServerCacheUniqueness,
nhrpServerNhcPrefixLength,
nhrpServerNhcInternetworkAddrType,
nhrpServerNhcInternetworkAddr,
nhrpServerNhcNbmaAddrType,
nhrpServerNhcNbmaAddr,
nhrpServerNhcNbmaSubaddr,
nhrpServerNhcInUse,
nhrpServerNhcRowStatus,
nhrpServerStatRxResolveReq,
Greene, et al. Standards Track [Page 60]
^L
RFC 2677 NHRP MIB August 1999
nhrpServerStatTxResolveReplyAck,
nhrpServerStatTxResolveReplyNakProhibited,
nhrpServerStatTxResolveReplyNakInsufResources,
nhrpServerStatTxResolveReplyNakNoBinding,
nhrpServerStatTxResolveReplyNakNotUnique,
nhrpServerStatRxRegisterReq,
nhrpServerStatTxRegisterAck,
nhrpServerStatTxRegisterNakProhibited,
nhrpServerStatTxRegisterNakInsufResources,
nhrpServerStatTxRegisterNakAlreadyReg,
nhrpServerStatRxPurgeReq,
nhrpServerStatTxPurgeReq,
nhrpServerStatRxPurgeReply,
nhrpServerStatTxPurgeReply,
nhrpServerStatRxErrUnrecognizedExtension,
nhrpServerStatRxErrLoopDetected,
nhrpServerStatRxErrProtoAddrUnreachable,
nhrpServerStatRxErrProtoError,
nhrpServerStatRxErrSduSizeExceeded,
nhrpServerStatRxErrInvalidExtension,
nhrpServerStatRxErrInvalidResReplyReceived,
nhrpServerStatRxErrAuthenticationFailure,
nhrpServerStatRxErrHopCountExceeded,
nhrpServerStatTxErrUnrecognizedExtension,
nhrpServerStatTxErrLoopDetected,
nhrpServerStatTxErrProtoAddrUnreachable,
nhrpServerStatTxErrProtoError,
nhrpServerStatTxErrSduSizeExceeded,
nhrpServerStatTxErrInvalidExtension,
nhrpServerStatTxErrAuthenticationFailure,
nhrpServerStatTxErrHopCountExceeded,
nhrpServerStatFwResolveReq,
nhrpServerStatFwResolveReply,
nhrpServerStatFwRegisterReq,
nhrpServerStatFwRegisterReply,
nhrpServerStatFwPurgeReq,
nhrpServerStatFwPurgeReply,
nhrpServerStatFwErrorIndication,
nhrpServerStatDiscontinuityTime
}
STATUS current
DESCRIPTION
"Objects that apply only to NHRP servers."
::= { nhrpGroups 3 }
END
Greene, et al. Standards Track [Page 61]
^L
RFC 2677 NHRP MIB August 1999
5. IANA Considerations
The Internet Assigned Numbers Authority (IANA) has been and continues
to be responsible for maintaining the ADDRESS FAMILY NUMBERS
(http://www.isi.edu/in-notes/iana/assignments/address-family-numbers)
name space assignments. The IANA has placed this list in a MIB
module, such that it may be imported into other MIBs. The motivation
for doing this is to allow MIBs to not have to change when a new
assignment is made to the ADDRESS FAMILY NUMBERS. This is very
similar to the motivation behind the IANAifType-MIB.
Any additions or changes to the list of ADDRESS FAMILY NUMBERS
registered via IANA will be done as they have in the past and this
document does not propose any changes to the ADDRESS FAMILY NUMBERS
other than to place them into a MIB, which can be found via anonymous
FTP at: ftp://ftp.isi.edu/mib/ianaaddressfamilynumbers.mib.
6. Security
There are a number of management objects defined in this MIB that
have a MAX-ACCESS clause of read-write and/or read-create. Such
objects may be considered sensitive or vulnerable in some network
environments. The support for SET operations in a non-secure
environment without proper protection can have a negative effect on
network operations.
The NHRP Protocol, RFC 2332 [17], Section 5.2.4.4 discusses security.
There is an authentication option which should be utilized to
authenticate the source and also provide data integrity to the NHRP
payload. This MIB does not contain any managed objects which
configure or expose security information such as that needed for NHRP
authentication or data integrity.
The following items were deemed to jeopardize security and thus, were
NOT added to this MIB. Items denoted as (configurable) are those
which would need values. Items denoted as (read-only) are those
which would provide information. Although the NHRP Protocol [17],
requires or has this information, exposing it in a MIB would
jeopardize the entire NBMA domain where NHRP was being used.
Therefore, these items have been omitted from the MIB.
Greene, et al. Standards Track [Page 62]
^L
RFC 2677 NHRP MIB August 1999
1. (configurable) enable/disable security
2. (configurable) SPI (security parameter index).
Depending upon the implementation,
there may be multiple SPIs, and these would
be configurable also. For example, if the
implementation switched to a different SPI
after a given time.
3. (configurable) algorithm.
The HMAC-MD5-128 is the default hash algorithm.
4. (configurable) lifetime value in seconds.
5. (read-only) key.
6. (read-only) list of users who have access
to the above information.
7. Intellectual Property
The IETF takes no position regarding the validity or scope of any
intellectual property or other rights that might be claimed to
pertain to the implementation or use of the technology described in
this document or the extent to which any license under such rights
might or might not be available; neither does it represent that it
has made any effort to identify any such rights. Information on the
IETF's procedures with respect to rights in standards-track and
standards-related documentation can be found in BCP-11. Copies of
claims of rights made available for publication and any assurances of
licenses to be made available, or the result of an attempt made to
obtain a general license or permission for the use of such
proprietary rights by implementors or users of this specification can
be obtained from the IETF Secretariat.
The IETF invites any interested party to bring to its attention any
copyrights, patents or patent applications, or other proprietary
rights which may cover technology that may be required to practice
this standard. Please address the information to the IETF Executive
Director.
8. Acknowledgments
This document is a product of the IETF's Internetworking Over NBMA
Networks (ion) Working Group.
The authors would like to thank Avri Doria (Bytex) for the first
draft of the NHRP MIB and Keith McCloghrie (cisco) and David Horton
(CITR) for their feedback and suggestions. Also, we would like to
thank Naganand Doraswamy (Bay Networks) for assistance with the
"Security Considerations" section.
Greene, et al. Standards Track [Page 63]
^L
RFC 2677 NHRP MIB August 1999
9. References
[1] Harrington, D., Presuhn, R. and B. Wijnen, "An Architecture for
Describing SNMP Management Frameworks", RFC 2571, April 1999.
[2] Rose, M. and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based Internets", STD 16, RFC
1155, May 1990.
[3] Rose, M. and K. McCloghrie, "Concise MIB Definitions", STD 16,
RFC 1212, March 1991.
[4] Rose, M., "A Convention for Defining Traps for use with the
SNMP", RFC 1215, March 1991.
[5] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Structure of Management Information
Version 2 (SMIv2)", STD 58, RFC 2578, April 1999.
[6] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Textual Conventions for SMIv2", STD 58,
RFC 2579, April 1999.
[7] McCloghrie, K., Perkins, D., Schoenwaelder, J., Case, J., Rose,
M. and S. Waldbusser, "Conformance Statements for SMIv2", STD
58, RFC 2580, April 1999.
[8] Case, J., Fedor, M., Schoffstall, M. and J. Davin, "Simple
Network Management Protocol", STD 15, RFC 1157, May 1990.
[9] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser,
"Introduction to Community-based SNMPv2", RFC 1901, January
1996.
[10] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser, "Transport
Mappings for Version 2 of the Simple Network Management Protocol
(SNMPv2)", RFC 1906, January 1996.
[11] Case, J., Harrington D., Presuhn R. and B. Wijnen, "Message
Processing and Dispatching for the Simple Network Management
Protocol (SNMP)", RFC 2572, April 1999.
[12] Blumenthal, U. and B. Wijnen, "User-based Security Model (USM)
for version 3 of the Simple Network Management Protocol
(SNMPv3)", RFC 2574, April 1999.
Greene, et al. Standards Track [Page 64]
^L
RFC 2677 NHRP MIB August 1999
[13] Case, J., McCloghrie, K., Rose, M. and S. Waldbusser, "Protocol
Operations for Version 2 of the Simple Network Management
Protocol (SNMPv2)", RFC 1905, January 1996.
[14] Levi, D., Meyer, P. and B. Stewart, "SNMPv3 Applications", RFC
2573, April 1999.
[15] Wijnen, B., Presuhn, R. and K. McCloghrie, "View-based Access
Control Model (VACM) for the Simple Network Management Protocol
(SNMP)", RFC 2575, April 1999.
[16] Case, J., Mundy, R., Partain, D. and B. Stewart, "Introduction
to Version 3 of the Internet-standard Network Management
Framework", RFC 2570, April 1999.
[17] Luciani, J. V., Katz, D., Piscitello, D. and B. Cole, "NBMA Next
Hop Resolution Protocol (NHRP)", RFC 2332, December 1997.
[18] McCloghrie, K. and F. Kastenholz, "The Interfaces Group MIB
using SMIv2", RFC 2233, November 1997.
[19] Tesink, K., Editor, "Definitions of Managed Objects for ATM
Management", RFC 2515, February 1999.
[20] Narten, T. and H. Alvestrand, "Guidelines for Writing an IANA
Considerations Section in RFCs", BCP 26, RFC 2434, October 1998.
[21] Bradner, S., "Key words for use in RFCs to Indicate Requirement
Levels", BCP 14, RFC 2119, March 1997.
[22] Bradner, S., "The Internet Standards Process -- Revision 3", BCP
9, RFC 2026, October 1996.
[23] Cucchiara, J., editor, "Multiprotocol Over ATM Version 1.0 MIB",
af-mpoa-0092.000, ATM Forum, July 1998.
[24] Fredette, A., editor, "Multiprotocol Over ATM Version 1.0",
af-mpoa-0087.000, ATM Forum, May 1997.
[25] Laubach, M., and J. Halpern, "Classical IP and ARP over ATM",
RFC 2225, April 1998.
[26] Greene, M., J. Luciani, K. White and T. Kuo, "Definitions of
Managed Objects for Classical IP and ARP Over ATM Using SMIv2",
RFC 2320, April 1998.
Greene, et al. Standards Track [Page 65]
^L
RFC 2677 NHRP MIB August 1999
10. Authors' Addresses
James V. Luciani
Bay Networks
3 Federal Street
Mail Stop: BL3-03
Billerica, MA 01821
Phone: (978) 288-4734
EMail: luciani@baynetworks.com
Maria Greene
Contractor
Xedia, Corp.
119 Russell Dr.
Littleton, MA 01460
EMail: maria@xedia.com
Joan Cucchiara
IronBridge Networks
55 Hayden Ave.
Lexington, MA 02421
Phone: (781) 372-8236
EMail: joan@ironbridgenetworks.com
Greene, et al. Standards Track [Page 66]
^L
RFC 2677 NHRP MIB August 1999
12. Full Copyright Statement
Copyright (C) The Internet Society (1999). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Greene, et al. Standards Track [Page 67]
^L
|