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
|
Network Management Parameters
(last updated 2008-11-25)
For the management of hosts and gateways on the Internet a data
structure for the information has been defined. This data structure
should be used with any of several possible management protocols, such
as the "Simple Network Management Protocol" (SNMP) [RFC1157], or the
"Common Management Information Protocol over TCP" (CMOT) [RFC1095].
The data structure is the "Structure and Indentification of Management
Information for TCP/IP-based Internets" (SMI) [RFC1155], and the
"Management Information Base for Network Management of TCP/IP-based
Internets" (MIB-II) [RFC1213].
The SMI includes the provision for parameters or codes to indicate
experimental or private data structures. These parameter assignments
are listed here.
The older "Simple Gateway Monitoring Protocol" (SGMP) [RFC1028] also
defined a data structure. The parameter assignments used with SGMP
are included here for historical completeness.
The network management object identifiers are under the iso (1), org
(3), dod (6), internet (1), or 1.3.6.1, branch of the name space.
The major branches are:
1 iso
1.3 org
1.3.6 dod
1.3.6.1 internet
1.3.6.1.1 directory
1.3.6.1.2 mgmt
1.3.6.1.2.1 mib-2
1.3.6.1.2.1.2.2.1.3 ifType
1.3.6.1.2.1.10 transmission
1.3.6.1.2.1.10.23 transmissionppp
1.3.6.1.2.1.27 application
1.3.6.1.2.1.28 mta
1.3.6.1.2.2 pib
1.3.6.1.3 experimental
1.3.6.1.4 private
1.3.6.1.4.1 enterprise
1.3.6.1.5 security
1.3.6.1.6 SNMPv2
1.3.6.1.6.1 snmpDomains
1.3.6.1.6.2 snmpProxys
1.3.6.1.6.3 snmpModules
1.3.6.1.7 mail
1.3.6.1.8 features
SMI Network Management Directory Codes:
Prefix: iso.org.dod.internet.directory (1.3.6.1.1.) - per [RFC4520]
Registration procedures: Expert Review with Specification Required
Decimal Name Description Reference
------- ---- ----------- ---------
0 Reserved Reserved for future use [IANA]
1 nisSchema Network Info Service Schema [RFC2307]
2 NameForm Naming Plan [RFC2377]
3 AuxObject Auxiliary Object Class [RFC2377]
4 vendorName Vendor Name [RFC3045]
5 vendorVersion Vendor Version [RFC3045]
6 pcimSchema Policy Core Information Model LDAP Schema [RFC3703]
7 LCUP LDAP Client Update Protocol [RFC3928]
8 cancelOp LDAP Cancel Operation [RFC3909]
9 pcelsSchema PCELS Schema [RFC4104]
10 uddi Universal Description, Discovery & Integration [RFC4403]
11 vPIM Voice Messaging Directory Service [RFC4237]
12 assertion Assertion Control [RFC4528]
13 ReadEntry Read Entry Controls [RFC4527]
14 increment LDAP Modify-Increment [RFC4525]
15 x509 x.509 Certificates [RFC4523]
16 uuid entryUUID [RFC4530]
17 LBURP LDAP Bulk Update/Replication Protocol [RFC4373]
18 ASN1 module LDAP ASN.1 Module [RFC4511]
19 turn LDAP Turn Operation [RFC4531]
20 entryDN LDAP entryDN Operational Attribute [RFC5052]
SMI Network Management Directory Code Name Form for Domain Objects:
Prefix: iso.org.dod.internet.directory.NameForm (1.3.6.1.1.2.)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 domainNameForm [RFC2377]
2 dcOrganizationNameForm [RFC2377]
3 dcOrganizationalUnitNameForm [RFC2377]
4 dcLocalityNameForm [RFC2377]
5 uidOrganizationalPersonNameForm [RFC2377]
SMI Network Management Directory Auxiliary Object Class Codes:
Prefix: iso.org.dod.internet.directory.AuxObject (1.3.6.1.1.3.)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 uidObject [RFC2377]
SMI Network Management Directory Policy Core Information Model LDAP Schema
Prefix: iso.org.dod.internet.directory.pcimSchema (1.3.6.1.1.6.)
Please see: http://www.iana.org/assignments/pcim-oids
SMI Network Management MGMT Codes:
Prefix: iso.org.dod.internet.mgmt (1.3.6.1.2.)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved Reserved [IANA]
1 mib-2 MIB [McCloghrie]
2 pib PIB [RFC3159]
Prefix: iso.org.dod.internet.mgmt.mib-2 (1.3.6.1.2.1)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved Reserved [IANA]
1 system System [RFC1213]
2 interfaces Interfaces [RFC1213]
3 at Address Translation [RFC1213]
4 ip Internet Protocol [RFC1213]
5 icmp Internet Control Message [RFC1213]
6 tcp Transmission Control Protocol [RFC1213]
7 udp User Datagram Protocol [RFC1213]
8 egp Exterior Gateway Protocol [RFC1213]
9 cmot CMIP over TCP [RFC1213]
10 transmission Transmission [RFC1213]
11 snmp Simple Network Management [RFC1213]
12 GenericIF Generic Interface Extensions
-- [RFC1229,RFC1239]
13 Appletalk Appletalk Networking [RFC1742]
14 ospf Open Shortest Path First [RFC1253,FB77]
15 bgp Border Gateway Protocol [RFC1657]
16 rmon Remote Network Monitoring [RFC1271,SXW]
17 bridge Bridge Objects [RFC1286,EXD]
18 DecnetP4 Decnet Phase 4 [RFC1559, Saperia]
19 Character Character Streams [RFC1658]
20 snmpParties SNMP Parties [RFC1353]
21 snmpSecrets SNMP Secrets [RFC1353]
22 snmpDot3RptrMgt [RFC2108]
23 rip-2 Routing Information Protocol [RFC1389]
24 ident Identification Protocol [RFC1414]
25 host Host Resources [RFC1514]
26 snmpDot3MauMgt 802.3 Medium Attachment Units [RFC2668]
27 application Network Services Monitoring [RFC2248]
28 mta Mail Monitoring [RFC2249]
29 dsa X.500 Directory Monitoring [RFC1567]
30 IANAifType Interface Types [RFC1573]
31 ifMIB Interface Types [RFC1573]
32 dns Domain Name System [RFC1611]
33 upsMIB Uninterruptible Power Supplies [RFC1628]
34 snanauMIB SNA NAU MIB [RFC1666]
35 etherMIB Ethernet-like generic objects [RFC2665]
36 sipMIB SMDS inteface objects [RFC1694]
37 atmMIB ATM objects [RFC2515]
38 mdmMIB Dial-up modem objects [RFC1696]
39 rdbmsMIB relational database objects [RFC1697]
40 flowMIB traffic flow objects [RFC2064]
41 snaDLC SNA SDLC [RFC1747]
42 dot5SrMIB Token Ring Station Source Route [RFC1748]
43 printMIB Printer [RFC1759]
44 mipMIB Mobile IP [RFC2006]
45 dot12MIB IEEE 802.12 [RFC2020]
46 dlswMIB Data Link Switch [RFC2024]
47 entityMIB Entity [RFC2037]
48 ipMIB Internet Protocol MIB Module [RFC2011]
49 tcpMIB TCP MIB Module [RFC2012]
50 udpMIB UDP MIB Module [RFC2013]
51 rsvp RSVP MIB [RFC2206]
52 intSrv Integrated Services MIB [RFC2213]
53 vgRptrMIB IEEE 802.12 Repeater MIB [RFC2266]
54 sysApplMIB System Application MIB [RFC2287]
55 ipv6MIB IP Version 6 MIB [RFC2465]
56 ipv6IcmpMIB ICMPv6 Group MIB [RFC2466]
57 marsMIB Multicast Address Resolution [RFC2417]
58 perfHistTCMIB PerfHist-TC-MIB [RFC2493]
59 atmAccountingInformationMIB [RFC2512]
60 accountingControlMIB [RFC2513]
61 IANATn3270eTCMIB IANATn3270eTC-MIB [RFC2561]
62 applicationMib Application Management MIB [RFC2564]
63 schedMIB Disman Schedule MIB [RFC2591]
64 scriptMIB Disman Script MIB [RFC3165]
65 wwwMIB WWW Service MIB [RFC2594]
66 dsMIB Directory Server Monitoring [RFC2605]
67 radiusMIB RADIUS MIB [RFC2618]
68 vrrpMIB VRRP MIB [Hinden]
69 docsDev DOCS-CABLE-DEVICE-MIB [RFC2669]
70 etherChipsetMIB ETHER-CHIPSET-MIB [RFC2666]
71 nhrpMIB NBMA NHRP MIB [RFC2677]
72 ianaAddressFamily ianaAddressFamilyNumbers [RFC2677]
73 ianalanguagemib IANA Language MIB [RFC3165]
74 agentxMIB AGENTX-MIB [RFC2742]
75 fcFeMIB FIBRE-CHANNEL-FE-MIB [RFC2837]
76 inetAddressMIB INET Address MIB [RFC2851]
77 ifInvertedStackMIB IF Inverted Stack MIB [RFC2864]
78 hcnumTC HCNUM Textual Conventions [RFC2856]
79 ptopoMIB PTOPO-MIB [RFC2922]
80 pingMIB DISMAN-PING-MIB [RFC2925]
81 traceRouteMIB DISMAN-TRACEROUTE-MIB [RFC2925]
82 lookupMIB DISMAN-NSLOOKUP-MIB [RFC2925]
83 ipMRouteStdMIB IPMROUTE-STD-MIB [RFC2932]
84 ianaipRouteProtocolMIB IANA-RTPROTO-MIB [RFC2932]
85 igmpStdMIB IGMP-STD-MIB [RFC2933]
86 frAtmIwfMIB FR-ATM-PVC-SERVICE-IWF-MIB [RFC2955]
87 rtpMIB RTP-MIB [RFC2959]
88 dismanEventMIB DISMAN-EVENT-MIB [RFC2981]
89 copsClientMIB COPS-CLIENT-MIB [RFC2940]
90 dismanExpressionMIB DISMAN-EXPRESSION-MIB [RFC2982]
91 mldMIB IPV6-MLD-MIB [RFC3019]
92 notificationLogMIB NOTIFICATION-LOG-MIB [RFC3014]
93 pintMIB PINT-MIB [RFC3055]
94 circuitIfMIB CIRCUIT-IF-MIB [RFC3201]
95 frsldMIB FRSLD-MIB [RFC3202]
96 diffServDSCPTC DIFFSERV-DSCP-TC [RFC3289]
97 diffServMib DIFFSERV-MIB [RFC3289]
98 gsmpMIB GSMP-MIB [RFC3295]
99 entitySensorMIB ENTITY-SENSOR-MIB [RFC3433]
100 transportAddressMIB TRANSPORT-ADDRESS-MIB [RFC3419]
101 mallocMIB MALLOC-MIB [RFC3559]
102 ianamallocMIB IANA-MALLOC-MIB [RFC3559]
103 ipv6FlowLabelMIB IPV6-FLOW-LABEL-MIB [RFC3595]
104 sctpMIB SCTP-MIB [RFC3873]
105 powerEthernetMIB POWER-ETHERNET-MIB [RFC3621]
106 ianaCharsetMIB IANA-CHARSET-MIB [RFC3808]
107 hcPerfHistTCMIB HC-PerfHist-TC-MIB [RFC-ietf-adslmib-hc-tc-07.txt]
108 diffServConfigMib DIFFSERV-CONFIG-MIB [RFC3747]
109 ianaPrinterMIB IANA-PRINTER-MIB [RFC3805]
110 ianafinisherMIB IANA-FINISHER-MIB [RFC3806]
111 finisherMIB Finisher-MIB [RFC3806]
112 rohcMIB ROHC-MIB [RFC3816]
113 rohcUncmprMIB ROHC-UNCOMPRESSED-MIB [RFC3816]
114 rohcRtpMIB ROHC-RTP-MIB [RFC3816]
115 tripTC TRIP-TC [RFC3872]
116 tripMIB TRIP-MIB [RFC3872]
117 arcMib ARC-MIB [RFC3878]
118 alarmMIB ALARM-MIB [RFC3877]
119 ianaItuAlarmNumbers IANA-ITU-ALARM-TC [RFC3877]
120 ituAlarmTc ITU-ALARM-TC [RFC3877]
121 ituAlarmMIB ITU-ALARM-MIB [RFC3877]
122 teMIB TE-MIB [RFC3970]
123 natMIB NAT-MIB [RFC4008]
124 pmMib POLICY-BASED-MANAGEMENT-MIB [RFC4011]
125 docsSubMgt docsSubMgt [RFC4036]
126 docsBpi2MIB DOCS-IETF-BPI2-MIB [RFC4131]
127 docsIetfQosMIB DOCS-IETF-QOS-MIB [RFC4323]
128 ianaIppmMetricsRegistry IANA-IPPM-METRICS-REGISTRY [RFC4148]
129 vpnTcMIB VPN-TC-STD-MIB [RFC4265]
130 entityStateTc ENTITY-STATE-TC-MIB [RFC4268]
131 entityStateMIB ENTITY-STATE-MIB [RFC4268]
132 docsDevNotifMIB DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB [RFC4547]
133 mip6MIB MOBILEIPV6-MIB [RFC4295]
134 rstpMIB RSTP-MIB [RFC4318]
135 t11FcNameServerMIB T11-FC-NAME-SERVER-MIB [RFC4438]
136 t11TcMIB T11-TC-MIB [RFC4439]
137 t11FcFabricAddrMgrMIB T11-FC-FABRIC-ADDR-MGR-MIB [RFC4439]
138 isisMIB ISIS-MIB [RFC4444]
139 scsiMIB SCSI-MIB [RFC4455]
140 pktcIetfMtaMib PKTC-IETF-MTA-MIB [RFC4682]
141 ipsAuthMibModule IPS-AUTH-MIB [RFC4545]
142 iscsiMibModule ISCSI-MIB [RFC4544]
143 t11FcFspfMIB T11-FC-FSPF-MIB [RFC4626]
144 t11FcRouteMIB T11-FC-ROUTE-MIB [RFC4625]
145 radiusDynAuthClientMIB RADIUS-DYNAUTH-CLIENT-MIB [RFC4672]
146 radiusDynAuthServerMIB RADIUS-DYNAUTH-SERVER-MIB [RFC4673]
147 t11FcVirtualFabricMIB T11-FC-VIRTUAL-FABRIC-MIB [RFC4747]
148 sipTC SIP-TC-MIB [RFC4780]
149 sipCommonMIB SIP-COMMON-MIB [RFC4780]
150 sipUAMIB SIP-UA-MIB [RFC4780]
151 sipServerMIB SIP-SERVER-MIB [RFC4780]
152 ianagmplstcMIB IANA-GMPLS-TC-MIB [RFC4802]
153 spdmib IPSEC-SPD-MIB [RFC4807]
154 ianamauMIB IANA-MAU-MIB [RFC4836]
155 dot3EponMIB DOT3-EPON-MIB [RFC4837]
156 tcpEStatsMIB TCP Extended Statistics MIB [RFC4898]
157 pimStdMIB PIM routers Management MIB [RFC5060]
158 dot3OamMIB DOT3-OAM-MIB [RFC4878]
159 t11FabricLockMIB T11-FC-FABRIC-LOCK-MIB [RFC4936]
160 t11ZoneServerMIB T11-FC-ZONE-SERVER-MIB [RFC4936]
161 t11FcRscnMIB T11-FC-RSCN-MIB [RFC4983]
162 t11FcFabricConfigServerMIB T11-FC-FABRIC-CONFIG-SERVER-MIB [RFC4935]
163 isnsMIB Internet Storage Name Service MIB [RFC4939]
164 uriTcMIB URI-TC-MIB [RFC5017]
165 langTagTcMIB LANGTAG-TC-MIB [RFC5131]
166 ifCapStackMIB IF-CAP-STACK-MIB [RFC5066]
167 efmCuMIB EFM-CU-MIB [RFC5066]
168 ipMcastMIB IP-Multicast-MIB [RFC5132]
169 pktcIetfSigMib PKTC-IETF-SIG-MIB [RFC5098]
170 udpliteMIB UDP-Lite Management [RFC5097]
171 midcomMIB MIDCOM-MIB [RFC5190]
172 pimBsrMIB pimBsrMIB [RFC5240]
173 syslogTCMIB SYSLOG-TC-MIB [RFC-ietf-syslog-tc-mib-08.txt]
174 ianaPwe3MIB IANA-PWE3-MIB [RFC-ietf-pwe3-pw-mib-14.txt]
175 t11FcTcMIB T11-FC-SP-TC-MIB [RFC5324]
176 t11FcSpAuthenticationMIB T11-FC-SP-AUTHENTICATION-MIB [RFC5324]
177 t11FcSpZoningMIB T11-FC-SP-ZONING-MIB [RFC5324]
178 t11FcSpPolicyMIB T11-FC-SP-POLICY-MIB [RFC5324]
179 t11FcSpSaMIB T11-FC-SP-SA-MIB [RFC5324]
180 pwEnetStdMIB PW-ENET-STD-MIB [RFC-ietf-pwe3-enet-mib-13.txt]
181 pwMplsStdMIB PW-MPLS-STD-MIB [RFC-ietf-pwe3-pw-mpls-mib-14.txt]
182 pktcIetfEventMib PKTC-IETF-EVENT-MIB [RFC-ietf-ipcdn-pktc-eventmess-14.txt]
183 pwATMMIB PW-ATM-MIB [RFC-ietf-pwe3-pw-atm-mib-06.txt]
...mib-2.interface.ifTable.ifEntry.ifType
(1.3.6.1.2.1.2.2.1.3)
For a functional mib language definition please see the following:
<http://www.iana.org/assignments/ianaiftype-mib>
Rules for real mib names:
#NAME?
"-if its made of several words,"
the second and later word's first letter is uppercase
#NAME?
#NAME?
#NAME?
Thus by way of example we have:
traif kosher
----- ------
ddn-x25 "ddnX25(4),"
FDDI "fddi(15),"
smds-dxi "smdsDxi(43),"
IEEE802.11 "ieee80211(71),"
"-Finally, the last item in the list has no comma,"
while all previous items have a comma
ifType definitions
Decimal Name Description
------- ---- -----------
1 other none of the following [RFC1213]
2 regular1822 BBN Report 1822 [RFC1213]
3 hdh1822 BBN Report 1822 [RFC1213]
4 ddn-x25 BBN Report 1822 [RFC1213]
5 x25 X.25 [RFC1382]
6 ethernet-csmacd [RFC1213]
7 IEEE802.3 Deprecated [RFC3635]
8 IEEE802.4 Token Bus-like Objects
-- [RFC1230,RFC1239]
9 IEEE802.5 Token Ring-like Objects
-- [RFC1231,RFC1239]
10 iso88026-man [RFC1213]
11 starLan Deprecated [RFC3635]
12 proteon-10Mbit [RFC1213]
13 proteon-80Mbit [RFC1213]
14 hyperchannel [RFC1213]
15 FDDI FDDI Objects [RFC1285,JDC20]
16 lapb LAP B [RFC1381]
17 sdlc [RFC1213]
18 ds1 T1/E1 Carrier Objects [RFC2495]
19 e1 obsolete
20 basicISDN [RFC1213]
21 primaryISDN [RFC1213]
22 propPointToPointSerial [RFC1213]
23 ppp Point-to-Point Protocol [RFC1471]
24 softwareLoopback [RFC1213]
25 eon [RFC1213]
26 ethernet-3Mbit [RFC1213]
27 nsip [RFC1213]
28 slip [RFC1213]
29 ultra [RFC1213]
30 ds3 DS3/E3 Interface Objects [RFC2496]
31 sip SMDS Interface Objects [RFC1304,TXC]
32 frame-relay Frame Relay Objects for DTE [RFC1315,CXB]
33 RS-232 RS-232 Objects [RFC1659]
34 Parallel Parallel Printer Objects [RFC1660]
35 arcnet ARC network
36 arcnet-plus ARC network plus
37 atm ATM
38 MIOX25 MIOX25 [RFC1461]
39 SONET SONET or SDH
40 x25ple X.25 packet level [RFC1382]
41 iso88022llc 802.2 LLC
42 localTalk
43 smds-dxi SMDS DXI
44 frameRelayService Frame Relay DCE [RFC2954]
45 v35 V.35
46 hssi HSSI
47 hippi HIPPI
48 modem generic modem
49 aal5 AAL5 over ATM
50 sonetPath
51 sonetVT
52 smds-icip SMDS Inter-Carrier Interface Protocol
53 propVirtual proprietary vitural/internal interface [RFC1573]
54 propMultiLink proprietary multi-link multiplexing [RFC1573]
55 ieee80212 100BaseVG
56 fibre-channel Fibre Channel
57 hippiInterfaces HIPPI interfaces [Cameron]
58 FrameRelayInterconnect Interconnet over FR <suspect>
59 aflane8023 ATM Emulated LAN for 802.3 [McCloghrie]
60 aflane8025 ATM Emulated LAN for 802.5 [McCloghrie]
61 cctEmul ATM Emulated circuit [Fedorkow]
62 fastEther Deprecated [RFC3635]
63 isdn ISDN and X.25 [RFC1356]
64 v11 CCITT V.11/X.21 [Popat]
65 v36 CCITT V.36 [Popat]
66 g703-64k CCITT G703 at 64Kbps [Popat]
67 g703-2mb CCITT G703 at 2Mbps [Popat]
68 qllc SNA QLLC [Popat]
69 fastEtherFX Deprecated [RFC3635]
70 channel channel [Schwell]
71 IEEE802.11 radio spread spectrum [Lee]
72 ibm370parChan IBM System 360/370 OEMI Channel [Kwan]
73 ESCON IBM Enterprise Systems Connection [Kwan]
74 DLSw Data Link Switching [Kwan]
75 ISDNs ISDN S/T interface [Alcoff]
76 ISDNu ISDN U interface [Alcoff]
77 lapd Link Access Protocol D [Alcoff]
78 ip-switch IP Switching Objects [Wei]
79 rsrb Remote Source Route Bridging [Clouston]
80 atm-logical ATM Logical Port [Noto]
81 ds0 Digital Signal Level 0 [RFC2494]
82 ds0Bundle group of ds0s on the same ds1 [RFC2494]
83 bsc Bisynchronous Protocol [Kwan]
84 async Asynchronous Protocol [Kwan]
85 cnr Combat Net Radio [Jensen]
86 iso88025Dtr ISO 802.5r DTR [Warwick]
87 eplrs Enhanced Pos Loc Report Sys [Jensen]
88 arap Appletalk Remote Access Protocol [Halpin]
89 propCnls Proprietary Connectionless Proto. [Neill]
90 hostPad CCITT-ITU X.29 PAD Protocol [Neill]
91 termPad CCITT-ITU X.3 PAD Facility [Neill]
92 frameRelayMPI Multiproto Interconnect over FR [Neill]
93 x213 CCITT-ITU X213 [Neill]
94 adsl Asymmetric Digital Subscriber Loop [Bathrick]
95 radsl Rate-Adapt. Digital Subscriber Loop [Bathrick]
96 sdsl Symmetric Digital Subscriber Loop [Bathrick]
97 vdsl Very H-Speed Digital Subscrib. Loop [Bathrick]
98 iso88025CRFPInt ISO 802.5 CRFP [Warwick]
99 myrinet Myricom Myrinet [Feldy]
100 voiceEM Voice recEive and transMit (E&M) [Stewart]
101 voiceFXO Voice Foreign Exchange Office [Stewart]
102 voiceFXS Voice Foreign Exchange Station [Stewart]
103 voiceEncap Voice encapsulation [Stewart]
104 voiceOverIp Voice over IP encapsulation [Stewart]
105 atmDxi ATM DXI [Hanson]
106 atmFuni ATM FUNI [Hanson]
107 atmIma ATM IMA [Martin]
108 pppMultilinkBundle PPP Multilink Bundle [Shriver]
109 ipOverCdlc IBM ipOverCdlc [White]
110 ipOverClaw IBM Common Link Access to Workstn [White]
111 stackToStack IBM stackToStack [White]
112 virtualIpAddress IBM VIPA [White]
113 mpc IBM multi-protocol channel support [White]
114 ipOverAtm IBM ipOverAtm [White]
115 iso88025Fiber ISO 802.5j Fiber Token Ring [Lingle]
116 tdlc IBM twinaxial data link control [Pechacek]
117 gigabitEthernet Deprecated [RFC3635]
118 hdlc HDLC [Rosset]
119 lapf LAP F [Rosset]
120 v37 V.37 [Rosset]
121 x25mlp Multi-Link Protocol [Rosset]
122 x25huntGroup X25 Hunt Group [Rosset]
123 transpHdlc Transp HDLC [Rosset]
124 interleave Interleave channel [Karmous-Edwards]
125 fast Fast channel [Karmous-Edwards]
126 ip IP (for APPN HPR in IP networks) [Moore]
127 docsCableMaclayer CATV Mac Layer [Palmer]
128 docsCableDownstream CATV Downstream interface [Palmer]
129 docsCableUpstream CATV Upstream interface [Palmer]
130 a12MppSwitch Avalon Parallel Processor [Harvey]
131 tunnel Encapsulation interface [Thaler]
132 coffee coffee pot [RFC2325]
133 ces Circiut Emulation Service [Carmona]
134 atmSubInterface (x) ATM Sub Interface [McCloghrie]
135 l2vlan Layer 2 Virtual LAN using 802.1Q [MacFaden]
136 l3ipvlan Layer 3 Virtual LAN - IP Protocol [MacFaden]
137 l3ipxvlan Layer 3 Virtual LAN - IPX Prot. [MacFaden]
138 digitalPowerLine IP over Power Lines [Scholtes]
139 mediaMailOverIp (xxx) Multimedia Mail over IP [Shih]
140 dtm Dynamic synchronous Transfer Mode [Ellerstedt]
141 dcn Data Communications Network [Card]
142 ipForward IP Forwarding Interface [Card]
143 msdsl Multi-rate Symmetric DSL [Durairaj]
144 ieee1394 IEEE1394 High Performance Serial Bus [Fujisawa]
145 if-gsn HIPPI-6400 [JMP]
146 dvbRccMacLayer DVB-RCC MAC Layer [Oelering]
147 dvbRccDownstream DVB-RCC Downstream Channel [Oelering]
148 dvbRccUpstream DVB-RCC Upstream Channel [Oelering]
149 atmVirtual ATM Virtual Interface [Hegde]
150 mplsTunnel MPLS Tunnel Virtual Interface [C.Srinivasan]
151 srp Spatial Reuse Protocol [Shetti]
152 voiceOverAtm Voice over ATM [WhiteC]
153 voiceOverFrameRelay Voice Over Frame Relay [WhiteC]
154 idsl Digital Subscriber Loop over ISDN [Gili]
155 compositeLink Avici Composite Link Interface [Dube]
156 ss7SigLink SS7 Signaling Link [C.Srinivasan]
157 propWirelessP2P Prop. P2P wireless interface [Raja]
158 frForward Frame forward Interface [Hegde]
159 rfc1483 Multiprotocol over ATM AAL5 [RFC1483]
160 USB USB Interface [Dolnik]
161 ieee8023adLag IEEE 802.3ad Link Aggregate [Bell]
162 bgpPolicyAccounting BGP Policy Accounting [Vinod]
163 frf16MfrBundle FRF.16 Multilik Frame Relay [Prayson]
164 h323Gatekeeper H323 Gatekeeper [C.White]
165 h323Proxy H323 Voice and Video Proxy [C.White]
166 mpls MPLS [C.Srinivasan]
167 mfSigLink Multi-frequency signaling link [C.Srinivasan]
168 hdsl2 High Bit-Rate DSL, 2nd gen. [Ray]
169 shdsl Multirate HDSL2 [Ray]
170 ds1FDL Facility Data Link (4Kbps) on a DS1 [Kwan]
171 POS Packet over SONET/SDH Interface [Tempest]
172 dvbAsiIn DVB-ASI Input [Oved]
173 dvbAsiOut DVB-ASI Output [Oved]
174 plc Power Line Communications [Lunn]
175 NFAS Non-Facility Associated Signaling [Antommarchi]
176 TR008 TROO8 [Antommarchi]
177 GR303RDT Remote Digital Terminal [Antommarchi]
178 GR303IDT Integrated Digital Terminal [Antommarchi]
179 ISUP ISUP [Antommarchi]
180 propDocsWirelessMaclayer Cisco proprietary Maclayer [Raja]
181 propDocsWirelessDownstream Cisco proprietary Downstream [Raja]
182 propDocsWirelessUpstream Cisco proprietary Upstream [Raja]
183 hiperlan2 HIPERLAN Type 2 Radio Interface [Khun-Jush]
184 propBWAp2Mp PropBroadbandWirelessAccesspt2Multipt [Zilberman]
(use of this type for IEEE 802.16 WMAN, interfaces as per
IEEE 802.16 is deprecated and iftype 237 should be used instead)
185 sonetOverheadChannel SONET Overhead Channel [ODSI]
186 digitalWrapperOverheadChannel Digital Wrapper Overhead [ODSI]
187 aal2 ATM adaptation layer 2 [Ashoka]
188 radioMAC MAC layer over radio links [Behar]
189 atmRadio ATM over radio links [Behar]
190 IMT Inter-Machine Trunks [Antommarchi]
191 mvl Multiple Virtual Lines DSL [Baughman]
192 reachDSL Long Reach DSL [Baughman]
193 frDlciEndPt Frame Relay DLCI End Point [Steinberger]
194 atmVciEndPt ATM VCI End Point [Steinberger]
195 opticalChannel Optical Channel [M.Stewart]
196 opticalTransport Optical Transport [M.Stewart]
197 propAtm Proprietary ATM [Hegde]
198 voiceOverCable Voice Over Cable Interface [Nechamkin]
199 infiniband Infiniband [Strahm]
200 teLink TE Link [Dubuc]
201 q2931 Q.2931 [Antommarchi2]
202 virtualTg Virtual Trunk Group [Antommarchi2]
203 sipTg SIP Trunk Group [Antommarchi2]
204 sipSig SIP Signaling [Antommarchi2]
205 docsCableUpstreamChannel CATV Upstream Channel [Nakanishi]
206 econet Acorn Econet [Harris]
207 pon155 FSAN 155Mb Symetrical PON interface [Higgins]
208 pon622 FSAN 622Mb Symetrical PON interface [Higgins]
209 bridge Transparent bridge interface [Watanabe]
210 linegroup Interface common to multiple lines [Watanabe]
211 voiceEMFGD voice E&M Feature Group D [Shaikh]
212 voiceFGDEANA voice FGD Exchange Access North American [Shaikh]
213 voiceDID voice Direct Inward Dialing [Shaikh]
214 mpegTransport MPEG transport interface [Aggarwal]
215 sixToFour 6to4 interface (DEPRECATED) [RFC4087]
216 gtp GTP (GPRS Tunneling Protocol) [Rajesh M.L.]
217 pdnEtherLoop1 Paradyne EtherLoop 1 [Dong]
218 pdnEtherLoop2 Paradyne EtherLoop 2 [Dong]
219 opticalChannelGroup Optical Channel Group [Lam]
220 homepna HomePNA ITU-T G.989 [Palm]
221 gfp Generic Framing Procedure (GFP) [Busi]
222 ciscoISLvlan Layer 2 Virtual LAN using Cisco ISL [Rao]
223 actelisMetaLOOP Acteleis proprietary MetaLOOP High Speed Link [Beili]
224 fcipLink FCIP Link [Rijhsinghani]
225 rpr Resilient Packet Ring Interface Type [IEEE 802.17]
226 qam RF Qam Interface [Alagar]
227 lmp Link Management Protocol [RFC4327]
228 cblVectaStar Cambridge Broadband Networks Limited VectaStar [Naylon]
229 docsCableMCmtsDownstream CATV Modular CMTS Downstream Interface [Cardona, DOCSIS CM-SP-M-OSSI]
230 adsl2 Asymmetric Digital Subscriber Loop Version 2 (DEPRECATED - REPLACED BY 238) [RFC4706]
231 macSecControlledIF MACSecControlled [Congdon]
232 macSecUncontrolledIF MACSecUncontrolled [Congdon]
233 aviciOpticalEther Avici Optical Ethernet Aggregate [Bhattacharya]
234 atmbond atmbond [ITU-T G.998.1]
235 voiceFGDOS voice FGD Operator Services [Cheung]
236 mocaVersion1 MultiMedia over Coax Alliance [Wardani]
237 ieee80216WMAN IEEE 802.16 WMAN interface [IEEE 802.16]
238 adsl2plus Asymmetric Digital Subscriber Loop Version 2 --
Version 2 Plus and all variants [RFC4706]
239 dvbRcsMacLayer DVB-RCS MAC Layer [Combes, ETSI EN 301 790, SatLabs]
240 dvbTdm DVB Satellite TDM [Combes, ETSI EN 300 421, ETSI EN 302 307, SatLabs]
241 dvbRcsTdma DVB-RCS TDMA [Combes, ETSI EN 301 790, ETSI EN 300 421, SatLabs]
242 x86Laps LAPS based on ITU-T X.86/Y.1323 [Nicklass, IEEE P802.3]
243 wwanPP 3GPP WWAN [Montenegro, 3GPP TS 23.060 v7.4.0]
244 wwanPP2 3GPP2 WWAN [Montenegro, 3GPP2 C.S0017-005-A v1.0]
245 voiceEBS voice P-phone EBS physical interface [Chou]
246 ifPwType Pseudowire interface type [RFC-ietf-pwe3-pw-mib-14.txt]
247 ILAN Internal LAN on a bridge per IEEE 802.1ap [Parsons][IEEE 802.1ap]
248 PIP Provider Instance Port on a bridge per IEEE 802.1ah PBB [Parsons][IEEE 802.1ah]
249 aluELP Alcatel-Lucent Ethernet Link Protection [Ma]
250 gpon Gigabit-capable passive optical networks (G-PON) [Koh]
as per ITU-T G.948
Prefix: iso.org.dod.internet.mgmt.mib-2.transmission (1.3.6.1.2.1.10)
Decimal Name Description
------- ---- -----------
5 x25 X.25 [RFC1382]
7 IEEE802.3 CSMACD--like Objects [RFC2665]
8 IEEE802.4 Token Bus-like Objects
-- [RFC1230,RFC1239]
9 dot5 Token Ring-like Objects [RFC1743]
15 FDDI FDDI Objects [RFC1285,JDC20]
16 lapb LAP B [RFC1381]
18 ds1 T1 Carrier Objects [RFC2495]
19 e1 E1 Carrier Objects [RFC2495]
20 isdnMib ISDN MIB [RFC2127]
21 dialControlMib Dial Control MIB [RFC2128]
23 ppp Point-to-Point Protocol [RFC1471]
30 ds3 DS3/E3 Interface Objects [RFC2496]
31 sip SMDS Interface Objects [RFC1694]
32 frame-relay Frame Relay Objects [RFC1315,CXB]
33 RS-232 RS-232 Objects [RFC1659]
34 Parallel Parallel Printer Objects [RFC1660]
35 arcnet ARC network
36 arcnet-plus ARC network plus
37 atm ATM
38 MIOX25 MIOX25 [RFC1461]
39 sonetMIB SONET MIB [RFC2558]
44 frnetservMIB Frame Relay Service MIB for DCE [RFC1604]
45 dot12MIB IEEE 802.12 [RFC2020]
46 ipoaMIB IPOA-MIB [RFC2320]
47 mfrMIB FR-MFR-MIB [RFC3020]
48 hdsl2ShdslMIB HDSL2-SHDSL-LINE-MIB [RFC4319]
49 apsMIB APS-MIB [RFC3498]
50-55 Reserved Reserved
56 fcMgmtMIB fcMgmtMIB [RFC4044]
57-80 Reserved Reserved
81 ds0 DS0-MIB [RFC2494]
82 ds0bundle DS0Bundle-MIB [RFC2494]
83-93 Reserved Reserved
94 adslmib adslMIB [RFC2662]
95 l2tp L2TP-MIB [RFC3371]
96 Reserved Reserved
97 vdslMIB VDSL-LINE-MIB [RFC-ietf-adslmib-vdsl-12.txt]
98-126 Reserved Reserved
127 docsIfMib DOCS IF MIB [RFC2670]
128-130 Reserved Reserved
131 tunnelMIB IP Tunnel MIB [RFC2667]
132 coffee coffee pot [RFC2325]
133 optIfMibModule OPT-IF-MIB [RFC3591]
134 etherWisMIB ETHER-WIS MIB [RFC3637]
135-165 Reserved Reserved
166 mplsStdMIB MPLS STD MIB [RFC3811]
167-183 Reserved Reserved
184 propBWAp2Mp PropBroadbandWirelessAccesspt2Multipt [IEEE 802.16]
185-199 Reserved Reserved
200 teLinkStdMIB TE-LINK-STD-MIB [RFC4220]
201-223 Reserved Reserved
224 fcipMIB FCIP-MGMT-MIB [RFC4404]
225-226 Reserved Reserved
227 lmpMIB LMP-MIB [RFC4327]
228 vdslExtSCMMIB VDSL-LINE-EXT-SCM-MIB [RFC4069]
229 vdslExtMCMMIB VDSL-LINE-EXT-MCM-MIB [RFC4070]
230 ifcpMgmtMIB IFCP-MGMT-MIB [RFC4369]
231-237 Reserved Reserved
238 adsl2MIB ADSL2-LINE-MIB [RFC4706]
239 dvbRcsMacLayer DVB-RCS MAC Layer [Combes, ETSI EN 301 790, SatLabs]
240-245 Reserved Reserved
246 pwStdMIB PW-STD-MIB [RFC-ietf-pwe3-pw-mib-14.txt]
247-250 Reserved Reserved
Prefix: iso.org.dod.internet.mgmt.mib-2.transmission (1.3.6.1.2.1.10)
...mib-2.transmission.ppp (1.3.6.1.2.1.10.23)
Decimal Name Description References
------- ---- ----------- ----------
1 pppLcp ppp link control [RFC1471]
2 pppSecurity ppp security [RFC1472]
3 pppIp ppp IP network control [RFC1473]
4 pppBridge ppp bridge networl control [RFC1474]
...mib-2.transmission.mplsStdMIB (1.3.6.1.2.1.10.166)
Decimal Name References
------- ----- ----------
1 MPLS-TC-STD-MIB [RFC3811]
2 MPLS-LSR-STD-MIB [RFC3813]
3 MPLS-TE-STD-MIB [RFC3812]
4 MPLS-LDP-STD-MIB [RFC3815]
5 MPLS-LDP-ATM-STD-MIB [RFC3815]
6 MPLS-LDP-FRAME-RELAY-STD-MIB [RFC3815]
7 MPLS-LDP-GENERIC-STD-MIB [RFC3815]
8 MPLS-FTN-STD-MIB [RFC3814]
9 MPLS-LC-ATM-STD-MIB [RFC4368]
10 MPLS-LC-FR-STD-MIB [RFC4368]
11 MPLS-L3VPN-STD-MIB [RFC4382]
12 GMPLS-TC-STD-MIB [RFC4801]
13 GMPLS-TE-STD-MIB [RFC4802]
14 Unassigned
15 GMPLS-LSR-STD-MIB [RFC4803]
16 GMPLS-LABEL-STD-MIB [RFC4803]
Prefix: iso.org.dod.internet.mgmt.mib-2.rmon (1.3.6.1.2.1.16)
Note: New assignments are made as per [RFC3737]
Decimal Descriptor OID Type References
------- ----------- ----------- ----------
0 rmonEventsV2 Notifications root [RFC2819]
1 statistics OID [RFC2819]
2 history OID [RFC2819]
3 alarm OID [RFC2819]
4 hosts OID [RFC2819]
5 hostTopN OID [RFC2819]
6 matrix OID [RFC2819]
7 filter OID [RFC2819]
8 capture OID [RFC2819]
9 event OID [RFC2819]
10 tokenRing OID [RFC1513]
11 protocolDir OID [RFC2021]
12 protocolDist OID [RFC2021]
13 addressMap OID [RFC2021]
14 nlHost OID [RFC2021]
15 nlMatrix OID [RFC2021]
16 alHost OID [RFC2021]
17 alMatrix OID [RFC2021]
18 usrHistory OID [RFC2021]
19 probeConfig OID [RFC2021]
20 rmonConformance OID [RFC2021]
21 mediaIndependentStats OID [RFC3273]
22 switchRMON M-I [RFC2613]
23 reserved for apm M-I [RFC3729]
24 available
25 pmCapsMIB M-I (defunct)
26 dsmonMIB M-I [RFC3287]
27 interfaceTopNMIB M-I [RFC3144]
28 sspmMIB M-I [RFC4149]
29 hcAlarmMIB M-I [RFC3434]
30 tpmMIB M-I [RFC4150]
31 reserved for raqmon M-I [..rmonmib-raqmon-mib-nn.txt]
32 reserved for raqmonDs M-I [..rmonmib-raqmon-pdu-nn.txt]
...mib-2.rmon.conformance (1.3.6.1.2.1.16.20)
Decimal Descriptor OID Type References
------- ----------- ----------- ----------
1 rmon2MIBCompliances OID [RFC2021]
2 rmon2MIBGroups OID [RFC2021]
3 smonMIBCompliances OID [RFC2613]
4 smonMIBGroups OID [RFC2613]
5 hcRMON M-I [RFC3273]
6 hcRmonMIBCompliances OID [RFC3273]
7 hcRmonMIBGroups OID [RFC3273]
8 rmonMibModule M-I [RFC2819]
9 rmonCompliances OID [RFC2819]
10 rmonGroups OID [RFC2819]
Prefix: iso.org.dod.internet.mgmt.mib-2.application (1.3.6.1.2.1.27)
...mib-2.application.assocTable.assocEntry.assocApplicationProtocol
(1.3.6.1.2.1.27.2.1.3)
assocApplicationProtocol OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ""An identification of the protocol being used for the"
" application. For an OSI Application, this will be the"
" Application Context. For Internet applications, the IANA"
maintains a registry of the OIDs which correspond to
well-known applications. If the application protocol is
" not listed in the registry, an OID value of the form"
{applTCPProtoID port} or {applUDProtoID port} are used for
" TCP-based and UDP-based protocols, respectively. In either"
case 'port' corresponds to the primary port number being
" used by the protocol."""
::= {assocEntry 3}
Decimal Name Description
------- ---- -----------
0 Reserved
...mib-2.application.applTCPProtoID
(1.3.6.1.2.1.27.3)
...mib-2.application.applUDPProtoID
(1.3.6.1.2.1.27.4)
-- OIDs of the form {applTCPProtoID port} are intended to be used
-- for TCP-based protocols that don't have OIDs assigned by other
-- means. {applUDPProtoID port} serves the same purpose for
-- UDP-based protocols. In either case 'port' corresponds to
" -- the primary port number being used by the protocol. For example,"
" -- assuming no other OID is assigned for SMTP, an OID of"
" -- {applTCPProtoID 25} could be used, since SMTP is a TCP-based"
-- protocol that uses port 25 as its primary port.
Prefix: iso.org.dod.internet.mgmt.mib-2.mta (1.3.6.1.2.1.28)
...mib-2.mta.MailGroupTable.MailGroupEntry.mtaGroupMailProtocol
(1.3.6.1.2.1.28.2.1.24)
mtaGroupMailProtocol OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ""An identification of the protocol being used by this group."
" For an group employing OSI protocols, this will be the"
" Application Context. For Internet applications, the IANA"
maintains a registry of the OIDs which correspond to
well-known message transfer protocols. If the application
" protocol is not listed in the registry, an OID value of the"
form {applTCPProtoID port} or {applUDProtoID port} are used
" for TCP-based and UDP-based protocols, respectively. In"
either case 'port' corresponds to the primary port number
being used by the group. applTCPProtoID and applUDPProtoID
" are defined in [5]."""
::= {mtaGroupEntry 24}
Decimal Name Description
------- ---- -----------
0 Reserved
SMI mib-2 snanauMIB Codes:
Prefix: iso.org.dod.internet.mgmt.mib-2.snanauMIB (1.3.6.1.2.1.34)
Decimal Name Description References
------- ---- ----------- ----------
" 1-2 snanauObjects, used in SNA-NAU-MIB [RFC1666]"
" snanauConformance """
3 appcMIB APPC MIB [RFC2051]
4 appnMIB APPN MIB [RFC2455]
5 dlurMIB APPN Dep LU Requester MIB [RFC2232]
6 hprMIB APPN High Perf. Routing MIB [RFC2238]
7 ebnMIB APPN Ext. Border Node MIB [RFC2457]
8 tn3270eMIB TN3270E MIB [RFC2561]
9 tn3270eRtMIB TN3270E Response Time MIB [RFC2562]
spdActions - [RFC4807]
Registration Procedures: Specification Required and Expert Review
Prefix: iso.org.dod.internet.mgmt.mib-2.spdmib.sdpActions (1.3.6.1.2.1.153.4)
Decimal Name Description Reference
------- ---------------- ---------------------- ---------
No registrations at this time
SMI pib PIB Codes
Prefix: iso.org.dod.internet.mgmt.pib (1.3.6.1.2.2)
Decimal Name Description Reference
------- ---------------- ---------------------- ---------
0 Reserved [IANA]
1 copsPrSppiTc COPS-PR-SPPI-TC [RFC3159]
2 frameworkPib FRAMEWORK-PIB [RFC3318]
3 frwkTcPib FRAMEWORK-TC-PIB [RFC3318]
4 dsPolicyPib DIFFSERV-PIB [RFC3317]
5 frwkFeedbackPib FRAMEWORK-FEEDBACK-PIB [RFC3571]
SMI Experimental Codes:
Prefix: iso.org.dod.internet.experimental (1.3.6.1.3.)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 CLNS ISO CLNS Objects [GS2]
* 2 T1-Carrier T1 Carrier Objects [FB77]
* 3 IEEE802.3 Ethernet-like Objects [JXC]
* 4 IEEE802.5 Token Ring-like Objects [EXD]
* 5 DECNet-PHIV DECNet Phase IV [JXS2]
* 6 Interface Generic Interface Objects [McCloghrie]
* 7 IEEE802.4 Token Bus-like Objects [McCloghrie]
* 8 FDDI FDDI Objects [JDC20]
9 LANMGR-1 LAN Manager V1 Objects [JXG1]
10 LANMGR-TRAPS LAN Manager Trap Objects [JXG1]
11 Views SNMP View Objects [CXD]
12 SNMP-AUTH SNMP Authentication Objects [McCloghrie]
* 13 BGP Border Gateway Protocol [SW159]
* 14 Bridge Bridge MIB [FB77]
* 15 DS3 DS3 Interface Type [TXB]
* 16 SIP SMDS Interface Protocol [TXB]
* 17 Appletalk Appletalk Networking [SXW]
* 18 PPP PPP Objects [FJK2]
* 19 Character MIB Character MIB [BS221]
* 20 RS-232 MIB RS-232 MIB [BS221]
* 21 Parallel MIB Parallel MIB [BS221]
22 atsign-proxy Proxy via Community [RXF]
* 23 OSPF OSPF MIB [FB77]
24 Alert-Man Alert-Man [LS8]
25 FDDI-Synoptics FDDI-Synoptics [DXP1]
* 26 Frame Relay Frame Relay MIB [CXB]
* 27 rmon Remote Network Management MIB [SXW]
28 IDPR IDPR MIB [RAW44]
29 HUBMIB IEEE 802.3 Hub MIB [DXM5]
30 IPFWDTBLMIB IP Forwarding Table MIB [FB77]
31 LATM MIB [TXB]
32 SONET MIB [TXB]
33 IDENT [MTR]
* 34 MIME-MHS [MTR]
35 MAUMIB IEEE 802.3 Mau MIB [DXM5]
36 Host Resources Host Resources MIB [SXW]
37 ISIS-MIB Integrated ISIS protocol MIB [CXG]
38 Chassis Chassis MIB [JDC20]
39 ups ups [JDC20]
40 App-Mon Application Monitoring MIB [TXK]
41 ATM UNI ATM [MXA1]
42 FC Fibre Channel [JXC4]
* 43 DNS Domain Name Service [Rob Austein]
44 X.25 X.25 MIB [Dean Throop]
45 Frame Relay Serv. Frame Relay Service MIB [Tracy Cox]
46 Madman-Applications [Ned Freed]
47 Madman-MTA [Ned Freed]
48 Madman-DSA [Ned Freed]
49 Modem [Steve Waldbusser]
50 SNA NAU [Deirdre Kostick]
51 SDLC SDLC [Jeff Hilgeman]
52 DNS Domain Name Service [Jon Saperia]
53 network-objects IP info ix X.500 [Johannsen]
54 printmib [Joel Gyllenskog]
55 rdbmsmib [Robert Purvey]
56 sipMIB [Tracy Brown]
57 stIImib ST-II protocol MIB [Wittig]
58 802.5 SSR MIB 802.5 Stn Source Routing MIB [McCloghrie]
59 igmpMIB [McCloghrie]
60 ipRouteMIB [McCloghrie]
61 pimMIB [RFC2934]
62 dvmrpMIB [Thaler]
63 dot12MIB IEEE 802.12 Interface MIB [Johnson]
* 64 vgRptrMIB IEEE 802.12 Repeater MIB [Johnson]
65 schema Schema Publishing [RFC1804]
66 hippi-ep HIPPI End Point [Renwick]
67 hippi-sd HIPPI Switch Device [Renwick]
68 dlsw Data Link SWitch [Chen]
69 mip Mobile IP [Solomon]
70 secModelMIB Security Model [Kornegay]
71 rsvp Resource Reservation Protocol [Baker]
72 intSrv Integrated Services Protocol [Baker]
73 Madman-Alarm-Generation [Jones]
74 IPv6 MIB MIB for IPv6 [Haskin]
75 rdrrn Rapidly Deploy Radio Resh Net [Bush]
76 aris ARIS Protocol [Dhaliwal]
* 77 rtpmib Real-Time Transport Protocol [RFC2959]
78 ipOverAtm IP over ATM [White]
* 79 radius RADIUS Working Group [Aboba]
80 TN3270E-MIB [White]
81 TN3270E-RT-MIB [White]
* 82 docsif [St. Johns]
* 83 docsDev [St. Johns]
84 REMOPS-MIB [White]
* 85 scriptMIB [Schoenwaelder]
86 ipv6TcpMIB IP Version 6 MIB for TCP [RFC2452]
87 ipv6UdpMIB IP Version 6 MIB for UDP [RFC2454]
88 SLAPM-MIB [White]
* 89 ADSLLINE-MIB [Bathrick]
90 XGCP-MIB [Nguyen]
91 nmrg-MIB Network Management Res. Grp. [Schoenwaelder]
92 MSDP-MIB Multicast Source Discovery MIB [RFC4624]
93 MLD-MIB Multicast Listener Discovery MIB [Haberman]
94 FCMGMT-MIB Fibre Channel Mgmt Framework MIB [Blumenau]
* 95 MPLS-TE-MIB MPLS Traffic Engineering [C.Srinivasan]
* 96 MPLS-LSR-MIB MPLS Label Switch Router [C.Srinivasan]
97 FR/ATM-PVC-MIB Frame Relay/ATM PVC Serv. MIB [Rehbehn]
98 IPSEC-Monitor-MIB IPSEC Monitoring MIB [Jenkins]
99 ISAKMP-Monitor-MIB ISAKMP Monitoring MIB [Jenkins]
100 IPSEC-ISAKMP-IKE-DOI-TC-MIB [Shriver]
101 DHKEY-CHANGE [RFC2786]
102 OSPFv3 OSPF for IPv6 [Joyal]
103 usbMIB [Dolnik]
104 frsldMIB [Steinberger]
105 mfrMIB [Prayson]
106 IKE-MON-MIB ikeMonMIB [Jenkins]
107 Snmpconf Policy MIB [Harrington]
108 Snmpconf Diffserv Policy MIB [Harrington]
109 HDSL2-SHDSL MIB [Sneed]
110 Euromodem MIB [Valentine]
* 111 MPLS-FTN-MIB mplsFTNMIB [C.Srinivasan]
112 PGM-MIB [Petrova]
* 113 LMP-MIB [Dubuc]
114 TE-LINK-MIB teLinkMIB [Dubuc]
115 finisherMIB [Bergman]
116 experimental pib [RFC3159]
117 infinibandMIB [Strahm]
118 mplsVpnMIB MPLS-VPN-MIB [Nadeau]
119 diameterMIB DIAMETER-BASE-PROTOCOL-MIB [Koehler]
120 mplsFrrMIB MPLS-FRR MIB [Nadeau]
121 ppvpnTcMIB PPVPN-TC MIB [Nadeau]
122 bldgHVACMIB BLDG-HVAC-MIB [RFC3512]
123 aggrMIB [RFC4498]
124 tAggrMIB [RFC4498]
* = obsoleted
SMI experimental PIB codes (prefix 1.3.6.1.3.116)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
SMI Private Codes:
Prefix: iso.org.dod.internet.private (1.3.6.1.4)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 enterprise private enterprises [IANA]
SMI Private Enterprise Codes:
Prefix: iso.org.dod.internet.private.enterprise (1.3.6.1.4.1)
"See the file ""enterprise-numbers""."
SMI Security Codes:
Prefix: iso.org.dod.internet.security (1.3.6.1.5)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
" 1 kerberosV4 Kerberos version 4 objects [1,BCN]"
" 2 kerberosV5 Kerberos version 5 objects [2,BCN]"
3 integrity integrity algorithms [IANA]
4 confide confidentiality algorithms [IANA]
5 mechanisms security mechanisms [IANA]
6 nametypes name system designators [IANA]
7 services security services [ADAMS]
SMI Security for Integrity Codes:
Prefix: iso.org.dod.internet.security.integrity (1.3.6.1.5.3)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 md5-DES-CBC md5-DES-CBC [Adams]
2 sum64-DES-CBC sum64-DES-CBC [Adams]
3 NULL-MAC NULL_MAC [RFC2847]
SMI Security for Confidentiality Codes:
Prefix: iso.org.dod.internet.security.confide (1.3.6.1.5.4)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
SMI Security for Mechanism Codes:
Prefix: iso.org.dod.internet.security.mechanisms (1.3.6.1.5.5)
Decimal Name Description References
------- ---- ------------------------------------ ----------
0 Reserved [IANA]
1 SPKM Simple Public Key Mechanism [Adams]
2 SNEGO Simple GSS-API Negotiation [Pinkas]
3 PIM PEM-Based IDUP Mechanism [Adams]
4 MIM MSP-Based IDUP Mechanism [Adams]
5 p7im PKCS #7-Based IDUP Mechanism [Adams]
6 meim MOSS-Enabling IDUP Mechanism [Adams]
7 pkix Public Key Infrastructure [Housley]
8 ipsec IPsec Key Management [Thayer]
9 lipkey LIPKEY Mechanism Using SPKM [RFC2847]
10 iakerb IAKERB GSS-API Mechanism [Trostle]
11 ltans Long-Term Archive and Notary Services [Housley]
12 msec Multicast Security [RFC4534]
SMI Security for Mechanism SPKM Codes:
Prefix: iso.org.dod.internet.security.mechanisms.spkm (1.3.6.1.5.5.1)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 spkm-1 [Adams]
2 spkm-2 [Adams]
3 spkm-3 [RFC2847]
10 spkmGssTokens [RFC2025]
SMI Security for Mechanism MSP-Based IDUP Codes:
Prefix: iso.org.dod.internet.security.mechanisms.mim (1.3.6.1.5.5.4)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 MSP30 Message Security Protocol v3.0 [Adams]
2 MSP31 Message Security Protocol v3.1 [Adams]
3 MSP40 Message Security Protocol v4.0 [Adams]
SMI Security for Mechanism IPsec Codes:
Prefix: iso.org.dod.internet.security.mechanisms.ipsec (1.3.6.1.5.5.8)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 isakmpOakley Signed Hash [Thayer]
2 certificate
3 asn1-modules ASN.1 Modules [RFC4301]
SMI Security for Mechanism isakmpOakley Codes:
Prefix: iso.org.dod.internet.security.mechanisms.ipsec.isakmpOakley
(1.3.6.1.5.5.8.1)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 HMAC-MD5 HMAC-MD5 [Thayer]
2 HMAC-SHA HMAC-SHA [Thayer]
3 HMAC-TIGER HMAC-TIGER [Thayer]
4 HMAC-RIPEMD160 HMAC-RIPEMD160 [Keromytis]
SMI Security for Mechanism IPSec Certificate Usage Codes:
Prefix: iso.org.dod.internet.security.mechanisms.ipsec.certificate
(1.3.6.1.5.5.8.2)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 iKEEnd IPSec End System Usage [Thayer]
2 iKEIntermediate IPSec Intermediate System Usage [Thayer]
Prefix: iso.org.dod.internet.security.mechanisms.ipsec.asn1-modules
(1.3.6.1.5.5.8.3)
Registration Procedures: Specification Required
Decimal Name Description Reference
------- ---- ----------- ---------
0 RESERVED [IANA]
1 spd-module SPD Module [RFC4301]
SMI Security for
Prefix: iso.org.dod.internet.security.mechanisms.iakerb (1.3.6.1.5.5.10)
Decimal Description Reference
------- ------------------------ ---------
0 Reserved [IANA]
1 iakerb proxy protocol [Trostle]
2 iakerb minimum messages protocol [Trostle]
SMI Security for Mechanism msec Codes:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec (1.3.6.1.5.5.12)
Decimal Description References
------- ----------- ----------
0 module-identifiers [RFC4534]
1 content-types [RFC4534]
2 security-suites [RFC4534]
3 protocol-identifiers [RFC4534]
4 rekey-methods [RFC4534]
5 rekey-reliability-methods [RFC4534]
6 distributed-operations-methods [RFC4534]
7 data-policies [RFC4534]
SMI Security for Mechanism msec module-identifers:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.module-identifers (1.3.6.1.5.5.12.0)
Decimal Description References
------- ----------- ----------
1 PolicyToken [RFC4534]
2 GSAKMPv1RegistrationSA [RFC4534]
3 GSAKMPv1DeRegistrationSA [RFC4534]
4 GSAKMPv1RekeySA [RFC4534]
5 GenericDataSA [RFC4534]
SMI Security for Mechanism msec content-types:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.content-types (1.3.6.1.5.5.12.1)
Decimal Description References
------- ----------- ----------
1 id-ct-msec-token [RFC4534]
SMI Security for Mechanism msec security-suites:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.security-suites (1.3.6.1.5.5.12.2)
Decimal Description References
------- ----------- ----------
1 id-securitySuiteOne [RFC4534]
SMI Security for Mechanism msec protocol-identifiers:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.protocol-identifiers (1.3.6.1.5.5.12.3)
Decimal Description References
------- ----------- ----------
1 id-GSAKMPv1RegistrationProtocol [RFC4534]
2 id-GSAKMPv1DeRegistrationProtocol [RFC4534]
3 id-GSAKMPv1Rekey [RFC4534]
SMI Security for Mechanism msec rekey-methods:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.rekey-methods (1.3.6.1.5.5.12.4)
Decimal Description References
------- ----------- ----------
1 id-rekeyNone [RFC4534]
2 id-rekeyMethodGSAKMPLKH [RFC4534]
SMI Security for Mechanism msec rekey-reliability-methods:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.rekey-reliability-methods (1.3.6.1.5.5.12.5)
Decimal Description References
------- ----------- ----------
1 id-reliabilityNone [RFC4534]
2 id-reliabilityResend [RFC4534]
3 id-reliabilityPost [RFC4534]
SMI Security for Mechanism msec distributed-operations-methods:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.distributed-operations-methods (1.3.6.1.5.5.12.6)
Decimal Description References
------- ----------- ----------
1 id-subGCKSSchemeNone [RFC4534]
2 id-subGCKSSchemeAutonomous [RFC4534]
SMI Security for Mechanism msec data-policies:
Registration Procedures: IETF Consensus
Prefix: iso.org.dod.internet.security.mechanisms.msec.data-policies (1.3.6.1.5.5.12.7)
Decimal Description References
------- ----------- ----------
1 id-genericDataSA [RFC4534]
SMI Security for Name System Designators Codes (nametypes):
Prefix: iso.org.dod.internet.security.nametypes (1.3.6.1.5.6)
0 Reserved [IANA]
1 Domain Name System names [IANA]
2 gss-host-based-services [RFC2078]
3 gss-anonymous-name [RFC2078]
4 gss-api-exported-name [RFC2078]
5 gss-domain-based-services [RFC5178]
SMI Security Services Codes:
Prefix: iso.org.dod.internet.security.services (1.3.6.1.5.7)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 conf confidentiality services [ADAMS]
2 integrity data integrity services [ADAMS]
3 doa data origin authen. services [ADAMS]
4 non-rep non-repudiation services [ADAMS]
5 acc access control services [ADAMS]
6 dflow data flow services [ADAMS]
7 time time services [ADAMS]
SMI Security Services Codes (conf):
Prefix: iso.org.dod.internet.security.services.conf (1.3.6.1.5.7.1)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 per-conf perform conf. (encrypt) [ADAMS]
2 rec-conf receive conf. (decrypt) [ADAMS]
SMI Security Services Codes (integrity):
Prefix: iso.org.dod.internet.security.services.integrity (1.3.6.1.5.7.2)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 per-int perform integrity (e.g. MAC) [ADAMS]
2 rec-int receive integrity (verify MAC) [ADAMS]
SMI Security Services Codes (doa):
Prefix: iso.org.dod.internet.security.services.doa (1.3.6.1.5.7.3)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
" 1 per-doa perform DOA (e.g., sign) [ADAMS]"
2 rec-doa receive DOA (verify sig) [ADAMS]
SMI Security Services Codes (non-rep):
Prefix: iso.org.dod.internet.security.services.non-rep (1.3.6.1.5.7.4)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 per-poo create proof-of-origin [ADAMS]
2 rec-poo verify proof-of-origin [ADAMS]
3 per-pod create proof-of-delivery [ADAMS]
4 rec-pod verify proof-of-delivery [ADAMS]
SMI Security Services Codes (acc):
Prefix: iso.org.dod.internet.security.services.acc (1.3.6.1.5.7.5)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 per-acc apply access control [ADAMS]
2 rec-acc verify access control [ADAMS]
SMI Security Services Codes (dflow):
Prefix: iso.org.dod.internet.security.services.dflow (1.3.6.1.5.7.6)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 per-dflow perform data flow [ADAMS]
2 rec-dflow receive data flow [ADAMS]
SMI Security Services Codes (time):
Prefix: iso.org.dod.internet.security.services.time (1.3.6.1.5.7.7)
Decimal Name Description References
------- ---- ----------- ----------
0 Reserved [IANA]
1 ttime use trusted time [ADAMS]
2 utime use untrusted time [ADAMS]
SMI SNMPv2 Codes:
Prefix: iso.org.dod.internet.snmpv2 (1.3.6.1.6) [RFC1902]
Decimal Name Description References
------- ---- ----------- ----------
1 smmpDomains [RFC1902]
2 smnpProxys [RFC1902]
3 smnpModules [RFC1902]
SNMPv2 snmpDomains Codes:
Prefix: iso.org.dod.internet.snmpv2.snmpDomains (1.3.6.1.6.1)
[RFC4789]
Registration Procedures: Specification Required
Decimal Name Description References
------- -------------- ----------------- ----------
1 snmpUDPDomain SNMP over UDP [RFC3417]
2 snmpCLNSDomain SNMP over CLNS [RFC3417]
3 snmpCONSDomain SNMP over CONS [RFC3417]
4 snmpDDPDomain SNMP over DDP [RFC3417]
5 snmpIPXDomain SNMP over IPX [RFC3417]
6 snmpIeee802Domain SNMP over IEEE 802 [RFC4789]
SMI SNMPv2 snmpModules Codes:
Prefix: iso.org.dod.internet.snmpv2.snmpModules (1.3.6.1.6.3)
Decimal Name Description References
------- ---- ----------- ----------
1 snmpMIB MIB for SNMPv2 [RFC1907]
2 snmpM2M SNMPv2 M2M MIB [RFC1451]
2 snmpFrameworkMIB SNMP Management Architecture [obsolete]
3 partyMIB SNMPv2 Party MIB [RFC1447]
3 snmpMPDMIB SNMP Message Processing [obsolete]
4 bcmMIB SNMPv2 Basic Configuration Model [obsolete]
4 snmpUsmMIB User-based Security for SNMPv3 [obsolete]
5 scmMIB Simplified Configuration Model [obsolete]
5 snmpVacmMIB View-Based Access Control [obsolete]
6 usecMIB User-based Security for SNMPv2 [RFC1910]
7 snmpTargetMIB SNMP Target [obsolete]
8 snmpNotificationMIB SNMP Notification [obsolete]
9 snmpProxyMIB SNMP Proxy [obsolete]
10 snmpFrameworkMIB SNMP Management Architecture [RFC2571]
11 snmpMPDMIB SNMP Message Processing [RFC2572]
12 snmpTargetMIB SNMP Target [RFC2573]
13 snmpNotificationMIB SNMP Notification [RFC2573]
14 snmpProxyMIB SNMP Proxy [RFC2573]
15 snmpUsmMIB User-based Security for SNMPv3 [RFC2574]
16 snmpVacmMIB View-Based Access Control [RFC2575]
17 marsMIB Multicast Address Resolution [obsolete]
18 communityMIB SNMP Community MIB [Frye]
19 snmpv2tmMIB SNMPv2-TM MIB [RFC3417]
20 snmpUsmAesMIB SNMP-USM-AES-MIB [RFC3826]
21 snmpIEEE802TmMIB IEEE 802 Transport Mapping [RFC4789]
1133 communityMIB SNMPv2 Community MIB [obsolete]
1134 v2AdminMIB SNMPv2 Administrative MIB [obsolete]
1135 usecMIB MIB for User-based Security [obsolete]
SNMP Management Architecture:
Security Subsystem (SnmpSecurityModel)
Please see: http://www.iana.org/assignments/snmp-number-spaces
Message Processing Subsystem (SnmpMessageProcessingModel)
Please see: http://www.iana.org/assignments/snmp-number-spaces
SMI mail Codes:
Prefix: iso.org.dod.internet.mail (1.3.6.1.7)
Decimal Name Description References
------- ---- ----------- ----------
1 mime-mhs MIME MHS Mappings [RFC1495]
Features:
Prefix: iso.org.dod.internet.features (1.3.6.1.8)
See the file "media-feature-tags".
References
----------
[1] Miller, S.P., B.C. Neuman, J.I. Schiller, and J.H. Saltzer,
"Project Athena Technical Plan Section E.2.1: Kerberos
Authentication and Authorization System", Project Athena,
MIT, December 1987.
[2] Kohl, J., and B.C. Neuman, "The Kerberos Network
Authentication Service (V5)" work in progress, September 1992
[3GPP TS 23.060 v7.4.0]
http://www.3gpp.org/ftp/specs/archive/23_series/23.060/23060-740.zip
[3GPP2 C.S0017-005-A v1.0]
http://www.3gpp2.org/Public_html/specs/C.S0017-005-A_v1.0_040617.pdf
[ETSI EN 300 421]
http://www.etsi.org/services_products/freestandard/home.htm
[ETSI EN 301 790]
http://www.etsi.org/services_products/freestandard/home.htm
[ETSI EN 302 307]
http://www.etsi.org/services_products/freestandard/home.htm
[IEEE P802.3]
http://grouper.ieee.org/groups/802/3/ad_hoc/etholaps/public/docs/opening_report_0301.pdf
[IEEE 802.1ah]
http://www.ieee802.org/1/files/private/ah-drafts/d4/802-1ah-d4-2.pdf
[IEEE 802.1ap]
http://www.ieee802.org/1/files/private/ap-drafts/d3/802-1ap-D3-4.pdf
"[RFC1028] Davin, J., J. Case, M. Fedor, and M. Schoffstall, ""A Simple"
" Gateway Monitoring Protocol"", RFC 1028, Proteon, Inc.,"
" University of Tennessee at Knoxville, Cornell University,"
" Rensselaer Polytechnic Institute, November 1987."
"[RFC1095] Warrier, U., and L. Besaw, ""The Common Management"
" Information Services and Protocol over TCP/IP (CMOT)"","
" RFC 1095, Unisys Corp., Hewlett-Packard, April 1989."
"[RFC1155] Rose, M., and K. McCloghrie, ""Structure and Identification"
" of Management Information for TCP/IP-based internets"","
" STD 16, RFC 1155, Performance Systems International, Hughes"
" LAN Systems, May 1990."
"[RFC1157] Case, J., M. Fedor, M. Schoffstall, and J. Davin,"
" ""A Simple Network Management Protocol"", STD 15, RFC 1157,"
" SNMP Research, Performance Systems International,"
" Performance Systems International, MIT Laboratory for"
" Computer Science, May 1990."
"[RFC1213] McCloghrie, K., and M. Rose, ""Management Information Base"
" for Network Management of TCP/IP-based internets: MIB-II"","
" STD 17, RFC 1213, Hughes LAN Systems, Performance Systems"
" International, March 1991. "
"[RFC1229] McCloghrie, K., Editor, ""Extensions to the Generic-Interface"
" MIB"", RFC 1229, Hughes LAN Systems, Inc., May 1991. "
"[RFC1230] McCloghrie, K., and R. Fox, ""IEEE 802.4 Token Bus MIB"","
" RFC 1230, Hughes LAN Systems, Inc., Synoptics, Inc.,"
May 1991.
"[RFC1231] McCloghrie, K., Fox, R., and E. Decker, ""IEEE 802.5 Token"
" Ring MIB"", RFC 1231, Hughes LAN Systems, Inc., Synoptics,"
" Inc., cisco Systems, Inc., May 1991."
"[RFC1239] Reynolds, J., ""Reassignment of Experimental MIBs to"
" Standard MIBs"", RFC 1239, USC/Information Sciences"
" Institute, ISI, June 1991."
"[RFC1253] Baker, F., and R. Coltun, ""OSPF Version 2 Management"
" Information Base"", RFC 1253, ACC, Computer Science Center,"
August 1991.
"[RFC1271] Waldbusser, S., ""Remote Network Monitoring Management"
" Information Base"", RFC 1271, Carnegie Mellon University,"
November 1991.
"[RFC1284] Cook, J., Editor, ""Definitions of Managed Objects"
" for the Ethernet-like Interface Types"", RFC 1284, Chipcom"
" Corporation, December 1991. "
"[RFC1285] Case, J., ""FDDI Management Information Base"", RFC 1285,"
" SNMP Research, Incorporated, January 1992."
"[RFC1286] Decker, E., Langille, P., Rijsinghani, A., and K."
" McCloghrie, ""Definitions of Managed Objects for Bridges"","
" RFC 1286, cisco Systems, Inc., DEC, Hughes LAN Systems,"
" Inc., December 1991."
"[RFC1304] Cox, T., and K. Tesnik, Editors, ""Definitions of Managed"
" Objects for the SIP Interface Type"", RFC 1304, Bell"
" Communications Research, February 1992."
"[RFC1315] Brown, C., Baker, F., and C. Carvalho, ""Management"
" Information Base for Frame Relay DTEs"", RFC 1315, Wellfleet"
" Communications, Inc., Advanced Computer Communications,"
April 1992.
"[RFC1353] McCloghrie, K., Davin, J., and J. Galvin, ""Definitions of"
" Managed Objects for Administration of SNMP Parties"","
" RFC 1353, Hughes LAN Systems, Inc., MIT Laboratory for"
" Computer Science, Trusted Information Systems, Inc.,"
July 1992.
"[RFC1381] Throop, D., and F. Baker, ""SNMP MIB Extension for X.25"
" LAPB"", RFC 1381, Data General Corporation, Advanced Computer"
" Communications, November 1992. "
"[RFC1382] Throop, D., Editor, ""SNMP MIB Extension for the X.25 Packet"
" Layer"", RFC 1382, Data General Corporation, November 1992. "
"[RFC1389] Malkin, G., and F. Baker, ""RIP Version 2 MIB Extension"", RFC"
" 1389, Xylogics, Inc., Advanced Computer Communications,"
January 1993.
"[RFC1414] St. Johns, M., and M. Rose, ""Identification MIB"", RFC 1414,"
" US Department of Defense, Dover Beach Consulting, Inc.,"
February 1993.
"[RFC1447] McCloghrie, K., and J. Galvin, ""Party MIB for version 2 of"
" the Simple Network Management Protocol (SNMPv2)"", RFC 1447,"
April 1993.
"[RFC1451] Case, J., McCloghrie, K., Rose, M., and S. Waldbusser,"
" ""Manager-to-Manager Management Information Base"", RFC 1451,"
April 1993.
"[RFC1461] Throop, D., ""SNMP MIB extension for Multiprotocol"
" Interconnect over X.25"", RFC 1461, Data General Corporation,"
May 1993.
"[RFC1471] Kastenholz, F., ""The Definitions of Managed Objects for"
" the Link Control Protocol of the Point-to-Point Protocol"", "
" RFC 1471, FTP Software, Inc., June 1993."
"[RFC1472] Kastenholz, F., ""The Definitions of Managed Objects for"
" the Security Protocols of the Point-to-Point Protocol"", RFC"
" 1472, FTP Software, Inc., June 1993. "
"[RFC1473] Kastenholz, F., ""The Definitions of Managed Objects for"
the IP Network Control Protocol of the Point-to-Point
" Protocol"", RFC 1473, FTP Software, Inc., June 1993."
"[RFC1474] Kastenholz, F., ""The Definitions of Managed Objects for"
the Bridge Network Control Protocol of the Point-to-Point
" Protocol"" RFC 1474, FTP Software, Inc., June 1993."
"[RFC1483] Heinanen, J., ""Multiprotocol Encapsulation over ATM"
" Adaptation Layer 5"", RFC 1483, Telecom Finland, July 1999."
"[RFC1490] Bradley, T., C. Brown, and A. Malis, ""Multiprotocol"
" Interconnect over Frame Relay"", RFC 1490, Wellfleet"
" Communications, Ascom Timeplex, July 1993."
"[RFC1495] Alvestrand, H., S. Kille, R. Miles, M. Rose, and S."
" Thompson, "" Mapping between X.400 and RFC-822 Message"
" Bodies"", RFC 1495, SINTEF DELAB, ISODE Consortium,"
" Soft*Switch, Dover Beach Consulting, Soft*Switch, August"
1993
"[RFC1513] S. Waldbusser, ""Token Ring Extensions to the Remote Network"
" Monitoring MIB"", September 1993"
"[RFC1514] Grillo, P., and S. Waldbusser, ""Host Resources MIB"", RFC"
" 1514, Network Innovations, Intel Corporation, Carnegie"
" Mellon University, September 1993."
"[RFC1516] McMaster, D., and K. McCloghrie, ""Definitions of Managed"
" Objects for IEEE 802.3 Repeater Devices"", RFC 1516,"
" SynOptics Communications, Inc., Hughes LAN Systems, Inc.,"
September 1993.
"[RFC1559] Saperia, J., ""DECnet Phase IV MIB Extensions"", RFC 1559,"
" Digital Equipment Corporation, December 1993."
"[RFC1567] Mansfield, G., and S. Kille, ""X.500 Directory Monitoring"
" MIB"", RFC 1567, AIC Systems Laboratory, ISODE Consortium,"
January 1994.
"[RFC1573] McCloghrie, K., and F. Kastenholz, ""Evolution of the"
" Interfaces Group of MIB-II"", RFC 1573, Hughes LAN Systems,"
" FTP Software, January 1994."
"[RFC1596] Brown, T., Editor, Definitions of Managed Objects for Frame"
" Relay Service"", RFC 1596, Bell Communications Research,"
March 1994.
"[RFC1611] Austein, R., and J. Saperia, ""DNS Server MIB Extensions"","
" RFC 1611, Epilogue Technology Corporation, Digital Equipment"
" Corporation, May 1994."
"[RFC1628] Case, J., Editor, ""UPS Management Information Base"", RFC"
" 1628, SNMP Research, Incorporated, May 1994."
"[RFC1657] Willis, S., Burruss, J., and J. Chu, Editor, ""Definitions of"
Managed Objects for the Fourth Version of the Border Gateway
" Protocol (BGP-4) using SMIv2"", RFC 1657, Wellfleet"
" Communications Inc., IBM Corp., July 1994."
"[RFC1658] Stewart, B., ""Definitions of Managed Objects for Character"
" Stream Devices using SMIv2"", RFC 1658, Xyplex, Inc., July"
1994
"[RFC1659] Stewart, B., ""Definitions of Managed Objects for RS-232-like"
" Hardware Devices using SMIv2"", RFC 1659, Xyplex, Inc., July"
1994
"[RFC1660] Stewart, B., ""Definitions of Managed Objects for"
" Parallel-printer-like Hardware Devices using SMIv2"", RFC"
" 1660, Xyplex, Inc., July"
1994
"[RFC1666] Kielczewski, Z., Kostick, D., and K. Shih, Editors,"
" ""Definitions of Managed Objects for SNA NAUs using SMIv2"", "
" RFC 1665, Eicon Technology Corporation, Bell Communications"
" Research, Novell, August 1994. "
"[RFC1694] Brown, T., and K. Tesink, Editors, ""Definitions of Managed"
" Objects for SMDS Interfaces using SMIv2"", RFC 1694, Bell"
" Communications Research, August 1994."
"[RFC1696] Barnes, J., Brown, L., Royston, R., and S. Waldbusser,"
" ""Modem Management Information Base (MIB) using SMIv2"", RFC"
" 1696, Xylogics, Inc., Motorola, US Robotics, Inc., Carnegie"
" Mellon University, August 1994."
"[RFC1697] Brower, D., Editor, Purvy, B., RDBMSMIB Working Group Chair,"
" Daniel, A., Sinykin, M., and J. Smith, ""Relational Database"
Management System (RDBMS) Management Information Base (MIB)
" using SMIv2"", RFC 1697, The ASK Group, INGRES DBMS"
" Development, Oracle Corporation, Informix Software, Inc.,"
" Oracle Corporation, August 1994. "
"[RFC1742] Waldbusser, S., and K. Frsia, ""AppleTalk Management"
" Information Base II"", RFC 1742, Carnegie Mellon"
" University,and Fore Systems, December 1994."
"[RFC1743] McCloghrie, K., and E. Decker, ""IEEE 802.5 MIB using SMIv2"","
" RFC 1743, cisco Systems, Inc., December 1994"
"[RFC1747] Hilgeman, J., S. Nix, A. Bartky, and W. Clark, ""Definitions"
of Managed Objects for SNA Data Link Control (SDLC) using
" SMIv2"", RFC 1747, Apertis Technologies, Metaplex, Sync"
" Research, and cisco, December 1994."
"[RFC1748] McCloughrie, K., F. Baker, and E. Decker, ""IEE 802.5 Station"
" Source Routing MIB using SMIv2"", RFC 1748, cisco, December"
1994
"[RFC1759] Smith, R., F. Wright, T. Hastings, S. Zilles, and J."
" Gyllenskog, ""Printer MIB"", RFC 1759, Texas Instruments,"
" Lexmark International, Digital Equipment, Adobe Systems,"
" Hewlett-Packard Company, February 1995."
"[RFC1804] Mansfield, G., P. Rajeev, S. Radhavan, T. Howes, ""Schema"
" Publishing in X.500 Directory"", RFC 1804, AIC Laboratories,"
" Hughes Software Systems, Indian Institute of Technology,"
" University of Michigan, June 1995."
"[RFC1902] SNMPv2 Working Group, et. al., ""Structure of Management"
Information for the Version 2 of the Simple Network
" Management Protocol (SMNPv2)"", RFC 1902, January 1996."
"[RFC1907] SNMPv2 Working Group, Case, J., McCloghrie, K., Rose, M.,"
" and S. Waldbusser, ""Management Information Base for Version"
" 2 of the Simple Network Management Protocol (SNMPv2)"", RFC"
" 1907, January 1996."
"[RFC1910] Waters, G., Editor, ""User-based Security Model for SNMPv2"","
" RFC 1910, February 1996."
"[RFC2006] Cong, D., M. Hamlen, ""The Definition of Managed Objects for"
" IP Mobility Support"", RFC 2006, Motorola, IBM, September"
1996
"[RFC2020] Flick, J., ""Definitions of Managed Objects for IEEE 802.12"
" Interfaces"", RFC 2020, Hewlett Packard, October 1996."
"[RFC2024] Chen, D., P. Gaytek, and A. Nix, ""Definitions of Managed"
" Objects for Data Link Awitching using SMIv2"", RFC 2024, IBM,"
" Metaplex, October 1996."
"[RFC2025] Adams, C., ""The Simple Public-Key GSS=API Mechanism (SPKM)"","
" RFC 2025, Bell-Northern Research, October 1996."
"[RFC2037] McCloghrie, and A. Bierman, ""Entity MIB using SMIv2"", RFC"
" 2037, Cisco Systems, October 1996."
"[RFC2011] McCloghrie, K., ""SNMPv2 Management Information Base for the"
" Internet Protocol using SMIv2"", RFC 2011, Cisco Systems,"
November 1996.
"[RFC2012] McCloghrie, K., ""SNMPv2 Management Information Base for the"
" Transmission Control Protocol using SMIv2"", RFC 2012, Cisco"
" Systems, November 1996."
"[RFC2013] McCloghrie, K., ""SNMPv2 Management Information Base for the"
" User Datagram Protocol using SMIv2"", RFC 2013, Cisco"
" Systems, November 1996."
"[RFC2021] S. Waldbusser, ""Remote Network Monitoring Management Information "
" Base, Version 2 using SMIv2"", January 1997"
"[RFC2064] Brownlee, N., ""Traddic Flow Measurement: Meter MIB"", RFC"
" 2064, University of Auckland, January 1997."
"[RFC2078] Linn, J., ""Generic Security Service Application Program"
" Interface, Version 2"", RFC 2078, OpenVision Technologies,"
January 1997.
"[RFC2108] de Graaf, K., D. Romascanu, D. McMaster, and K. McCloghrie,"
" ""Definitions of Managed Objects for IEEE 802.3 Repater"
" Devices using SMIv2"", RFC 2108, 3Com, Madge Networks,"
" Coloma, Communications, Cisco Systems, February 1997."
"[RFC2127] Roeck, G., ""ISDN Management Information Base using SMIv2"","
" RFC 2127, Cisco Systems, March 1997."
"[RFC2128] Roeck, G., ""Dial Control Management Information Base using"
" SMIv2"", RFC 2128, Cisco Systems, March 1997."
"[RFC2206] Baker, F., J. Krawczyk, and A. Sastry, ""RSVP Management"
" Information Base using SMIv2"", RFC 2206, Cisco Systems,"
" ArrowPoint Communications, September 1997."
"[RFC2213] Baker, F., and J. Krawczyk, ""Integrated Services Management"
" Information Base using SMIv2"", RFC 2223, Cisco Systems,"
" ArrowPoint Communications, September 1997."
"[RFC2248] Freed, N., and S. Kille, ""Network Services Monitoring MIB"", "
" RFC 2248, Innosoft, ISODE Consortium, January 1998."
"[RFC2249] Freed, N., and S. Kille, ""Mail Monitoring MIB"", RFC 2249,"
" Innosoft, ISODE Consortium, January 1998."
"[RFC2262] Case, J., Harrington, D., Presuhn, R., and B. Wijnen,"
Message Processing and Dispatching for the Simple Network
" Management Protocol (SNMP)"", RFC 2262, January 1998."
"[RFC2263] Levi, D., Meyer, P., and B. Stewart, ""SNMPv3 Applications"","
" RFC 2263, January 1998."
"[RFC2264] Blumenthal, U., and B. Wijnen, ""User-based Security Model"
(USM) for version 3 of the Simple Network Management
" Protocol (SNMPv3)"", RFC 2264, January 1998."
"[RFC2265] Wijnen, B., Presuhn, R., and K. McCloghrie, ""View-based"
Access Control Model (VACM) for the Simple Network
" Management Protocol (SNMP)"", RFC 2265, January 1998."
"[RFC2266] Flick, J., ""Definitions of Managed Objects for IEEE 802.12"
" Repeater Devices"", RFC 2266, January 1998."
"[RFC2287] Krupczak, C., and J. Saperia, ""Definitions of System-Level"
" Managed Objects for Applications"", RFC 2287, February 1998."
"[RFC2307] Howard, L., ""An Approach for Using LDAP as a Network"
" Information Service"", RFC 2307, March 1998."
"[RFC2320] Greene, M., Luciani, J., White, K., and T. Kuo, ""Definitions"
of Managed Objects for Classical IP and ARP Over ATM Using
" SMIv2 (IPOA-MIB)"", RFC 2320, April 1998."
"[RFC2325] Slavitch, M., ""Definitions of Managed Objects for Drip-Type"
" Heated Beverage Hardware Devices using SMIv2"", RFC 2325,"
April 1998.
"[RFC2377] Grimstad, A., Huber, R., Sataluri, S., and M. Wahl, "
" ""Naming Plan for Internet Directory-Enabled Applications"","
" RFC 2377, September 1998."
"[RFC2417] Chung, C., and M. Greene, Editor, ""Definitions of Managed"
" Objects for Multicast over UNI 3.0/3.1 based ATM Networks"","
" RFC 2417, September 1998."
"[RFC2452] Daniele, M., ""IP Version 6 Management Information Base"
" for the Transmission Control Protocol"", RFC 2452, December"
1998
"[RFC2454] Daniele, M., ""IP Version 6 Management Information Base"
" for the User Datagram Protocol"", RFC 2454, December"
1998
"[RFC2455] Clouston, B., and B. Moore, ""Definitions of Managed Objects"
" for APPN"", RFC 2455, November 1998."
"[RFC2457] Clouston, B., and B. Moore, ""Definitions of Managed Objects"
" for Extended Border Node"", RFC 2457, November 1998. "
"[RFC2465] Haskin, D., and S. Onishi, ""Management Informationl Base for"
" IP Version 6: Textual Conventions and General Group"", RFC"
" 2465, December 1998. "
"[RFC2493] Tesink, K., Editor, ""Textual Conventions for MIB Modules"
" Using Performance History Based on 15 Minute Intervals"","
" RFC 2493, January 1999."
"[RFC2494] Fowler, D., Editor, ""Definitions of Managed Objects"
" for the DS0 and DS0 Bundle Interface Type"", RFC 2494,"
January 1999.
"[RFC2495] Fowler, D., Editor, ""Definitions of Managed Objects"
" for the DS1, E1, DS2 and E2 Interface Types"", RFC 2495,"
January 1999.
"[RFC2496] Fowler, D., Editor, ""Definitions of Managed Objects for the"
" DS3/E3 Interface Type"", RFC 2496, January 1999. "
"[RFC2512] McCloghrie, K., Heinanen, J., Greene, W., and A. Prasad,"
" ""Accounting Information for ATM Networks"", RFC 2512,"
February 1999.
"[RFC2513] McCloghrie, K., Heinanen, J., Greene W., and A. Prasad,"
" ""Managed Objects for Controlling the Collection and Storage"
" of Accounting Information for Connection-Oriented Networks"","
February 1999.
"[RFC2515] Tesink, K., Editor, ""Definitions of Managed Objects"
" for ATM Management"", RFC 2515, February 1999."
"[RFC2558] Tesink, K., ""Definitions of Managed Objects for the"
" SONET/SDH Interface Type"", RFC 2558, March 1999."
"[RFC2561] White, K., and R. Moore, ""Base Definitions of Managed"
" Objects for TN3270E Using SMIv2"", RFC 2561, April 1999."
"[RFC2562] White, K., and R. Moore, ""Definitions of Protocol and"
Managed Objects for TN3270E Response Time Collection Using
" SMIv2"", RFC 2562, April 1999."
"[RFC2564] Kalbfleisch, C., Krupczak, C., Presuhn, R., and J. Saperia,"
" ""Application Management MIB"", RFC 2564, May 1999."
"[RFC2571] Harrington, D., Presuhn, R. and B. Wijnen, ""An Architecture"
" for describing SNMP Management Frameworks"", RFC 2571, April"
1999
"[RFC2572] Case, J., Harrington, D., Presuhn, R. and B. Wijnen,"
" ""Message Processing and Dispatching for the Simple Network"
" Management Protocol (SNMP)"", RFC 2572, April 1999."
"[RFC2573] Levi, D. B., Meyer, P. and B. Stewart, ""SNMP Applications"","
" RFC 2573, April 1999."
"[RFC2574] Blumenthal, U. and B. Wijnen, ""The User\|-Based Security"
Model for Version 3 of the Simple Network Management
" Protocol (SNMPv3)"", RFC 2574, April 1999."
"[RFC2575] Wijnen, B., Presuhn, R. and K. McCloghrie, ""View\|-based"
Access Control Model for the Simple Network Management
" Protocol (SNMP)"", RFC 2575, April 1999."
"[RFC2591] Levi, D., and J. Schoenwaelder, ""Definitions of Managed"
" Objects for Scheduling Management Operations"", RFC 2591, May"
1999
"[RFC2594] Hazewinkel, H., Kalbfleisch, C., and J. Schoenwaelder,"
" ""Definitions of Managed Objects for WWW Services"", RFC 2594,"
May 1999.
"[RFC2605] Mansfield, G., and S. Kille, ""Directory Server Monitoring"
" MIB"", RFC 2605, June 1999."
"[RFC2613] R. Waterman, B. Lahaye, D. Romascanu, S. Waldbusser,"
" ""Remote Network Monitoring MIB Extensions for Switched Networks"
" Version 1.0"", June 1999"
"[RFC2618] Aboba, B., and G. Zorn, ""RADIUS Authentication Client MIB"", "
" RFC 2618, June 1999."
"[RFC2662] G. Bathrick and F. Ly, ""Definitions of Managed Objects for "
" the ADSL Lines"", RFC 2662, August 1999."
"[RFC2665] Flick, J., and J. Johnson, ""Definitions of Managed Objects"
" for the Ethernet-like Interface Types"", RFC 2665, August 1999."
"[RFC2666] Flick, J., ""Definitions of Object Identifiers for"
" Identifying Ethernet Chip Sets"", August 1999."
"[RFC2667] D. Thaler, ""IP Tunnel MIB"", RFC 2667, August 1999."
"[RFC2668] Smith, A., Flick, J., de Graaf, K., Romascanu, D., McMaster,"
" D., McCloghrie, K. and S. Roberts, ""Definitions"
of Managed Objects for IEEE 802.3 Medium Attachment Units
" (MAUs)"", RFC 2668, August 1999."
"[RFC2669] St. Johns, M., Editor, ""DOCSIS Cable Device MIB Cable Device"
Management Information Base for DOCSIS compliant Cable
" Modems and Cable Modem Termination Systems"", RFC 2669,"
August 1999.
"[RFC2670] M. St. Johns, Ed. ""Radio Frequency (RF) Interface Management "
" Information Base for MCNS/DOCSIS compliant RF interfaces"""
" RFC 2670, August 1999."
"[RFC2677] Greene, M., Cucchiara, J. and J. Luciani, ""Definitions of"
Managed Objects for the NBMA Next Hop Resolution Protocol
" (NHRP)"", RFC 2677, August 1999."
"[RFC2742] Heintz, L., Gudur, S. and M. Ellison, Editor, ""Definitions"
" of Managed Objects forExtensible SNMP Agents"", RFC 2742,"
January 2000.
"[RFC2786] St. Johns, M., ""Diffie-Helman USM Key Management Information"
" Base and Textual Convention"", RFC 2786, March 2000."
"[RFC2819] S. Waldbusser, ""Remote Network Monitoring Management Information "
" Base"", May 2000"
"[RFC2837] Teow, K., ""Definitions of Managed Objects for the Fabric"
" Element in Fibre Channel Standard"", RFC 2837, May 2000."
"[RFC2847] Eisler, M., ""A Low Infrastructure Public Key Mechanism"
" Using SPKM"", RFC2847, June 2000. "
"[RFC2851] Daniele, M., Haberman, B., Routhier, S. and J."
" Schoenwaelder, ""Textual Conventions for Internet Network"
" Addresses"", RFC 2851, June 2000. "
"[RFC2856] Bierman, A., McCloghrie, K. and R. Presuhn, ""Textual"
" Conventions for Additional High Capacity Data Types', RFC"
" 2856, June 2000."
"[RFC2864] McCloghrie, K. and G. Hanson, ""The Inverted Stack Table"
" Extension to the Interfaces Group MIB"", RFC 2864, June"
2000
"[RFC2922] Bierman, A. and K. Jones, ""Physical Topology MIB"", RFC 2922,"
September 2000.
"[RFC2925] White, K., ""Definitions of Managed Objects for Remote Ping,"
" Traceroute, and Lookup Operations"", RFC 2925, September"
2000
"[RFC2932] McCloghrie, K., Farinacci, D. and D. Thaler, ""IPv4 Multicast"
" Routing MIB"", RFC 2932, October 2000."
"[RFC2933] McCloghrie, K., Farinacci, D. and D. Thaler, ""Internet Group"
" Management Protocol MIB"", RFC 2933, October 2000."
"[RFC2934] McCloghrie, K., Farinacci, D., Thaler, D. and B. Fenner,"
" ""Protocol Independent Multicast MIB for IPv4"", RFC 2934,"
October 2000.
"[RFC2940] Smith, A., Partain, D., and J. Seligson, ""Definitions of"
Managed Objects for Common Open Policy Service (COPS)
" Protocol Clients"", RFC 2940, October 2000. "
"[RFC2954] Rehbehn, K. and D. Fowler, ""Definitions of Managed Objects"
" for Frame Relay Service"", RFC 2954, October 2000. "
"[RFC2955] Rehbehn, K., Nicklass, O., and G. Mouradian, ""Definitions of"
Managed Objects for Monitoring and Controlling the Frame
" Relay/ATM PVC Service Interworking Function"", RFC 2955,"
October 2000.
"[RFC2959] Baugher, M., I. Suconick, and B. Strahm, ""Real-Time"
" Transport Protocol Management Information Base"", RFC 2959,"
October 2000.
"[RFC2981] Kavasseri, R. ""Event MIB"", RFC 2981, October 2000."
"[RFC2982] Kavasseri, R. ""Distributed Management Expression MIB"","
" RFC 2982, October 2000."
"[RFC3014] Kavasseri, R. and B. Stewart, ""Notification Log MIB"","
" RFC 3014, November 2000."
"[RFC3019] Haberman, B. and R. Worzella, ""IP Version 6 Management "
Information Base for the Multicast Listener Discovery
" Protocol, RFC 3019, December 2000. "
"[RFC3020] Pate, P., B. Lynch, and K. Rehbehn, ""Definitions of "
Managed Objects for Monitoring and Controlling the
" UNI/NNI Multilink Frame Relay Function"", RFC 3020,"
December 2000.
"[RFC3045] M. Meredith, ""Storing Vendor Information in the LDAP "
" root DSE"", RFC 3045, January 2001."
"[RFC3055] Krishnaswamy, M. and D. Romascanu, ""Management Information"
" Base for the PINT Services Architecture"", RFC 3055,"
February 2001.
"[RFC3159] K. McCloghrie, M. Fine, J. Seligson, K. Chan, S. Hahn,"
" R. Sahita, A. Smith, and F. Reichmeyer, ""Structure of "
" Policy Provisioning Information (SPPI)"", RFC 3159"
August 2001.
"[RFC3165] D. Levi, and J. Schoenwaelder, ""Definitions of Managed "
" Objects for the Delegation of Management Scripts"", "
" RFC 3165, August 2001."
"[RFC3201] R. Steniberger and O. Nicklass, ""Definitions of Managed "
" Objects for Circuit to Interface Translation"", RFC 3201,"
December 2001.
"[RFC3202] R. Steinberger and O. Nicklass, ""Definitions of Managed "
" Objects for Frame Relay Service Level Definitions"", "
" RFC 3202, December 2001."
"[RFC3417] R. Presuhn, ""Transport Mappings for the Simple Network "
" Management Protocol"", RFC 3417, December 2002."
"[RFC3273] S. Waldbusser, Remote Network Monitoring Management "
" Information Base for High Capacity Networks, July 2002"
"[RFC3287] A. Bierman, ""Remote Monitoring MIB Extensions for"
" Differentiated Services"", July 2002"
"[RFC3289] F. Baker, K. Chan, and A. Smith, ""Management Information "
" Base for the Differentiated Services Architecture"","
" RFC 3289, May 2002."
"[RFC3295] H. Sjostrand, J. Buerkle, and B. Srinivasan, ""Definitions "
of Managed Objects for the General Switch Management
" Protocol (GSMP)"", RFC 3295, June 2002."
"[RFC3317] M. Fine, K. McCloghrie, J. Seligson, K. Chan, S. Hahn, C. Bell,"
" A. Smith, and F. Reichmeyer, ""Differentiated Services Quality of "
" Service Policy Information Base"", RFC 3317, December 2002."
"[RFC3318] M. Fine, K. McCloghrie, J. Seligson, K. Chan, R. Sahita, S. Hahn,"
" A. Smith, and F. Reichmeyer, ""Framework Policy Information Base"","
" RFC 3318, December 2002."
"[RFC3371] E. Caves, P. Calhoun, and R. Wheeler, ""Layer Two Tunneling "
" Protocol ""L2TP"" Management Information Base"", RFC 3371, August 2002."
"[RFC3383] K. Zeilenga, ""Internet Assigned Numbers Authority (IANA) "
Considerations for the Lightweight Directory Access
" Protocol (LDAP)"", RFC 3383, September 2002."
"[RFC3419] M. Daniele and J. Schoenwaelder, ""Textual Conventions for Transport "
" Addresses"", RFC 3419, November 2002."
"[RFC3433] A. Bierman, D. Romascanu, and K.C. Norseth, ""Entity Sensor Management "
" Information Base"", RFC 3433, December 2002."
"[RFC3434] A. Bierman, K. McCloghrie, ""Remote Monitoring MIB Extensions for High "
" Capacity Alarms"", December 2002"
"[RFC3498] J. Johnson, M. Thatcher, and J. Kuhfeld, ""Definitions of Managed "
" Objects for SONET Linear APS architectures"", RFC 3498, March 2003."
"[RFC3512] M. MacFaden, D. Partain, J. Saperia, and W. Tackabury, ""Configuring "
" Networks and Devices With SNMP"", RFC 3512, April 2003."
"[RFC3559] D. Thaler, ""Multicast Address Allocation MIB"", RFC 3559, June 2003."
"[RFC3571] D. Rawlins, A. Kulkarni, K. Chan, M. Bokaemper, and D. Dutt,"
" ""Framework Policy Information Base for Usage Feedback"", RFC 3571,"
August 2003.
"[RFC3591] H-K. Lam, M. Stewart, and A. Huynh, ""Definitions of Managed Objects "
" for the Optical Interface Type"", RFC 3591, September 2003."
"[RFC3595] B. Wijnen, ""Textual Conventions for IPv6 Flow Label"", RFC 3595,"
September 2003.
"[RFC3621] A. Berger and D. Romascanu, ""Power Ethernet MIB"", RFC 3621, "
December 2003.
"[RFC3635] J. Flick, ""Definitions of Managed Objects for the Ethernet-like "
" Interface Types"", RFC 3635, September 2003."
"[RFC3637] C. M. Heard, ""Definitions of Managed Objects for the Ethernet WAN "
" Interface Sublayer"", RFC 3637, September 2003."
[RFC3729] Rmon Reserved for APM (RFC-to-be)
"[RFC3737] B. Wijnen, A. Bierman, ""IANA guidelines for the registry of rmon MIB "
" modules"", RFC 3737, April 2004."
"[RFC3747] H. Hazewinkel and D. Partain, ""The Differentiated Services "
" Configuration MIB"", RFC 3747, April 2004."
"[RFC3805] R. Bergman, H. Lewis, I. McDonald, ""Printer MIB v2"", RFC 3805, June 2004."
"[RFC3806] R. Bergman, H. Lewis, I. McDonald, ""Printer Finishing MIB"", RFC 3806, June 2004."
"[RFC3808] I. McDonald, ""IANA Charset MIB"", RFC 3808, June 2004."
"[RFC3811] T. Nadeau, J. Cucchiara, ""Definitions of Textual Conventions for Multiprotocol Label"
" Switching (MPLS) Management"", RFC 3811, June 2004."
"[RFC3812] C. Srinivasan, A. Viswanathan, T. Nadeau, ""Multiprotocol Label Switching (MPLS) "
" Traffic Engineering Management Information Base"", RFC 3812, June 2004."
"[RFC3813] C. Srinivasan, A. Viswanathan, T. Nadeau, ""Multiprotocol Label Switching (MPLS) "
" Label Switching Router (LSR) Management Information Base"", RFC 3813, June 2004."
"[RFC3814] T. Nadeau, C. Srinivasan, A. Viswanathan, ""Multiprotocol Label Switching (MPLS) "
Forwarding Equivalence Class To Next Hop Label Forwarding Entry (FEC-To-NHLFE)
" Management Information Base"", RFC 3814, June 2004."
"[RFC3815] J. Cucchiara, H. Sjostrand, J. Luciani, ""Definitions of Managed Objects for the "
" Multiprotocol Label Switching, Label Distribution Protocol (LDP)"", RFC 3815"
June 2004.
"[RFC3816] J. Quittek, M. Stiemerling, and H. Hartenstein, ""Definitions of Managed "
" Objects for Robust Header Compression"", RFC 3816, June 2004."
"[RFC3826] U. Blumenthal, F. Maino, and K. McCloghrie, ""The AES Cipher Algorithm "
" in the SNMP User-based Security Model"", RFC 3826, June 2004."
"[RFC3703] J. Strassner, B. Moore, and R. Moats, ""Policy Core LDAP Schema"", "
" RFC 3703, February 2004."
"[RFC3872] D. Zinman, D. Walker, and J. Jiang, ""Management Information Base for Telephony "
" Routing over IP (TRIP)"", RFC 3872, September 2004."
"[RFC3873] J. Pastor and M. Belinchon, ""Stream Control Transmission Protocol "
" Management Information Base, RFC 3873, September 2004."
"[RFC3877] S. Chisholm and D. Romascanu, ""Alarm MIB"", RFC 3877, September 2004."
"[RFC3878] H.K. Lam, A. Huynh, and D. Perkins, ""Alarm Reporting Control MIB"","
" RFC 3878, September 2004."
"[RFC3909] K. Zeilenga, ""LDAP Cancel Operation"", RFC 3909, October 2004."
"[RFC3928] R. Megginson, Editor, M. Smith, O. Natkovich, J. Parham, "
" ""LDAP Client Update Protocol"", RFC 3928, October 2004."
"[RFC3970] K. Kompella, ""A Traffic Engineering MIB"", RFC 3970, January 2005."
"[RFC4008] R. Rohit, P. Srisuresh, R. Raghunarayan, N. Pai, and C. Wang, "
" ""Definitions of Managed Objects for Network Address Translators (NAT)"","
" RFC 4008, March 2005."
"[RFC4011] S. Waldbusser, J. Saperia, and T. Hongal, ""Policy Based Management MIB"", "
" RFC 4011, March 2005."
"[RFC4036] W. Sawyer, ""Management Information Base for Data Over Cable Service "
Interface Specification (DOCSIS) Cable Modem Termination Systems for
" Subscriber Management"", RFC 4036, April 2005."
"[RFC4044] K. McCloghrie, ""Fibre Channel Management MIB"", RFC 4044, May 2005."
"[RFC4069] M. Dodge and B. Ray, ""Definitions of Managed Object Extensions"
for Very High Speed Digital Subscriber Lines (VDSL) Using Single
" Carrier Modulation (SCM) Line Coding"", RFC 4069, May 2005."
"[RFC4070] M. Dodge and B. Ray, ""Definitions of Managed Object Extensions"
for Very High Speed Digital Subscriber Lines (VDSL) Using Multiple
" Carrier Modulation (MCM) Line Coding"", RFC 4070, May 2005."
"[RFC4087] D. Thaler, ""IP Tunnel MIB"", RFC 4087, June 2005."
"[RFC4104] M. Pana, Ed., A. Reyes, A. Barba, D. Moron, and M. Brunner, "
" ""Policy Core Extension Lightweight Directory Access Protocol Schema"","
" RFC 4104, June 2005."
[RFC-ietf-adslmib-hc-tc-07.txt]
B. Ray and R. Abbi, "High Capacity Textual Conventions for MIB Modules
Using Performance History Based on 15 Minute Intervals", RFC XXXX,
Month Year.
[RFC-ietf-adslmib-vdsl-12.txt]
B. Ray and R. Abbi, "Definitions of Managed Objects for Very High Speed
Digital Subscriber Lines (VDSL)", RFC XXXX, Month Year.
"[RFC4131] S. Green, K. Ozawa, A. Katsnelson, and E. Cardona, Ed., "
" ""Management Information Base for DOCSIS Cable Modems and Cable Modem"
" Termination Systems for Baseline Privacy Plus"", RFC 4131, September 2005."
"[RFC4148] E. Stephan, ""IP Performance Metrics (IPPM) metrics registry"", RFC 4148,"
August 2005.
"[RFC4149] C. Kalbfleisch, R.G. Cole, and D. Romascanu, ""Definition of Managed "
" Objects for Synthetic Sources for Performance Monitoring Algorithms"","
" RFC 4149, August 2005."
"[RFC4150] R. Dietz and R. Cole, ""Transport Performance Metrics MIB"", RFC 4150,"
August 2005.
[IEEE 802.16] http://standards.ieee.org/getieee802/802.16.html
[IEEE 802.17]
"[RFC4220] M. Dubuc, S. Dharanikota, T.D. Nadeau, and J.P. Lang, ""Traffic Engineering "
" Link Management Information Base"", RFC 4220, November 2005."
"[RFC4237] G. Vaudreuil, ""Voice Messaging Directory Service"", RFC 4237, October 2005."
"[RFC4268] S. Chisholm and D. Perkins, ""Entity State MIB"", RFC 4268, November 2005."
"[RFC4295] G. M. Keeni, K. Koide, K. Nagami, and S. Gundavelli, ""Mobile IPv6 "
" Management Information Base"", RFC 4295, April 2006."
"[RFC4301] S. Kent and K. Seo, ""Security Architecture for the Internet Protocol"","
" RFC 4301, December 2005."
"[RFC4318] D.Levi and D. Harrington, ""Definitions of Managed Objects for Bridges"
" with Rapid Spanning Tree Protocol"", RFC 4318, December 2005."
[RFC4319] C. Sikes, B. Ray and R. Abbi, "Definitions of Managed Objects for
High Bit-Rate DSL - 2nd generation (HDSL2) and Single-Pair High-Speed
Digital Subscriber Line (SHDSL) Lines", RFC 4319, December 2005.
"[RFC4323] M. Patrick and W. Murwin, ""Data Over Cable System Interface "
Specification Quality of Service Management Information Base
" (DOCSIS-QOS MIB)"", RFC 4323, January 2006."
[RFC4327] M. Dubuc, T. Nadeau, J. Lang, E. McGinnis, A. Farrel, "Link Management
Protocol (LMP) Management Information Base (MIB)", RFC 4327,
September 2006.
"[RFC4368] T. Nadeau and S. Hegde, ""Multiprotocol Label Switching (MPLS) "
" Label-Controlled ATM and Frame-Relay Management Interface Definition"", "
" RFC 4368, January 2006."
"[RFC4382] T. Nadeau and H. Van Der Linde, Eds., ""MPLS/BGP Layer 3 Virtual Private "
" Network Management Information Base"", RFC 4382, February 2006."
"[RFC4403] B. Bergeson, K. Boogert, and V. Nanjundaswamy, ""LDAP Schema for UDDIv3"","
" RFC 4403, February 2006."
"[RFC4404] R. Natarajan and A. Rijhsinghani, ""Definitions of Managed Objects for FCIP"","
" RFC 4404, February 2006."
[RFC4265] B. Schliesser and T. Nadeau, "Definition of Textual Conventions for
Virtual Private Network (VPN) Management", RFC 4265, November 2005.
[RFC4547] A. Ahmad and G. Nakanishi, "Event Notification Management Information
Base for DOCSIS Compliant Cable Modems and Cable Modem Termination Systems",
RFC 4547, June 2006.
[RFC4528] K. Zeilenga, "The LDAP Assertion Control", RFC 4528, June 2006.
[RFC4527] K. Zeilenga, "LDAP Read Entry Controls", RFC 4527, June 2006.
[RFC4525] K. Zeilenga, "LDAP Modify-Increment Extension", RFC 4525, June 2006.
"[DOCSIS CM-SP-M-OSSI] ""Data-Over-Cable Service Interface Specifications: "
" M-CMTS Operations Support System Interface Specification,"
" CM-SP-M-OSSI-I01-050805"", DOCSIS, August 2005."
http://www.cablemodem.com/specifications and
http://www.cablemodem.com/specifications/archives/
[RFC4523] K. Zeilenga, "Lightweight Directory Access Protocol (LDAP) schema
definitions for X.509 Certificates", RFC 4523, June 2006.
[RFC4530] K. Zeilenga, ""The LDAP entryUUID operational attribute"", RFC 4530, June 2006.
[RFC4369] K. Gibbons, C. Monia, J. Tseng and F. Travostino, "Definitions of Managed
Objects for iFCP", RFC 4369, January 2006.
[RFC4373] R. Harrison, J. Sermersheim and Y. Dong, "LDAP Bulk Update/Replication
Protocol", RFC 4373, January 2006.
[RFC4511] J. Sermersheim, ""LDAP: The Protocol"", RFC 4511, June 2006."
[RFC4498] G. Keeni, ""The Managed Object Aggregation MIB"", RFC 4498, May 2006.
[RFC4438] C. DeSanti, V. Gaonkar, H.K. Vivek, K. McCloghrie and S. Gai,
"Fibre-Channel Name Server MIB", RFC 4438, April 2006.
[RFC4439] C. DeSanti, V. Gaonkar, K. McCloghrie and S. Gai, "Fibre Channel Fabric
Address Manager MIB", RFC 4439, March 2006.
[RFC4444] J. Parker, "Management Information Base for IS-IS", RFC 4444, April 2006.
[RFC4455] M. Hallak-Stamler, M. Bakke, Y. Lederman, M. Krueger and K. McCloghrie,
"Definition of Managed Objects for SCSI Entities", RFC 4455, April 2006.
[RFC4531] K. Zeilenga, ""LDAP Turn Operation"", RFC 4531, June 2006.
[RFC4534] A Colegrove and H Harney, "Group Security Policy Token v1", RFC 4534,
June 2006.
[RFC4682] E. Nechamkin and J-F Mule, "Multimedia Terminal Adapter (MTA) Management
Information Base for PacketCable and IPCablecom compliant devices",
RFC 4682, December 2006.
[RFC4545] M. Bakke and J. Muchow, "Definitions of Managed Objects for IP Storage
User Identity Authorization", RFC 4545, May 2006.
[RFC4544] M. Bakke, J. Muchow, M. Krueger and T. McSweeney, "Definitions of Managed
Objects for iSCSI", RFC 4544, May 2006.
[RFC4520] K. D. Zeilenga, ""IANA Considerations for LDAP"", RFC 4520, June 2006.
[ITU-T G.998.1]
http://www.itu.int/rec/T-REC-G.998.1-200501-I/en
[RFC4624] B. Fenner and D. Thaler, "Multicast Source Discovery protocol MIB",
RFC 4624, October 2006.
[RFC4626] C. DeSanti, V. Gaonkar, K. McCloghrie, S. Gai, "MIB for Fibre-Channel's
Fabric Shortest Path First Protocol", RFC 4626, August 2006.
[RFC4625] C. DeSanti, K. McCloghrie, S. Kode, S. Gai, "Fibre-Channel Routing
Information MIB", RFC 4625, September 2006.
[RFC4706] M. Morgenstern, M. Dodge, S. Baillie, U. Bonollo," Definitions of
Managed Objects for Asymmetric Digital Subscriber Line 2 (ADSL2)",
RFC 4706, November 2006.
[RFC4672] S. De Cnodder, N. Jonnala, M. Chiba, "Dynamic Authorization Client MIB"
RFC 4672, September 2006.
[RFC4673] S. De Cnodder, N. Jonnala, M. Chiba, "Dynamic Authorization Server MIB"
RFC 4673, September 2006.
[RFC4801] T. D. Nadeau, A. Farrel, "Generalized Multiprotocol Label
Switching (GMPLS) Label Switching Router (LSR) Management
Information Base", RFC 4801, February 2007.
[RFC4802] T. D. Nadeau, A. Farrel, "Generalized Multiprotocol Label
Switching (GMPLS) Traffic Engineering Management Information
Base", RFC 4802, February 2007.
[RFC4803] T. D. Nadeau, A. Farrel, "Generalized Multiprotocol Label
Switching (GMPLS) Label Switching Router (LSR) Management
Information Base", RFC 4803, February 2007.
[RFC4789] J. Schoenwaelder, T. Jeffree, "Simple Network Management
Protocol (SNMP) over IEEE 802 Networks", RFC 4789,
November 2006.
[RFC4747] S. Kipp, G. Ramkumar, K. McCloghrie, "The Virtual
Fabrics MIB", RFC 4747, November 2006.
[RFC4780] K. Lingle, J-F. Mule, J. Maeng, D. Walker, "Management
Information Base for the Session Initiation Protocol (SIP)"
RFC 4780, April 2007.
[RFC4807] M. Baer, R. Charlet, W. Hardaker, R. Story, C. Wang
"IPsec Security Policy Database Configuration MIB",
RFC 4807, March 2007.
[RFC4836] E. Beili, "Definitions of Managed Objects for IEEE 802.3 Medium
Attachment Units (MAUs)", RFC 4836, April 2007.
[RFC4837] L. Khermosh, " Managed Objects of Ethernet Passive Optical Networks (EPON)",
RFC 4837, July 2007.
[RFC4898] M. Mathis, J. Heffner, R. Raghunarayan, "TCP Extended Statistics MIB",
RFC 4898, May 2007.
[RFC4878] M. Squire, "Definitions and Managed Objects for OAM Functions on
Ethernet Like Interfaces", RFC 4878, June 2007.
[RFC4935] C. DeSanti, H.K. Vivek, K. McCloghrie, S. Gai, "Fibre-Channel
Fabric Configuration Server MIB", RFC 4935, August 2007.
[RFC4936] C. DeSanti, H.K. Vivek, K. McCloghrie, S. Gai, "Fibre-Channel Zone
Server MIB", RFC 4936, August 2007.
[RFC4939] K. Gibbons, G. Ramkumar, S. Kipp, "Definitions of Managed Objects
for iSNS (Internet Storage Name Service)", RFC 4939, July 2007.
[RFC4983] C. DeSanti, H.K. Vivek, K. McCloghrie, S. Gai, "Fibre Channel
Registered State Change Notification (RSCN) MIB", RFC 4983,
August 2007.
[RFC5017] D. McWalter, "MIB Textual Conventions for Uniform Resource
Identifiers (URIs)", RFC 5017, September 2007.
[RFC5052] Kurt D. Zeilenga, "The LDAP entryDN Operational Attribute",
RFC 5020, August 2007.
[RFC5060] R. Sivaramu, J. Lingard, D. McWalter, B. Joshi, "Protocol Independent
Multicast MIB", RFC 5060, January 2008.
[RFC5066] E. Beili, "Ethernet in the First Mile Copper (EFMCu) Interfaces MIB",
RFC 5066, November 2007.
[RFC5097] G. Renker, G. Fairhurst, "MIB for the UDP-Lite protocol", RFC 5097,
January 2008.
[RFC5098] G. Beacham, S. Kumar, S. Channabasappa, "Signaling MIB for PacketCable
and IPCablecom Multimedia Terminal Adapters (MTAs)", RFC 5098,
February 2008.
[RFC5131] D. McWalter, "A MIB Textual Convention for Language Tags",
RFC 5131, December 2007.
[RFC5132] D. McWalter, D. Thaler, A. Kessler, "IP Multicast MIB", RFC 5132,
December 2007.
[RFC5190] J. Quittek, M. Stiemerling, P. Srisuresh, "Definitions of Managed
Objects for Middlebox Communication", RFC 5190, March 2008.
[RFC5178] N. Williams, A. Melnikov, "GSS-API Internationalization and Domain-Based
Service Names and Name Type", RFC 5178, May 2008.
[RFC5240] B. Joshi, R. Bijlani, "PIM Bootstrap Router MIB", RFC 5240, June 2008.
[RFC-ietf-syslog-tc-mib-08.txt]
G. Keeni, "Textual Conventions for Syslog Management", RFC XXXX,
Month Year.
[RFC-ietf-pwe3-pw-mib-14.txt]
T. Nadeau, Ed., D. Zelig, Ed., "Pseudowire (PW) Management Information
Base (MIB)", RFC XXXX, Month Year.
[RFC5324] C. DeSanti, F. Maino, K. McCloghrie, "MIB for Fibre-Channel Security
Protocols (FC-SP)", RFC 5324, September 2008.
[RFC-ietf-pwe3-enet-mib-13.txt]
D. Zelig, Ed., T. Nadeau, Ed., "Ethernet Pseudowire (PW) Management
Information Base (MIB)", RFC XXXX, Month Year.
[RFC-ietf-pwe3-pw-mpls-mib-14.txt]
D. Zelig, Ed., T. Nadeau, Ed., "Pseudowire (PW) over MPLS PSN Management
Information Base (MIB)", RFC XXXX, Month Year.
[RFC-ietf-ipcdn-pktc-eventmess-14.txt]
W. De Ketelaere, E. Nechamkin, S. Channabasappa, "Management Event
Management Information Base (MIB) for PacketCable- and IPCablecom-Compliant
Devices", RFC XXXX, Month Year.
[RFC-ietf-pwe3-pw-atm-mib-06.txt]
O. Nicklass, S. Sathappan, M. Venkatesan, T. Nadeau, "Managed Objects for
ATM over Packet Switched Network (PSN)", RFC XXXX, Month Year.
[SatLabs] http://satlabs.org/pdf/SatLabs_System_Recommendations_v2.0_M&C.pdf
People
------
"[Aboba] Bernard Aboba, <aboba&internaut.com>, July 1997."
"[Aggarwal] Gaurav Aggarwal, <gaurav&cisco.com>, June 2002."
"[Alagar] Jeyachitra Alagar, <jalagar&cisco.com>, June 2004."
"[Antommarchi] Sidney Antommarchi, <sid&rapid5.com> August 2000,"
December 2000.
"[Antommarchi2] Sidney Antommarchi, <sidney.antommarchi&tekelec.com>,"
October 2001.
[Rob Austein]
"[Adams] Carlisle Adams, <carlisle.adams&entrust.com>, June 1995, Oct 1997."
[Alcoff] Ed Alcoff <eda&cisco.com>
"[Ashoka] K. Ashoka, <kashoka&cisco.com>, October 2000. "
"[Baker] Fred Baker, <fred&cisco.com>, February 1996."
"[Bathrick] Gregory Bathrick, <bathricg&agcs.com>, October 1998."
"[Baugher] Mark Baugher, <mbaugher&passedge.com>, May 1997, September 2000."
"[Baughman] Kevin Baughman, <klb&eng.paradyne.com>, December 2000."
"[Behar] Daniele Behar, <iana.interface&icn.siemens.it>, October 2000."
"[Beili] Edward Beili, <EdwardB&actelis.com>, August 2003."
"[Bell] Les Bell <Les_Bell&eur.3com.com>, October 1999."
"[Bergman] Ron Bergman, <Ron.Bergman&Hitachi-hkis.com>, June 2001."
[Bhattacharya] Somen Bhattacharya, <somen&avici.com>, 30 March 2006.
[Bierman] Andy Bierman, <abierman&cisco.com>, August 2000.
[Blumenau] Steven Blumenau <sblumenau&fishbowl02.lss.emc.com>, May 1999.
[Blumenthal] Uri Blumenthal, <uri&watson.ibm.com>, November 1997.
[Bush] Steve Bush, <sbush&tis1.ukans.edu>, January 1975.
[Busi] Italo Busi, <Italo.Busi&alcatel.it>, March 2003.
[BCN] B. Clifford Neuman <bcn&isi.edu>
[Brownlee] J Nevil Brownlee <n.brownlee&auckland.ac.nz> November 1994.
[BS221] Bob Stewart <STEWART&XYPLEX.COM>
[Cameron] Philip Cameron <pcameron&netcom.com> October 1994.
[Card] James Card <james.card&ntc.nokia.com>, July 1998.
[Cardona] Eduardo Cardona, <e.cardona@cablelabs>, September 2005.
[Carmona] Ron Carmona <RCarmona&micom.com>, April 1998.
[Case] Jeff Case, <case&snmp.com>, November 1997.
[Chen] David Chen, <dchen&vnet.ibm.com>, October 1995.
[Cheung] Lizzie Cheung, <lcheungb&cisco.com>, 14 June 2006.
[Chou] Tom Chou, <tchou&zhone.com>, 29 May 2008.
[Clouston] Bob Clouston, <rclousto&cisco.com>
[Combes] Stephane Combes, <stephane.combes&esa.int>, 23 January 2007.
[Congdon] Paul Congdon, <paul.congdon&hp.com>, 22 December 2005.
[CXB] Caralyn Brown <cbrown%wellfleet.com&talcott.harvard.edu>
[CXD] Chuck Davin <jrd&ptt.lcs.mit.edu>
[CXG] Chris Gunner <gunner&dsmail.lkg.dec.com>
[Daniele] Mike Daniele <daniele&zk3.dec.com>
[Dean Throop]
[Dhaliwal] Kamal Dhaliwal <kdhaliwal&vnet.IBM.COM>
"[Dolnik] Bejamin Dolnik <Benjamin_Dolnik&mw.3com.com>, October 1999,"
December 1999.
"[Dong] Shu Dong, <sdong¶dyne.com>, July 2002."
"[Dube] Joseph Dube <jdube&avici.com>, June 1999."
"[Dubuc] Martin Dubuc, <dubuc.consulting&sympatico.ca>, March 2001, "
" April 2001, October 2001."
"[Durairaj] Gopinath Durairaj <gopinath.durairaj&ntc.nokia.com>,"
September 1998.
[DXM5] Donna McMaster <mcmaster&synoptics.com>
[DXP1] David Perkins <dperkins&synoptics.com>
"[Eisler] Mike Eisler <mre&zambeel.com>, May 2000."
"[Ellerstedt] Jakob Ellerstedt <jakob&dynarc.se>, June 1998."
[EXD] Eric Decker <cire&cisco.com>
[FB77] Fred Baker <fbaker&acc.com>
[Feldy] Bob Felderman <feldy&myri.com>
[FJK2]
"[Flick] John Flick, <johnf&rose.hp.com>, August 1999."
"[Fowler] Dave Fowler, <davef&ca.newbridge.com>, February 1996."
"[Frye] Rob Frye, <Rob.Frye&mci.com>, September 1998."
"[Fujisawa] Kenji Fujisawa <fujisawa&sm.sony.co.jp>, September 1998."
[GS2] Greg Satz <satz&CISCO.COM>
"[Gili] Patrick Gili <pgili&cisco.com>, June 1999."
"[Haberman] Brian Haberman <haberman&raleigh.ibm.com>, April 1999."
"[Hagino] Jun-ichiro itojun Hagino, <itojun&kame.net>, July 2002."
[Halpin] Jim Halpin <jhalpin&orion.Mass-USR.COM>
"[Hanson] Gary Hanson, <gary&kentrox.com>, January 1997."
"[Harrington] David Harrington, <dbh&enterasys.com>, November 1997, July 2000."
"[Harris] Ben Harris, <bjh21&netbsd.org>, November 2001."
"[Harvey] Ross Harvey, <ross&teraflop.com> February 1998."
[Haskin] Dimitry Haskin <dhaskin&nexabit.com>
[Hazewinkel]
"[Hegde] Subrahmanya Hegde, <subrah&cisco.com>, March 1999, August 1999,"
May 2001.
"[Higgins] Graham Higgins, <GHiggins&quantumbridge.com>, November 2001."
"[Hinden] Bob Hinden, <hinden&iprg.nokia.com>, June 1999."
"[Housley] Russ Housley, <housley&vigilsec.com>, January 1997."
"[IANA] Internet Assigned Numbers Authority, <iana&iana.org>, June 1995."
[JDC20] Jeffrey Case <case&UTKUX1.UTK.EDU>
"[JMP] Jean-Michel Pittet, <jmp&gandalf.engr.sgi.com>, November 1998."
[JXC] John Cook <cook&chipcom.com>
[JXG1] Jim Greuel <jimg%hpcndpc&hplabs.hp.com>
[JXS2] Jon Saperia <saperia&tcpjon.enet.dec.com>
[Jeff Hilgeman]
"[Jenkins] Tim Jenkins <tjenkins×tep.com>, June 1999, February 2000."
"[Jensen] Herb Jensen, <HWJensen&nfsrv.avionics.itt.com>, March 1996."
[Johannsen]
[Jones] Gordon Jones <gbjones&mail04.mitre.org>
"[Joyal] Dan Joyal <djoyal&nortelnetworks.com>, August 1999."
"[Kavasseri] Ramanathan R. Kavasseri, <ramk&cisco.com>, September 2000, "
October 2000.
"[Koehler] Jay Koehler, <jkoehler&cisco.com>, November 2001."
"[Khun-Jush] Jamshid Khun-Jush, <Jamshid.Khun-Jush&eed.ericsson.se>,"
August 2000.
"[Kornegay] Michael Kornegay, <mlk&mlksys.atl.ga.us>, December 1995."
"[Kwan] Bill Kwan <bkwan&telco.com>, August 2000. "
"[Levi] David Levi, <levi&snmp.com>, November 1997."
"[LS8] Louis Steinberg, <lou&ARAMIS.RUTGERS.EDU>"
"[Lunn] Andrew Lunn, <Andrew.Lunn&ascom.ch>, August 2000."
[MXA1] Masuma Ahmed <mxa&mail.bellcore.com>
[MTR] Marshall Rose <mrose&dbc.mtview.ca.us>
"[McCloghrie] Keith McCloghrie, <kzm&cisco.com>, April 1995. "
[Montenegro] Gabriel Montenegro, <gabriel.montenegroµsoft.com>, 13 September 2007.
"[Moore] Robert Moore, <remoore&us.ibm.com>, December 1997."
"[RAW44] Robert A. Woodburn, <WOODY&SPARTA.COM>"
"[Ray] Bob Ray, <bray&verilink.com>, April 2000."
[JXC4] John Chu <jychu&watson.ibm.com>
[Fedorkow] Guy Fedorkow, <fedorkow&lightstream.com>, January 1995.
[Ned Freed]
[Deirdre Kostick]
[Johnson] Jeffery T. Johnson, <jjohnson&cisco.com>, May 1995."
[Joel Gyllenskog] Joel Gyllenskog <jgyllens&hpdmd48.boi.hp.com>
[Howard] Luke Howard, <lukeh&xedoc.com.au>, June 1997.
[Keromytis] Angelos Keromytis <angelos&dsl.cis.upenn.edu>, April 1999.
[Koh] Hyeri Koh, <hkoh&occamnetworks.com>, 09 October 2008.
[Lam] Hing-Kam Lam, <hklam&lucent.com>, October 2002.
[Lee] Dawkoon Paul Lee, <Paul_Lee&ncc1701.psd.symbol.com>, December
1995
[Lingle] Kevin Lingle, <klingle&cisco.com>, June 1997.
[Linn] John Linn, <linn&cam.ov.com>, April 1996.
[Ma] Xiaohua Ma, <xiaohua.a.ma&alcatel-sbell.com.cn>, 12 August 2008.
[MacFaden] Mike MacFaden <mrm&yagosys.com>, April 1998.
[Martin] Chris Martin, <Chris_Martin&netedge.com>, January 1997.
[McCloghrie] Keith McCloghrie, <kzm&cisco.com>, July 1997, Apr 1998.
[Myers] John G. Myers, <jgm+&CMU.EDU>, March 1996.
[Nadeau] Thomas D. Nadeau, <tnadeau&cisco.com>, November 2001, October 2002,
December 2002.
[Nakanishi] Greg Nakanishi, <GNakanishi&gi.com>, November 2001.
[Naylon] John Naylon, <jbpn&cambridgebroadband.com>, May 2005.
[Nechamkin] Eugene Nechamkin, <enechamkin&broadcom.com>, Sept. 2001.
[Neill] Robert Neill, <robert_neill&smtpgwy1.inetco.com>
[Nguyen] Dinh Nguyen, <dinhn&cisco.com>
[Nicklass] Orly Nicklass, <orly_n&rad.com>, 08 March 2007
[Noto] Mike Noto, <noto&cc.bellcore.com>
[ODSI] ODSI Coalition-K.Arvind, <arvind&tenornetworks.com>, September 2000.
[Oelering] Maarten Oelering <maarteno&3cord.philips.nl>, March 1999.
"[Oved] Hezi Oved, <hezio&bigbandnet.com>, August 2000."
"[Palm] Stephen Palm, <palm&kiwin.com>, January 2003."
"[Palmer] Azlina Palmer <apalmer&cisco.com>, January 1998."
[Parsons] Glenn Parsons, <gparsons&nortel.com>, 22 July 2008.
"[Pechacek] John Pechacek <jmp&VNET.IBM.COM>, July 1997."
"[Petrova] Luna Petrova, <luna&talarian.com>, March 2001."
"[Pinkas] Denis Pinkas, <Denis.Pinkas&bull.net>, March 1996."
"[Prayson] Pate Prayson <pate&larscom.com>, March 2000."
"[Rao] Sandeep Raghavendra Rao, <rsandeep&cisco.com>, August 2003."
"[Rehbehn] Kenneth Rehbehn, <krehbehn&visualnetworks.com>, October 2000. "
[Robert Purvey] Robert Purvey <bpurvy&us.oracle.com>
[RXF] Richard Fox <rfox&synoptics.com>
"[Popat] Satish Popat, <satish&terminus.ericsson.se>, March 1995."
"[Raja] Joseph Raja <jraja&cisco.com>, August 1999, August 2000."
"[Rajesh M.L.] Rajesh M.L., <rajeshml&cisco.com>, July 2002."
"[Rehbehn] Ken Rehbehn <krehbehn&visualnetworks.com>, June 1999."
"[Renwick] John Renwick, <jkr&netstar.com>, August 1995."
"[Rijhsinghani] Anil Rijhsinghani, <anil.rijhsinghani&mcdata.com>, August 2003."
"[Rosen] Bruce Rosen, <bruce.rosen&smc.com>, March 1995."
"[Rosset] Sebastien Rosset, <sebastien.rosset&cstelecom.cie-signaux.fr>, "
September 1997.
[Jon Saperia] Jon Saperia <saperia&tcpjon.enet.dec.com>
"[Scano] John Scano, <jscano&synnet.com>, December 1995."
"[Scholtes] Hans Scholtes <H.C.Scholtes&nortel.co.uk>, May 1998."
"[Schwell] Steven Schwell, <steve&atiny.ny.apertus.com>, December 1995."
"[Schoenwaelder] Juergen Schoenwaelder, <schoenw&ibr.cs.tu-bs.de>,"
" August 1998, April 1999."
"[Shaikh] Taher Shaikh, <moshaikh&cisco.com>, January 2002. "
"[Shetti] Bill Shetti, <bshetti&cisco.com>, April 1999."
"[Shih] Hongchi Shih, <hshih&cisco.com>, June 1998. "
"[Shriver] John Shriver, <jas&shiva.com>, March 1997, July 1999."
"[Sneed] Mike Sneed, <Mike.Sneed&go.ecitele.com>, January 2001."
"[Solomon] Janes Solomon, <solomon&comm.mot.com>, December 1995."
"[C.Srinivasan] Cheenu Srinivasan <cheenu&alphion.com>, April 1999,"
" May 1999, June 1999, March 2000, March 2001."
"[St. Johns] Mike St. Johns <stjohns&corp.home.net>, May 1998."
"[St. Johns2] Mike St. Johns <stjohns&corp.home.net>, August 1999."
"[Steinberger] Robert Steinberger, <Robert.Steinberger&fnc.fujitsu.com>,"
" January 2000, December 2000. "
"[Stewart] Bob Stewart, <bstewart&cisco.com>, January 1997."
"[M.Stewart] Mark Stewart, <markstewart&lucent.com>, January 2001."
"[Strahm] Bill Strahm <bill&Sanera.net>, April 1999, October 2001. "
"[SW159] Steven Willis, <swillis&WELLFLEET.COM>"
"[SXW] Steve Waldbusser, <sw01+&andrew.cmu.edu>"
"[Tempest] Ewart Tempest, <ewart&nortelnetworks.com>, August 2000."
"[Thaler] Dave Thaler, <thalerd&eecs.umich.edu>, April 1995, Feb 1998,"
July 1998.
"[Thayer] Rodney Thayer, <rodnety&tillerman.nu>, October 1998."
"[Trostle] Jonathan Trostle, <jtrostle&cisco.com>, June 2001."
[TXB] Tracy Brown <tacox&mail.bellcore.com>
[TXK] Teemu Kurki <grus&funet.fi>
"[Valentine] Andrew Valentine, <A.Valentine&eu.hns.com>, Janurary 2001. "
"[Vinod] Vinod B.C., <vinodbc&cisco.com>, March 2000."
"[Wardani] Ladd Wardani, <lwardani&entropic.com>, 25 July 2006."
"[Warwick] Trevor Warwick, <twarwick&madge.com>, February 1996."
"[Watanabe] Yuzo Watanabe, <ywatanabe&zhone.com>, December 2001."
[Wei] Joe Wei <jwei&ipsilon.com>
"[White] Ken White <kennethw&VNET.IBM.COM>, April, July 1997, September"
" 1998, August 2000."
"[C.White] Chris White <cjwhite&cisco.com>, May 1999, March 2000."
"[Wijnen] Bert Wijnen, <wijnen&vnet.ibm.com>, November 1997."
[Wittig] Hartmut Wittig
"[Zilberman] Zvika Zilberman, <Zvika&ensemble.co.il>, September 2000. "
[]
|