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
|
<pre>Network Working Group J. Postel
NWG / Request for Comments: 694 SRI-ARC
June 18, 1975
<span class="h1">Protocol Information</span>
Introduction
This file contains information on the various protocols in the ARPA
Network. An effort will be made to keep the information current, but
his depends on the cooperation of the users of this file to convey
any information about protocol developments, or corrections to this
information to Jon Postel at SRI-ARC.
Online address is POSTEL@BBNB; Phone is (415) 326-6200 x 3718;
U.S. Mail address is Stanford Research Institute, Augmentation
Research Center, 222 Ravenswood, Menlo park, California 94025.
This is a compendium of all the protocol related activity and most of
this activity and most of this activity is with experimental
protocols, for those protocols, which are official standards the
designation "[Official]" will be appended to the name.
This protocol information file is online as:
Pathname: [<a href="#ref-OFFICE-1">OFFICE-1</a>] <NETINFO.PROTOCOL-INFORMATION.TXT
and also [<a href="#ref-BBNB">BBNB</a>] <POSTEL.PROTCOL-INFORMATION.NLS
Much of the documentation of protocols appears as Requests for
Comments (RFCs) and many of these are available online. When a
document is accessible online a pointer to that source will be given.
Also note that recent RFCs are online at Office-1 in directory
<NETINFO> with names of the form RFCnnn.TXT where nnn is replaced by
the RFC number. There is also an index of recent RFCs as an online
file:
[<a id="ref-Office-1">Office-1</a>] <NETINFOR>RFC-INDEX.TXT
There are three other online files that are relevant to protocols:
There is a file that lists Official Host Names and associated
information as described in <a href="./rfc608">RFC 608</a>, the pathname of this file is:
[<a id="ref-Office-1">Office-1</a>] <NETOINFO>HOSTS.TXT
<span class="grey">Postel [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
There are two files that list the addresses of the Network
Liaisons, one file lists the online message address, and the other
the US Mail address and phone number. A network liaison is a
person designated by a host organization as the contact and
coordinator for network technical information fro that
organization.
[<a id="ref-Office-1">Office-1</a>] <NETINFO>LIAISON-SNDMSG.TXT
[<a id="ref-Office-1">Office-1</a>] <NETINFO>LIAISON.TXT
These files are prepared by Jake Feinler of the Network
Information Center (NIC). Indeed the NIC has been very helpful in
providing the online file space for the recent Request for
Comments, and other protocol related files. The NIC also
maintains the hardcopy reference library of all RFCs.
The NIC has assembled and filed with the National Technical
information Service the collection of documents known as "ARPA
Network Current Network Protocols". This collection represents the
more or less "official" protocols as of 1-December-74. The accession
number is ADA003890.
IMP-IMP
surface
Contact:
Alex McKenzie (MCKENZIE@BBN)
Documents:
Heart, F. et. al. "the Interface Message Processor for the
ARPA Computer Network," AFIPS Conference Proceedings,
36:551-567, SJCC 1970.
McQuillan, J.M. et. al. "Improvements in the Design and
Performance of the ARPA Network," AFIPs Conference
Proceedings, 41:741-754 RFCC, 1972.
McQuillan, J.M. "Throughput in the ARPA network - Analysis
and Measurement," BBN Report 2491, the text is also
contained in BBN Quarterly Technical Report 16, available
from the National Technical Information Service [NTIS]
accession number AD7544441.
<span class="grey">Postel [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
People:
John McQuillan (MCQUILLAN@BBN)
Schedule:
Comments:
Recent developments:
Satellite
Contact:
Randy Rettberg (RETTBERG@BBN)
Documents:
People:
Robert Kahn (KAHN@ISI)
Schedule:
Comments:
Recent developments:
IMP-HOST
IMP-HOST [Official]
Contact:
Alex McKenzie (MCKENZIE@BBN)
Documents:
"Specification for the Interconnection of a HOST and an
IMP," BBN Report 1822, Revised December 1974. NTIS:
ADA002751.
People:
Alex McKenzie (MCKENZIE@BBN)
Dave Walden (WALDEN@BBN)
<span class="grey">Postel [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Jon Postel (POSTEL@BBNB)
Jerry Burchfiel (BURCHFIEL@BBN)
John McQuillan (MCQUILLAN@BBN)
Schedule:
Comments:
The "link number" field has been extended from 8 to 12
bits and renamed the "message identification" field.
Message type 6 now is used to indicate a reason for at
type 7 (destination dead) message. (See BBN1822).
There has been some recent changes to the Ready line
interpretation by the IMP for deciding the alive/dead
status of a host.
Important changes to the IMP and IMP/HOST Interface
announced in <a href="./rfc660">RFC 660</a> 23-Oct-74.
(31-DEC-74) The change to allow up to eight messages to
be in transit between a source host and destination host
should be made very soon. This should not effect the
hosts at all except to provide better thruput and fewer
inter-message delays.
(6-JAN-75) BBN Report 1822 updated.
Sections <a href="#section-1">1</a>, <a href="#section-2">2</a>, <a href="#section-4">4</a>, and <a href="#section-5">5</a>, and <a href="#appendix-C">Appendix C</a> now include
data on the Pluribus IMP. The Pluribus IMP is based
on a modular mutliprocessor hardware design; it should
be capable of much higher bandwidth and greater
reliability than other IMP models.
<a href="#section-3.1">Section 3.1</a> contains additional information, which may
be helpful to Host programmers.
<a href="#section-3.3">Section 3.3</a> and 3.4 add a new type of Host to Host
data message, the uncontrolled packet. <a href="#section-3.7">Section 3.7</a>
has been added to describe the use of this new message
type.
<a href="#section-3.4">Section 3.4</a> describes changes to the sub-types of IMP
to host message types 6 and 7.
<a href="#appendix-A">Appendix A</a> has been updated.
<span class="grey">Postel [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
<a href="#appendix-B">Appendix B</a> has been expanded to provide specific
recommendations for Host implementation of the
Host/IMP Interface.
Minor clarifications have been made in <a href="#appendix-F">Appendix F</a>. (No
changes have been made to Figure F - (or F-9.)
Recent developments:
(18-June-75) Very important changes to the Host to IMP
and IMP to Host interface protocol are proposed
(specified?) in a recent note. The areas changed
include: expanded leader size, expanded address field,
new message length field, expanded handling type field,
source host control of packets per message, change in the
handling of unordered messages (current type 3 messages),
change in the addressing of fake hosts, including an
address field in the IMP/Host hop message, (best of all)
backward compatibility, and a possible change in the
maximum message length.
Walden, D. "IMP/Host and Host/IMP Protocol Change,"
<a href="./rfc687">RFC 687</a>, NIC 32654, 2-Jun-75.
[<a id="ref-OPfficed-1">OPfficed-1</a>] <NETINFOR><a href="./rfc687">RFC687</a>.TXT
(18-Jun-75) Comments on the changes proposed by Walden in
<a href="./rfc687">RFC 687</a>:
Postel, J. "Comments on the proposed Host/IMP Protocol
Changes," <a href="./rfc690">RFC 690</a>, NIC 32699, 6-Jun-75.
HOST-HOST
ncp - standard host-to-host [Official]
Contact:
Jon Postel (POSTEL@BBN)
Documents:
McKenzie, A. "Host/Host Protocol for the ARPA Network," NIC
8246, NTIS: AD757680, Jan 1972.
Postel, J. "Assigned Link Numbers," <a href="./rfc604">RFC 604</a>, NIC 21186, 26-
Dec-73.
<span class="grey">Postel [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
People:
Jon Postel (POSTEL@BBNB)
Alex McKenzie (MCKENZIE@BBN)
Schedule:
Comments:
Recent developments:
ncp - host-to-host [Experimental]
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
McKenzie, A. "host/Host Protocol for the ARPA Network," NIC
8246, NTIS: AD757680, Jan 1972.
Postel, J. "Assigned link Numbers," <a href="./rfc604">RFC 604</a>, NIC 21186,
26-Dec-73.
Burchfiel, et. al. "Tip-Tenex Reliability Improvements" <a href="./rfc636">RFC 636</a>
NIC 30490 June 1974.
People:
Jon Postel (POSTEL@BBNB)
Alex McKenzie (MCKENZIE@BBN)
Jerry Burchfiel (BURCHFIEL@BBN)
Dave Walden (WALDEN@BBN)
Schedule:
Comments:
The BBN TIP and TENEX groups have specified and are
implementing additional protocol commands with the intention of
providing better reliability and survivability over system
<span class="grey">Postel [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
malfunctions. The additional protocol commands are for
cleaning up partly closed connections and resynchronizing the
allocation values on open connections (see <a href="./rfc636">RFC 636</a>).
(31-DEC-74) Tenex 1.32 and the Tips are now running this
protocol.
Recent developments:
ncp - host-to-host [Experimental]
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
McKenzie, A. "Host/Host Protocol for the ARPA Network," NIC
8246, [NTIS # AD-757 680], Jan 1972
Postel, J. "Assigned Link Numbers," <a href="./rfc604">RFC604</a>, NIC211685, 26-Dec-
73.
Kanodia, R. "A Lost Message Detection and Recovery Protocol,"
<a href="./rfc663">RFC 663</a>, NIC 31387, 29-Nov-74.
[<a id="ref-OFFICE-1">OFFICE-1</a>] <NETINFO><a href="./rfc663">RFC663</a>.TXT
People:
Jon Postel (POSTEL@BBNB)
Alex McKenzie (MCKENZIE@BBN)
Raj Kanodia (Kanodia.CompNet@MIT-Multics)
Schedule:
Comments:
(31-DEC-74) This recent proposal is interesting in several
features, but some have suggested that is aimed at a non-
problem.
Recent developments:
msp - Message Switching Protocol
<span class="grey">Postel [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Contact:
Dave Walden (WALDEN@BBN)
Documents:
Walden, D. "A System for Interprocess Communication in a
Resource Sharing Computer Network, " <a href="./rfc62">RFC 62</a>, NIC 4962, 3-Aug-
70. Also published in Communications of the ACM volume 15,
number 4, April 1972.
Bressler, B. "A Proposed Experiment with a Message Switching
Protocol, " <a href="./rfc333">RFC 333</a>, NIC 9926, 15-May-72.
People:
Dave Walden (WALDEN@BBN)
Bob Bressler (BRESSLER@BBN)
Schedule:
Comments:
Recent developments:
tcp - Transmission Control Protocol
Contact:
Vint Cert (CERF@ISI)
Documents:
Cert, V. and R,. Kahn. "A Protocol for Packet Network
Intercommunication," IEEE Transactions on Communication Vol
COM- 22 No 5, May 1974.
Mader, E. "A Protocol Experiment," <a href="./rfc700">RFC 700</a>, NIC 31020.
[<a id="ref-OFFICE-1">OFFICE-1</a>] <NETINFO> <a href="./rfc700">RFC700</a>.TXT
Cerf, V. Y. Dalal, and C. Sunshine. "Specification of Internet
Transmission Control Program," <a href="./rfc675">RFC 675</a>, INWG 72, NIC 31505,
December 1974 Revision.
People:
<span class="grey">Postel [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Vint Cerf (CERF@ISI)
Ray Tomilnson (TOMLINSON@BBN)
Peter Kirstein (KIRSTEIN@ISI)
Jon Postel (POSTEL@BBN)
Schedule:
Some experiments now running. Implementation of full protocol
to begin by 1-Jan-75.
Comments:
Specification completed August 4th, but some work still in
progress on handling of single message conversations. A new
sequencing scheme (proposed by Tomlinson) may be utilized. The
addressing field is now used as 4 bit format, 4 bit network, 16
bit TCP, and 24 bit process&port.
Crocker has suggested a 64 bit path address to be parsed and
reformatted by the gateways along the route. There is
reluctance to experiment with too many things at once though.
(28-Oct-74) A file indicating some of the changes in the
specifications since the 4-Aug-74 document is now available as
[<a href="#ref-ISI">ISI</a>] <CRF> TCP- CHANGES. The areas of change are "Initial
Sequence Number", "Socket definition", "Additional User System
Calls", "Packet Format", and "Discussion of opening and closing
(SYN, REL)".
(23-NOV-74) Specifications for test implementation are now said
to be ready on 1-DEC-74, and an implementation completed by 1-
FEB-74.
(31-DEC-74) New specification document available:
Cerf, V. Y. Dalal, and C. Sunshine. "Specification of
Internet Transmission Control Program," <a href="./rfc675">RFC 675</a>, INWG 72,
NIC 31505, December 1974 Revision.
<span class="grey">Postel [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Recent developments:
(30-May-75)
Status of TCP development. The BBN version is running at
BBN-TENEXA, but simulates a lot of JSYS calls which will be
cast into the tenex operating system during the summer. The
SU-DSL version for the PDP-11/20 is in the debugging stage.
The UCL (London) version for a PDP-9 is in the coding stage.
We are continuing with the "three-way handshake" version
which is highly reliable in environments which permit
packets to be delivered on the order of hours later than
they were injected into the connected networks. A simple
TCP is being designed for the packet radio network and does
not use three-way handshake since waiting a second or so to
clear out old packets in not serious.
A test plan for packet radio net, arpanet, and atlantic
satellite networks is in preparation (delivery date 1 August
1975).
Recent international agreements indicate that a form of TCP
with a simpler header (144 bits instead of 256 bits) and no
three-way handshake is the most likely international
standard. An IFIP WG 6.1 Recommendation to CCITT stated
that the maximum packet delay through all concatenated
networks should not exceed 30 seconds.
nvp - Network Voice Protocol
Contact:
Danny Cohen (COHEN@ISIB)
Documents:
"Specifications for the Network Voice Protocol (NVP)" NSC Note
43.
People:
Schedule:
Comments:
Specification document available (10-Oct-74).
<span class="grey">Postel [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
(20-JAN-75) An initial version of NVP was implemented for
real-time voice experiments between ISI and Lincoln Laboratory
in August 1974. An expanded version has been in operation
since December 1974 for real-time voice communication between
Lincoln and CHI. NVP uses both type 0 and type 3 IMP-Host
messages, and allows increased bandwidth and decreased delays
at the cost of reliability.
Recent developments:
packet radio
Contact:
Robert Kahn (KAHN@ISI)
Documents:
People:
Schedule:
Comments:
Recent developments:
Network Debugging Protocol
Contact:
Eric Mader (MADER@BBN)
Documents:
Mader, E. "Network Debugging Protocol," <a href="./rfc643">RFC 643</a>, NIC 30873,
July-74.
Beeler, M. "Response Time in Cross-network Debugging," <a href="./rfc685">RFC 685</a>,
NIC 32298, 16-April-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO> <a href="./rfc685">RFC685</a>.TXT
People:
Michael Beeler (BEELER@BBN)
Eric Mader (MADER@BBN)
<span class="grey">Postel [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Dave Retz (RETZ@ISI)
Ken Victor (VICTOR@BBNB)
Schedule:
Comments:
This is a protocol for a PDP-11 cross-network debugger.
Recent Developments:
(15-May-75) A measure of the responsiveness of cross-network
debugging has been reported in:
Beeler, M. "Response Time in Cross-network Debugging," <a href="./rfc685">RFC</a>
<a href="./rfc685">685</a>, NIC 32298, 16-April-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc685">RFC685</a>.TXT
pup - PARC Universal Protocol
Contact:
Ed Taft (TAF@PARC)
Documents:
People:
Ed Taft (TAFT@PARC)
Bob Metcalfe (METCALFE@PARC)
Schedule:
Comments:
Recent developments
(15-May-75) Link 151 (decimal) assigned.
HOST-FRONTED
Host-Front End
Contact:
<span class="grey">Postel [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Michael Padlipsky (Padlipsky@MIT-Multics)
Documents:
Padlipsky, M. "A Proposed Protocol for Connecting Host
Computers to ARPA-Like Networks via Front-End Processors," <a href="./rfc647">RFC</a>
<a href="./rfc647">647</a>, NIC 31117, 12-Nov-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc647">RFC647</a>.TXT
People:
Michael Padlipsky (Padlipsky@MIT-Multics)
Jon Postel (POSTEL@BBNB)
Schedule:
Comments:
This is a suggested simple protocol for connecting host to
front end computers, which are in turn connected to the
network.
Recent developments:
PROCESS-PROCESS
ICP - Initial Connection Protocol [Official]
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Postel, J. "Official Initial Connection Protocol," NIC 7101,
11-June-71.
Wolfe, S. [no title] <a href="./rfc202">RFC 202</a>, NIC 7155, 26-July-71.
Postel, J. "Official Telnet-Logger Initial Connection
Protocol," NIC 7103, 15-June-71.
People:
Jon Postel (POSTEL@BBNB)
<span class="grey">Postel [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Schedule:
Comments:
Recent developments:
Telnet
Old Telnet
Contact:
Jon Postel: (POSTEL@BBNB)
Documents:
Postel, J. "Telnet Protocol," <a href="./rfc318">RFC 318</a> 3-April-72.
People:
Schedule:
Comments:
Recent developments:
New Telnet [Official]
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
NIC 18639 "TELNET Protocol Specifications" AUG 73
NIC 18640 "Telnet Option Specification" Aug 73
Telnet Options
0 Transmit Binary
"Binary Transmission," NIC 15389
1 Echo
"Echo," NIC 15390
<span class="grey">Postel [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
2 Reconnection
"Reconnection," NIC 15391
3 Suppress Go Ahead
"Suppress Go Ahead Option," NIC 15392.
4 Negotiate Approximate Message Size
"Approximate Message Size Negotiation," NIC
5 Status
Crocker, D. "Status," <a href="./rfc651">RFC 651</a>, NIC 31154, 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc651">RFC651</a>.TXT
6 Timing Mark
"Timing Mark," NIC 16238.
7 Remote Controlled Transmission and Echoing
Crocker, D. "Remote Controlled Transmission and
Echoing," NIC 19859, 1-Nov-73.
8 Negotiate About Output Line Width
Walden, D. "Output Line Width," NIC 20196,
13-Nov-73.
9 Negotiate About Output Page Size
Walden, D. "Output Page Size," NIC 20197, 13-Nov-73.
10 Output Carriage Return Disposition
Crocker, D. "Output Carriage Return Disposition,"
<a href="./rfc652">RFC 652</a>, NIC 31155, 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc652">RFC652</a>.TXT
11 Output Horizontal Tab Stops
Crocker, D. "Output Horizontal Tab Stops," <a href="./rfc653">RFC 653</a>,
NIC 31156, 25-Oct-74.
<span class="grey">Postel [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc653">RFC653</a>.TXT
12 Output Horizontal Tab Disposition
Crocker, D. "Output Horizontal Tab Disposition,"
<a href="./rfc654">RFC 654</a>, NIC 31157, 25-Oct-74.
13 Output Formfeed Disposition
Crocker, D. "Output Form Feed Disposition," <a href="./rfc655">RFC 655</a>,
NIC 31158, 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc655">RFC655</a>.TXT
14 Output Vertical Tab Stops
Crocker, D. "Output Vertical Tab Stops," <a href="./rfc656">RFC 656</a>,
NIC 31159, 25-Oct-74.
15 Output Vertical Tab Disposition
Crocker, D. "Output Vertical Tab Disposition," <a href="./rfc657">RFC</a>
<a href="./rfc657">657</a>, NIC 31160, 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc657">RFC657</a>.TXT
16 Output Linefeed Disposition
Crocker, D. "Output Line Feed Disposition," <a href="./rfc658">RFC 658</a>,
NIC 31161, 25-Oct-74.
[Office -1] <NETINFO><a href="./rfc658">RFC658</a>.TXT
255 Extended Options List
"Extended Options List," NIC 16239.
People:
Jon Postel (POSTEL@BBN)
Alex McKenzie (MCKENZIE@BBN)
Doug Dodds (DODDS@BBN)
Dave Crocker (DCROCKER@ISI)
Schedule:
<span class="grey">Postel [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
All Hosts were to have been running the new Telnet (both user
and server) by 1 January 1974.
Comments:
Note: the server program is to be available on socket 23
decimal (27 octal).
The Status Option has been revised to take advantage of the
subcommand feature and to reduce the amount of data transmitted
to report the option status.
Seven new options have been defined to allow control of the
format effectors Carriage Return, Line Feed, Form Feed,
Horizontal Tab, and Vertical Tab.
(31-DEC-74) Rick Schantz has made some suggestions regarding
the Reconnection Option in:
Schantz, R. "A Note on Reconnection Protocol," <a href="./rfc671">RFC 671</a>, NIC
31439, 6-Dec-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc671">RFC671</a>.TXT
Recent developments:
(15-May-75) The latest survey of Telnet Server status by Doug
Dodds is:
Dodds, D. "February, 1975, Survey of New-Protocol Telnet
Servers," <a href="./rfc679">RFC 679</a>, NIC 31890, 21-Feb-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc669">RFC669</a>.TXT
(18-Jun-75) A schedule for implementation of New Telnet in the
TIP has been published:
Walden, D. "Tentative Schedule for the New Telnet
Implementation for the TIP," <a href="./rfc688">RFC 688</a>, NIC 32655, 4-Jun-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc688">RFC688</a>.TXT
FTP
Old File Transfer
Contact:
<span class="grey">Postel [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Jon Postel (POSTEL@BBNB)
Documents:
McKenzie, A. "File Transfer Protocol," NIC 14333, <a href="./rfc454">RFC 454</a>, 16-
Feb-73.
Clements, R. "FTPSRV - Extensions for Tenex Paged Files, "<a href="./rfc683">RFC</a>
<a href="./rfc683">683</a>, NIC 32251, 3-April-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc683">RFC683</a>.TXT
Harvey, B. "One More Try on the FTP," <a href="./rfc691">RFC 691</a>, NIC 32700, 6-
Jun-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc691">RFC691</a>.TXT
People:
Nancy Neigus (NEIGUS@BBN)
Jon Postel (POSTEL@BBN)
Alex McKenzie (MCKENZIE@BBN)
Robert Clements (CLEMENTS@BBN)
Brian Harvey (BH@SU-AI)
Schedule:
Comments:
(31-DEC-74) Kanodia has published an RFC on performance
measurements of FTP at Multics, which shows the important
effect of Host buffering in constraining thruput.
Kanodia, R. "Performance Improvement in ARPANET File
Transfers From Multics," <a href="./rfc662">RFC662</a>, NIC 31386, 26-Nov-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc662">RFC662</a>.TXT
Recent developments:
(15-May-75) The Tenex FTP implementation has been extended to
transfer paged files as described in:
<span class="grey">Postel [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Clements, R. "FTPSRV - Extensions for Tenex Pages Files,"
<a href="./rfc683">RFC 683</a>, NIC 32251, 3-April-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc683">RFC683</a>.TXT
(18-Jun-75) Brian Harvey has suggested that old FTP is good
enough, that it is in wide use, so lets just fix the bugs
instead of implementing new FTP. His suggested bug fixes are
also included in his RFC:
Harvey, B. "One More Try on the FTP," <a href="./rfc691">RFC 691</a>, NIC 32700, 6-
Jun-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc691">RFC691</a>.TXT
New File Transfer
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Neigus, N. "File Transfer Protocol," NIC 17759 <a href="./rfc542">RFC 542</a> 12-
July-73.
Postel, J. "Revised FTP Reply Codes," NIC 30843 <a href="./rfc640">RFC 640</a> 5-
June-74.
People:
Jon Postel (POSTEL@BBNB)
Nancy Neigus (NEIGUS@BBN)
Ken Pogran (Pogran.CompNet@MIT-Multics)
Wayne Hathaway (Hathaway@AMES-67)
Schedule:
Comments:
Recent developments:
Pathnames
Contact:
<span class="grey">Postel [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Jon Postel (POSTEL@BBNB)
Documents:
Crocker, D. "Network Standard Data Specification Syntax," <a href="./rfc645">RFC</a>
<a href="./rfc645">645</a>, NIC 30899, Jul-74.
People:
Dave Crocker (DCROCKER@ISI)
Schedule:
Comments:
Recent developments:
File Access Protocol
Contact:
Jon Day (Day.CAC@MIT-Multics)
Documents:
Day, J. "Memo to FTP Group: File Access Protocol," <a href="./rfc520">RFC 520</a>, NIC
16819, 25-Jun-73.
People:
Ken Pogran (Pogran.CompNet@MIT-Multics)
Schedule:
Comments:
Recent developments:
File formats
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Postel, J. "Standard File Formats," <a href="./rfc678">RFC 678</a>, NIC 31524, 19-
Dec-74.
<span class="grey">Postel [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc678">RFC678</a>.TXT
People:
Jon Postel (POSTEL@BBNB)
Schedule:
Comments:
(31-DEC-74) This new format standard for document file was
published:
Postel, J. "Standard File Formats," <a href="./rfc678">RFC678</a>, NIC 31524, 19-
Dec-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc678">RFC678</a>.TXT
Recent developments:
Mail
Current Mail
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Page 26 of <a href="./rfc454">RFC 454</a> (see old file transfer).
Myer, T. "Message Transmission Protocol," <a href="./rfc680">RFC 680</a>, NIC 32116,
30-April-75.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc680">RFC680</a>.TXT
Sussman, J. "FTP Error Code Usage for More Reliable Mail
Service," <a href="./rfc630">RFC 630</a>, NIC 30237, 10-Apr-74.
Thomas, B. "On the problem of Signature Authentication for
Network Mail," <a href="./rfc644">RFC 644</a>, NIC 30874, 22-July-74.
People:
Ted Meyer (MYER@BBN)
Austin Henderson (HENDERSON@BBN)
<span class="grey">Postel [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Julie Sussman (SUSSMAN@BBN)
Bob Thomas (THOMAS@BBN)
Jon Postel (POSTEL@BBNB)
Schedule:
Comments:
Concern over the authentication of the author of network
messages has lead to the concept of an authorized mail sending
process (see <a href="./rfc644">RFC 644</a>).
Recent developments:
(15-May-75) The standard formats for mail header information
fields have been extended as documented in:
Myer, T. "Message Transmission Protocol," <a href="./rfc680">RFC 680</a>, NIC
32116, 30-April-75.
Proposed Mail
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
White, J. "A Proposed Mail Protocol," <a href="./rfc524">RFC 524</a>, NIC 17140, 13-
Jun-73.
Crocker, D. "Thoughts on the Mail Protocol Proposed in <a href="./rfc524">RFC</a>
<a href="./rfc524">524</a>," <a href="./rfc539">RFC 539</a>, NIC 17644, 7-JULY-73.
White, J. "Response to Critiques of the Proposed Mail
Protocol," <a href="./rfc555">RFC 555</a>, NIC 17993, 27-July-73.
Crocker, D. "Mail Priority," <a href="./rfc577">RFC 577</a>, NIC 19356, 18-Oct-73.
People:
Jim White (JWHITE@BBNB)
Postel (POSTEL@BBNB)
Dave Crocker at UCLA-NMC (DCROCKER@ISI)
<span class="grey">Postel [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Schedule:
Comments:
Recent developments:
RJE - Remote Job Entry
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Bressler, B. "Remote Job Entry Protocol," <a href="./rfc407">RFC 407</a>, NIC 12112,
16-Oct- 72.
Krilanovich, M. "Announcement of RJS at UCSB," <a href="./rfc436">RFC 436</a>, NIC
13700, 10-Jan-73.
People:
Schedule:
Comments:
Recent developments:
RJS - CCNs Remote Job Service
Contact:
Robert Braden (BRADEN@UCLA-CCN)
Documents:
Braden, R. "Interim NETRJS Specification," <a href="./rfc189">RFC 189</a>, NIC 7133,
15- July-71.
Harslem, E. "Using Network Remote Job Entry," <a href="./rfc307">RFC 307</a>, NIC
9258, 24- Feb-72.
Braden, R. "Update on NETRJS," <a href="./rfc599">RFC 599</a>, NIC 20854, 13-Dec-73.
Crocker, D. "CCNRJS: Remote Job Entry between Tenex and UCLA-
CCN," NUTS Note 22, 5-Mar-75.
[<a id="ref-ISI">ISI</a>] <DOCUMENTATION>CCNRJS.DOC
<span class="grey">Postel [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
People:
Robert Braden (BRADEN@UCLA-CCN)
Steve Wolfe (WOLFE@UCLA-CCN)
Dave Crocker (DCROCKER@ISI)
Schedule:
Comments:
Recent developments:
Graphics
Contact:
Robert Spoull (SPROULL@PARC-MAXC)
Documents:
Sproull, R. and E. Thomas. "A Networks Graphics Protocol," NIC
24308, 16-Aug-74.
People:
Robert Sproull (SPROULL@PARC-MAXC)
Elaine Thomas (Thomas@MIT-Multics)
James Michener (JCM@MIT-DMS)
Schedule:
Comments:
Document available from Robert Sproull.
Recent developments:
Data Reconfiguration Service
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
<span class="grey">Postel [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Anderson, B. "Status Report on Proposed Data Reconfiguration
Service," <a href="./rfc138">RFC 138</a>, NIC 6715, 28-April-71.
Feah, "Data Reconfiguration Service at UCSB," <a href="./rfc437">RFC 437</a>, NIC
13701, 30- June-74.
People:
Schedule:
Comments:
Recent developments:
RSEXEC - The Resource Sharing Executive
Contact:
Robert Thomas (THOMAS@BBN)
Documents:
Thomas, R. "A Resource Sharing Executive For the ARPANET,"
AFIPS Conference Proceedings, 42;155-163, NCC, 1973.
People:
Robert Thomas (THOMAS@BBN)
Schedule:
Comments:
The TIPs and some RSEXEC servers now are cooperating to perform
TIP user authentication and accounting functions.
Recent developments:
Line Processor Protocol
Contact:
Don Andrews (ANDREWS@BBNB)
Documents:
[<a id="ref-BBNB">BBNB</a>] <LP>MCS4.NLS
<span class="grey">Postel [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Andrews, D. "Line Processor - A Device for Amplification of
Display Terminal Capabilities for Text Manipulation," AFIPS
Conference Proceedings, 43:257-265, NCC, 1974.
People:
Martin Hardy (HARDY@BBNB)
Don Andrews (ANDREWS@BBNB)
Schedule:
Comments:
Recent developments:
PROGRAMS
Neted - Network Standard Editor [Official]
Contact:
Michael Padlipsky (Padlipsky@MIT-Mulitics)
Documents:
Padlipsky, M. "NETED: A Common Editor for the ARPA Network,"
<a href="./rfc569">RFC 569</a>, NIC 18972, 15-Oct-73.
People:
Michale Padlipsky (Padlipsky@MIT-Multics)
Jon Postel (POSTEL@BBNB)
Wayne Hathaway (HATHAWAY@AMES-67)
Schedule:
Comments:
Recent developments:
UULP - Unified User-Level Protocol
Contact:
Michael Padlipsky (Padlipsky@MIT-Multics)
<span class="grey">Postel [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Documents:
Padlipsky, M. "Specification of a Unified User-Level Protocol,"
<a href="./rfc666">RFC 666</a>, NIC 31396, 26-Nov-73.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc666">RFC666</a>.TXT
People:
Michael Padlipsky (Padlispksy@MIT-Multics)
Jon Postel (POSTEL@BBNB)
Schedule:
Comments:
Also know as Common Command Language (CCL).
Recent developments:
NATIONAL SOFTWARE WORKS
The national Software Works (NSW) is developing a set of protocols
for its use of the ARPA Network, other uses of these protocols is
encouraged.
The Distributed Programming System (DPS) is intended to facilitate
the sharing of resources in the network at the subroutine level. The
Distributed Programming System will be used to split NLS into a front
end and back end components. Distributed Programming system is also
to be used in the NSW and the basis for communication between the
Works Manager, the Tool Bearing Hosts, and Front End procedure
packages.
The documents cited below give a view of the Distributed Programming
System and its use.
Contact:
Jim White (JWHITE@BBNB)
Jon Postel (POSTEL@BBNB)
<span class="grey">Postel [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Documents:
The documents cited here represent the state of the protocol in
January-75, much as changed since that time that has not been
adequately documented, therefore, these documents should be viewed
as generally descriptive not specifically definitive.
Each is available online in two forms: as an NLS file and as a
formatted text file. The Journal number (e.g., 24459) refers to
the former, of course and the pathname (e.g., [<a href="#ref-BBNB">BBNB</a>] <NLS>PCP.TXT)
to the latter, accessible via FTP using username=ANONYMOUS and
password=GUEST (no account required).
In addition, these documents are available from Jon Postel in
hardcopy.
PCP (24459,) "The Procedure Call Protocol"
This document describes the virtual programming environment
provided by PCP, and the inter-process exchanges that
implement it.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCP.TXT
PIP (24460,) "The Procedure Interface Package"
This document describes a package that runs in the setting
provided by PCP and that serves as procedure-call-level
interface to PCP proper. It includes procedures for
calling, resuming, interrupting, and aborting remote
procedures.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PIP.TXT
PSP (24461,) "The PCP Support Package"
This document describes a package that runs in the setting
provided by PCP and that augments PCP proper, largely in the
area of data store manipulation. It includes procedures for
obtaining access to groups of remote procedures and data
stores, manipulating remote data stores, and creating
temporary ones.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PSP.TXT
<span class="grey">Postel [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
PMP (24462,) "The Process Management Package"
This document describes a package that runs in the setting
provided by PCP and that provides the necessary tools for
interconnecting two or more processes to form a multi-
process system (e.g., NSW). It includes procedures for
creating, deleting, logically and physically interconnecting
processes, and for allocating and releasing processors.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PMP.TXT
PCPFMT (24576,) "PCP Data Structure Formats"
This document defines formats for PCP data structures, each
of which is appropriate for one or more physical channel
types.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCPFMT.TXT
PCPHST (24577,) "PCP ARPANET Inter-Host IPC Implementation"
This document defines an implementation, appropriate for
mediating communication between Tenex forks, of the IPC
primitives required by PCP.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCPHST.TXT
PCPFRK (24578,) "PCP Tenex Inter-Fork IPC Implementation"
This document defines an implementation, appropriate for
mediating communication between processes on different hosts
within the ARPANET, of the IPC primitives required by PCP.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCPFRK.TXT
PCPTNXINT (24792,) "Tenex PCP Process internal Structure"
This document defines the internal structure of a PCP
process implemented to run on Tenex, and as such serves as a
process implementer's guide. It describes the process' fork
structure, the role and composition of each fork, and the
manner in which the various forks interact with one another;
indicates which components are supplied with PCP and which
are the responsibility of the process implementer; and
describes the manner in which the components are assembled
at load time.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCPTNXINT.TXT
<span class="grey">Postel [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
HOST (24581,) "NSW Host Protocol"
This document describes the host level protocol used in the
NSW. The protocol is a slightly constrained version of the
standard ARPANET host to host protocol. The constraints
affect the allocation, RFNM wait, and retransmission
policies.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>HOST.TXT
EXEC (24580,) "The Executive Package"
This document describes a package that runs in the setting
provided by PCP. It includes procedures and data stores for
user identification, accounting, and usage information.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>EXEC.TXT
FILE (24582,) "The File Package"
This document describes a package that runs in the setting
provided by PCP. It includes procedures and data stores for
opening, closing, and listing directories, for creating,
deleting, and renaming files, and for transferring the files
and file elements between processes.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>FILE.TXT
FILE-APP (24813,) "The File Package Appendix"
This appendix contains some comments on implementation
strategy. The thrust is to argue that the file package as
specified is near minimal and that the conversion between
the PCP format and the internal storage format can be
encapsulated into a few subroutines.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>FILE-APP.TXT
BATCH (24583,) "The Batch Job Package"
This document describes a package that urns in the setting
provided by PCP. It includes procedures for creating and
deleting batch jobs, obtaining the status of a batch job,
and communicating with the operator of a batch processing
host. This package is implemented at the host that provides
the batch processing facility.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>BATCH.TXT
<span class="grey">Postel [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
LLDBUG (24579,) "The Low-Level Debug Package"
This document describes a package that runs in the setting
provided by PCP. It includes procedures for a remote
process to debug at the assembly-language level, any
processes known to the local process. The package contains
procedures for manipulating and searching the process'
address space, for manipulating and searching its symbol
tables, and for setting and removing breakpoints from its
address space. Its data stores hold process characteristics
and state information, and the contents of program symbol
tables.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS.LLDBUG.TXT
RJE-MODEL (24655,) "The NSW Remote Job Entry Model"
This document discusses the process of utilizing a batch
processing facility to complete a programming task in the
NSW environment. This same activity in another environment
might utilize a remote job entry system.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>RJE-MODEL.TXT
TBH (24656,) "NSW Requirements on Tool Rearing Hosts"
This document discusses the environment needed in the tool
bearing host and the interfaces to the operating system
components by various PCP packages.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>TBH.TXT
NVTP (24827,) "The Network Virtual Terminal Package"
The Network Virtual Terminal Package (package name = NVTP)
contains the procedures interfacing PCP procedure calls to
terminal oriented input and output character streams as
defined by the ARPANET Telnet protocol.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>NVTP.TXT
NTP (25008,) "The NSW Tool Package"
This document describes the procedures and data stores
required of a process for use as a tool within the NSW.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>NTP.TXT
<span class="grey">Postel [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
NSWSTRUC (25009,) "NSW Process Structure"
This document describes the structure of the PCP process
tree used in the NSW.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>NSWSTRUC.TXT
PCPV2CHANGES (25062,) "PCP Inter-Version (2-3) Documentation"
This document describes the divergence from the Version 2
documentation in the implementation and current thinking.
Pathname: [<a href="#ref-BBNB">BBNB</a>] <NLS>PCPV2CHANGES.TXT
People:
Jim White (JWHITE@BBNB)
Jon Postel (POSTEL@BBNB)
Steve Warshall (WARSHALL@BBNB)
Robert Millstein (MILLSTEIN@BBNB)
Dick Mandell (MANDELL@ISIB)
Elizabeth Michael (MICHAEL@BBNB)
Dave Maynard (MAYNARD@BBNB)
Charles Irby (IRBY@BBNB)
Ken Victor (VICTOR@BBNB)
Schedule:
A demonstration of the National Software Works is to be
performed in summer 1975.
Comments:
(31-DEC-74) The following are the latest documents:
PCPFRK (24578,) "PCP Tenex Inter-Fork IPC Implementation"
FILE-APP (24813,) "The File Package Appendix"
RJE-MODEL (24655,) "The NSW Remote Job Entry Model"
<span class="grey">Postel [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
TBH (24656,) "NSW Requirements on Tool Bearing Hosts"
NVTP (24827,) "The Network Virtual Terminal Package"
(21-JAN-75) The following are the latest documents:
NTP (25008,) "The NSW Tool Package"
NSWSTRUC (25009,) "NSW Process Structure"
PCPV2CHANGES (25062,) "PCP Inter-Version (2-3)
Documentation"
Recent developments:
(15-May-75) Significant changes in design and initial scope
have altered the implementation of the Distributed Programming
System from the design presented in these documents, the
documents still serve to give the flavor of the intended
system, but no longer are a reliable guide to the details of
the actual implementation.
(18-Jun-75) The L10 source code of the Tenex implementation is
available online as:
[<a id="ref-BBNB">BBNB</a>] <NLS>C2DPS.TXT
(18-Jun-75) A description of the user interface to DPS in Tenex
is available online as:
[<a id="ref-BBNB">BBNB</a>] <JWHITE>DPSJSYS.TXT
(18-Jun-75) A description of the Works Manager procedures is
available online as:
[<a id="ref-BBNB">BBNB</a>] <MILLSTEIN>WM-PROCEDURES.TXT
(18-Jun-75) A set of memos describing the interface to the
B4700 batch system is available online as:
[<a id="ref-BBNB">BBNB</a>] <MUNTZ>BMEMO.n
where n is in the range 1 thru 12.
(18-Jun-75) A description of the file package is available
online as:
[<a id="ref-BBNB">BBNB</a>] <NLS>25850.TXT
<span class="grey">Postel [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
(18-Jun-75) A description of the 8 bit binary communication
format is available online as:
[<a href="#ref-BBNB">BBNB</a>]25966.TXT
ADDRESS ASSIGNMENTS
Assigned Links
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Link Assignments:
Decimal Octal Use
0 0 Control Messages
1 1 Reserved
2-71 2-107 Regular Messages
72-151 110-227 Reserved
152 230 PARC Universal Protocol
153 231 TIP Status Reporting
154 232 TIP Accounting
155-158 233-236 Internet Protocol
159-191 237-277 Measurements
192-195 300-303 Message Switching Protocol
196-255 304-255 Experimental Protocols
People:
Jon Postel (POSTEL@BBNB)
Schedule:
Comments:
Numbers issued by Jon Postel (POSTEL@BBNB).
Recent developments:
(15-May-75) Link 151 (decimal) assigned for the PARC Universal
Protocol.
Assigned Sockets:
<span class="grey">Postel [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Contact:
Jon Postel (POSTEL@BBNB)
Documents:
Socket Assignments:
General Assignments:
Decimal Octal Use
0-63 0-77 Network Wide Standard Function
64-127 100-177 Hosts Specific Functions
128-223 200-337 Reserved for Future Use
224-255 340-377 Any Experimental Function
Specific Assignments:
Decimal Octal Use
1 1 Old Telnet
3 3 Old File Transfer
5 5 Remote Job Entry
7 7 Echo
9 11 Discard
11 13 Who is on or SYSTAT
13 15 Date and Time
15 17 Who is up or NETSTAT
17 21 Short Text Message
19 23 Character generator TTYTST
21 25 New File Transfer
23 27 New Telnet
25 31 Distributed Programming System
65 101 Speech Data Base at LL-TX-2
67 103 Datacomputer at CCA
69 105 CPYTNET
71 107 NETRJS (EBCDIC) at UCLA-CCN
73 111 NETRJS (ASCII) at UCLA-CCN
75 113 NETRJS (TTY) at UCLA-CCN
77 115 any private RJE server
232-237 350-355 Authorized Mailer at BBN
239 357 Graphics
241 361 NCP Measurement
243 363 Survey Measurement
245 365 LINK
247 367 TIPSRV
249-255 371-377 RSEXEC
People:
<span class="grey">Postel [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc694">RFC 694</a> Protocol Information June 18, 1975</span>
Jon Postel (POSTEL@BBNB)
Nancy Neigus (NEIGUS@BBN)
Schedule:
Comments:
Numbers issued by Jon Postel (POSTEL@BBNB)
(31-DEC-74) Socket 25 (31 octal) assigned to Distributed
Programming System.
Recent developments:
Postel [Page 36]
</pre>
|