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
|
<pre>Network Working Group J. Postel
Request for Comments: 661 SRI-ARC
NIC: 31203 November 1974
<span class="h1">Protocol Information</span>
This file contains information on the various protocols in the ARPA
Network. An effort will be made to keep the information current, but
this 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.
This is a compendium of all the protocol related 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.
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.
This file is online as:
Pathname: [<a href="#ref-SRI-ARC">SRI-ARC</a>] <POSTEL> PROTOCOL-INFORMATION.TXT
and also [<a href="#ref-SRI-ARC">SRI-ARC</a>] <POSTEL> PROTOCOL-INFORMATION.NLS
IMP-IMP
surface
Contact:
McKenzie, Alex. (MCKENZIE@BBN)
Documents:
Heart, F. et. Al. "The Interface Message Processor for the
ARPA Computer Network," AFIPS Conference Proceedings,
36:551-567, SJCC 1970.
People:
John McQuillan (MCQUILLAN@BBN)
<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="./rfc661">RFC 661</a> November 1974</span>
Schedule:
Recent developments:
satellite
Contact:
Randy Rettberg (RETTEBERG@BBN)
Documents:
People:
Kahn, Robert. (Kahn@ISI)
Schedule:
Recent developments:
IMP-HOST
IMP-Host [Official]
Contact:
McKenzie, A. (McKenzie@BBN)
Documents:
"Specification for the Interconnection of a Host and an
IMP," BBN Report 1822, Revised March 1974.
McQuillan, J. "Host Alive/Dead Logic," BBN Memorandum to
Technical Liaisons, 18-July-74.
Burchfiel, J. "Ready Line Philosophy and Implementation,"
NIC 30872, <a href="./rfc642">RFC 642</a>, 5-July-74.
Walden, D. "Some Changes to the IMP and the IMP/HOST
Interface," <a href="./rfc660">RFC 660</a>, 23-Oct-74.
[Office-1 <NETINFO> <a href="./rfc660">RFC660</a>.TXT
People:
McKenzie (MCKENZIE@BBN)
<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="./rfc661">RFC 661</a> November 1974</span>
Walden (WALDEN@BBN)
Postel (POSTEL@SRI-ARC)
Burchfiel (BURCHFIEL@BBN)
McQuillan (MCQUILLAN@BBN)
Schedule:
Recent developments:
The "link number" filed 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 a 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.
HOST-HOST
ncp - standard host-to-host [Official]
Contact:
Postel, Jon. (POSTEL@SRI-ARC)
Documents:
McKenzie, A. "Host/Host Protocol for the ARPA Network," NIC
8246. Jan 1972.
Postel, J. "Assigned Link Numbers," <a href="./rfc604">RFC604</a>, NIC21186, 26-
Dec-73.
People:
Postel, Jon. (POSTEL@SRI-ARC)
McKenzie, Alex. (MCKENZIE@BBN)
Schedule:
<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="./rfc661">RFC 661</a> November 1974</span>
Recent developments:
ncp - standard host-to-host [Experimental]
Contact:
Postel, Jon. (POSTEL@SRI-ARC)
Documents:
McKenzie, A. "Host/Host Protocol for the ARPA Network," NICE
3246. Jan 1972.
Postel, J. "Assigned Link Numbers," <a href="./rfc604">RFC604</a>, NIC22186, 26-
Dec-73.
Burchfiel, et. Al. "Tip-Tenex Reliability Improvements" <a href="./rfc636">RFC</a>
<a href="./rfc636">636</a> NIC 30490 June 1974.
People:
Postel, Jon. (POSTEL@SRI-ARC)
McKenzie, Alex. (MCKENZIE@BBN)
Burchfiel, Jerry (BURCHFIEL@BBN)
Walden, Dave (WALDEN@BBN)
Schedule:
Recent developments:
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 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>).
tcp - Transmission Control Protocol
Contact:
Cerf, Vint. (CERF@ISI)
<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="./rfc661">RFC 661</a> November 1974</span>
Documents:
Cert, V. and R. Kahn. "A Protocol for Packet Network
Intercommunication," IEEE Transactions on Communication Vol
COM-22 No 5, May 1974.
[<a id="ref-parc-maxc">parc-maxc</a>] <cerf> TCPSPEC3.NLS
Mader, E. "A Protocol Experiment," <a href="./rfc700">RFC 700</a>, NIC 31020.
[<a id="ref-ISI">ISI</a>] <CERF> TCP-CHANGES.
People:
Cerf at SU-DSL
Tomlinson at BBN
Kirstein at London
Postel at SRI-ARC
Schedule:
Some experiments now running. Implementation of full protocol
to begin by 15-Oct-74.
Recent developments:
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 one 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>] <CERF> 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.
<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="./rfc661">RFC 661</a> November 1974</span>
nvp - Network Voice Protocol
Contact:
Cohen, Danny. (COHEN@ISI)
Documents:
The current specification is in an online file at isi in the
directory voice as nvp.lst.
Pathname = [isi] <voice> nvp.lst
People:
Recent developments:
New specification document available (10-Oct-74).
"Specifications for the Network Voice Protocol (NVP)" NSC
Note 43
packet radio
Contact:
Kahn, Robert. (KAHN@ISI)
Documents:
People:
Schedule:
Recent developments:
Network Debugging Protocol
Contact:
Eric Mader (Mader@BBN)
Documents:
Mader, E. "Network Debugging Protocol," NIC 30873, <a href="./rfc643">RFC 643</a>,
July-74.
People:
<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="./rfc661">RFC 661</a> November 1974</span>
Schedule:
Recent Developments:
This is a protocol for a PDP-11 cross-network debugger.
HOST-FRONTEND
Host-Front End
Contact:
Michael Padlipsky (MAP@CASE-10)
Documents:
Padlipsky, M. "A Proposed Protocol for Connecting Host
Computers to ARPA-Like Networks via Front-End Processors,"
<a href="./rfc647">RFC 647</a>, NIC 31117, 12-Nov-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc647">RFC647</a>.TXT
People:
Padlipsky at MITRE Washington (MAP@CASE-10)
Postel at SRI-ARC (POSTEL@SRI-ARC)
McConnell at Illiac (JOHN@I4-TENEX)
Schedule:
Recent developments:
This is a suggested simple protocol for connecting to host
to front end computers, which are in turn connected to the
network.
PROCESS-PROCESS
ICP - Initial Connection Protocol [Official]
Contact:
Postel, Jon. [POSTEL@SRI-ARC)
<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="./rfc661">RFC 661</a> November 1974</span>
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:
Postel at Sri-arc
Schedule:
Recent developments:
Telnet
Old Telnet
Contact:
Postel, Jon. (POSTEL@SRI-ARC)
Documents:
Postel, J. "Telnet Protocol," <a href="./rfc318">RFC 318</a> 3-April-72.
People:
Schedule:
Recent developments:
New Telnet [Official]
Contact:
Postel at SRI-ARC
Documents:
NIC 18639 "TELNET Protocol Specifications" AUG 73
NIC 1864C "Telnet Option Specification" Aug 73
<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="./rfc661">RFC 661</a> November 1974</span>
Telnet Options
NIC 15389 "Binary Transmission"
NIC 15390 "Echo"
NIC 15391 "Reconnection"
NIC 15392 "Suppress Go Ahead Option"
NIC 15393 "Approximate Message Size Negotiation"
NIC 31154 "Status" <a href="./rfc65125">RFC 65125</a>-Oct-74.
[<a id="ref-Office">Office</a>] <NETINFO><a href="./rfc651">RFC651</a>.TXT
NIC 16236 "Timing Mark"
NIC 19859 "Remote Controlled Transmission and
Echoing" 1-Nov-73.
NIC 20196 "Output Line Width" 13-Nov-73.
NIC 20197 "Output Page Size" 13-Nov-73.
NIC 31155 "Output Carriage Return Disposition" <a href="./rfc652">RFC</a>
<a href="./rfc652">652</a> 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc652">RFC652</a>.TXT
NIC 31157 "Output Horizontal Tab Disposition" <a href="./rfc654">RFC</a>
<a href="./rfc654">654</a> 25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc653">RFC653</a>.TXT
NIC 31156 "Output Horizontal Tab Stops" <a href="./rfc653">RFC 653</a>
25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc653">RFC653</a>.TXT
NIC31157 "Output Form Feed Disposition" <a href="./rfc655">RFC 655</a>
25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc655">RFC655</a>.TXT
NIC 31159 "Output Vertical Tab Stops" <a href="./rfc656">RFC 656</a> 25-
Oct-74.
<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="./rfc661">RFC 661</a> November 1974</span>
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc656">RFC656</a>.TXT
NIC 31160 "Output Vertical Tab Disposition" <a href="./rfc657">RFC 657</a>
25-Oct-74
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc657">RFC657</a>.TXT
NIC 31161 "Output Line Feed Disposition" <a href="./rfc658">RFC 658</a>
25-Oct-74.
[<a id="ref-Office-1">Office-1</a>] <NETINFO><a href="./rfc658">RFC658</a>.TXT
NIC 16239 "Extended Options List"
People:
Jon Postel at Sri-Arc (POSTEL@SRI-ARC)
Alex McKenzie at BBN (MCKENZIE@BBN)
Doug Dodds at BBN (DODDS@BBN)
Dave Crocker at UCLA-NMC (DCROCKER@ISI)
Kurt Barthelmess at UCSD (BOWLES@ISI)
Schedule:
All Hosts were to have been running the new Telnet (both
user and server) by 1 January 1974.
Recent developments:
A significant number of server systems now have new
telnet implementations. (See <a href="./rfc702">RFC 702</a>).
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.
<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="./rfc661">RFC 661</a> November 1974</span>
FTP
Old File Transfer
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
Documents:
McKenzie, A. "File Transfer Protocol," NIC 14333, <a href="./rfc454">RFC 454</a>,
16-Feb-73.
People:
Schedule:
Recent developments:
New File Transfer
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
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 at SRI-ARC (POSTEL@SRI-ARC)
Nancy Neigus at BBN (NEIGUS@BBN)
Ken Pogran at MIT-Multics (Pogran.CompNet@MIT-Multics)
Wayne Hathaway at NASA AMES (Hathaway@AMES-67)
Mark Krilanovich at UCSB (Krilanovich@UCSB-MOD75)
Kurt Barthelmess at UCSD (BOWLES@ISI)
Schedule:
<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="./rfc661">RFC 661</a> November 1974</span>
Recent developments:
Pathnames
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
Documents:
Crocker, D. "Network Standard Data Specification Syntax,"
<a href="./rfc645">RFC 645</a>, NIC 30899, Jul-74.
People:
Dave Crocker at UCLA-NMC (DCROCKER@ISI)
Schedule:
Recent developments:
File Access Protocol
Contact:
John 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:
Recent developments:
Mail
Current Mail
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
<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="./rfc661">RFC 661</a> November 1974</span>
Documents:
page 26 of <a href="./rfc454">RFC 454</a> (see old file transfer).
Bhushan, A. "Standardizing Network Mail Headers," NIC 18516,
<a href="./rfc561">RFC 561</a>, 5-Sep-73
Sussman, J. "FTP Error Code Usage for More Reliable Mail
Service," <a href="./rfc630">RFC 630</a>, NIC 30874, <a href="./rfc644">RFC 644</a>, 22-July-74.
People:
Julie Sussman at bbn (SUSSMAN@BBN)
Bob Thomas at bbn (BTHOMAS@BBN)
Schedule:
Recent developments:
Concern over the authentication of the author of network
messages has led to the concept of an authorized mail
sending process (see <a href="./rfc644">RFC 644</a>).
Proposed Mail
Contact:
Postel at SRI-ARC (POSTEL@SRI-ARC)
Documents:
White, J. "A Proposed Mail Protocol," NIC 17140, <a href="./rfc524">RFC 524</a>,
13-Jun-73.
Crocker, D. "Thoughts on the Mail Protocol Proposed in <a href="./rfc524">RFC</a>
<a href="./rfc524">524</a>," NIC 17644, <a href="./rfc539">RFC 539</a>, 7-July-73.
White, J. "Response to Critiques of the Proposed Mail
Protocol," NIC 17993, <a href="./rfc555">RFC 555</a>, 27-July-73.
People:
Jim White at SRI-ARC (WHITE@SRI-ARC)
Postel at Sri-ARC (POSTEL@SIR-ARC)
Schedule:
<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="./rfc661">RFC 661</a> November 1974</span>
Recent developments:
RJE - Remote Job Entry
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
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:
Recent developments:
RJS - CCNs Remote Job Service
Contact:
Robert Braden at UCLA-CCN (BRADEN@UCLA-CCN)
Documents:
Braden, R. "Interim NETRJS Specification," <a href="./rfc18">RFC 18</a>@ nic
July-71.
Braden, R. "Update on NETRJS," <a href="./rfc599">RFC 599</a>, NIC 20854, 13-Dec-
73.
People:
Robert Braden (BRADEN@UCLA-CCN)
Steve Wolfe (WOLFE@UCLAL-CCN)
Schedule:
Recent developments:
<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="./rfc661">RFC 661</a> November 1974</span>
Graphics
Contact:
Robert Sproull (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 at MIT-DMS (JCM@MIT-DMS)
Schedule:
Recent developments:
New document available from Robert Sproull.
Data Reconfiguration Service
Contact:
Jon Postel at SRI-ARC (POSTEL@SRI-ARC)
Documents:
Anderson, B. "Status Report on Proposed Data Reconfiguration
Service," NIC 6715, <a href="./rfc138">RFC 138</a>, 28-April-71.
Feah, "Data Reconfiguration Service at UCSB," <a href="./rfc437">RFC 437</a>, NIC
13701, 30-June-74.
People:
Schedule:
Recent developments:
<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="./rfc661">RFC 661</a> November 1974</span>
RSEXEC
Contact:
Thomas, Bob. (BTHOMAS@BBN)
Documents:
People:
Schedule:
Recent developments:
Line Processor Protocol
Contact:
Don Andrews at SRI-ARC (ANDREWS@SRI-ARC)
Documents:
[<a id="ref-SRI-ARC">SRI-ARC</a>] <hardy>1pprot.nls
[<a id="ref-SRI-ARC">SRI-ARC</a>] <hardy>prot.txt
People:
Martin Hardy at SRI-ARC (HARDY@SRI-ARC)
Don Andrews at Sri-ARC (ANDREWS@SRI-ARC)
Schedule:
Recent developments:
PROGRAMS
Neted - Network Standard Editor [Official]
Contact:
Michael Padlipsky (MAP@CASE-10)
Documents:
Padlipsky, M. "NETED: A Common Editor for the ARPA Network,"
<a href="./rfc569">RFC 569</a>, NIC 18972, 15-Oct-73.
<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="./rfc661">RFC 661</a> November 1974</span>
People:
Padlipsky at MITRE (MAP@CASE-10)
Postel at SRI-ARC (POSTEL@SRI-ARC0
Hathaway at AMES (HATHAWAY@AMES-67)
Schedule:
Recent developments:
NATIONAL SOFTWARE WORKS
The National Software Works is developing a set of protocols for its
use of the ARPA Network, other uses of these protocols is encouraged.
The procedure call protocol is intended to facilitate the sharing of
resources in the network at the subroutine level. The procedure call
protocol will be used to split nls into a front end and back end
components. Procedure call protocol is also to be used in the nsw as
the basis for communication between the works manager, the tool
bearing hosts, and front desk procedure packages.
The documents cited below give a view of the Procedure Call Protocol
and its use.
Contact:
Jim White (WHITE@SRI-ARC)
Jon Postel (POSTEL@SIR-ARC)
Documents:
These documents are the second published version of the
Procedure Call Protocol and NSW protocol - PCP/NSW Version 2.
Version 2 is SUBSTANTIALLY different than Version 1; it and all
intermediate, informally distributed PCP/NSW documents are
obsoleted by this release.
The first document, PCP, is the place the interested ready
should start. It gives the required motivation for the use
Protocol and states the substance of the Protocol proper. The
ready may then, if he chooses, read the next three documents:
PIP, PSP, and PMP. The latter has the most to offer the casual
reader; the programmer faced with coding in the PCP environment
should ready all three. The next three documents - PCPFMT,
<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="./rfc661">RFC 661</a> November 1974</span>
PCPHST, and PCPFRK - are of interest only to the PCP
implementer. The next document - HOST - is a preliminary
thought about how the NSW might use the standard HOST-HOST
protocol NCP. The last four documents - EXEC, FILE, BATCH, and
LLDBUG - describe procedure packages needed to carry out NSW
functions, but such packages may well be useful in other
contexts.
Version 2 consists of the following documents. 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., [SRI-ARI]
<NLS> PCP.TXT) to the latter, accessible via FTP using
USER=ANONYMOUS and PASSWORD=GUEST (no account required).
Hardcopy is being forwarded by US Mail to all those who have
expressed an interest in PCP. If you don't receive a copy and
would like one of this and/or future releases, send a note to
that effect to WHITE@SRI-ARC:
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-SRI-ARC">SRI-ARC</a>] <NLS>PCP.TXT
PIP (24460,) "The Procedure Interface Package"
This document describes a packages that runs in the
setting provided by PCP and that serves as a procedure-
call-level interface to PCP proper. It includes
procedures for calling, resuming, interrupting, and
aborting remote procedures.
Pathname: [<a href="#ref-SRI-ARC">SRI-ARC</a>] <NLS>PIP.TXT
PSP (24461,) "The PCP Support Packages"
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-SRI-ARC">SRI-ARC</a>] <NLS>PSP.TXT
<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="./rfc661">RFC 661</a> November 1974</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-SRI-ARC">SRI-ARC</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-SRI-ARC">SRI-ARC</a>] <NLS>POPFMT.TXT
PCPHST (24577,) "PCP ARPANET Inter-Host IPC Implementation"
This document defines an implementation, appropriate for
mediating communication between Tenex folks, of the IPC
primitives required by PCP.
Pathname: [<a href="#ref-SRI-ARC">SRI-ARC</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-SRI-ARC">SRI-ARC</a>] <NLS.PCPFRK.TXT
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-SRI-ARC">SRI-ARC</a>] <NLS>HOST.TXT
<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="./rfc661">RFC 661</a> November 1974</span>
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-SRI-ARC">SRI-ARC</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 files and file elements between processes.
Pathname: [<a href="#ref-SRI-ARC">SRI-ARC</a>] <NLS>FILE.TXT
BATCH (24583,) "The Batch Job Package"
This document describes a package that runs 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-SRI-ARC">SRI-ARC</a>] <NLS>BATCH.TXT
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 process 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-SRI-ARC">SRI-ARC</a>] <NLS>LLDBUG.TXT
People:
<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="./rfc661">RFC 661</a> November 1974</span>
Schedule:
A demonstration of the National Software Works concept is to
be performed in July 1975.
Recent developments:
The set of documents cited above is available.
Postel [Page 21]
</pre>
|