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
|
<pre>Network Working Group J. Saperia
Request for Comments: 1289 Digital Equipment Corporation
December 1991
<span class="h1">DECnet Phase IV MIB Extensions</span>
Status of this Memo
This memo is an extension to the SNMP MIB. This RFC specifies an IAB
standards track protocol for the Internet community, and requests
discussion and suggestions for improvements. Please refer to the
current edition of the "IAB Official Protocol Standards" for the
standardization state and status of this protocol. Distribution of
this memo is unlimited.
Table of Contents
Abstract.......................................................... <a href="#page-1">1</a>
<a href="#section-1">1</a>. Introduction................................................... <a href="#page-1">1</a>
<a href="#section-2">2</a>. Selected Objects............................................... <a href="#page-2">2</a>
<a href="#section-3">3</a>. Objects........................................................ <a href="#page-3">3</a>
<a href="#section-3.1">3.1</a> Format of Definitions......................................... <a href="#page-3">3</a>
<a href="#section-3.2">3.2</a> Textual Conventions........................................... <a href="#page-4">4</a>
<a href="#section-4">4</a>. Object Definitions............................................. <a href="#page-4">4</a>
<a href="#section-5">5</a>. Acknowledgements............................................... <a href="#page-63">63</a>
<a href="#section-6">6</a>. References..................................................... <a href="#page-63">63</a>
<a href="#section-7">7</a>. Security Considerations........................................ <a href="#page-64">64</a>
<a href="#section-8">8</a>. Author's Address............................................... <a href="#page-64">64</a>
Abstract
This memo defines a set of DECnet Phase IV extensions that have been
created for the Internet MIB. When used in conjunction with the
structure of management information (<a href="./rfc1155">RFC 1155</a>), the management
information base for network management of TCP/IP-based internets
(<a href="./rfc1213">RFC 1213</a>) and the Simple Network Management Protocol (<a href="./rfc1157">RFC 1157</a>), it
will be possible to provide integrated network management of combined
TCP/IP and DECnet Phase IV based internets. This document was
produced by the DECnet Phase IV MIB working group of the Internet
Engineering Task Force (IETF).
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
With the adoption of The Simple Network Management Protocol (<a href="./rfc1157">RFC</a>
<a href="./rfc1157">1157</a>), the management information base for network management of
TCP/IP-based internets (<a href="./rfc1213">RFC 1213</a>), and the structure of management
information (<a href="./rfc1155">RFC 1155</a>), by the Internet, and a large number of vendor
<span class="grey">DECnet Phase IV MIB Working Group [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
implementations of these standards in commercially available
products, it became possible to provide a higher level of effective
network management in TCP/IP-based internets than previously
available. With the growth in the use of these standards, network
managers desired to use this environment as a base for providing
integrated network management of multi-protocol networks.
DECnet Phase IV is one widely used protocol which often coexists in
IP-based internets. This memo provides the mechanisms by which IP-
based management stations can effectively manage DECnet Phase IV
based systems (especially router products) in an integrated fashion
through the use of the standard Internet SMI, MIB and Simple Network
Management Protocol.
DECnet Phase IV objects have been defined to be used in conjunction
with the Internet MIB to allow access and control of these new
objects by the Internet community. Additional support for other
DECnet-based protocols such as RBMS (remote bridge management
software) or other Digital Equipment Corporation Specific Hardware
platforms is not included in this document.
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Selected Objects</span>
The objects included in this memo have been created from the DIGITAL
Network Architecture Network Management Functional Specification
Version 4.0.0 Dated July 1983. An attempt has been made to provide a
reasonable ordering of these variables into groups. These groups are:
o System Group
o Network Management Group
o Session Group
o End Group
o Routing Group
o Circuit Group
o DDCMP Group
o DDCMP Multipoint Control Group
o Ethernet Group
o Counters Group
<span class="grey">DECnet Phase IV MIB Working Group [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
o Adjacency Group
o Line Group
o Non Broadcast Line Group
o Area Group
An effort has also been made to preserve the original syntax of the
object wherever possible, for example, a DECnet Phase IV object is
Executor State. This was originally coded as a NICE (Network
Information and Control Exchange) data type which is a Coded single
field object of 1 byte in length. When converted for inclusion into
the Internet MIB using the Internet SMI, it became an enumerated
integer.
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Objects</span>
All objects in this memo are described using the standard Internet
SMI and BER of <a href="./rfc1155">RFC 1155</a>. A complete description of an object will
include the name, syntax and encoding. Just as with objects supported
in the MIB (<a href="./rfc1156">RFC 1156</a>), an object name is identified with an object
identifier which has been administratively assigned. This identifies
an Object Type. When an object type is combined with a specific
instance, the particular object is uniquely identified. The use of
Object Descriptors in this memo is consistent with that of <a href="./rfc1156">RFC 1156</a> -
they are text strings meant to be read by humans. The descriptors
have been taken from the original DIGITAL Network Architecture
Network Management Functional Specification Version 4.0.0 Dated July
1983 which defined DECnet Phase IV objects. These names were then
massaged to put them in a form as consistent as possible with object
type names listed in the standard Internet MIB. Object defintion
information is also taken directly from the Network Architecture
Network Managment Functional Specification cited above wherever
possible. In this document, EXECUTOR is intended to reference only
the DECnet software and is not intended to effect any other protocols
which may be running on the system.
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a> Format of Definitions</span>
An object in this memo is specified by five fields of information:
Object, Syntax, Definition, Access, and Status.
The OBJECT is a textual name (OBJECT DESCRIPTOR) for that object type
combined with an administratively obtained OBJECT IDENTIFIER.
SYNTAX: For each object type, its abstract syntax is presented using
the ASN.1 specified in <a href="./rfc1155">RFC 1155</a>.
<span class="grey">DECnet Phase IV MIB Working Group [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
DEFINITION: A general description of the object type. Its original
purpose in the DECnet Phase IV environment is given so that all
implementers and users will consistently interpret the information
contained in each object type. Changes in format to make the object
consistent with <a href="./rfc1155">RFC 1155</a> are also noted.
ACCESS: The standard access keywords supported in <a href="./rfc1156">RFC 1156</a> are used.
The keywords used in this MIB are: read-only, read-write, and, not-
accessible.
STATUS: The status field is used to describe with a single keyword
whether the object type is mandatory or optional. Status keywords of
obsolete and deprecated are not used in this memo since this is the
first version of the DECnet Phase IV MIB.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a> Textual Conventions</span>
New datatypes have been introduced as a textual conventions in this
DECnet Phase IV MIB document. The purpose of these additions is to
facilitate understanding of new objects in this MIB. No changes to
the SMI or the SNMP are necessary to support these conventions which
are described in 4.0 (Object Definitions).
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Object Definitions</span>
<a href="./rfc1289">RFC1289</a>-phivMIB
DEFINITIONS ::= BEGIN
IMPORTS
Gauge
FROM <a href="./rfc1155">RFC1155</a>-SMI
OBJECT-TYPE
FROM <a href="./rfc1212">RFC-1212</a>
mib-2, DisplayString
FROM <a href="./rfc1213">RFC1213</a>-MIB;
-- DECNet Phase-IV MIB
phiv OBJECT IDENTIFIER ::= { mib-2 18 }
-- textual conventions
PhivAddr ::= OCTET STRING (SIZE (2))
-- This data type is intended as a short word representation of
-- standard DECnet Phase IV addresses. DECnet addresses are
-- hierarchically structured numbers assigned to a particular
-- DECnet node. The address is structured so that the area
<span class="grey">DECnet Phase IV MIB Working Group [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
-- number is contained in the most significant 6 bits of the
-- first octet. The next 2 bits of the first octet contain
-- the first two bits of the host address. The remainder of
-- the host address is contained in the second octet.
PhivCounter ::= INTEGER
-- This data type has been created for DECnet counters. These
-- counters latch at their maximum specified value until either
-- the system is restared, or they are reset to zero by the user
-- or management software.
-- groups in the decnetiv mib
phivSystem OBJECT IDENTIFIER ::= { phiv 1 }
phivManagement OBJECT IDENTIFIER ::= { phiv 2 }
session OBJECT IDENTIFIER ::= { phiv 3 }
end OBJECT IDENTIFIER ::= { phiv 4 }
routing OBJECT IDENTIFIER ::= { phiv 5 }
circuit OBJECT IDENTIFIER ::= { phiv 6 }
ddcmp OBJECT IDENTIFIER ::= { phiv 7 }
control OBJECT IDENTIFIER ::= { phiv 8 }
ethernet OBJECT IDENTIFIER ::= { phiv 9 }
counters OBJECT IDENTIFIER ::= { phiv 10 }
adjacency OBJECT IDENTIFIER ::= { phiv 11 }
line OBJECT IDENTIFIER ::= { phiv 12 }
nonBroadcastLine OBJECT IDENTIFIER ::= { phiv 14 }
area OBJECT IDENTIFIER ::= { phiv 15 }
-- System Group
-- The implementation of the System Group is mandatory for
-- all systems.
phivSystemState OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2),
shut (3),
restricted (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the operational state of the executor
node.
The possible states are:
ON Allows logical links.
OFF Allows no new links, terminates existing
<span class="grey">DECnet Phase IV MIB Working Group [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
links, and stops routing traffic through.
SHUT Allows no new logical links, does not
destroy existing logical links, and goes
to the OFF state when all logical links are
gone.
RESTRICTED Allows no new incoming logical links from
other nodes.
NOTE: These values are incremented by one compared to
the standard DECnet values in order to maintain
compliance with <a href="./rfc1155">RFC 1155</a>)."
::= { phivSystem 1 }
phivExecIdent OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..32) )
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is a text string that describes the executor node
(for example, 'Research Lab'). The string is up to 32
characters of any type."
::= { phivSystem 2 }
-- Network Management Group
-- The implementation of the Network Management Group is
-- mandatory for all systems which contain a DECnet style
-- management version.
phivMgmtMgmtVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the read-only Network Management Version,
consisting of the version number, the Engineering
Change Order (ECO) number, and the user ECO number
(for example, 3.0.0). This parameter applies to the
executor node only."
::= { phivManagement 1 }
-- Session Layer Group
-- The implementation of the Session Layer Group is mandatory for
-- all systems that implement session layer communications.
<span class="grey">DECnet Phase IV MIB Working Group [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivSessionSystemName OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..6) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name to be associated with the node identification.
Only one name can be assigned to a node address or a
circuit identification. No name should be used more than
once in a DECnet network. Node-name is one to six upper
case alphanumeric characters with at least one alpha
character. A length of 0 indicates no name."
::= { session 1 }
phivSessionInTimer OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum duration between the
time a connect is received for a process at the
executor node and the time that process accepts or
rejects it. If the connect is not accepted or rejected
by the user within the number of seconds specified,
Session Control rejects it for the user. A 0
indicates no timer is running."
::= { session 2 }
phivSessionOutTimer OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the duration between the time the
executor requests a connect and the time that connect is
acknowledged by the destination node. If the connect is
not acknowledged within the number of seconds
specified, Session Control returns an error. A 0
indicates no timer is running."
::= { session 3 }
-- End Communication Layer Group
-- The implementation of the End Communication Layer Group is
-- mandatory for all systems that implement end layer
-- communications.
-- Remote State Table
<span class="grey">DECnet Phase IV MIB Working Group [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivEndRemoteTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivEndRemoteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the state of sessions between the
node under study and the nodes found in the table."
::= { end 1 }
phivEndRemoteEntry OBJECT-TYPE
SYNTAX PhivEndRemoteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular remote node as seen
from the end communication layer."
INDEX { phivEndRemoteHostNodeID }
::= { phivEndRemoteTable 1 }
PhivEndRemoteEntry ::=
SEQUENCE {
phivEndRemoteHostNodeID
PhivAddr,
phivEndRemoteState
INTEGER,
phivEndCircuitIndex
INTEGER,
phivEndActiveLinks
INTEGER,
phivEndDelay
INTEGER (0..65535)
}
phivEndRemoteHostNodeID OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the remote node to be
evaluated."
::= { phivEndRemoteEntry 1 }
phivEndRemoteState OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2),
shut (3),
restricted (4)
<span class="grey">DECnet Phase IV MIB Working Group [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the operational state of the remote node
being evaluated.
The possible states are:
ON Allows logical links.
OFF Allows no new links, terminates existing
links, and stops routing traffic through.
SHUT Allows no new logical links, does not
destroy existing logical links, and goes
to the OFF state when all logical links are
gone.
RESTRICTED Allows no new incoming logical links from
other nodes.
NOTE: These values are incremented by one compared to
the standard DECnet values in order to maintain
compliance with <a href="./rfc1155">RFC 1155</a>."
::= { phivEndRemoteEntry 2 }
phivEndCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known circuit used to
communicate with the remote node. This is the same
value as phivCircuitIndex."
::= { phivEndRemoteEntry 3 }
phivEndActiveLinks OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter represents the number of active
logical links from the executor to the destination node."
::= { phivEndRemoteEntry 4 }
phivEndDelay OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter is the average round trip
<span class="grey">DECnet Phase IV MIB Working Group [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
delay in seconds to the destination node. This
parameter is kept on a remote node basis."
::= { phivEndRemoteEntry 5 }
-- End System Counter Table
phivEndCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivEndCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the counters associated with each end
system that is known to the entity. These counters
reflect totals from the perspective of the executor
node."
::= { end 2 }
phivEndCountEntry OBJECT-TYPE
SYNTAX PhivEndCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about a particular session between two end
systems."
INDEX { phivEndCountHostNodeID }
::= { phivEndCountTable 1 }
PhivEndCountEntry ::=
SEQUENCE {
phivEndCountHostNodeID
PhivAddr,
phivEndCountSecsLastZeroed
PhivCounter (0..65535),
phivEndCountUsrBytesRec
PhivCounter,
phivEndCountUsrBytesSent
PhivCounter,
phivEndUCountUsrMessRec
PhivCounter,
phivEndCountUsrMessSent
PhivCounter,
phivEndCountTotalBytesRec
PhivCounter,
phivEndCountTotalBytesSent
PhivCounter,
phivEndCountTotalMessRec
PhivCounter,
phivEndCountTotalMessSent
<span class="grey">DECnet Phase IV MIB Working Group [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
PhivCounter,
phivEndCountConnectsRecd
PhivCounter (0..65535),
phivEndCountConnectsSent
PhivCounter (0..65535),
phivEndCountReponseTimeouts
PhivCounter (0..65535),
phivEndCountRecdConnectResErrs
PhivCounter (0..65535)
}
phivEndCountHostNodeID OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the remote node to be
evaluated."
::= { phivEndCountEntry 1 }
phivEndCountSecsLastZeroed OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the number of seconds that have elapsed
since the counters for the node in this table row were
last set to zero. This counter is located in the
network management layer, but is returned with the
end system information which follows."
::= { phivEndCountEntry 2 }
phivEndCountUsrBytesRec OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user bytes received from the target host."
::= { phivEndCountEntry 3 }
phivEndCountUsrBytesSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user bytes sent to the target host."
::= { phivEndCountEntry 4 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivEndUCountUsrMessRec OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user messages received from the target host."
::= { phivEndCountEntry 5 }
phivEndCountUsrMessSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user messages sent to the target host."
::= { phivEndCountEntry 6 }
phivEndCountTotalBytesRec OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes received from the target host."
::= { phivEndCountEntry 7 }
phivEndCountTotalBytesSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes sent to the target host."
::= { phivEndCountEntry 8 }
phivEndCountTotalMessRec OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of messages received from the target host."
::= { phivEndCountEntry 9 }
phivEndCountTotalMessSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of messages sent to the target host."
::= { phivEndCountEntry 10 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivEndCountConnectsRecd OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of connects received from the target host."
::= { phivEndCountEntry 11 }
phivEndCountConnectsSent OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of connects sent to the target host."
::= {phivEndCountEntry 12 }
phivEndCountReponseTimeouts OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of response timeouts."
::= { phivEndCountEntry 13 }
phivEndCountRecdConnectResErrs OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of received connect resource errors."
::= {phivEndCountEntry 14 }
-- additional End System objects
phivEndMaxLinks OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum active logical
link count allowed for the executor."
::= { end 3 }
phivEndNSPVers OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255) )
ACCESS read-only
STATUS mandatory
<span class="grey">DECnet Phase IV MIB Working Group [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
DESCRIPTION
"This read-only parameter represents the version number
of the node End Communication S/W. The format is
version number, ECO, and user ECO, e.g., 4.1.0"
::= { end 4 }
phivEndRetransmitFactor OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of times the
source End Communication at the executor node will
restart the retransmission timer when it expires. If
the number is exceeded, Session Control disconnects the
logical link for the user."
::= { end 5 }
phivEndDelayFact OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the number by which to multiply one sixteenth
of the estimated round trip delay to a node to set the
retransmission timer to that node."
::= { end 6 }
phivEndDelayWeight OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This number represents the weight to apply to a
current round trip delay estimate to a remote node
when updating the estimated round trip delay to a node.
On some systems the number must be 1 less than a power
of 2 for computational efficiency."
::= { end 7 }
phivEndInactivityTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum duration of inactivity
(no data in either direction) on a logical link before
the node checks to see if the logical link still works.
<span class="grey">DECnet Phase IV MIB Working Group [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
If no activity occurs within the minimum number of
seconds, End Communication generates artificial
traffic to test the link (End Communication
specification)."
::= { end 8 }
phivEndCountZeroCount OBJECT-TYPE
SYNTAX INTEGER {
other (1),
reset (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When this value is set to 2, all of the counters in
the End System Counter Table are set to zero."
::= { end 9 }
phivEndMaxLinksActive OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the high water mark for the
number of links that were active at any one time."
::= { end 10 }
-- Routing Layer Group
-- The implementation of the Routing Layer Group is mandatory for
-- all systems that implement level 1 routing layer
-- communications.
phivRouteBroadcastRouteTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value determines the maximum time in seconds
allowed between Routing updates on Ethernet
circuits. When this timer expired before a routing
update occurs, a routing update is forced. With a
standard calculation, Routing also uses this timer
to enforce a minimum delay between routing updates."
::= { routing 1 }
phivRouteBuffSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
<span class="grey">DECnet Phase IV MIB Working Group [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter value determines the maximum size of
a Routing message. It therefore determines the maximum
size message that can be forwarded. This size includes
protocol overhead down to and including the End
Communication layer, plus a constant value of 6. (This
value of 6 is included to provide compatibility with
the parameter definition in Phase III, which included
the Routing overhead.) It does not include Routing or
Data link overhead (except for the constant value of
6). There is one buffer size for all circuits.
NOTE: The BUFFER SIZE defines the maximum size messages
that the Routing layer can forward. The SEGMENT BUFFER
SIZE (defined below) defines the maximum size messages
that the End Communication layer can transmit or
receive. The SEGMENT BUFFER SIZE is always less than
or equal to the BUFFER SIZE. Normally the two
parameters will be equal. They may be different to
allow the network manager to alter buffer sizes
on all nodes without interruption of service. They both
include an extra 6 bytes for compatibility with Phase
III."
::= { routing 2 }
phivRouteRoutingVers OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter identifies the executor node's
Routing version number. The format is version number,
ECO, and user ECO, e.g., 4.1.0"
::= { routing 3 }
phivRouteMaxAddr OBJECT-TYPE
SYNTAX INTEGER (1..1023)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the largest node number and,
therefore, number of nodes that can be known about
by the executor node's home area."
::= { routing 4 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivRouteMaxBdcastNonRouters OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum total number of
nonrouters the executor node can have on its Ethernet
circuits."
::= { routing 5 }
phivRouteMaxBdcastRouters OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum total number of
routers the executor node can have on its Ethernet
circuits."
::= { routing 6 }
phivRouteMaxBuffs OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of transmit
buffers that Routing may use for all circuits."
::= { routing 7 }
phivRouteMaxCircuits OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of Routing
circuits that the executor node can know about."
::= { routing 8 }
phivRouteMaxCost OBJECT-TYPE
SYNTAX INTEGER (1..1022)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum total path cost
allowed from the executor to any node within an area.
The path cost is the sum of the circuit costs along
a path between two nodes. This parameter defines the
point where the executor node's Routing routing
<span class="grey">DECnet Phase IV MIB Working Group [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
decision algorithm declares another node unreachable
because the cost of the least costly path to the
other node is excessive. For correct operation, this
parameter must not be less than the maximum path cost
of the network."
::= { routing 9 }
phivRouteMaxHops OBJECT-TYPE
SYNTAX INTEGER (1..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of routing hops
allowable from the executor to any other reachable node
within an area. (A hop is the logical distance over a
circuit between two adjacent nodes.) This parameter
defines the point where the executor node's Routing
routing decision algorithm declares another node
unreachable because the length of the shortest path
between the two nodes is too long. For correct
operation, this parameter must not be less than the
network diameter. (The network diameter is the
reachability distance between the two nodes of the
network having the greatest reachability distance,
where reachability distance is the length the shortest
path between a given pair of nodes.)"
::= { routing 10 }
phivRouteMaxVisits OBJECT-TYPE
SYNTAX INTEGER (1..63)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of nodes a
message coming into the executor node can have visited.
If the message is not for this node and the MAXIMUM
VISITS number is exceeded, the message is discarded.
The MAXIMUM VISITS parameter defines the point where
the packet lifetime control algorithm discards
a packet that has traversed too many nodes. For correct
operation, this parameter must not be less than the
maximum path length of the network. (The maximum path
length is the routing distance between the two nodes of
the network having the greatest routing distance, where
routing distance is the length of the least costly
path between a given pair of nodes.)"
::= { routing 11 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivRouteRoutingTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value determines the maximum time in seconds
allowed between Routing updates on non-Ethernet
circuits. When this timer expires before a routing
update occurs, a routing update is forced."
::= { routing 12 }
phivRouteSegBuffSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter value determines the maximum size of an
end-to-end segment. The size is a decimal integer in
the range 1-65535. This size is in bytes. This size
includes protocol overhead down to and including the
End Communication layer, plus a constant value of 6.
(This value of 6 is included to provide compatibility
with the BUFFER SIZE parameter definition.) It does not
include Routing or Data link overhead (except for the
constant value of 6)."
::= { routing 13 }
phivRouteType OBJECT-TYPE
SYNTAXINTEGER {
routing-III (1),
nonrouting-III (2),
area (3),
routing-IV (4),
nonrouting-IV (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates the type of the executor
node. The node-type is one of the following:
routing-III
nonrouting-III
routing-IV
ronrouting-IV
area
A routing node has full routing capability. A
<span class="grey">DECnet Phase IV MIB Working Group [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
nonrouting node contains a subset of the Routing
routing modules. The III and IV indicate the DNA
phase of the node. Nonrouting nodes can deliver
and receive packets to and from any node, but cannot
route packets from other nodes through to other nodes.
An area node routes between areas. Refer to the Routing
specification for details.
For adjacent nodes, this is a read-only parameter that
indicates the type of the reachable adjacent node.
NOTE: The ROUTING-III and NONROUTING-III values are
incremented by one compared to the standard DECnet
values in order to maintain compliance with <a href="./rfc1155">RFC 1155</a>)"
::= { routing 14 }
phivRouteCountAgedPktLoss OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of aged packet losses."
::= { routing 15 }
phivRouteCountNodeUnrPktLoss OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of node unreachable packet losses."
::= { routing 16 }
phivRouteCountOutRngePktLoss OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of node out-of-range packet losses."
::= { routing 17 }
phivRouteCountOverSzePktLoss OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Oversized packet losses."
::= { routing 18 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivRouteCountPacketFmtErr OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of packet format errors."
::= { routing 19 }
phivRouteCountPtlRteUpdtLoss OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of partial routing update losses."
::= { routing 20 }
phivRouteCountVerifReject OBJECT-TYPE
SYNTAX PhivCounter (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of verification rejects."
::= { routing 21 }
-- Level 1 Routing Table
phivLevel1RouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivLevel1RouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the currently known DECnet Phase
IV Routes."
::= { routing 22 }
phivLevel1RouteEntry OBJECT-TYPE
SYNTAX PhivLevel1RouteEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the currently known DECnet Phase
IV Routes."
INDEX { phivLevel1RouteNodeAddr }
::= { phivLevel1RouteTable 1 }
PhivLevel1RouteEntry ::=
SEQUENCE {
phivLevel1RouteNodeAddr
<span class="grey">DECnet Phase IV MIB Working Group [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
PhivAddr,
phivLevel1RouteCircuitIndex
INTEGER,
phivLevel1RouteCost
INTEGER (0..65535),
phivLevel1RouteHops
INTEGER (0..127),
phivLevel1RouteNextNode
PhivAddr
}
phivLevel1RouteNodeAddr OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the node about which
routing information is contained in this level 1
routing table."
::= { phivLevel1RouteEntry 1 }
phivLevel1RouteCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known circuit. This is
the index to the circuit state table and is the same
value as phivCircuitIndex."
::= { phivLevel1RouteEntry 2 }
phivLevel1RouteCost OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter represents the total cost
over the current path to the destination node. Cost is
a positive integer value associated with using a
circuit. Routing routes messages (data) along the path
between two nodes with the smallest cost. COST is kept
on a remote node basis."
::= { phivLevel1RouteEntry 3 }
phivLevel1RouteHops OBJECT-TYPE
SYNTAX INTEGER (0..127)
ACCESS read-only
STATUS mandatory
DESCRIPTION
<span class="grey">DECnet Phase IV MIB Working Group [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
"This read-only parameter represents the number of hops
over to a destination node. A hop is Routing value
representing the logical distance between two nodes in
a network. HOPS is kept on a remote node basis."
::= { phivLevel1RouteEntry 4 }
phivLevel1RouteNextNode OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only value indicates the next node on the
circuit used to get to the node under scrutiny
(next hop)."
::= { phivLevel1RouteEntry 5 }
-- Additional routing parameters
phivRouteCountZeroCount OBJECT-TYPE
SYNTAX INTEGER {
other (1),
reset (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When this value is set to 2, the following objects are
set to Zero: phivRouteCountAgedPktLoss,
phivRouteCountNodeUnrPktLoss,
phivRouteCountOutRngePktLoss,
phivRouteCountOverSzePktLoss,
phivRouteCountPacketFmtErr,
phivRouteCountPtlRteUpdtLoss, and
phivRouteCountVerifReject."
::= { routing 23 }
phivRouteSystemAddr OBJECT-TYPE
SYNTAX PhivAddr
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DECnet Phase IV node address."
::= { routing 24 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
-- Circuit Group
-- The implementation of the Circuit Group is mandatory for
-- all systems.
-- Circuit Parameters Table
phivCircuitParametersTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivCircuitParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the parameters associated with all
circuits currently known."
::= {circuit 1 }
phivCircuitParametersEntry OBJECT-TYPE
SYNTAX PhivCircuitParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Parameters information about all circuits currently
known."
INDEX { phivCircuitIndex }
::= { phivCircuitParametersTable 1 }
PhivCircuitParametersEntry ::=
SEQUENCE {
phivCircuitIndex
INTEGER,
phivCircuitLineIndex
INTEGER,
phivCircuitCommonState
INTEGER,
phivCircuitCommonSubState
INTEGER,
phivCircuitCommonName
DisplayString,
phivCircuitExecRecallTimer
INTEGER (0..65535),
phivCircuitCommonType
INTEGER,
phivCircuitService
INTEGER,
phivCircuitExecCost
INTEGER (1..25),
phivCircuitExecHelloTimer
<span class="grey">DECnet Phase IV MIB Working Group [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
INTEGER (1..8191)
}
phivCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known circuit."
::= { phivCircuitParametersEntry 1 }
phivCircuitLineIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The line on which this circuit is active. This is
the same as the IfIndex."
::= { phivCircuitParametersEntry 2 }
phivCircuitCommonState OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2),
service (3),
cleared (4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the circuit's Network Management
operational state. NOTE: These values are incremented
by one compared to the standard DECnet values in order
to maintain compliance with <a href="./rfc1155">RFC 1155</a>."
::= { phivCircuitParametersEntry 3 }
phivCircuitCommonSubState OBJECT-TYPE
SYNTAX INTEGER {
starting (1),
reflecting (2),
looping (3),
loading (4),
dumping (5),
triggering (6),
autoservice (7),
autoloading (8),
autodumping (9),
autotriggering (10),
synchronizing (11),
<span class="grey">DECnet Phase IV MIB Working Group [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
failed (12),
running (13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the circuit's Network Management
operational and service substate. NOTE: These values are
incremented by one compared to the standard DECnet values
in order to maintain compliance with <a href="./rfc1155">RFC 1155</a>."
::= { phivCircuitParametersEntry 4 }
phivCircuitCommonName OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..16) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the circuit entry in the table, for example,
SVA-0 or in a level 2 router ASYNC-8 or ETHER-1)."
::= { phivCircuitParametersEntry 5 }
phivCircuitExecRecallTimer OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter represents the minimum number of
seconds to wait before restarting the circuit. A
value of 0 indicates not timer is running."
::= { phivCircuitParametersEntry 6 }
phivCircuitCommonType OBJECT-TYPE
SYNTAX INTEGER {
ddcmp-point (1),
ddcmp-control (2),
ddcmp-tributary (3),
x25 (4),
ddcmp-dmc (5),
ethernet (6),
ci (7),
qp2-dte20 (8),
bisync (9),
other (14),
fddi (15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
<span class="grey">DECnet Phase IV MIB Working Group [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
"Represents the type of the circuit. For X.25 circuits,
the value must be set to X25. For DDCMP and Ethernet
circuits it is read only and is the same value as the
protocol of the associated line.
NOTE: Values 1 - 5 are incremented by one compared to the
standard DECnet values in order to maintain compliance
with <a href="./rfc1155">RFC 1155</a>."
::= { phivCircuitParametersEntry 7 }
phivCircuitService OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value indicates whether or not Network Management
allows service operations on a circuit. The values for
service-control are as follows:
ENABLED SERVICE state and/or service functions are
allowed.
DISABLED SERVICE state and/or service functions are not
allowed.
NOTE: These values are incremented by one compared to the
standard DECnet values in order to maintain compliance
with <a href="./rfc1155">RFC 1155</a>."
::= { phivCircuitParametersEntry 8 }
phivCircuitExecCost OBJECT-TYPE
SYNTAX INTEGER (1..25)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the routing cost of the circuit.
Routing sends messages along the path between two nodes
having the smallest cost."
::= { phivCircuitParametersEntry 9 }
phivCircuitExecHelloTimer OBJECT-TYPE
SYNTAX INTEGER (1..8191)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value determines the frequency of Routing Hello
<span class="grey">DECnet Phase IV MIB Working Group [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
messages sent to the adjacent node on the circuit."
::= { phivCircuitParametersEntry 10 }
-- Circuit Counters Table
phivCircuitCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivCircuitCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the counters associated with all
circuits currently known."
::= { circuit 2 }
phivCircuitCountEntry OBJECT-TYPE
SYNTAX PhivCircuitCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Counter information about all circuits currently known"
INDEX { phivCircuitIndex }
::= { phivCircuitCountTable 1 }
PhivCircuitCountEntry ::=
SEQUENCE {
phivCircuitCountSecLastZeroed
PhivCounter (0..65535),
phivCircuitCountTermPacketsRecd
PhivCounter,
phivCircuitCountOriginPackSent
PhivCounter,
phivCircuitCountTermCongLoss
PhivCounter (0..65535),
phivCircuitCountCorruptLoss
PhivCounter (0..255),
phivCircuitCountTransitPksRecd
PhivCounter,
phivCircuitCountTransitPkSent
PhivCounter,
phivCircuitCountTransitCongestLoss
PhivCounter (0..65535),
phivCircuitCountCircuitDown
PhivCounter (0..255),
phivCircuitCountInitFailure
PhivCounter (0..255),
phivCircuitCountAdjDown
PhivCounter,
<span class="grey">DECnet Phase IV MIB Working Group [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivCircuitCountPeakAdj
PhivCounter,
phivCircuitCountBytesRecd
PhivCounter,
phivCircuitCountBytesSent
PhivCounter,
phivCircuitCountDataBlocksRecd
PhivCounter (0..65535),
phivCircuitCountDataBlocksSent
PhivCounter,
phivCircuitCountUsrBuffUnav
PhivCounter (0..65535)
}
phivCircuitCountSecLastZeroed OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds since the circuit counters for this
circuit were last zeroed."
::= { phivCircuitCountEntry 1 }
phivCircuitCountTermPacketsRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of terminating packets received on this circuit."
::= { phivCircuitCountEntry 2 }
phivCircuitCountOriginPackSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of originating packets sent on this circuit."
::= { phivCircuitCountEntry 3 }
phivCircuitCountTermCongLoss OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of terminating congestion losses on this
circuit."
::= { phivCircuitCountEntry 4 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivCircuitCountCorruptLoss OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of corruption losses on this circuit."
::= { phivCircuitCountEntry 5 }
phivCircuitCountTransitPksRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Transit packets received on this circuit."
::= { phivCircuitCountEntry 6 }
phivCircuitCountTransitPkSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of transit packets sent on this circuit."
::= { phivCircuitCountEntry 7 }
phivCircuitCountTransitCongestLoss OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of transit congestion losses on this circuit."
::= { phivCircuitCountEntry 8 }
phivCircuitCountCircuitDown OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of circuit downs on this circuit."
::= { phivCircuitCountEntry 9 }
phivCircuitCountInitFailure OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Initialization failures on this circuit."
::= { phivCircuitCountEntry 10 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivCircuitCountAdjDown OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This counter indicates the number of adjacency losses
that result from any of the following:
Node listener timeout
Invalid data received at node listener
Unexpected control (initialization or verification)
message received
Routing message received with a checksum error
Node identification from a routing message or a
Hello message that is not the one expected Hello
message received indicating that connectivity
became one-way
Adjacency idled."
::= { phivCircuitCountEntry 11 }
phivCircuitCountPeakAdj OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This counter indicates the maximum number of nodes
that are up on the circuit."
::= { phivCircuitCountEntry 12 }
phivCircuitCountBytesRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes received on this circuit."
::= { phivCircuitCountEntry 13 }
phivCircuitCountBytesSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes sent on this circuit."
::= { phivCircuitCountEntry 14 }
phivCircuitCountDataBlocksRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
<span class="grey">DECnet Phase IV MIB Working Group [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
DESCRIPTION
"Number of data blocks received on this circuit."
::= { phivCircuitCountEntry 15 }
phivCircuitCountDataBlocksSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data blocks sent on this circuit."
::= { phivCircuitCountEntry 16 }
phivCircuitCountUsrBuffUnav OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user buffer unavailable errors."
::= { phivCircuitCountEntry 17 }
-- Additional Circuit Parameters
phivCircuitOrigQueueLimit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter indicates the maximum number of
originating packets that may be outstanding on this
circuit. This does not include route-thru traffic."
::= { circuit 3 }
phivCircuitCountZeroCount OBJECT-TYPE
SYNTAX INTEGER {
other (1),
reset (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When this value is set to 2, all of the counters in the
Circuit Counter Table are set to zero."
::= { circuit 4 }
-- DDCMP Circuit Group
-- The implementation of the DDCMP Circuit Group is mandatory for
-- all systems which support DDCMP circuits.
<span class="grey">DECnet Phase IV MIB Working Group [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
-- DDCMP Parameters Table
phivDDCMPCircuitParametersTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivDDCMPCircuitParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about DDCMP circuit parameters."
::= { ddcmp 1}
phivDDCMPCircuitParametersEntry OBJECT-TYPE
SYNTAX PhivDDCMPCircuitParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Parameters information about DDCMP circuits currently
known."
INDEX { phivDDCMPCircuitIndex }
::= { phivDDCMPCircuitParametersTable 1 }
PhivDDCMPCircuitParametersEntry ::=
SEQUENCE {
phivDDCMPCircuitIndex
INTEGER,
phivDDCMPCircuitAdjNodeAddr
INTEGER (0..65535),
phivDDCMPCircuitTributary
INTEGER (0..255)
}
phivDDCMPCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known DDCMP circuit.
This is the same value as phivCircuitIndex."
::= { phivDDCMPCircuitParametersEntry 1 }
phivDDCMPCircuitAdjNodeAddr OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address of the adjacent node."
::= { phivDDCMPCircuitParametersEntry 2 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivDDCMPCircuitTributary OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Data Link physical tributary
address of the circuit."
::= { phivDDCMPCircuitParametersEntry 3 }
-- DDCMP Circuit Counter Table
phivDDCMPCircuitCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivDDCMPCircuitCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about the DDCMP counters associated with all
circuits currently known."
::= { ddcmp 2 }
phivDDCMPCircuitCountEntry OBJECT-TYPE
SYNTAX PhivDDCMPCircuitCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Counter information about DDCMP circuits now known"
INDEX { phivCircuitIndex }
::= { phivDDCMPCircuitCountTable 1 }
PhivDDCMPCircuitCountEntry ::=
SEQUENCE {
phivDDCMPCircuitErrorsInbd
PhivCounter (0..255),
phivDDCMPCircuitErrorsOutbd
PhivCounter (0..255),
phivDDCMPCircuitRmteReplyTimeouts
PhivCounter (0..255),
phivDDCMPCircuitLocalReplyTimeouts
PhivCounter (0..255),
phivDDCMPCircuitRmteBuffErrors
PhivCounter (0..255),
phivDDCMPCircuitLocalBuffErrors
PhivCounter (0..255),
phivDDCMPCircuitSelectIntervalsElap
PhivCounter (0..65535),
phivDDCMPCircuitSelectTimeouts
PhivCounter (0..255)
}
<span class="grey">DECnet Phase IV MIB Working Group [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivDDCMPCircuitErrorsInbd OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of Data errors inbound."
::= { phivDDCMPCircuitCountEntry 1 }
phivDDCMPCircuitErrorsOutbd OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of outbound data errors."
::= { phivDDCMPCircuitCountEntry 2 }
phivDDCMPCircuitRmteReplyTimeouts OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of remote reply timeouts."
::= { phivDDCMPCircuitCountEntry 3 }
phivDDCMPCircuitLocalReplyTimeouts OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of local Reply timeouts."
::= { phivDDCMPCircuitCountEntry 4 }
phivDDCMPCircuitRmteBuffErrors OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of remote reply time out errors."
::= { phivDDCMPCircuitCountEntry 5 }
phivDDCMPCircuitLocalBuffErrors OBJECT-TYPE
SYNTAX PhivCounter (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of local buffer errors."
::= { phivDDCMPCircuitCountEntry 6 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivDDCMPCircuitSelectIntervalsElap OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Selection intervals that have elapsed."
::= {phivDDCMPCircuitCountEntry 7 }
phivDDCMPCircuitSelectTimeouts OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of selection timeouts."
::= {phivDDCMPCircuitCountEntry 8 }
-- DDCMP Line Count Table
phivDDCMPLineCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivDDCMPLineCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DDCMP Line Count Table."
::= { ddcmp 3 }
phivDDCMPLineCountEntry OBJECT-TYPE
SYNTAX PhivDDCMPLineCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"There is one entry in the table for each line."
INDEX { phivDDCMPLineCountIndex }
::= { phivDDCMPLineCountTable 1 }
PhivDDCMPLineCountEntry ::=
SEQUENCE {
phivDDCMPLineCountIndex
INTEGER,
phivDDCMPLineCountDataErrsIn
PhivCounter (0..255),
phivDDCMPLineCountRmteStationErrs
PhivCounter (0..255),
phivDDCMPLineCountLocalStationErrs
PhivCounter (0..255)
}
<span class="grey">DECnet Phase IV MIB Working Group [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivDDCMPLineCountIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The line on which this entry's equivalence is
effective. The interface identified by a particular
value of this index is the same interface as
identified by the same value of phivLineIndex.
This value is the IfIndex."
::= { phivDDCMPLineCountEntry 1 }
phivDDCMPLineCountDataErrsIn OBJECT-TYPE
SYNTAX PhivCounter ( 0..255 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data errors inbound."
::= { phivDDCMPLineCountEntry 2 }
phivDDCMPLineCountRmteStationErrs OBJECT-TYPE
SYNTAX PhivCounter ( 0..255 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of remote station errors."
::= { phivDDCMPLineCountEntry 3 }
phivDDCMPLineCountLocalStationErrs OBJECT-TYPE
SYNTAX PhivCounter ( 0..255 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of local station errors."
::= { phivDDCMPLineCountEntry 4 }
-- DDCMP Multipoint Circuit Control Group
-- The implementation of the DDCMP Multipoint Circuit Control
-- Group is mandatory for all systems which support DDCMP
-- multipoint control circuits.
phivControlSchedTimer OBJECT-TYPE
SYNTAX INTEGER (50..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the number of milliseconds
<span class="grey">DECnet Phase IV MIB Working Group [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
between recalculation of tributary polling priorities."
DEFVAL { 200 }
::= { control 1 }
phivControlDeadTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the number of milliseconds
between polls of one of the set of dead
tributaries."
DEFVAL { 10000 }
::= { control 2 }
phivControlDelayTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the minimum number of
milliseconds to delay between polls. The delay timer
limits the effect of a very fast control station on
slow tributaries."
::= { control 3 }
phivControlStreamTimer OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the number of milliseconds a
tributary or a half duplex remote station is
allowed to hold the line.
NOTE: This parameter can also be applied to
half-duplex lines of type DDCMP POINT."
DEFVAL { 6000 }
::= { control 4 }
-- DDCMP Multipoint Circuit Control Parameters Table
phivControlParametersTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivControlParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about control circuit parameters."
<span class="grey">DECnet Phase IV MIB Working Group [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
::= { control 5 }
phivControlParametersEntry OBJECT-TYPE
SYNTAX PhivControlParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Parameters information about control circuits
currently known."
INDEX { phivControlCircuitIndex }
::= { phivControlParametersTable 1 }
PhivControlParametersEntry ::=
SEQUENCE {
phivControlCircuitIndex
INTEGER,
phivControlBabbleTimer
INTEGER (1..65535),
phivControlMaxBuffs
INTEGER (0..254),
phivControlMaxTransmits
INTEGER (1..255),
phivControlDyingBase
INTEGER (0..255),
phivControlDyingIncrement
INTEGER (0..255),
phivControlDeadThreshold
INTEGER (0..255),
phivControlDyingThreshold
INTEGER (0..255),
phivControlInactTreshold
INTEGER (0..255),
phivControlPollingState
INTEGER,
phivControlPollingSubState
INTEGER,
phivControlTransTimer
INTEGER (0..65535)
}
phivControlCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known multirpoint
control circuit.
This is the same value as phivCircuitIndex."
::= { phivControlParametersEntry 1 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivControlBabbleTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the number of milliseconds that a
selected tributary or remote half-duplex station is
allowed to transmit."
DEFVAL { 6000 }
::= { phivControlParametersEntry 2 }
phivControlMaxBuffs OBJECT-TYPE
SYNTAX INTEGER (0..254)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of buffers the
tributary can use from a common buffer pool. If not
set, there is no common buffer pool and buffers are
explicitly supplied by the higher level. Count is a
decimal integer in the range 1-254."
::= { phivControlParametersEntry 3 }
phivControlMaxTransmits OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of data
messages that can be transmitted at one time. Count
is a decimal integer in the range 1-255."
DEFVAL { 4 }
::= { phivControlParametersEntry 4 }
phivControlDyingBase OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the base priority to which a
tributary is reset each time it has been polled. A
separate base can be set for each of the indicated
polling states. Base is a decimal integer in the range
0-255. If not set, the defaults are: active, 255;
inactive, 0; and dying, 0."
::= { phivControlParametersEntry 5 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivControlDyingIncrement OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the increment added to the
tributary priority each time the scheduling timer
expires. If not set, the defaults are: active, 0;
inactive, 64; and dying, 16."
::= { phivControlParametersEntry 6 }
phivControlDeadThreshold OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the number of times to poll the
active, inactive, or dying tributary before changing
its polling state to dead because of receive timeouts.
Count is a decimal integer in the range 0-255."
DEFVAL { 8 }
::= { phivControlParametersEntry 7 }
phivControlDyingThreshold OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the number of times to poll the
active or inactive tributary before changing its
polling state to dying because of receive timeouts.
Count is a decimal integer in the range 0-255."
DEFVAL { 2 }
::= { phivControlParametersEntry 8 }
phivControlInactTreshold OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the number of times to poll the
active tributary before changing its polling state to
inactive because of no data response. Count is a
decimal integer in the range
0-255."
DEFVAL { 8 }
::= { phivControlParametersEntry 9 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivControlPollingState OBJECT-TYPE
SYNTAX INTEGER {
automatic (1),
active (2),
inactive (3),
dying (4),
dead (5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the state of the tributary
relative to the multipoint polling algorithm. If not
set the default is AUTOMATIC. The possible states are:
AUTOMATIC
The tributary's state is allowed to vary according to
the operation of the polling algorithm.
ACTIVE/INACTIVE/DYING/DEAD
The tributary is locked in the specified state.
NOTE: These values are incremented by one compared to
the standard DECnet values in order to maintain
compliance with <a href="./rfc1155">RFC 1155</a>."
::= { phivControlParametersEntry 10 }
phivControlPollingSubState OBJECT-TYPE
SYNTAX INTEGER {
active (1),
inactive (2),
dying (3),
dead (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the tributary's state as
determined by the polling algorithm. This applies
only when the polling state is AUTOMATIC and is
read-only to Network Management. Polling-substate is
one of ACTIVE, INACTIVE, DYING, or DEAD. It is
displayed as a tag on the polling state, for example:
AUTOMATIC-INACTIVE."
::= { phivControlParametersEntry 11 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivControlTransTimer OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the number of milliseconds to
delay between data message transmits. Milliseconds is
a decimal integer in the range 0-65535."
DEFVAL { 0 }
::= { phivControlParametersEntry 12 }
-- Ethernet Group
-- The implementation of the Ethernet Group is mandatory
-- for all systems which support ethernet links.
-- Ethernet Parameters Table
phivEthLinkParametersTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivEthLinkParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about ethernet link parameters."
::= { ethernet 1}
phivEthLinkParametersEntry OBJECT-TYPE
SYNTAX PhivEthLinkParametersEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Parameter information about ethernet links currently
known."
INDEX { phivEthLinkIndex }
::= { phivEthLinkParametersTable 1 }
PhivEthLinkParametersEntry ::=
SEQUENCE {
phivEthLinkIndex
INTEGER,
phivEthDesigRouterNodeAddr
PhivAddr,
phivEthMaxRouters
INTEGER (0..255),
phivEthRouterPri
INTEGER (0..127),
phivEthHardwareAddr
OCTET STRING
<span class="grey">DECnet Phase IV MIB Working Group [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
}
phivEthLinkIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The circuit over which this links information is
collected. This is the same as phivCircuitIndex."
::= { phivEthLinkParametersEntry 1 }
phivEthDesigRouterNodeAddr OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value is the address of the designated router."
::= { phivEthLinkParametersEntry 2 }
phivEthMaxRouters OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter is the maximum number of routers (other
than the executor itself) allowed on the circuit by
Routing for circuits that are owned by the executor
node."
::= { phivEthLinkParametersEntry 3 }
phivEthRouterPri OBJECT-TYPE
SYNTAX INTEGER (0..127)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This parameter is the priority that this router is to
have in the selection of designated router for the
circuit on circuits that are owned by the executor
node."
DEFVAL { 64 }
::= { phivEthLinkParametersEntry 4 }
phivEthHardwareAddr OBJECT-TYPE
SYNTAX OCTET STRING ( SIZE (6) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter is the address that is
associated with the line device hardware as seen by
<span class="grey">DECnet Phase IV MIB Working Group [Page 44]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-45" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
the DECnet Software. This value is not the same as
ifPhysAddress."
::= { phivEthLinkParametersEntry 5 }
-- Counters Group
-- The implementation of the Counters Group is mandatory for
-- systems which only support DECnet style locking counters.
-- Counters Table
phivCountersCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivCountersCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Information about ethernet link counters."
::= { counters 1 }
phivCountersCountEntry OBJECT-TYPE
SYNTAX PhivCountersCountEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Counter information about ethernet links currently
known.."
INDEX { phivCountersIndex }
::= { phivCountersCountTable 1 }
PhivCountersCountEntry ::=
SEQUENCE {
phivCountersIndex
INTEGER,
phivCountersCountBytesRecd
PhivCounter,
phivCountersCountBytesSent
PhivCounter,
phivCountersCountDataBlocksRecd
PhivCounter,
phivCountersCountDataBlocksSent
PhivCounter,
phivCountersCountEthUsrBuffUnav
PhivCounter (0..65535),
phivCountersCountMcastBytesRecd
PhivCounter,
phivCountersCountDataBlksRecd
PhivCounter,
phivCountersCountDataBlksSent
<span class="grey">DECnet Phase IV MIB Working Group [Page 45]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-46" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
PhivCounter,
phivCountersCountMcastBlksRecd
PhivCounter,
phivCountersCountBlksSentDef
PhivCounter,
phivCountersCountBlksSentSingleCol
PhivCounter,
phivCountersCountBlksSentMultCol
PhivCounter,
phivCountersCountSendFailure
PhivCounter,
phivCountersCountCollDetectFailure
PhivCounter (0..65535),
phivCountersCountReceiveFailure
PhivCounter (0..65535),
phivCountersCountUnrecFrameDest
PhivCounter (0..65535),
phivCountersCountDataOver
PhivCounter (0..65535),
phivCountersCountSysBuffUnav
PhivCounter (0..65535),
phivCountersCountUsrBuffUnav
PhivCounter (0..65535)
}
phivCountersIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interface to which these counters apply. This is
the same interface as identified by the same value of
phivLineIndex. This value is the IfIndex."
::= { phivCountersCountEntry 1 }
phivCountersCountBytesRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes received over this link."
::= { phivCountersCountEntry 2 }
phivCountersCountBytesSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes sent over this link."
<span class="grey">DECnet Phase IV MIB Working Group [Page 46]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-47" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
::= { phivCountersCountEntry 3 }
phivCountersCountDataBlocksRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data blocks received over this link."
::= { phivCountersCountEntry 4 }
phivCountersCountDataBlocksSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data blocks sent over this link."
::= { phivCountersCountEntry 5 }
phivCountersCountEthUsrBuffUnav OBJECT-TYPE
SYNTAX PhivCounter (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user buffer unavailable errors over this
link."
::= { phivCountersCountEntry 6 }
phivCountersCountMcastBytesRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of multicast bytes received over this link."
::= { phivCountersCountEntry 7 }
phivCountersCountDataBlksRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data blocks received over this link."
::= { phivCountersCountEntry 8 }
phivCountersCountDataBlksSent OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
<span class="grey">DECnet Phase IV MIB Working Group [Page 47]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-48" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
"Number of data blocks sent over this link."
::= { phivCountersCountEntry 9 }
phivCountersCountMcastBlksRecd OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of multicast blocks received over this link."
::= { phivCountersCountEntry 10 }
phivCountersCountBlksSentDef OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of blocks sent, initially deferred over this
link."
::= { phivCountersCountEntry 11 }
phivCountersCountBlksSentSingleCol OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of blocks sent, single collision over this link."
::= { phivCountersCountEntry 12 }
phivCountersCountBlksSentMultCol OBJECT-TYPE
SYNTAX PhivCounter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of blocks sent, multiple collisions over this
link."
::= { phivCountersCountEntry 13 }
phivCountersCountSendFailure OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of send failures over this link."
::= { phivCountersCountEntry 14 }
phivCountersCountCollDetectFailure OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
<span class="grey">DECnet Phase IV MIB Working Group [Page 48]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-49" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
STATUS mandatory
DESCRIPTION
"Number of collision detect check failures over this
link."
::= { phivCountersCountEntry 15 }
phivCountersCountReceiveFailure OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of receive failures over this link."
::= { phivCountersCountEntry 16 }
phivCountersCountUnrecFrameDest OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of unrecognized frame destinations over this
link."
::= { phivCountersCountEntry 17 }
phivCountersCountDataOver OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of data overruns over this link."
::= { phivCountersCountEntry 18 }
phivCountersCountSysBuffUnav OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of system buffer unavailables over this link."
::= { phivCountersCountEntry 19 }
phivCountersCountUsrBuffUnav OBJECT-TYPE
SYNTAX INTEGER ( 0..65535 )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of user buffer unavailables."
::= { phivCountersCountEntry 20 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 49]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-50" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
-- Adjacency Group
-- The implementation of the Adjacency Group is mandatory for all
-- conformant implementations of this memo.
phivAdjTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivAdjEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Adjacency Table."
::= { adjacency 1 }
phivAdjEntry OBJECT-TYPE
SYNTAX PhivAdjEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"There is one entry in the table for each adjacency."
INDEX { phivAdjCircuitIndex }
::= { phivAdjTable 1 }
PhivAdjEntry ::=
SEQUENCE {
phivAdjCircuitIndex
INTEGER,
phivAdjNodeAddr
PhivAddr,
phivAdjBlockSize
INTEGER,
phivAdjListenTimer
INTEGER (1..65535),
phivAdjCircuitEtherServPhysAddr
OCTET STRING,
phivAdjType
INTEGER,
phivAdjState
INTEGER,
phivAdjPriority
INTEGER,
phivAdjExecListenTimer
INTEGER (1..65535)
}
phivAdjCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
<span class="grey">DECnet Phase IV MIB Working Group [Page 50]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-51" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
DESCRIPTION
"A unique index value for each known circuit."
::= { phivAdjEntry 1 }
phivAdjNodeAddr OBJECT-TYPE
SYNTAX PhivAddr -- OCTET STRING (SIZE (2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address of the adjacent node."
::= { phivAdjEntry 2 }
phivAdjBlockSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only parameter is the block size that was
negotiated with the adjacent Routing layer during Routing
initialization over a particular circuit. It includes the
routing header, but excludes the data link header. This
parameter is qualified by ADJACENT NODE."
::= { phivAdjEntry 3 }
phivAdjListenTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value determines the maximum number of seconds
allowed to elapse before Routing receives some message
(either a Hello message or a user message) from the
adjacent node on the circuit. It was agreed during
Routing initialization with the adjacent Routing layer.
This parameter is qualified by ADJACENT NODE."
::= { phivAdjEntry 4 }
phivAdjCircuitEtherServPhysAddr OBJECT-TYPE
SYNTAX OCTET STRING ( SIZE (6) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates the Ethernet physical address
of an adjacent node that is being serviced on this
circuit. This parameter is a qualifier for SERVICE
SUBSTATE."
::= { phivAdjEntry 5 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 51]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-52" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivAdjType OBJECT-TYPE
SYNTAX INTEGER {
routing-III (1),
nonrouting-III (2),
area (3),
routing-IV (4),
nonrouting-IV (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This parameter indicates the type of adjacency.
For adjacent nodes, this is a read-only parameter that
indicates the type of the reachable adjacent node.
NOTE: The routing-III and nonrouting-III values are
incremented by one compared to the standard DECnet
values in order to maintain compliance with <a href="./rfc1155">RFC 1155</a>)"
::= { phivAdjEntry 6 }
phivAdjState OBJECT-TYPE
SYNTAX INTEGER {
initializing (1), -- Ethernet one-way
up (2), -- Ethernet two-way
run (3), -- The eight DDCMP/X.25 states
circuit-rejected (4),
data-link-start (5),
routing-layer-initialize (6),
routing-layer-verify (7),
routing-layer-complete (8),
off (9),
halt (10)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value indicates the state of a router adjacency.
On adjacencies over a circuit of type
(phivCircuitCommonType) Ethernet, CI, or FDDI, with an
adjacent node of type (phivAdjType) ROUTING IV or AREA,
this variable is the state of the Ethernet
Initialization Layer for this adjacency, and can have
values INITIALIZING or UP. (See <a href="#section-9.1.1">Section 9.1.1</a> of
DECnet Phase IV Routing Layer Functional Specification.)
On adjacencies over a circuit of type
(phivCircuitCommonType) Ethernet, CI, or FDDI, with an
adjacent node of type (phivAdjType) NONROUTING IV,
<span class="grey">DECnet Phase IV MIB Working Group [Page 52]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-53" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
this variable will always take on the value UP.
On adjacencies over a circuit of type
(phivCircuitCommonType) DDCMP POINT, DDCMP CONTROL,
DDCMP TRIBUTARY, DDCMP DMC, or X.25, this variable is
the state of the Routing Layer Initialization Circuit
State. (See <a href="#section-7.3">section 7.3</a>, ibid.) It can have values
between RUN and HALT.
On adjacencies over a circuit of type
(phivCircuitCommonType) OTHER, this variable may be
used in a manner consistent with the Initialization
Layer used on that circuit."
::= { phivAdjEntry 7 }
phivAdjPriority OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Priority assigned by the adjacent node for this
circuit."
::= { phivAdjEntry 8 }
phivAdjExecListenTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This read-only value determines the maximum number of
seconds allowed to elapse before Routing receives some
message (either a Hello message or a user message) from
the adjacent node on the circuit. It was agreed during
Routing initialization with the adjacent Routing layer."
::= { phivAdjEntry 9 }
-- Line Group
-- The implementation of the Line Group is mandatory for all
-- conformant implementations of this memo.
phivLineTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivLineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Line Table."
::= { line 1 }
<span class="grey">DECnet Phase IV MIB Working Group [Page 53]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-54" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
phivLineEntry OBJECT-TYPE
SYNTAX PhivLineEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"There is one entry in the table for each line."
INDEX { phivLineIndex }
::= { phivLineTable 1 }
PhivLineEntry ::=
SEQUENCE {
phivLineIndex
INTEGER,
phivLineName
DisplayString,
phivLineState
INTEGER,
phivLineSubstate
INTEGER,
phivLineService
INTEGER,
phivLineDevice
DisplayString,
phivLineReceiveBuffs
INTEGER (0..65535),
phivLineProtocol
INTEGER,
phivLineServiceTimer
INTEGER (1..65535),
phivLineMaxBlock
INTEGER (1..65535)
}
phivLineIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The line on which this entry's equivalence is effective.
This is the same as the IfIndex."
::= { phivLineEntry 1 }
phivLineName OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..16) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
<span class="grey">DECnet Phase IV MIB Working Group [Page 54]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-55" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
"The name of the line on this row of the table."
::= { phivLineEntry 2 }
phivLineState OBJECT-TYPE
SYNTAX INTEGER {
on (1),
off (2),
service (3),
cleared (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents Network Management operational
state.
NOTE that these values are incremented by one compared to
the standard DECnet values."
::= { phivLineEntry 3 }
phivLineSubstate OBJECT-TYPE
SYNTAX INTEGER {
starting (1),
reflecting (2),
looping (3),
loading (4),
dumping (5),
triggering (6),
auto-service (7),
auto-loading (8),
auto-dumping (9),
auto-triggering (10),
synchronizing (11),
failed (12),
running (13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the line's read-only Network
Management substate.
NOTE that these values are incremented by one compared to
the standard DECnet values."
::= { phivLineEntry 4 }
phivLineService OBJECT-TYPE
SYNTAX INTEGER {
starting (1),
reflecting (2),
<span class="grey">DECnet Phase IV MIB Working Group [Page 55]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-56" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
looping (3),
other (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the line's read-only Network
Management service.
NOTE that these values are incremented by one compared to
the standard DECnet values and OTHER is a new addition."
::= { phivLineEntry 5 }
phivLineDevice OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..16) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Physical Link device to be
used on the line."
::= { phivLineEntry 6 }
phivLineReceiveBuffs OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the number of receive buffers
reserved for the line. It is a decimal number in
the range 0-65535. 0 is supported for those vendors
that do not reserve buffers on a per line basis and
use a pool of buffers that can be used by any line."
::= { phivLineEntry 7 }
phivLineProtocol OBJECT-TYPE
SYNTAX INTEGER {
ddcmp-point (1),
ddcmp-control (2),
ddcmp-tributary (3),
reserved (4),
ddcmp-dmc (5),
lapb (6),
ethernet (7),
ci (8),
qp2 (9),
other (14),
fddi (15)
}
ACCESS read-only
<span class="grey">DECnet Phase IV MIB Working Group [Page 56]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-57" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
STATUS mandatory
DESCRIPTION
"This value represents the protocol used on the line
device. Note that these values are incremented by
one compared to the standard DECnet values."
::= { phivLineEntry 8 }
phivLineServiceTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the amount of time in
milliseconds allowed to elapse before a Data Link
receive request completes while doing service
operations."
::= { phivLineEntry 9 }
phivLineMaxBlock OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Data Link maximum block
size on the line."
::= { phivLineEntry 10 }
-- Non Broadcast Line Group
-- The implementation of the Non Broadcast Line Group is
-- mandatory for all systems which implement non broadcast
-- lines.
phivNonBroadcastTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivNonBroadcastEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Non Broadcast Table."
::= { nonBroadcastLine 1 }
phivNonBroadcastEntry OBJECT-TYPE
SYNTAX PhivNonBroadcastEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"There is one entry in the table for each
Non Broadcast line."
<span class="grey">DECnet Phase IV MIB Working Group [Page 57]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-58" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
INDEX { phivNonBroadcastIndex }
::= { phivNonBroadcastTable 1 }
PhivNonBroadcastEntry ::=
SEQUENCE {
phivNonBroadcastIndex
INTEGER,
phivNonBroadcastController
INTEGER,
phivNonBroadcastDuplex
INTEGER,
phivNonBroadcastClock
INTEGER,
phivNonBroadcastRetransmitTimer
INTEGER (1..65535)
}
phivNonBroadcastIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Non Broadcast line on which this entry's
equivalence is effective. This is the same value
as the IfIndex."
::= { phivNonBroadcastEntry 1 }
phivNonBroadcastController OBJECT-TYPE
SYNTAX INTEGER {
normal (1),
loopback (2),
other (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Physical Link hardware
controller mode for the line device. The values
for controller-mode are:
NORMAL For normal controller operating mode.
LOOPBACK For software controllable loopback of the
controller. On those devices that can support this
mode, it causes all transmitted messages to be looped
back from within the controller itself. This is
accomplished without any manual intervention other
than the setting of this parameter value.
<span class="grey">DECnet Phase IV MIB Working Group [Page 58]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-59" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
OTHER indicates function is not supported
Note that these values are incremented by one compared to
the standard DECnet values."
::= { phivNonBroadcastEntry 2 }
phivNonBroadcastDuplex OBJECT-TYPE
SYNTAX INTEGER {
full (1),
half (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Physical Link hardware
duplex mode of the line device. The possible modes
are:
FULL Full-duplex
HALF Half-duplex
Note that these values are incremented by one compared to
the standard DECnet values."
::= { phivNonBroadcastEntry 3 }
phivNonBroadcastClock OBJECT-TYPE
SYNTAX INTEGER {
external (1),
internal (2),
other (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents the Physical Link hardware clock
mode for the line device. The values for clock-mode are:
INTERNAL For software controllable loopback use of
the clock. On those devices that can support this
mode, it causes the device to supply a clock signal
such that a transmitted messages can be looped
back from outside the device. This may require manual
intervention other than the setting of this parameter
value. For example, the operator may have to connect
a loopback plug in place of the normal line.
EXTERNAL For normal clock operating mode, where the
clock signal is supplied externally to the controller.
Note that these values are incremented by one compared to
<span class="grey">DECnet Phase IV MIB Working Group [Page 59]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-60" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
the standard DECnet values."
::= { phivNonBroadcastEntry 4 }
phivNonBroadcastRetransmitTimer OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value represents number of milliseconds before
the Data Link retransmits a block on the line. On
half-duplex lines, this parameter is the select timer."
DEFVAL { 3000 }
::= { phivNonBroadcastEntry 5 }
-- Area Parameters Group
-- The implementation of the Area Parameters Group is mandatory
-- for all systems which implement level 2 routing.
phivAreaTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhivAreaEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Table of information kept on all areas known to
this unit."
::= { area 1 }
phivAreaEntry OBJECT-TYPE
SYNTAX PhivAreaEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The area routing information."
INDEX { phivAreaNum }
::= { phivAreaTable 1 }
PhivAreaEntry ::=
SEQUENCE {
phivAreaNum
INTEGER,
phivAreaState
INTEGER,
phivAreaCost
Gauge,
phivAreaHops
INTEGER,
phivAreaNextNode
<span class="grey">DECnet Phase IV MIB Working Group [Page 60]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-61" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
PhivAddr,
phivAreaCircuitIndex
INTEGER
}
phivAreaNum OBJECT-TYPE
SYNTAX INTEGER (0..64)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value indicates the area number of this entry."
::= { phivAreaEntry 1 }
phivAreaState OBJECT-TYPE
SYNTAX INTEGER {
reachable (4),
unreachable (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value indicates the state of the area"
::= { phivAreaEntry 2 }
phivAreaCost OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total cost over the current path to the
destination area. Cost is a value associated with
using a circuit. Routing routes messages (data)
along the path between 2 areas with the smallest
cost."
::= { phivAreaEntry 3 }
phivAreaHops OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hops to a destination area. A hop is
the routing value representing the logical distance
between two areas in network."
::= { phivAreaEntry 4 }
phivAreaNextNode OBJECT-TYPE
SYNTAX PhivAddr
ACCESS read-only
<span class="grey">DECnet Phase IV MIB Working Group [Page 61]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-62" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
STATUS mandatory
DESCRIPTION
"The next node on the circuit used to get to the
area under scrutiny."
::= { phivAreaEntry 5 }
phivAreaCircuitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index value for each known circuit."
::= { phivAreaEntry 6 }
-- Additional Area Parameters
phivAreaMaxCost OBJECT-TYPE
SYNTAX INTEGER (1..1022)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum total path cost
allowed from the executor to any other level 2 routing
node. The AREA MAXIMUM COST number is decimal in the
range 1-1022. This parameter is only applicable if
the executor node is of type AREA."
::= { area 2 }
phivAreaMaxHops OBJECT-TYPE
SYNTAX INTEGER (1..30)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the maximum number of routing hops
allowable from the executor to any other level 2
routing node. This parameter is only applicable if the
executor node is of type AREA."
::= { area 3 }
phivRouteMaxArea OBJECT-TYPE
SYNTAX INTEGER (1..63)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value represents the largest area number and,
therefore, number of areas that can be known about
by the executor node's Routing. This parameter is only
applicable if the executor node is of type AREA."
<span class="grey">DECnet Phase IV MIB Working Group [Page 62]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-63" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
::= { area 4 }
END
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Acknowledgements</span>
This document is the result of work undertaken the by DECnet Phase IV
MIB working group. In addition, the special contributions and
comments of the following members are also acknowledged:
Chris Chiotasso, Sparticus
Steven Hunter, National Energy Research Supercomputer Center,
Lawrence Livermore National Laboratory
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. References</span>
Cerf, V., "IAB Recommendations for the Development of Internet
Network Management Standards", <a href="./rfc1052">RFC 1052</a>, NRI, April 1988.
Rose M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based internets", <a href="./rfc1155">RFC 1155</a>,
Performance Systems International, Hughes LAN Systems, May 1990.
McCloghrie K., and M. Rose, "Management Information Base for Network
Management of TCP/IP-based internets", <a href="./rfc1156">RFC 1156</a>, Hughes LAN Systems,
Performance Systems International, May 1990.
Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple Network
Management Protocol", <a href="./rfc1157">RFC 1157</a>, SNMP Research, Performance Systems
International, Performance Systems International, MIT Laboratory for
Computer Science, May 1990.
McCloghrie K., and M. Rose, Editors, "Management Information Base for
Network Management of TCP/IP-based internets", <a href="./rfc1213">RFC 1213</a>, Performance
Systems International, March 1991.
Rose, M., and K. McCloghrie, Editors, "Concise MIB Definitions", <a href="./rfc1212">RFC</a>
<a href="./rfc1212">1212</a>, Performance Systems International, Hughes LAN Systems, March
1991.
Cook, J., Editor, "Definitions of Managed Objects for the Ethernet-
like Interface Types", <a href="./rfc1284">RFC 1284</a>, Chipcom Corporation, December 1991.
Digital Equipment Corporation, "DECnet-ULTRIX NCP Command Reference",
Digital Equipment Corporation, Maynard, Massachusetts.
Digital Equipment Corporation, "DECnet-ULTRIX USE Guide", Digital
Equipment Corporation, Maynard, Massachusetts.
<span class="grey">DECnet Phase IV MIB Working Group [Page 63]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-64" ></span>
<span class="grey"><a href="./rfc1289">RFC 1289</a> DECnet Phase IV MIB December 1991</span>
Digital Equipment Corporation, "DECnet DIGITAL Network Architecture,
Network Management Functional Specification", Version 4.0.0. Digital
Equipment Corporation, Maynard, Massachusetts, July 1983.
Digital Equipment Corporation, "DECnet DIGITAL Network Architecture,
Routing Layer Functional Specification", Version 2.0.0. Digital
Equipment Corporation, Maynard, Massachusetts, May 1983.
Security Considerations
Security issues are not discussed in this memo.
Author's Address
Jon Saperia
Digital Equipment Corporation
40 Old Bolton Road
Stow, Massachusetts 01775-1215
Phone: 508-496-8333
EMail: saperia@enet.dec.com
DECnet Phase IV MIB Working Group [Page 64]
</pre>
|