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
|
<pre>Network Working Group A. Marine
Request for Comments: 1594 NASA NAIC
FYI: 4 J. Reynolds
Obsoletes: <a href="./rfc1325">1325</a> ISI
Category: Informational G. Malkin
Xylogics
March 1994
<span class="h1">FYI on Questions and Answers</span>
<span class="h1">Answers to Commonly asked "New Internet User" Questions</span>
Status of this Memo
This memo provides information for the Internet community. This memo
does not specify an Internet standard of any kind. Distribution of
this memo is unlimited.
Abstract
This FYI RFC is one of two FYI's called, "Questions and Answers"
(Q/A), produced by the User Services Working Group of the Internet
Engineering Task Force (IETF). The goal is to document the most
commonly asked questions and answers in the Internet.
New Questions and Answers
In addition to updating information contained in the previous version
of this FYI RFC, the following new questions have been added:
Questions about Internet Organizations and Contacts:
What is the InterNIC?
Questions About Internet Services:
What is gopher?
What is the World Wide Web? What is Mosaic?
How do I find out about other Internet resource discovery tools?
<span class="grey">User Services Working Group [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Table of Contents
<a href="#section-1">1</a>. Introduction................................................. <a href="#page-2">2</a>
<a href="#section-2">2</a>. Acknowledgements............................................. <a href="#page-2">2</a>
<a href="#section-3">3</a>. Questions About the Internet................................. <a href="#page-3">3</a>
<a href="#section-4">4</a>. Questions About TCP/IP....................................... <a href="#page-5">5</a>
<a href="#section-5">5</a>. Questions About the Domain Name System....................... <a href="#page-5">5</a>
<a href="#section-6">6</a>. Questions About Internet Documentation....................... <a href="#page-6">6</a>
<a href="#section-7">7</a>. Questions about Internet Organizations and Contacts.......... <a href="#page-13">13</a>
<a href="#section-8">8</a>. Questions About Services..................................... <a href="#page-18">18</a>
<a href="#section-9">9</a>. Mailing Lists and Sending Mail............................... <a href="#page-24">24</a>
<a href="#section-10">10</a>. Miscellaneous "Internet lore" questions..................... <a href="#page-26">26</a>
<a href="#section-11">11</a>. Suggested Reading........................................... <a href="#page-28">28</a>
<a href="#section-12">12</a>. References.................................................. <a href="#page-29">29</a>
<a href="#section-13">13</a>. Condensed Glossary.......................................... <a href="#page-31">31</a>
<a href="#section-14">14</a>. Security Considerations..................................... <a href="#page-44">44</a>
<a href="#section-15">15</a>. Authors' Addresses.......................................... <a href="#page-44">44</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
New users joining the Internet community have the same questions as
did everyone else who has ever joined. Our quest is to provide the
Internet community with up to date, basic Internet knowledge and
experience.
Future updates of this memo will be produced as User Services members
become aware of additional questions that should be included, and of
deficiencies or inaccuracies that should be amended in this document.
Although the RFC number of this document will change with each
update, it will always have the designation of FYI 4. An additional
FYI Q/A, FYI 7, is published that deals with intermediate and
advanced Q/A topics [<a href="#ref-11" title=""FYI on Questions and Answers: Answers to Commonly Asked 'Experienced Internet User' Questions"">11</a>].
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Acknowledgements</span>
The following people deserve thanks for their help and contributions
to this FYI Q/A: Matti Aarnio (FUNET), Susan Calcari (InterNIC),
Corinne Carroll (BBN), Vint Cerf (MCI), Peter Deutsch (Bunyip), Alan
Emtage (Bunyip), John Klensin (UNU), Thomas Lenggenhager (Switch),
Doug Mildram (Xylogics), Tracy LaQuey Parker (Cisco), Craig Partridge
(BBN), Jon Postel (ISI), Matt Power (MIT), Karen Roubicek (BBN),
Patricia Smith (Merit), Gene Spafford (Purdue), and Carol Ward
(Sterling Software/NASA NAIC).
<span class="grey">User Services Working Group [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Questions About the Internet</span>
3.1 What is the Internet?
The Internet is a collection of thousands of networks linked by a
common set of technical protocols which make it possible for users
of any one of the networks to communicate with or use the services
located on any of the other networks. These protocols are
referred to as TCP/IP or the TCP/IP protocol suite. The Internet
started with the ARPANET, but now includes such networks as the
National Science Foundation Network (NSFNET), the Australian
Academic and Research Network (AARNet), the NASA Science Internet
(NSI), the Swiss Academic and Research Network (SWITCH), and about
10,000 other large and small, commercial and research, networks.
There are other major wide area networks that are not based on the
TCP/IP protocols and are thus often not considered part of the
Internet. However, it is possible to communicate between them and
the Internet via electronic mail because of mail gateways that act
as "translators" between the different network protocols involved.
Note: You will often see "internet" with a small "i". This could
refer to any network built based on TCP/IP, or might refer to
networks using other protocol families that are composites built
of smaller networks.
See FYI 20 (<a href="./rfc1462">RFC 1462</a>), "FYI on 'What is the Internet?'" for a
lengthier description of the Internet [<a href="#ref-13" title=""FYI on 'What is the Internet?'"">13</a>].
3.2 I just got on the Internet. What can I do now?
You now have access to all the resources you are authorized to use
on your own Internet host, on any other Internet host on which you
have an account, and on any other Internet host that offers
publicly accessible information. The Internet gives you the
ability to move information between these hosts via file
transfers. Once you are logged into one host, you can use the
Internet to open a connection to another, login, and use its
services interactively (this is known as remote login or
"TELNETing"). In addition, you can send electronic mail to users
at any Internet site and to users on many non-Internet sites that
are accessible via electronic mail.
There are various other services you can use. For example, some
hosts provide access to specialized databases or to archives of
information. The Internet Resource Guide provides information
regarding some of these sites. The Internet Resource Guide lists
facilities on the Internet that are available to users. Such
facilities include supercomputer centers, library catalogs and
<span class="grey">User Services Working Group [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
specialized data collections. The guide is maintained by the
Directory Services portion of the InterNIC and is available online
in a number of ways. It is available for anonymous FTP from the
host ds.internic.net in the resource-guide directory. It is also
readable via the InterNIC gopher (gopher internic.net). For more
information, contact admin@ds.internic.net or call the InterNIC at
(800) 444-4345 or (908) 668-6587.
Today the trend for Internet information services is to strive to
present the users with a friendly interface to a variety of
services. The goal is to reduce the traditional needs for a user
to know the source host of a service and the different command
interfaces for different types of services. The Internet Gopher
(discussed more in the "Questions about Internet Services"
section) is one such service to which you have access when you
join the Internet.
3.3 How do I find out if a site has a computer on the Internet?
Frankly, it's almost impossible to find out if a site has a
computer on the Internet by querying some Internet service itself.
The most reliable way is to ask someone at the site you are
interested in contacting.
It is sometimes possible to find whether or not a site has been
assigned an IP network number, which is a prerequisite for
connecting an IP network to the Internet (which is only one type
of Internet access). To do so, query the WHOIS database,
maintained by the Registration Services portion of the InterNIC.
You have several options about how to do such a query. The most
common currently are to TELNET to the host rs.internic.net and
invoke one of the search interfaces provided, or to run a WHOIS
client locally on your machine and use it to make a query across
the network.
The RIPE Network Coordination Center (RIPE NCC) also maintains a
large database of sites to whom they have assigned IP network
numbers. You can query it by TELNETing to info.ripe.net and
stepping through the interactive interface they provide.
3.4 How do I get a list of all the hosts on the Internet?
You really don't want that. The list includes more than 1.5
million hosts. Almost all of them require that you have access
permission to actually use them. You may really want to know
which of these hosts provide services to the Internet community.
Investigate using some of the network resource discovery tools,
such as gopher, to gain easier access to Internet information.
<span class="grey">User Services Working Group [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Questions About TCP/IP</span>
4.1 What is TCP/IP?
TCP/IP (Transmission Control Protocol/Internet Protocol) [<a href="#ref-4" title=""Internet Protocol - DARPA Internet Program Protocol Specification"">4</a>,<a href="#ref-5" title=""Transmission Control Protocol - DARPA Internet Program Protocol Specification"">5</a>,<a href="#ref-6" title=""The DARPA Internet Protocol Suite"">6</a>]
is the common name for a family of over 100 data-communications
protocols used to organize computers and data-communications
equipment into computer networks. TCP/IP was developed to
interconnect hosts on ARPANET, PRNET (packet radio), and SATNET
(packet satellite). All three of these networks have since been
retired; but TCP/IP lives on. It is currently used on a large
international network of networks called the Internet, whose
members include universities, other research institutions,
government facilities, and many corporations. TCP/IP is also
sometimes used for other networks, particularly local area
networks that tie together numerous different kinds of computers
or tie together engineering workstations.
4.2 What are the other well-known standard protocols in the TCP/IP
family?
Other than TCP and IP, the three main protocols in the TCP/IP
suite are the Simple Mail Transfer Protocol (SMTP) [<a href="#ref-8" title=""Simple Mail Transfer Protocol"">8</a>], the File
Transfer Protocol (FTP) [<a href="#ref-3" title=""File Transfer Protocol (FTP)">3</a>], and the TELNET Protocol [<a href="#ref-9" title=""TELNET Protocol Specification"">9</a>]. There
are many other protocols in use on the Internet. The Internet
Architecture Board (IAB) regularly publishes an RFC [<a href="#ref-2" title=""Internet Official Protocol Standards"">2</a>] that
describes the state of standardization of the various Internet
protocols. This document is the best guide to the current status
of Internet protocols and their recommended usage.
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Questions About the Domain Name System</span>
5.1 What is the Domain Name System?
The Domain Name System (DNS) is a hierarchical, distributed method
of organizing the name space of the Internet. The DNS
administratively groups hosts into a hierarchy of authority that
allows addressing and other information to be widely distributed
and maintained. A big advantage to the DNS is that using it
eliminates dependence on a centrally-maintained file that maps
host names to addresses.
5.2 What is a Fully Qualified Domain Name?
A Fully Qualified Domain Name (FQDN) is a domain name that
includes all higher level domains relevant to the entity named.
If you think of the DNS as a tree-structure with each node having
its own label, a Fully Qualified Domain Name for a specific node
<span class="grey">User Services Working Group [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
would be its label followed by the labels of all the other nodes
between it and the root of the tree. For example, for a host, a
FQDN would include the string that identifies the particular host,
plus all domains of which the host is a part up to and including
the top-level domain (the root domain is always null). For
example, atlas.arc.nasa.gov is a Fully Qualified Domain Name for
the host at 128.102.128.50. In addition, arc.nasa.gov is the FQDN
for the Ames Research Center (ARC) domain under nasa.gov.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Questions About Internet Documentation</span>
6.1 What is an RFC?
The Request for Comments documents (RFCs) are working notes of the
Internet research and development community. A document in this
series may be on essentially any topic related to computer
communication, and may be anything from a meeting report to the
specification of a standard. Submissions for Requests for
Comments may be sent to the RFC Editor (RFC-EDITOR@ISI.EDU). The
RFC Editor is Jon Postel.
Most RFCs are the descriptions of network protocols or services,
often giving detailed procedures and formats for their
implementation. Other RFCs report on the results of policy
studies or summarize the work of technical committees or
workshops. All RFCs are considered public domain unless
explicitly marked otherwise.
While RFCs are not refereed publications, they do receive
technical review from either the task forces, individual technical
experts, or the RFC Editor, as appropriate. Currently, most
standards are published as RFCs, but not all RFCs specify
standards.
Anyone can submit a document for publication as an RFC.
Submissions must be made via electronic mail to the RFC Editor.
Please consult <a href="./rfc1543">RFC 1543</a>, "Instructions to RFC Authors" [<a href="#ref-10" title=""Instructions to RFC Authors"">10</a>], for
further information. RFCs are accessible online in public access
files, and a short message is sent to a notification distribution
list indicating the availability of the memo. Requests to be
added to this distribution list should be sent to RFC-
REQUEST@NIC.DDN.MIL.
The online files are copied by interested people and printed or
displayed at their sites on their equipment. (An RFC may also be
returned via electronic mail in response to an electronic mail
query.) This means that the format of the online files must meet
the constraints of a wide variety of printing and display
<span class="grey">User Services Working Group [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
equipment.
Once a document is assigned an RFC number and published, that RFC
is never revised or re-issued with the same number. There is
never a question of having the most recent version of a particular
RFC. However, a protocol (such as File Transfer Protocol (FTP))
may be improved and re-documented many times in several different
RFCs. It is important to verify that you have the most recent RFC
on a particular protocol. The "Internet Official Protocol
Standards" [<a href="#ref-2" title=""Internet Official Protocol Standards"">2</a>] memo is the reference for determining the correct
RFC to refer to for the current specification of each protocol.
6.2 How do I obtain RFCs?
RFCs are available online at several repositories around the
world. For a list of repositories and instructions about how to
obtain RFCs from each of the major U.S. ones, send a message to
rfc-info@isi.edu. As the text of the message, type
"help: ways_to_get_rfcs" (without the quotes).
An example of obtaining RFCs online follows.
RFCs can be obtained via FTP from ds.internic.net with the
pathname rfc/rfcNNNN.txt (where "NNNN" refers to the number of the
RFC). Login using FTP, username "anonymous" and your email
address as password. The Directory Services portion of the
InterNIC also makes RFCs available via electronic mail, WAIS, and
gopher.
To obtain RFCs via electronic mail, send a mail message to
mailserv@ds.internic.net and include any of the following commands
in the message body:
document-by-name rfcnnnn where 'nnnn' is the RFC number
The text version is sent.
file /ftp/rfc/rfcnnnn.yyy where 'nnnn' is the RFC number.
and 'yyy' is 'txt' or 'ps'.
help to get information on how to use
the mailserver.
6.3 How do I obtain a list of RFCs?
Several sites make an index of RFCs available. These sites are
indicated in the ways_to_get_rfcs file mentioned above and in the
next question.
<span class="grey">User Services Working Group [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
6.4 What is the RFC-INFO service?
The Information Sciences Institute, University of Southern
California (ISI) has a service called RFC-INFO. Even though this
is a service, rather than a document, we'll discuss it in this
section because it is so closely tied to RFC information.
RFC-INFO is an email based service to help in locating and
retrieval of RFCs, FYIs, STDs, and IMRs. Users can ask for
"lists" of all RFCs and FYIs having certain attributes ("filters")
such as their ID, keywords, title, author, issuing organization,
and date. Once an RFC is uniquely identified (e.g., by its RFC
number) it may also be retrieved.
To use the service, send email to: RFC-INFO@ISI.EDU with your
requests as the text of the message. Feel free to put anything in
the SUBJECT, the system ignores it. All input is case
independent. Report problems to: RFC-MANAGER@ISI.EDU.
To get started, you may send a message to RFC-INFO@ISI.EDU with
requests such as in the following examples (without the
explanations between brackets):
Help: Help [to get this information]
List: FYI [list the FYI notes]
List: RFC [list RFCs with window as keyword or
in title]
keywords: window
List: FYI [list FYIs about windows]
Keywords: window
List: * [list both RFCs and FYIs about windows]
Keywords: window
List: RFC [list RFCs about ARPANET, ARPA NETWORK,
etc.]
title: ARPA*NET
List: RFC [list RFCs issued by MITRE, dated
1989-1991]
Organization: MITRE
Dated-after: Jan-01-1989
Dated-before: Dec-31-1991
List: RFC [list RFCs obsoleting a given RFC]
Obsoletes: <a href="./rfc0010">RFC0010</a>
List: RFC [list RFCs by authors starting with
"Bracken"]
Author: Bracken* [* is a wild card]
List: RFC [list RFCs by both Postel and Gillman]
Authors: J. Postel [note, the "filters" are ANDed]
<span class="grey">User Services Working Group [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Authors: R. Gillman
List: RFC [list RFCs by any Crocker]
Authors: Crocker
List: RFC [list only RFCs by S.D. Crocker]
Authors: S.D. Crocker
List: RFC [list only RFCs by D. Crocker]
Authors: D. Crocker
Retrieve: RFC [retrieve <a href="./rfc822">RFC-822</a>]
Doc-ID: <a href="./rfc0822">RFC0822</a> [note, always 4 digits in RFC#]
Help: Manual [to retrieve the long user manual,
30+ pages]
Help: List [how to use the LIST request]
Help: Retrieve [how to use the RETRIEVE request]
Help: Topics [list topics for which help is available]
Help: Dates ["Dates" is such a topic]
List: keywords [list the keywords in use]
List: organizations [list the organizations known to the
system]
6.5 Which RFCs are Standards?
See "Internet Official Protocol Standards" (currently <a href="./rfc1540">RFC 1540</a>)
[<a href="#ref-2" title=""Internet Official Protocol Standards"">2</a>]. This RFC documents the status of each RFC on the Internet
standards track, as well as the status of RFCs of other types. It
is updated periodically; make sure you are referring to the most
recent version. In addition, the RFC Index maintained at the
ds.internic.net repository notes the status of each RFC listed.
6.6 What is an FYI?
FYI stands for For Your Information. FYIs are a subset of the RFC
series of online documents.
FYI 1 states, "The FYI series of notes is designed to provide
Internet users with a central repository of information about any
topics which relate to the Internet. FYI topics may range from
historical memos on 'Why it was was done this way' to answers to
commonly asked operational questions. The FYIs are intended for a
wide audience. Some FYIs will cater to beginners, while others
will discuss more advanced topics."
In general, then, FYI documents tend to be more information
oriented, while RFCs are usually (but not always) more technically
oriented.
FYI documents are assigned both an FYI number and an RFC number.
<span class="grey">User Services Working Group [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
As RFCs, if an FYI is ever updated, it is issued again with a new
RFC number; however, its FYI number remains unchanged. This can
be a little confusing at first, but the aim is to help users
identify which FYIs are about which topics. For example, FYI 4
will always be FYI 4, even though it may be updated several times
and during that process receive different RFC numbers. Thus, you
need only to remember the FYI number to find the proper document.
Of course, remembering titles often works as well.
FYIs can be obtained in the same way RFCs can and from the same
repositories. In general, their pathnames are fyi/fyiNN.txt or
fyi/fyiNN.ps, where NN is the number of the FYI without leading
zeroes.
6.7 What is an STD?
The newest subseries of RFCs are the STDs (Standards). <a href="./rfc1311">RFC 1311</a>
[<a href="#ref-12" title=""Introduction to the STD Notes"">12</a>], which introduces this subseries, states that the intent of
STDs is to identify clearly those RFCs that document Internet
standards. An STD number will be assigned only to those
specifications that have completed the full process of
standardization in the Internet. Existing Internet standards have
been assigned STD numbers; a list of them can be found both in <a href="./rfc1311">RFC</a>
<a href="./rfc1311">1311</a> and in the, "Internet Official Protocol Standards" RFC.
Like FYIs, once a standard has been assigned an STD number, that
number will not change, even if the standard is reworked and re-
specified and later issued with a new RFC number.
It is important to differentiate between a "standard" and
"document". Different RFC documents will always have different
RFC numbers. However, sometimes the complete specification for a
standard will be contained in more than one RFC document. When
this happens, each of the RFC documents that is part of the
specification for that standard will carry the same STD number.
For example, the Domain Name System (DNS) is specified by the
combination of <a href="./rfc1034">RFC 1034</a> and <a href="./rfc1035">RFC 1035</a>; therefore, both of those
RFCs are labeled STD 13.
6.8 What is the Internet Monthly Report?
The Internet Monthly Report (IMR) communicates online to the
Internet community the accomplishments, milestones reached, or
problems discovered by the participating organizations. Many
organizations involved in the Internet provide monthly updates of
their activities for inclusion in this report. The IMR is for
Internet information purposes only.
<span class="grey">User Services Working Group [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
You can receive the report online by joining the mailing list that
distributes the report. Requests to be added or deleted from the
Internet Monthly Report list should be sent to "imr-
request@isi.edu".
In addition, back issues of the Report are available for anonymous
FTP from the host ftp.isi.edu in the in-notes/imr directory, with
the file names in the form imryymm.txt, where yy is the last two
digits of the year and mm two digits for the month. For example,
the July 1992 Report is in the file imr9207.txt.
6.9 What is an Internet Draft? Are there any guidelines available
for writing one?
Internet Drafts (I-Ds) are the current working documents of the
IETF. Internet Drafts are generally in the format of an RFC with
some key differences:
- The Internet Drafts are not RFCs and are not a numbered
document series.
- The words INTERNET-DRAFT appear in place of RFC XXXX
in the upper left-hand corner.
- The document does not refer to itself as an RFC or as a
Draft RFC.
- An Internet Draft does not state nor imply that it is a
proposed standard. To do so conflicts with the role of
the IAB, the RFC Editor, and the Internet Engineering
Steering Group (IESG).
An Internet Drafts directory has been installed to make draft
documents available for review and comment by the IETF members.
These draft documents that will ultimately be submitted to the IAB
and the RFC Editor to be considered for publishing as RFCs. The
Internet Drafts Directories are maintained on several Internet
sites. There are several "shadow" machines which contain the IETF
and Internet Drafts Directories. They are:
West Coast (US) Address: ftp.isi.edu (128.9.0.32)
East Coast (US) Address: ds.internic.net (198.49.45.10)
Europe Address: nic.nordu.net (192.36.148.17)
Pacific Rim Address: munnari.oz.au (128.250.1.21)
To access these directories, use anonymous FTP. Login with
username "anonymous" and your email address as password (or
"guest" if that fails). Once logged in, change to the desired
<span class="grey">User Services Working Group [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
directory with "cd internet-drafts". Internet Draft files can
then be retrieved. Once logged in, if you change to the directory
"ietf", you can retrieve a file called "1id-guidelines.txt", which
explains how to write and submit an Internet Draft.
6.10 How do I obtain OSI Standards documents?
OSI Standards documents are NOT available from the Internet via
anonymous FTP due to copyright restrictions. These are available
from:
Omnicom Information Service
501 Church Street NE
Suite 304
Vienna, VA 22180 USA
Telephone: (800) 666-4266 or (703) 281-1135
Fax: (703) 281-1505
American National Standards Institute
11 West 42nd Street
New York, NY 10036 USA
Telephone: (212) 642-4900
However, the GOSIP specification which covers the use of OSI
protocols within the U.S. Government is available from the
National Institute of Standards and Technology (NIST). The final
text of GOSIP Version 2 is now available from both sites.
Online sources:
Available through anonymous FTP from osi.ncsl.nist.gov
(129.6.48.100) as:
./pub/gosip/gosip_v2.txt -- ascii
./pub/gosip/gosip_v2.txt.Z -- ascii compressed
./pub/gosip/gosip_v2.ps -- PostScript
./pub/gosip/gosip_v2.ps.Z -- PostScript compressed
Hardcopy source:
Standards Processing Coordinator (ADP)
National Institute of Standards and Technology
Technology Building, Room B-64
Gaithersburg, MD 20899
(301) 975-2816
<span class="grey">User Services Working Group [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Questions about Internet Organizations and Contacts</span>
7.1 What is the IAB?
The Internet Architecture Board (IAB) is concerned with technical
and policy issues involving the evolution of the Internet
architecture [<a href="#ref-7" title=""The Internet Activities Board"">7</a>]. IAB members are deeply committed to making the
Internet function effectively and evolve to meet a large scale,
high speed future. The chairman serves a term of two years and is
elected by the members of the IAB. The IAB focuses on the TCP/IP
protocol suite, and extensions to the Internet system to support
multiple protocol suites.
The IAB performs the following functions:
1) Reviews Internet Standards,
2) Manages the RFC publication process,
3) Reviews the operation of the IETF and IRTF,
4) Performs strategic planning for the Internet, identifying
long-range problems and opportunities,
5) Acts as an international technical policy liaison and
representative for the Internet community, and
6) Resolves technical issues which cannot be treated within
the IETF or IRTF frameworks.
The IAB has two principal subsidiary task forces:
1) Internet Engineering Task Force (IETF)
2) Internet Research Task Force (IRTF)
Each of these Task Forces is led by a chairman and guided by a
Steering Group which reports to the IAB through its chairman. For
the most part, a collection of Research or Working Groups carries
out the work program of each Task Force.
All decisions of the IAB are made public. The principal vehicle
by which IAB decisions are propagated to the parties interested in
the Internet and its TCP/IP protocol suite is the Request for
Comments (RFC) note series and the Internet Monthly Report.
<span class="grey">User Services Working Group [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
7.2 What is the IETF?
The Internet has grown to encompass a large number of widely
geographically dispersed networks in academic and research
communities. It now provides an infrastructure for a broad
community with various interests. Moreover, the family of
Internet protocols and system components has moved from
experimental to commercial development. To help coordinate the
operation, management and evolution of the Internet, the IAB
established the Internet Engineering Task Force (IETF).
The IETF is a large open community of network designers,
operators, vendors, and researchers concerned with the Internet
and the Internet protocol suite. The activity is performed in a
number of working groups organized around a set of several
technical areas, each working group has a chair, and each area is
managed by a technical area director. The IETF overall is managed
by its chair and the Internet Engineering Steering Group (IESG),
which is made up of the area directors.
The IAB has delegated to the IESG the general responsibility for
the resolution of short- and mid-range protocol and architectural
issues required to make the Internet function effectively, and the
development of Internet standards.
7.3 What is the IRTF?
To promote research in networking and the development of new
technology, the IAB established the Internet Research Task Force
(IRTF). The IRTF is a set of research groups, generally with an
Internet focus. The work of the IRTF is governed by its Internet
Research Steering Group (IRSG).
In the area of network protocols, the distinction between research
and engineering is not always clear, so there will sometimes be
overlap between activities of the IETF and the IRTF. There is, in
fact, considerable overlap in membership between the two groups.
This overlap is regarded as vital for cross-fertilization and
technology transfer.
7.4 What is the Internet Society?
The Internet Society is a relatively new, professional, non-profit
organization with the general goal of fostering the well-being and
continued interest in, and evolution and use of the Internet. The
Society (often abbreviated ISOC) is integrating the IAB, IETF, and
IRTF functions into its operation.
<span class="grey">User Services Working Group [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
The following goals of the Society are taken from its charter:
A. To facilitate and support the technical evolution of
the Internet as a research and education infrastructure,
and to stimulate the involvement of the scientific
community, industry, government and others in the
evolution of the Internet;
B. To educate the scientific community, industry and the
public at large concerning the technology, use and
application of the Internet;
C. To promote educational applications of Internet
technology for the benefit of government, colleges and
universities, industry, and the public at large;
D. To provide a forum for exploration of new Internet
applications, and to stimulate collaboration among
organizations in their operational use of the global
Internet.
More information about the Internet Society is available for
anonymous FTP from the host: isoc.org in the directory: isoc.
Information is also available via the ISOC gopher, accessible via
"gopher isoc.org" if you are running a gopher client.
7.5 What is the IANA?
The task of coordinating the assignment of values to the
parameters of protocols is delegated by the Internet Architecture
Board (IAB) to the Internet Assigned Numbers Authority (IANA).
These protocol parameters include op-codes, type fields, terminal
types, system names, object identifiers, and so on. The "Assigned
Numbers" Request for Comments (RFC) [<a href="#ref-1" title=""Assigned Numbers"">1</a>] documents the currently
assigned values from several series of numbers used in network
protocol implementations. Internet addresses and Autonomous
System numbers are assigned by the Registration Services portion
of the InterNIC. The IANA is located at USC/Information Sciences
Institute.
Current types of assignments listed in Assigned Numbers and
maintained by the IANA are:
<span class="grey">User Services Working Group [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Address Resolution Protocol Parameters
BOOTP Parameters and BOOTP Extension Codes
Character Sets
Domain System Parameters
Encoding Header Field Keywords
ESMTP Mail Keywords
Ethernet Multicast Addresses
Ethernet Numbers of Interest
Ethernet Vendor Address Components
IANA Ethernet Address Block
ICMP Type Numbers
IEEE 802 Numbers of Interest
Internet Protocol Numbers
Internet Version Numbers
IP Option Numbers
IP Time to Live Parameter
IP TOS Parameters
Internet Multicast Addresses
Inverse Address Resolution Protocol
Machine Names
Mail Encryption Types
Mail System Names
Mail Transmission Types
MILNET X.25 Address Mappings
MILNET Logical Addresses
MILNET Link Numbers
MIME Types
MIME/X.400 Mapping Tables
Network Management Parameters
Novell Numbers
Operating System Names
OSPF Authentication Codes
Point-to-Point Protocol Field Assignments
Protocol Numbers
Protocol and Service Names
Protocol/Type Field Assignments
Public Data Network Numbers
Reverse Address Resolution Protocol Operation Codes
SUN RPC Numbers
TCP Option Numbers
TCP Alternate Checksum Numbers
TELNET Options
Terminal Type Names
Version Numbers
Well Known and Registered Port Numbers
X.25 Type Numbers
XNS Protocol Types
<span class="grey">User Services Working Group [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
For more information on number assignments, contact: IANA@ISI.EDU.
7.6 What is a NIC? What is a NOC?
"NIC" stands for Network Information Center. It is an
organization which provides network users with information about
services provided by the network.
"NOC" stands for Network Operations Center. It is an organization
that is responsible for maintaining a network.
For many networks, especially smaller, local networks, the
functions of the NIC and NOC are combined. For larger networks,
such as mid-level and backbone networks, the NIC and NOC
organizations are separate, yet they do need to interact to fully
perform their functions.
7.7 What is the InterNIC?
The InterNIC is a five year project partially supported by the
National Science Foundation to provide network information
services to the networking community. The InterNIC began
operations in April of 1993 and is a collaborative project of
three organizations: General Atomics provides Information Services
from their location in San Diego, CA; AT&T provides Directory and
Database Services from South Plainsfield, NJ; and Network
Solutions, Inc. provides Registration Services from their
headquarters in Herndon, VA. Services are provided via the
network electronically, and by telephone, FAX, and hardcopy
documentation.
General Atomics offers Information Services acting as the "NIC of
first and last resort" by providing a Reference Desk for new and
experienced users, and midlevel and campus NICs. The InterNIC
Reference Desk offers introductory materials and pointers to
network resources and tools.
AT&T services include the Directory of Directories, Directory
Services, and Database Services to store data available to all
Internet users.
Network Solutions, Inc. (NSI) provides Internet registration
services including IP address allocation, domain registration, and
Autonomous System Number assignment. NSI also tracks points of
contact for networks and domain servers and provides online and
telephone support for questions related to IP address or domain
name registration.
<span class="grey">User Services Working Group [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
All three portions of the InterNIC can be reached by calling (800)
444-4345 or by sending a message to info@internic.net. Callers
from outside the U.S. can telephone +1 (619) 445-4600. Extensive
online information is available at host is.internic.net,
accessible via gopher or TELNET.
7.8 What is the DDN NIC (nic.ddn.mil)?
The DDN NIC is the Defense Data Network NIC. Until the formation
of the InterNIC, the DDN NIC had been responsible for many
services to the whole Internet, especially for registration
services. Now the DDN NIC focuses on serving its primary
constituency of MILNET users. Its host is nic.ddn.mil; the
address hostmaster@nic.ddn.mil may still be in older Internet
registration documentation. The DDN NIC maintains close ties to
the newer InterNIC.
7.9 What is the IR?
The Internet Registry (IR) is the organization that is responsible
for assigning identifiers, such as IP network numbers and
autonomous system numbers, to networks. The IR also gathers and
registers such assigned information. The IR delegates some number
assignment authority to regional registries (such as NCC@RIPE.NET
and APNIC-STAFF@APNIC.NET). However, it will continue to gather
data regarding such assignments. At present, the Registration
Services portion of the InterNIC at Network Solutions, Inc.,
serves as the IR.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Questions About Services</span>
8.1 How do I find someone's electronic mail address?
There are a number of directories on the Internet; however, all of
them are far from complete. Many people can be found, however,
via the InterNIC WHOIS services, or KNOWBOT. Generally, it is
still necessary to ask the person for his or her email address.
8.2 How do I use the WHOIS program at the InterNIC Registration
Services?
There are several ways to search the WHOIS database. You can
TELNET to the InterNIC registration host, rs.internic.net. There
is no need to login. Type "whois" to call up the information
retrieval program, or choose one of the other options presented to
you. Help is available for each option. You can also run a
client of the WHOIS server and point it at any whois database
you'd like to search. Pointing a client at the whois server
<span class="grey">User Services Working Group [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
ds.internic.net will enable you to query the databases at three
hosts: ds.internic.net, rs.internic.net, and nic.ddn.mil.
For more information, contact the InterNIC at (800) 444-4345 or
the registration services group at (703) 742-4777.
8.3 How do I use the Knowbot Information Service?
The Knowbot Information Service is a white pages "meta-service"
that provides a uniform interface to heterogeneous white pages
services in the Internet. Using the Knowbot Information Service,
you can form a single query that can search for white pages
information from the NIC WHOIS service, the PSI White Pages Pilot
Project, and MCI Mail, among others, and have the responses
displayed in a single, uniform format.
Currently, the Knowbot Information Service can be accessed through
TELNET to port 185 on hosts cnri.reston.va.us and
sol.bucknell.edu. From a UNIX host, use "telnet cnri.reston.va.us
185". There is also an electronic mail interface available by
sending mail to netaddress at either cnri.reston.va.us or
sol.bucknell.edu.
The commands "help" and "man" summarize the command interface.
Simply entering a user name at the prompt searches a default list
of Internet directory services for the requested information.
Organization and country information can be included through the
syntax: "userid@organization.country". For example, the queries
"droms@bucknell" and "kille@ucl.gb" are both valid. Note that
these are not Domain Names, but rather a syntax to specify an
organization and a country for the search.
8.4 What is the White Pages at PSI?
Performance Systems International, Inc. (PSI), sponsors a White
Pages Project that collects personnel information from member
organizations into a database and provides online access to that
data. This effort is based on the OSI X.500 Directory standard.
To access the data, TELNET to WP.PSI.COM and login as "fred" (no
password is necessary). You may now look up information on
participating organizations. The program provides help on usage.
For example, typing "help" will show you a list of commands,
"manual" will give detailed documentation, and "whois" will
provide information regarding how to find references to people.
For a list of the organizations that are participating in the
pilot project by providing information regarding their members,
type "whois -org *".
<span class="grey">User Services Working Group [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Access to the White Pages data is also possible via programs that
act as X.500 Directory User Agent (DUA) clients.
For more information, send a message to WP-INFO@PSI.COM.
8.5 What is USENET? What is Netnews?
USENET is the formal name, and Netnews a common informal name, for
a distributed computer information service that some hosts on the
Internet use. USENET handles only news and not mail. USENET uses
a variety of underlying networks for transport, including parts of
the Internet, BITNET, and others. Netnews can be a valuable tool
to economically transport traffic that would otherwise be sent via
mail. USENET has no central administration.
8.6 How do I get a Netnews feed?
To get a Netnews feed, you must acquire the server software, which
is available for some computers at no cost from some anonymous FTP
sites across the Internet, and you must find an existing USENET
site that is willing to support a connection to your computer. In
many cases, this "connection" merely represents additional traffic
over existing Internet access channels.
One well-known anonymous FTP archive site for software and
information regarding USENET is ftp.uu.net. There is a "news"
directory which contains many software distribution and
information sub-directories.
It is recommended that new users subscribe to and read
news.announce.newusers since it will help to become oriented to
USENET and the Internet.
8.7 What is a newsgroup?
A newsgroup is a bulletin board which readers interested in that
newsgroup's particular topic can read and respond to messages
posted by other readers. Generally, there will be a few "threads"
of discussion going on at the same time, but they all share some
common theme. There are approximately 900 newsgroups, and there
are more being added all the time.
There are two types of newsgroups: moderated and unmoderated. A
moderated newsgroup does not allow individuals to post directly to
the newsgroup. Rather, the postings go to the newsgroup's
moderator who determines whether or not to pass the posting to the
entire group. An unmoderated newsgroup allows a reader to post
directly to the other readers.
<span class="grey">User Services Working Group [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
8.8 How do I subscribe to a newsgroup?
You don't subscribe to a newsgroup. Either you get it on your
machine or you don't. If there's one you want, all you can do is
ask the systems administrator to try to get it for you.
8.9 What is anonymous FTP?
Anonymous FTP is a conventional way of allowing you to sign on to
a computer on the Internet and copy specified public files from it
[<a href="#ref-3" title=""File Transfer Protocol (FTP)">3</a>]. Some sites offer anonymous FTP to distribute software and
various kinds of information. You use it like any FTP, but the
username is "anonymous". Many systems will request that the
password you choose is your email address. If this fails, the
generic password is usually "guest".
8.10 What is "archie"?
The archie system was created to automatically track anonymous FTP
archive sites, and this is still its primary function. The system
currently makes available the names and locations of some
2,100,000 files at some 1,000 archive sites.
Archie's User Access component allows you to search the "files"
database for these filenames. When matches are found, you are
presented with the appropriate archive site name, IP address, the
location within the archive, and other useful information.
You can also use archie to "browse" through a site's complete
listing in search of information of interest, or obtain a complete
list of the archive sites known to that server.
The archie server also offers a "package descriptions" (or
"whatis") database. This is a collection of names and
descriptions gathered from a variety of sources and can be used to
identify files located throughout the Internet, as well as other
useful information. Files identified in the whatis database can
then be found by searching the files database as described above.
8.11 How do I connect to archie?
You can connect to archie in a variety of ways. There is a
conventional TELNET interface, an electronic mail interface, and a
variety of client programs available. The use of a client is
strongly encouraged. There are currently 22 archie servers
located throughout the world.
<span class="grey">User Services Working Group [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
To try the TELNET interface to archie you can TELNET to one of the
22 archie servers (preferably the one nearest you, and during
non-peak hours). Log in as "archie" (no password is required).
Type "help" to get you started.
Here is a list of archie servers as of the date this was written:
archie.au* 139.130.4.6 Australia
archie.edvz.uni-linz.ac.at* 140.78.3.8 Austria
archie.univie.ac.at* 131.130.1.23 Austria
archie.uqam.ca* 132.208.250.10 Canada
archie.funet.fi 128.214.6.100 Finland
archie.th-darmstadt.de* 130.83.22.60 Germany
archie.ac.il* 132.65.6.15 Israel
archie.unipi.it* 131.114.21.10 Italy
archie.wide.ad.jp 133.4.3.6 Japan
archie.hana.nm.kr* 128.134.1.1 Korea
archie.sogang.ac.kr* 163.239.1.11 Korea
archie.uninett.no* 128.39.2.20 Norway
archie.rediris.es* 130.206.1.2 Spain
archie.luth.se* 130.240.18.4 Sweden
archie.switch.ch* 130.59.1.40 Switzerland
archie.ncu.edu.tw* 140.115.19.24 Taiwan
archie.doc.ic.ac.uk* 146.169.11.3 United Kingdom
archie.unl.edu 129.93.1.14 USA (NE)
archie.internic.net* 198.48.45.10 USA (NJ)
archie.rutgers.edu* 128.6.18.15 USA (NJ)
archie.ans.net 147.225.1.10 USA (NY)
archie.sura.net* 128.167.254.179 USA (MD)
Note: Sites marked with an asterisk "*" run archie version 3.0.
You can obtain details on using the electronic mail interface by
sending mail to "archie" at any of the above server hosts. Put
the word "help" as the text of your message for directions.
Questions, comments, and suggestions can be sent to the archie
development group by sending mail to info@bunyip.com.
8.12 What is "gopher"?
The Internet Gopher presents an extremely wide variety of diverse
types of information in an easy to use menu-driven interface.
Gopher servers link information from all around the Internet in a
manner that can be transparent to the user. (Users can easily
discover the source of any piece of information, however, if they
wish.) For example, gopher links databases of every type,
applications, white pages directories, sounds, and pictures.
<span class="grey">User Services Working Group [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Some gophers are available via TELNET. Since most gophers are
linked to other gophers, if you can get to one, you can get to
many. You can, for example, telnet to naic.nasa.gov and use their
public gopher.
The best way to use the gopher service, as with all client/server
type services, is by running your own gopher client. The Internet
Gopher was developed at the University of Minnesota. More
information is available for anonymous FTP on the host
boombox.micro.umn.edu.
8.13 What is the World Wide Web? What is Mosaic?
The World Wide Web is a distributed, hypermedia-based Internet
information browser. It presents users with a friendly point and
click interface to a wide variety of types of information (text,
graphics, sounds, movies, etc.) and Internet services. It is
possible to use the Web to access FTP archives, databases, and
even gopher servers.
The most familiar implementations of the World Wide Web are the
Mosaic clients developed by the National Center for Supercomputing
Applications (NCSA). Mosaic software is available online at
ftp.ncsa.uiuc.edu.
8.14 How do I find out about other Internet resource discovery
tools?
The field of Internet resource discovery tools is one of the most
dynamic on the Internet today. There are several tools in
addition to those discussed here that are useful for discovering
or searching Internet resources. The EARN (European Academic and
Research Network) Association has compiled an excellent document
that introduces many of these services and provides information
about how to find out more about them. To obtain the document,
send a message to listserv@earncc.bitnet or
listserve%earncc.bitnet@cunyvm.cuny.edu. As the text of your
message, type "GET filename" where the filename is either
"nettools ps" or "nettols memo". The former is in PostScript
format. This document is also available for anonymous FTP on some
hosts, including naic.nasa.gov, where it is available in the
files/general_info directory as
earn-resource-tool-guide.ps and earn-resource-tool-guide.txt.
<span class="grey">User Services Working Group [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
8.15 What is "TELNET"?
The term "TELNET" refers to the remote login that's possible on
the Internet because of the TELNET Protocol [<a href="#ref-9" title=""TELNET Protocol Specification"">9</a>]. The use of this
term as a verb, as in "telnet to a host" means to establish a
connection across the Internet from one host to another. Usually,
you must have an account on the remote host to be able to login to
it once you've made a connection. However, some hosts, such as
those offering white pages directories, provide public services
that do not require a personal account.
If your host supports TELNET, your command to connect to a remote
host would probably be "telnet <hostname>" or "telnet <host IP
address>". For example, "telnet rs.internic.net" or "telnet
198.41.0.5".
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Mailing Lists and Sending Mail</span>
9.1 What is a mailing list?
A mailing list is an email address that stands for a group of
people rather than for an individual. Mailing lists are usually
created to discuss specific topics. Anybody interested in that
topic, may (usually) join that list. Some mailing lists have
membership restrictions, others have message content restrictions,
and still others are moderated. Most "public" mailing lists have
a second email address to handle administrative matters, such as
requests to be added to or deleted from the list. All
subscription requests should be sent to the administrative address
rather than to the list itself!
9.2 How do I contact the administrator of a mailing list rather
than posting to the entire list?
Today there are two main methods used by mailing list
adminstrators to handle requests to subscribe or unsubscribe from
their lists. The administrative address for many lists has the
same name as the list itself, but with "-request" appended to the
list name. So, to join the ietf-announce@cnri.reston.va.us list,
you would send a message to ietf-announce-
request@cnri.reston.va.us. Most often, requests to a "-request"
mailbox are handled by a human and you can phrase your request as
a normal message.
More often today, especially for lists with many readers,
administrators prefer to have a program handle routine list
administration. Many lists are accessible via LISTSERVE programs
or other mailing list manager programs. If this is the case, the
<span class="grey">User Services Working Group [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
administrative address will usually be something like
"listserv@host.domain", where the address for the mailing list
itself will be "list@host.domain". The same listserve address can
handle requests for all mailing lists at that host. When talking
with a program, your subscription request will often be in the
form, "subscribe ListName YourFirstName YourLastName" where you
substitute the name of the list for ListName and add your real
name at the end.
The important thing to remember is that all administrative
messages regarding using, joining, or quitting a list should be
sent to the administrative mailbox instead of to the whole
list so that the readers of the list don't have to read them.
9.3 How do I send mail to other networks?
Mail to the Internet is addressed in the form user@host.domain.
Remember that a domain name can have several components and the
name of each host is a node on the domain tree. So, an example of
an Internet mail address is june@nisc.sri.com.
There are several networks accessible via email from the Internet,
but many of these networks do not use the same addressing
conventions the Internet does. Often you must route mail to these
networks through specific gateways as well, thus further
complicating the address.
Here are a few conventions you can use for sending mail from the
Internet to three networks with which Internet users often
correspond.
Internet user to Internet user:
username@hostname.subdomain.toplevel domain
e.g. gsmith@nisc.sri.COM
Internet user to BITNET user:
user%site.BITNET@BITNET-GATEWAY
e.g. gsmith%emoryu1.BITNET@cunyvm.cuny.edu.
gsmith%emoryu1@CORNELLC.CIT.CORNELL.EDU
Internet user to UUCP user:
user%host.UUCP@uunet.uu.net
user%domain@uunet.uu.net
<span class="grey">User Services Working Group [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Internet user to SprintMail user:
/G=Mary/S=Anderson/O=co.abc/ADMD=SprintMail/C=US/@SPRINT.COM
-or-
/PN=Mary.Anderson/O=co.abc/ADMD=SprintMail/C=US/@SPRINT.COM
(Case is significant.)
Internet user to CompuServe user:
Replace the comma in the CompuServe userid (represented here
with x's) with a period, and add the compuserve.com domain
name.
xxxx.xxxx@compuserve.com
CompuServe user to Internet user:
>Internet:user@host
Insert >internet: before an Internet address.
Internet user to MCIMail user:
accountname@mcimail.com
mci_id@mcimail.com
full_user_name@mcimail.com.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Miscellaneous "Internet lore" questions</span>
10.1 What does :-) mean?
In many electronic mail messages, it is sometimes useful to
indicate that part of a message is meant in jest. It is also
sometimes useful to communicate emotion which simple words do not
readily convey. To provide these nuances, a collection of "smiley
faces" has evolved. If you turn your head sideways to the left,
:-) appears as a smiling face. Some of the more common faces are:
:-) smile :-( frown
:) also a smile ;-) wink
:-D laughing 8-) wide-eyed
:-} grin :-X close mouthed
:-] smirk :-o oh, no!
<span class="grey">User Services Working Group [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
10.2 What do "btw", "fyi", "imho", "wrt", and "rtfm" mean?
Often common expressions are abbreviated in informal network
postings. These abbreviations stand for "by the way", "for your
information", "in my humble [or honest] opinion", "with respect
to", and "read the f*ing manual" (with the "f" word varying
according to the vehemence of the reader :-).
10.3 What is the "FAQ" list?
This list provides answers to "Frequently Asked Questions" that
often appear on various USENET newsgroups. The list is posted
every four to six weeks to the news.announce.newusers group. It
is intended to provide a background for new users learning how to
use the news. As the FAQ list provide new users with the answers
to such questions, it helps keep the newsgroups themselves
comparatively free of repetition. Often specific newsgroups will
have and frequently post versions of a FAQ list that are specific
to their topics. The term FAQ has become generalized so that any
topic may have its FAQ even if it is not a newsgroup.
Here is information about obtaining the USENET FAQs, courtesy of
Gene Spafford:
Many questions can be answered by consulting the most recent
postings in the news.announce.newusers and news.lists groups. If
those postings have expired from your site, or you do not get
news, you can get archived postings from the FTP server on the
host rtfm.mit.edu.
These archived postings include all the Frequently Asked Questions
posted to the news.answers newsgroups, as well as the most recent
lists of Usenet newsgroups, Usenet-accessible mailing lists, group
moderators, and other Usenet-related information posted to the
news.announce.newusers and news.lists groups.
To get the material by FTP, log in using anonymous FTP (userid of
anonymous and your email address as password).
The archived files, and FAQ files from other newsgroups, are all
in the directory:
/pub/usenet/news.answers
<span class="grey">User Services Working Group [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Archived files from news.announce.newusers and news.lists are in:
/pub/usenet/news.announce.newusers
/pub/usenet/news.lists
respectively.
To get the information by mail, send an email message to: mail-
server@pit-manager.mit.edu containing:
send usenet/news.answers/TITLE/PART
where TITLE is the archive title, and PART is the portion of the
posting you want.
Send a message containing "help" to get general information about
the mail server, including information on how to get a list of
archive titles to use in further send commands.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Suggested Reading</span>
For further information about the Internet and its protocols in
general, you may choose to obtain copies of the following works as
well as some of the works listed as References:
Krol, Ed. (1992) The Whole Internet User's Guide and Catalog, 400
p. O'Reilly and Assoc., Inc. Sebastopol, CA.
Dern, Daniel P. (1993) The Internet Guide for New Users, 570 p.
McGraw-Hill, Inc. New York, NY.
Fisher, Sharon. (1993) Riding the Internet Highway, 266 p. New
Riders Publishing, Carmel, IN.
Frey, Donnalyn and Rick Adams. (1993) !%@:: A Directory of
Electronic Mail Addressing and Networks, (third edition) 443 p.
O'Reilly & Assoc., Inc. Sebastopol, CA.
Hoffman, Ellen and Lenore Jackson. (1993) "FYI on Introducing the
Internet: A Short Bibliography of Introductory Internetworking
Readings for the Network Novice," 4 p. (FYI 19/RFC 1463).
Kehoe, Brendan P. (1993) Zen and the Art of the Internet: A
Beginner's Guide, (second edition) 112 p. Prentice Hall, Englewood
Cliffs, NJ.
<span class="grey">User Services Working Group [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
LaQuey, Tracy with Jeanne C. Ryer. (1992) The Internet Companion:
A Beginner's Guide to Global Networking, 208 p. Addison-Wesley,
Reading, MA.
Malkin, Gary, S. and Tracy LaQuey Parker. (1993) "Internet Users'
Glossary," 53 p. (FYI 18/RFC 1392).
Marine, April, et al. (1993) Internet: Getting Started, 360 p.
Prentice Hall, Englewood Cliffs, NJ.
Martin, Jerry. (1993) "There's Gold in them thar Networks! or
Searching for Treasure in all the Wrong Places," 39 p. (FYI 10/RFC
1402).
Quarterman, John. (1993) "Recent Internet Books," 15 p. (<a href="./rfc1432">RFC</a>
<a href="./rfc1432">1432</a>).
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. References</span>
[<a id="ref-1">1</a>] Reynolds, J., and J. Postel, "Assigned Numbers", STD 2, <a href="./rfc1340">RFC 1340</a>,
USC/Information Sciences Institute, July 1992.
[<a id="ref-2">2</a>] Postel, J., Editor, "Internet Official Protocol Standards", STD
1, <a href="./rfc1540">RFC 1540</a>, Internet Architecture Board, October 1993.
[<a id="ref-3">3</a>] Postel, J., and J. Reynolds, "File Transfer Protocol (FTP), STD
9, <a href="./rfc959">RFC 959</a>, USC/Information Sciences Institute, October 1985.
[<a id="ref-4">4</a>] Postel, J., "Internet Protocol - DARPA Internet Program Protocol
Specification", STD 5, <a href="./rfc791">RFC 791</a>, DARPA, September 1981.
[<a id="ref-5">5</a>] Postel, J., "Transmission Control Protocol - DARPA Internet
Program Protocol Specification", STD 7, <a href="./rfc793">RFC 793</a>, DARPA, September
1981.
[<a id="ref-6">6</a>] Leiner, B., Cole, R., Postel, J., and D. Mills, "The DARPA
Internet Protocol Suite", IEEE INFOCOM85, Washington D.C., March
1985. Also in IEEE Communications Magazine, March 1985. Also as
ISI/RS-85-153.
[<a id="ref-7">7</a>] Cerf, V., "The Internet Activities Board" <a href="./rfc1160">RFC 1160</a>, CNRI, May
1990.
[<a id="ref-8">8</a>] Postel, J., "Simple Mail Transfer Protocol", STD 10, <a href="./rfc821">RFC 821</a>,
USC/Information Sciences Institute, August 1982.
<span class="grey">User Services Working Group [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
[<a id="ref-9">9</a>] Postel, J., and J. Reynolds, "TELNET Protocol Specification", STD
8, <a href="./rfc854">RFC 854</a>, USC/Information Sciences Institute, May 1983.
[<a id="ref-10">10</a>] Postel, J., "Instructions to RFC Authors", <a href="./rfc1543">RFC 1543</a>,
USC/Information Sciences Institute, October 1993.
[<a id="ref-11">11</a>] Malkin, G., Marine, A., and J. Reynolds, "FYI on Questions and
Answers: Answers to Commonly Asked 'Experienced Internet User'
Questions", FYI 7, <a href="./rfc1207">RFC 1207</a>, FTP Software, SRI, USC/Information
Sciences Institute, February 1991.
[<a id="ref-12">12</a>] Postel, J., "Introduction to the STD Notes", <a href="./rfc1311">RFC 1311</a>,
USC/Information Sciences Institute, March 1992.
[<a id="ref-13">13</a>] Krol, E., and E. Hoffman, "FYI on 'What is the Internet?'", FYI
20, <a href="./rfc1462">RFC 1462</a>, University of Illinois, Merit Network, Inc., May
1993.
<span class="grey">User Services Working Group [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Condensed Glossary</span>
As with any profession, computers have a particular terminology all
their own. Below is a condensed glossary to assist in making some
sense of the Internet world.
ACM Association for Computing Machinery
A group established in 1947 to promote professional
development and research on computers.
address There are three types of addresses in common use within the
Internet. They are email address; IP, internet or Internet
address; and hardware or MAC address. An electronic mail
address is the string of characters that you must give an
electronic mail program to direct a message to a particular
person. A MAC address is the hardware address of a device
connected to a shared media. See "internet address" for its
definition.
AI Artificial Intelligence
The branch of computer science which deals with the
simulation of human intelligence by computer systems.
AIX Advanced Interactive Executive
IBM's version of Unix.
ANSI American National Standards Institute
This organization is responsible for approving U.S. standards
in many areas, including computers and communications.
Standards approved by this organization are often called ANSI
standards (e.g., ANSI C is the version of the C language
approved by ANSI). ANSI is a member of ISO. See also:
International Organization for Standardization.
ARP Address Resolution Protocol
Used to dynamically discover the low level physical network
hardware address that corresponds to the high level IP address
for a given host. ARP is limited to physical network systems
that support broadcast packets that can be heard by all hosts
on the network. It is defined in STD 37, <a href="./rfc826">RFC 826</a>.
ARPA Advanced Research Projects Agency
An agency of the U.S. Department of Defense responsible for
the development of new technology for use by the military.
ARPA was responsible for funding much of the development of
the Internet we know today, including the Berkeley version of
Unix and TCP/IP.
<span class="grey">User Services Working Group [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
ARPANET Advanced Research Projects Agency Network
A pioneering longhaul network funded by ARPA. It
served as the basis for early networking research as
well as a central backbone during the development of
the Internet. The ARPANET consisted of individual
packet switching computers interconnected by leased lines.
AS Autonomous System
A collection of routers under a single
administrative authority using a common Interior Gateway
Protocol for routing packets.
ASCII American (National) Standard Code for Information Interchange
A standard character-to-number encoding widely used in the
computer industry.
B Byte
One character of information, usually eight bits wide.
b bit - binary digit
The smallest amount of information which may be stored
in a computer.
BBN Bolt Beranek and Newman, Inc.
The Cambridge, MA company responsible for development,
operation and monitoring of the ARPANET, and later,
the Internet core gateway system, the CSNET Coordination
and Information Center (CIC), and NSFNET Network
Service Center (NNSC).
BITNET An academic computer network that provides interactive
electronic mail and file transfer services, using a
store-and-forward protocol, based on IBM Network Job Entry
protocols. BITNET-II encapsulates the BITNET protocol within
IP packets and depends on the Internet to route them. There
are three main constituents of the network: BITNET in
the United States and Mexico, NETNORTH in Canada, and EARN in
Europe. There are also AsiaNet, in Japan, and connections in
South America. See CREN.
bps bits per second
A measure of data transmission speed.
<span class="grey">User Services Working Group [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
BSD Berkeley Software Distribution
Implementation of the UNIX operating system and its utilities
developed and distributed by the University of California at
Berkeley. "BSD" is usually preceded by the version number of
the distribution, e.g., "4.3 BSD" is version 4.3 of the
Berkeley UNIX distribution. Many Internet hosts run BSD
software, and it is the ancestor of many commercial UNIX
implementations.
catenet A network in which hosts are connected to networks
with varying characteristics, and the networks
are interconnected by gateways (routers). The
Internet is an example of a catenet.
CCITT International Telegraph and Telephone Consultative Committee
This organization is part of the United National International
Telecommunications Union (ITU) and is responsible for making
technical recommendations about telephone and data
communications systems.
core gateway
Historically, one of a set of gateways (routers)
operated by the Internet Network Operations Center
at BBN. The core gateway system forms a central part
of Internet routing in that all groups had to advertise
paths to their networks from a core gateway.
CREN The Corporation for Research and Educational Networking
This organization was formed in October 1989, when BITNET and
CSNET (Computer + Science NETwork) were combined under one
administrative authority. CSNET is no longer operational, but
CREN still runs BITNET. See also: BITNET.
DARPA See ARPA.
Datagram
A self-contained, independent entity of data carrying
sufficient information to be routed from the source
to the destination computer without reliance on earlier
exchanges between this source and destination computer and
the transporting network.
DCA Defense Communications Agency
Former name of the Defense Information Systems Agency
(DISA). See DISA.
<span class="grey">User Services Working Group [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
DDN Defense Data Network
A global communications network serving the US Department of
Defense composed of MILNET, other portions of the Internet,
and classified networks which are not part of the Internet.
The DDN is used to connect military installations and is
managed by the Defense Information Systems Agency (DISA).
See also: DISA.
DDN NIC The Defense Data Network Network Information Center
The network information center at Network Solutions, Inc.,
funded by DISA, that provides information services to the
DDN community. It is also a primary repository for RFCs, and
a delegated registration authority for military networks.
DEC Digital Equipment Corporation
DECnet Digital Equipment Corporation network
A proprietary network protocol designed by Digital Equipment
Corporation. The functionality of each Phase of the
implementation, such as Phase IV and Phase V, is different.
default route
A routing table entry which is used to direct packets
addressed to networks not explicitly listed in the routing table.
DISA Defense Information Systems Agency
Formerly called DCA, this is the government agency
responsible for installing the Defense Data Network
(DDN) portion of the Internet, including the MILNET
lines and nodes. Currently, DISA administers the
DDN, and supports the user assistance services of the
DDN NIC.
DNS The Domain Name System is a general purpose distributed,
replicated, data query service. The principal use is the
lookup of host IP addresses based on host names. The style of
host names now used in the Internet is called "domain name",
because they are the style of names used to look up anything
in the DNS. Some important domains are: .COM (commercial),
.EDU (educational), .NET (network operations), .GOV (U.S.
government), and .MIL (U.S. military). Most countries also
have a domain. For example, .US (United States), .UK (United
Kingdom), .AU (Australia). It is defined in STD 13, RFCs 1034
and 1035.
DOD U.S. Department of Defense
DOE U.S. Department of Energy
<span class="grey">User Services Working Group [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
dot address (dotted address notation)
Dot address refers to the common notation for IP addresses of
the form A.B.C.D; where each letter represents, in decimal,
one byte of a four byte IP address.
Dynamic Adaptive Routing
Automatic rerouting of traffic based on a sensing and analysis
of current actual network conditions. NOTE: this does not
include cases of routing decisions taken on predefined
information.
EARN European Academic Research Network
EBCDIC Extended Binary-coded Decimal Interchange Code
A standard character-to-number encoding used primarily by IBM
computer systems. See also: ASCII.
EGP Exterior Gateway Protocol
A protocol which distributes routing information to the
routers which connect autonomous systems. The term "gateway"
is historical, as "router" is currently the preferred term.
There is also a routing protocol called EGP defined in STD 18,
<a href="./rfc904">RFC 904</a>.
Ethernet
A 10-Mb/s standard for LANs, initially developed by Xerox,
and later refined by Digital, Intel and Xerox (DIX). All
hosts are connected to a coaxial cable where they contend for
network access using a Carrier Sense Multiple Access with
Collision Detection (CSMA/CD) paradigm.
FDDI Fiber Distributed Data Interface
A high-speed (100Mb/s) LAN standard. The underlying medium is
fiber optics, and the topology is a dual-attached,
counter-rotating token ring.
FIPS Federal Information Processing Standard
FTP File Transfer Protocol
A protocol which allows a user on one host to access, and
transfer files to and from, another host over a network.
Also, FTP is usually the name of the program the user invokes
to execute the protocol. It is defined in STD 9, <a href="./rfc959">RFC 959</a>.
gateway See router.
<span class="grey">User Services Working Group [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
GB Gigabyte
A unit of data storage size which represents 10^9 (one
billion) characters of information.
Gb Gigabit
10^9 bits of information (usually used to express a
data transfer rate; as in, 1 gigabit/second = 1Gbps).
GNU Gnu's Not UNIX
A UNIX-compatible operating system developed by the
Free Software Foundation.
header The portion of a packet, preceding the actual data, containing
source and destination addresses, and error checking and other
fields. A header is also the part of an electronic mail
message that precedes the body of a message and contains,
among other things, the message originator, date and time.
host number
The part of an internet address that designates which
node on the (sub)network is being addressed.
HP Hewlett-Packard
I/O Input/Output
IAB Internet Architecture Board
The technical body that oversees the development of the
Internet suite of protocols. It has two task forces: the IETF
and the IRTF.
IBM International Business Machines Corporation
ICMP Internet Control Message Protocol
ICMP is an extension to the Internet Protocol. It allows
for the generation of error messages,test packets and
informational messages related to IP. It is defined in STD 5,
<a href="./rfc792">RFC 792</a>.
IEEE Institute for Electrical and Electronics Engineers
IETF Internet Engineering Task Force
The IETF is a large open community of network designers,
operators, vendors, and researchers whose purpose is to
coordinate the operation, management and evolution of
the Internet, and to resolve short- and mid-range
protocol and architectural issues. It is a major source
of proposed protocol standards which are submitted to the
<span class="grey">User Services Working Group [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Internet Engineering Steering Group for final approval. The
IETF meets three times a year and extensive minutes of the
plenary proceedings are issued.
internet
internetwork
While an internet is a network, the term "internet" is usually
used to refer to a collection of networks interconnected with
routers.
Internet
The Internet (note the capital "I") is the largest internet in
the world. Is a three level hierarchy composed of backbone
networks (e.g., NSFNET, MILNET), mid-level networks, and stub
networks. The Internet is a multiprotocol internet.
internet address
The 32-bit address defined by the Internet Protocol
in STD 5, <a href="./rfc791">RFC 791</a>. It is usually represented in dotted
decimal notation. An internet, or IP, address uniquely
identifies a node on an internet.
IP Internet Protocol
The Internet Protocol, defined in STD 5, <a href="./rfc791">RFC 791</a>, is the
network layer for the TCP/IP Protocol Suite. It is a
connectionless, best-effort packet switching protocol.
IRTF Internet Research Task Force
The IRTF is chartered by the IAB to consider long-term
Internet issues from a theoretical point of view. It has
Research Groups, similar to IETF Working Groups, which are
each tasked to discuss different research topics. Multi-cast
audio/video conferencing and privacy enhanced mail are samples
of IRTF output.
ISO International Organization for Standardization
A voluntary, nontreaty organization founded in 1946 which is
responsible for creating international standards in many
areas, including computers and communications. Its members
are the national standards organizations of the 89 member
countries, including ANSI for the U.S.
KB Kilobyte
A unit of data storage size which represents 10^3
(one thousand) characters of information.
<span class="grey">User Services Working Group [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Kb Kilobit
10^3 bits of information (usually used to express a
data transfer rate; as in, 1 kilobit/second = 1Kbps = 1Kb).
LAN Local Area Network
A data network intended to serve an area of only a few square
kilometers or less. Because the network is known to cover
only a small area, optimizations can be made in the network
signal protocols that permit data rates up to 100Mb/s.
LISP List Processing Language
A high-level computer language invented by Professor John
McCarthy in 1961 to support research into computer based
logic, logical reasoning, and artificial intelligence. It
was the first symbolic (as opposed to numeric) computer
processing language.
MAC Medium Access Control
The lower portion of the datalink layer. The MAC differs for
various physical media.
Mac Apple Macintosh computer.
MAN Metropolitan Area Network
A data network intended to serve an area approximating that of
a large city. Such networks are being implemented by
innovative techniques, such as running fiber cables through
subway tunnels. A popular example of a MAN is SMDS.
MB Megabyte
A unit of data storage size which represents
10^6 (one million) characters of information.
Mb Megabit
10^6 bits of information (usually used to express a
data transfer rate; as in, 1 megabit/second = 1Mbps).
MILNET Military Network
A network used for unclassified military production
applications. It is part of the DDN and the Internet.
MIT Massachusetts Institute of Technology
MTTF Mean Time to Failure
The average time between hardware breakdown or loss of
service. This may be an empirical measurement or a
calculation based on the MTTF of component parts.
<span class="grey">User Services Working Group [Page 38]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-39" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
MTTR Mean Time to Recovery (or Repair)
The average time it takes to restore service after a
breakdown or loss. This is usually an empirical measurement.
MVS Multiple Virtual Storage
An IBM operating system based on OS/1.
NASA National Aeronautics and Space Administration
NBS National Bureau of Standards
Now called NIST.
network number
The network portion of an IP address. For a class A network,
the network address is the first byte of the IP address. For
a class B network, the network address is the first two bytes
of the IP address. For a class C network, the network address
is the first three bytes of the IP address. In each case, the
remainder is the host address. In the Internet, assigned
network addresses are globally unique.
NFS Network File System
A protocol developed by Sun Microsystems, and defined in <a href="./rfc1094">RFC</a>
<a href="./rfc1094">1094</a>, which allows a computer system to access files over a
network as if they were on its local disks. This protocol has
been incorporated in products by more than two hundred
companies, and is now a de facto Internet standard.
NIC Network Information Center
A organization that provides information, assistance and
services to network users.
NOC Network Operations Center
A location from which the operation of a network or internet
is monitored. Additionally, this center usually serves as a
clearinghouse for connectivity problems and efforts to resolve
those problems.
NIST National Institute of Standards and Technology
United States governmental body that provides assistance in
developing standards. Formerly the National Bureau of
Standards (NBS).
<span class="grey">User Services Working Group [Page 39]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-40" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
NSF National Science Foundation
A U.S. government agency whose purpose is to promote the
advancement of science. NSF funds science researchers,
scientific projects, and infrastructure to improve the quality
of scientific research. The NSFNET, funded by NSF, is an
essential part of academic and research communications.
NSFNET National Science Foundation Network
The NSFNET is a highspeed "network of networks" which is
hierarchical in nature. At the highest level is a
backbone network which spans the continental United
States. Attached to that are mid-level networks and
attached to the mid-levels are campus and local
networks. NSFNET also has connections out of the U.S.
to Canada, Mexico, Europe, and the Pacific Rim. The
NSFNET is part of the Internet.
NSFNET Mid-level Level Network
A network connected to the highest level of the NSFNET that
covers a region of the United States. It is to mid-level
networks that local sites connect. The mid-level networks
were once called "regionals".
OSI Open Systems Interconnection
A suite of protocols, designed by ISO committees, to be the
international standard computer network architecture.
OSI Reference Model
A seven-layer structure designed to describe computer network
architectures and the way that data passes through them. This
model was developed by the ISO in 1978 to clearly define the
interfaces in multivendor networks, and to provide users of
those networks with conceptual guidelines in the construction
of such networks.
OSPF Open Shortest-Path First Interior Gateway Protocol
A link state, as opposed to distance vector, routing protocol.
It is an Internet standard IGP defined in <a href="./rfc1247">RFC 1247</a>.
packet The unit of data sent across a network. "Packet" a generic
term used to describe unit of data at all levels of the
protocol stack, but it is most correctly used to describe
application data units.
PC Personal Computer
PCNFS Personal Computer Network File System
<span class="grey">User Services Working Group [Page 40]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-41" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
PPP Point-to-Point Protocol
The Point-to-Point Protocol, defined in <a href="./rfc1548">RFC 1548</a>, provides a
method for transmitting packets over serial point-to-point
links.
protocol
A formal description of message formats and the rules
two computers must follow to exchange those messages.
Protocols can describe low-level details of
machine-to-machine interfaces (e.g., the order in
which bits and bytes are sent across a wire)
or high-level exchanges between allocation
programs (e.g., the way in which two programs
transfer a file across the Internet).
RFC The document series, begun in 1969, which describes the
Internet suite of protocols and related experiments. Not all
(in fact very few) RFCs describe Internet standards, but all
Internet standards are written up as RFCs.
RIP Routing Information Protocol
A distance vector, as opposed to link state, routing protocol.
It is an Internet standard IGP defined in STD 34, <a href="./rfc1058">RFC 1058</a>
(updated by <a href="./rfc1388">RFC 1388</a>).
RJE Remote Job Entry
The general protocol for submitting batch jobs and
retrieving the results.
router A device which forwards traffic between networks. The
forwarding decision is based on network layer information and
routing tables, often constructed by routing protocols.
RPC Remote Procedure Call
An easy and popular paradigm for implementing the
client-server model of distributed computing. In general, a
request is sent to a remote system to execute a designated
procedure, using arguments supplied, and the result returned
to the caller. There are many variations and subtleties in
various implementations, resulting in a variety of different
(incompatible) RPC protocols.
server A provider of resources (e.g., file servers and name servers).
SLIP Serial Line Internet Protocol
A protocol used to run IP over serial lines, such as telephone
circuits or RS-232 cables, interconnecting two systems. SLIP
is defined in STD 47, <a href="./rfc1055">RFC 1055</a>.
<span class="grey">User Services Working Group [Page 41]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-42" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
SMTP Simple Mail Transfer Protocol
A protocol, defined in STD 10, <a href="./rfc821">RFC 821</a>, used to transfer
electronic mail between computers. It is a server to server
protocol, so other protocols are used to access the messages.
SNA Systems Network Architecture
A proprietary networking architecture used by IBM and
IBM-compatible mainframe computers.
SNMP Simple Network Management Protocol
The Internet standard protocol, defined in STD 15, <a href="./rfc1157">RFC 1157</a>,
developed to manage nodes on an IP network. It is currently
possible to manage wiring hubs, toasters, jukeboxes, etc.
subnet A portion of a network, which may be a physically independent
network, which shares a network address with other portions
of the network and is distinguished by a subnet number. A
subnet is to a network what a network is to an internet.
subnet number
A part of the internet address which designates a subnet.
It is ignored for the purposes internet routing, but is
used for intranet routing.
T1 An AT&T term for a digital carrier facility used to transmit a
DS-1 formatted digital signal at 1.544 megabits per second.
T3 A term for a digital carrier facility used to transmit a DS-3
formatted digital signal at 44.746 megabits per second.
TCP Transmission Control Protocol
An Internet Standard transport layer protocol defined in STD
7, <a href="./rfc793">RFC 793</a>. It is connection-oriented and stream-oriented, as
opposed to UDP.
TCP/IP Transmission Control Protocol/Internet Protocol
This is a common shorthand which refers to the suite
of application and transport protocols which run over IP.
These include FTP, TELNET, SMTP, and UDP (a transport
layer protocol).
Telenet A public packet switched network using the CCITT X.25 protocols.
It should not be confused with Telnet.
TELNET Telnet is the Internet standard protocol for remote terminal
connection service. It is defined in STD 8, <a href="./rfc854">RFC 854</a> and
extended with options by many other RFCs.
<span class="grey">User Services Working Group [Page 42]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-43" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
Token Ring
A token ring is a type of LAN with nodes wired into a ring.
Each node constantly passes a control message (token) on to
the next; whichever node has the token can send a message.
Often, "Token Ring" is used to refer to the IEEE 802.5 token
ring standard, which is the most common type of token ring.
Tymnet A public character-switching/packet-switching network
operated by British Telecom.
UDP User Datagram Protocol
An Internet Standard transport layer protocol defined in STD
6, <a href="./rfc768">RFC 768</a>. It is a connectionless protocol which adds a
level of multiplexing to IP.
ULTRIX UNIX-based operating system for Digital Equipment Corporation
computers.
UNIX An operating system developed by Bell Laboratories that
supports multiuser and multitasking operations.
UUCP UNIX-to-UNIX Copy Program
This was initially a program run under the UNIX operating
system that allowed one UNIX system to send files to another
UNIX system via dial-up phone lines. Today, the term is more
commonly used to describe the large international network
which uses the UUCP protocol to pass news and electronic mail.
VMS Virtual Memory System
A Digital Equipment Corporation operating system.
WAN Wide Area Network
A network, usually constructed with serial lines, which covers a
large geographic area.
WHOIS An Internet program which allows users to query databases of
people and other Internet entities, such as domains, networks,
and hosts. The information for people generally shows a
person's company name, address, phone number and email
address.
XNS Xerox Network System
A network developed by Xerox corporation. Implementations
exist for both 4.3BSD derived systems, as well as the Xerox
Star computers.
<span class="grey">User Services Working Group [Page 43]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-44" ></span>
<span class="grey"><a href="./rfc1594">RFC 1594</a> FYI Q/A - for New Internet Users March 1994</span>
<span class="h3"><a class="selflink" id="appendix-X.25" href="#appendix-X.25">X.25</a> A data communications interface specification developed to</span>
describe how data passes into and out of public data
communications networks. The CCITT and ISO approved protocol
suite defines protocol layers 1 through 3.
<span class="h2"><a class="selflink" id="section-14" href="#section-14">14</a>. Security Considerations</span>
Security issues are not discussed in this memo.
<span class="h2"><a class="selflink" id="section-15" href="#section-15">15</a>. Authors' Addresses</span>
April N. Marine
Network Applications and Information Center
NASA Ames Research Center
M/S 204-14
Moffett Field, CA 94035-1000
Phone: (415) 604-0762
EMail: amarine@atlas.arc.nasa.gov
Joyce K. Reynolds
USC/Information Sciences Institute
4676 Admiralty Way, Suite 1001
Marina del Rey, CA 90292-6695
Phone: (310) 822-1511
EMail: jkrey@isi.edu
Gary Scott Malkin
Xylogics, Inc.
53 Third Avenue
Burlington, MA 01803
Phone: (617) 272-8140
EMail: gmalkin@Xylogics.COM
User Services Working Group [Page 44]
</pre>
|