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
|
NETWORK MANAGEMENT PARAMETERS
(last updated 2001 June 29)
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 panrameters 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.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.)
Decimal Name Description References
------- ---- ----------- ----------
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]
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 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 [RFCSPPI]
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 [RFC2592]
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 [RFC2592]
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]
...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 file
"mib/ianaiftype.mib" on ftp.isi.edu.
Rules for real mib names:
-the first letter is a lowercase letter
-if its made of several words,
the second and later word's first letter is uppercase
-digits are ok, but not as the first letter
-no hyphens in the word
-no periods in the word
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 CSMACD--like Objects [RF1284,JXC]
8 IEEE802.4 Token Bus-like Objects
-- [RFC1230,RFC1239]
9 IEEE802.5 Token Ring-like Objects
-- [RFC1231,RFC1239]
10 iso88026-man [RFC1213]
11 starLan [RFC1213]
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 Fast Ethernet (100BaseT) [Rosen]
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 Fast Ethernet (100BaseFX) [Scano]
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 Gigabit Ethernet [McCloghrie]
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.Srinivasan3]
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 prop/Wireless MAC Layer [Raja]
181 propDocsWirelessDownstream prop/Wireless Downstream [Raja]
182 propDocsWirelessUpstream prop/Wireless Upstream [Raja]
183 hiperlan2 HIPERLAN Type 2 Radio Interface [Khun-Jush]
184 propBWAp2Mp PropBroadbandWirelessAccesspt2Multipt [Zilberman]
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]
Prefix: iso.org.dod.internet.mgmt.mib-2.transmission
(1.3.6.1.2.1.10)
Decima
l 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-80 Unassigned Unassigned
81 ds0 DS0-MIB [RFC2494]
82 ds0bundle DS0Bundle-MIB [RFC2494]
83-93 Unassigned Unassigned
94 adslmib adslMIB [Bathrick]
95-126 Unassigned Unassigned
127 docsIfMib DOCS IF MIB [St. Johns]
128-130 Unassigned Unassigned
131 tunnel Encapsulation interface [Thaler]
132 coffee coffee pot [RFC2325]
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]
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]
SMI mib-2 PIB Codes
Prefix: iso.org.dod.internet.mgmt.pib
Decimal Name Description Reference
------- ---------------- ---------------------- ---------
0 Reserved [IANA]
1 copsPrSppiTc COPS-PR-SPPI-TC [RFCSPPI]
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 [Baugher]
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 [Fenner]
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.Srinivasan2]
96 MPLS-LSR-MIB MPLS Label Switch Router [C.Srinivasan2]
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.Srinivasan3]
112 PGM-MIB [Petrova]
113 LMP-MIB [Dubuc]
114 LINK-BUNDLING-MIB linkBundlingMIB [Dubuc]
115 finisherMIB [Bergman]
* = obsoleted
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]
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]
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]
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 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]
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]
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]
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)
Decimal Name Description References
------- ---- ----------- ----------
0 reserved for 'any' [RFC2261]
1 reserved for SNMPv1 [RFC2261]
2 reserved for SNMPv2c [RFC2261]
3 User-Based Security Model (USM) [RFC221]
4-255 Unassigned [IANA]
Message Processing Subsystem (SnmpMessageProcessingModel)
Decimal Name Description References
------- ---- ----------- ----------
0 reserved for SNMPv1 [RFC2261]
1 reserved for SNMPv2c [RFC2261]
2 reserved for SNMPv2u and SNMPv2* [RFC2261]
3 reserved for SNMPv3 [RFC2261]
4-255 Unassigned [IANA]
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.
[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.
[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.
[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.
[RFC2261] Harrington, D., Presuhn, R., and B. Wijnen, "An Architecture
for Describing SNMP Management Frameworks", RFC 2261,
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,
1 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.
[RFC2592] Levi, D., and J. Schoenwaelder, "Definitions of Managed
Objects for the Delegation of Management Script", RFC 2592,
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.
[RFC2618] Aboba, B., and G. Zorn, "RADIUS Authentication Client MIB",
RFC 2618, June 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.
[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.
[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.
[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.
[RFCSPPI] K. McCloghrie, M. Fine, J. Seligson, K. Chan, S. Hahn,
R. Sahita, A. Smith, and F. Reichmeyer, "Structure of
Policy Provisioning Information (SPPI)", RFC XXXX,
Month Year.
PEOPLE
------
[Aboba] Bernard Aboba, <aboba@internaut.com>, July 1997.
[Antommarchi] Sidney Antommarchi, <sid@rapid5.com>, August 2000,
December 2000.
[Rob Austein]
[Adams] Carlisle Adams, <cadams@bnr.ca>, 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.
[Bell] Les Bell <Les_Bell@eur.3com.com>, October 1999.
[Bergman] Ron Bergman, <Ron.Bergman@Hitachi-hkis.com>, June 2001.
[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.
[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.
[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.
[Clouston] Bob Clouston <rclousto@cisco.com>
[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.
[Dube] Joseph Dube <jdube@avici.com>, June 1999.
[Dubuc] Martin Dubuc, <martin.dubuc@edgeflow.com>, March 2001,
April 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>
[Fenner] Bill Fenner <fenner@research.att.com>, April 1999.
[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.
[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.
[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.
[Hinden] Bob Hinden, <hinden@iprg.nokia.com>, June 1999.
[Housley] Russ Housley, <housley@spyrus.com>, January 1997.
[IANA] Internet Assigned Numbers Authority, <iana@isi.edu>, 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@timestep.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.
[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.
[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.
[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.
[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.
[Neill] Robert Neill <robert_neill@smtpgwy1.inetco.com>
[Nguyen] Dinh Nguyen <dinhn@cisco.com>
[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.
[Palmer] Azlina Palmer <apalmer@cisco.com>, January 1998.
[Pechacek] John Pechacek <jmp@VNET.IBM.COM>, July 1997.
[Petrova] Luna Petrova, <luna@talarian.com>, March 2001.
[Pinkas] Denis Pinkas, <D.Pinkas@frcl.bull.fr>, March 1996.
[Prayson] Pate Prayson <pate@larscom.com>, March 2000.
[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.
[Rehbehn] Ken Rehbehn <krehbehn@visualnetworks.com>, June 1999.
[Renwick] John Renwick, <jkr@netstar.com>, August 1995.
[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.
[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@tachion.com>, March 2000.
[C.Srinivasan] Cheenu Srinivasan <cheenu@bell-labs.com>, April 1999.
[C.Srinivasan2] Cheenu Srinivasan <cheenu@lucent.com>, May 1999.
[C.Srinivasan3] Cheenu Srinivasan <cheenu@tachion.com>, June 1999,
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.strahm@intel.com>, April 1999.
[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.
[Warwick] Trevor Warwick, <twarwick@madge.com>, February 1996.
[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.
[]
|