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
|
<pre>Network Working Group J. Postel
Request for Comments: 801 ISI
November 1981
<span class="h1">NCP/TCP TRANSITION PLAN</span>
Introduction
------------
ARPA sponsored research on computer networks led to the development
of the ARPANET. The installation of the ARPANET began in September
1969, and regular operational use was underway by 1971. The ARPANET
has been an operational service for at least 10 years. Even while it
has provided a reliable service in support of a variety of computer
research activities, it has itself been a subject of continuing
research, and has evolved significantly during that time.
In the past several years ARPA has sponsored additional research on
computer networks, principally networks based on different underlying
communication techniques, in particular, digital packet broadcast
radio and satellite networks. Also, in the ARPA community there has
been significant work on local networks.
It was clear from the start of this research on other networks that
the base host-to-host protocol used in the ARPANET was inadequate for
use in these networks. In 1973 work was initiated on a host-to-host
protocol for use across all these networks. The result of this long
effort is the Internet Protocol (IP) and the Transmission Control
Protocol (TCP).
These protocols allow all hosts in the interconnected set of these
networks to share a common interprocess communication environment.
The collection of interconnected networks is called the ARPA Internet
(sometimes called the "Catenet").
The Department of Defense has recently adopted the internet concept
and the IP and TCP protocols in particular as DoD wide standards for
all DoD packet networks, and will be transitioning to this
architecture over the next several years. All new DoD packet
networks will be using these protocols exclusively.
The time has come to put these protocols into use in the operational
ARPANET, and extend the logical connectivity of the ARPANET hosts to
include hosts in other networks participating in the ARPA Internet.
As with all new systems, there will be some aspects which are not as
robust and efficient as we would like (just as with the initial
ARPANET). But with your help, these problems can be solved and we
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
can move into an environment with significantly broader communication
services.
Discussion
----------
The implementation of IP/TCP on several hosts has already been
completed, and the use of some services is underway. It is urgent
that the implementation of of IP/TCP be begun on all other ARPANET
hosts as soon as possible and no later than 1 January 1982 in any
case. Any new host connected to the ARPANET should only implement
IP/TCP and TCP-based services. Several important implementation
issues are discussed in the last section of this memo.
Because all hosts can not be converted to TCP simultaneously, and
some will implement only IP/TCP, it will be necessary to provide
temporarily for communication between NCP-only hosts and TCP-only
hosts. To do this certain hosts which implement both NCP and IP/TCP
will be designated as relay hosts. These relay hosts will support
Telnet, FTP, and Mail services on both NCP and TCP. These relay
services will be provided beginning in November 1981, and will be
fully in place in January 1982.
Initially there will be many NCP-only hosts and a few TCP-only hosts,
and the load on the relay hosts will be relatively light. As time
goes by, and the conversion progresses, there will be more TCP
capable hosts, and fewer NCP-only hosts, plus new TCP-only hosts.
But, presumably most hosts that are now NCP-only will implement
IP/TCP in addition to their NCP and become "dual protocol" hosts.
So, while the load on the relay hosts will rise, it will not be a
substantial portion of the total traffic.
The next section expands on this plan, and the following section
gives some milestones in the transition process. The last section
lists the key documents describing the new protocols and services.
Appendices present scenarios for use of the relay services.
The General Plan
----------------
The goal is to make a complete switch over from the NCP to IP/TCP by
1 January 1983.
It is the task of each host organization to implement IP/TCP for
its own hosts. This implementation task must begin by
1 January 1982.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
IP:
This is specified in RFCs 791 and 792. Implementations exist
for several machines and operating systems. (See <a href="#appendix-D">Appendix D</a>.)
TCP:
This is specified in <a href="./rfc793">RFC793</a>. Implementations exist for several
machines and operating systems. (See <a href="#appendix-D">Appendix D</a>.)
It is not enough to implement the IP/TCP protocols, the principal
services must be available on this IP/TCP base as well. The
principal services are: Telnet, File Transfer, and Mail.
It is the task of each host organization to implement the
principal services for its own hosts. These implementation tasks
must begin by 1 January 1982.
Telnet:
This is specified in <a href="./rfc764">RFC 764</a>. It is very similar to the Telnet
used with the NCP. The primary differences are that the ICP is
eliminated, and the NCP Interrupt is replaced with the TCP
Urgent.
FTP:
This is specified in <a href="./rfc765">RFC 765</a>. It is very similar to the FTP
used with the NCP. The primary differences are that in
addition to the changes for Telnet, that the data channel is
limited to 8-bit bytes so FTP features to use other
transmission byte sizes are eliminated.
Mail:
This is specified in <a href="./rfc788">RFC 788</a>. Mail is separated completely
from FTP and handled by a distinct server. The procedure is
similar in concept to the old FTP/NCP mail procedure, but is
very different in detail, and supports additional functions --
especially mail relaying, and multi-recipient delivery.
Beyond providing the principal services in the new environment, there
must be provision for interworking between the new environment and
the old environment between now and January 1983.
For Telnet, there will be provided one or more relay hosts. A
Telnet relay host will implement both the NCP and TCP environments
and both user and server Telnet in both environments. Users
requiring Telnet service between hosts in different environments
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
will first connect to a Telnet relay host and then connect to the
destination host. (See <a href="#appendix-A">Appendix A</a>.)
For FTP, there will be provided one or more relay hosts. An FTP
relay host will implement both the NCP and TCP environments, both
user and server Telnet, and both user and server FTP in both
environments. Users requiring FTP service between hosts in
different environments will first connect via Telnet to an FTP
relay host, then use FTP to move the file from the file donor host
to the FTP relay host, and finally use FTP to move the file from
the FTP relay host to the file acceptor host. (See <a href="#appendix-B">Appendix B</a>.)
For Mail, hosts will implement the new Simple Mail Transfer
Protocol (SMTP) described in <a href="./rfc788">RFC 788</a>. The SMTP procedure provides
for relaying mail among several protocol environments. For
TCP-only hosts, using SMTP will be sufficient. For NCP-only hosts
that have not been modified to use SMTP, the special syntax
"user.host@forwarder" may be used to relay mail via one or more
special forwarding host. Several mail relay hosts will relay mail
via SMTP procedures between the NCP and TCP environments, and at
least one special forwarding host will be provided. (See
<a href="#appendix-C">Appendix C</a>.)
Milestones
----------
First Internet Service already
A few hosts are TCP-capable and use TCP-based services.
First TCP-only Host already
The first TCP-only host begins use of TCP-based services.
Telnet and FTP Relay Service already
Special relay accounts are available to qualified users with a
demonstrated need for the Telnet or FTP relay service.
Ad Hoc Mail Relay Service already
An ad hoc mail relay service using the prototype MTP (<a href="./rfc780">RFC 780</a>) is
implemented and mail is relayed from the TCP-only hosts to
NCP-only hosts, but not vice versa. This service will be replaced
by the SMTP service.
Last NCP Conversion Begins Jan 82
The last NCP-only host begins conversion to TCP.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Mail Relay Service Jan 82
The SMTP (<a href="./rfc788">RFC 788</a>) mail service begins to operate and at least one
mail relay host is operational, and at least one special forwarder
is operational to provide NCP-only host to TCP-only host mail
connectivity.
Normal Internet Service Jul 82
Most hosts are TCP-capable and use TCP-based services.
Last NCP Conversion Completed Nov 82
The last NCP-only host completes conversion to TCP.
Full Internet Service Jan 83
All hosts are TCP-capable and use TCP-based services. NCP is
removed from service, relay services end, all services are
TCP-based.
Documents
---------
The following RFCs document the protocols to be implemented in the
new IP/TCP environment:
IP <a href="./rfc791">RFC 791</a>
ICMP <a href="./rfc792">RFC 792</a>
TCP <a href="./rfc793">RFC 793</a>
Telnet <a href="./rfc764">RFC 764</a>
FTP <a href="./rfc765">RFC 765</a>
SMTP <a href="./rfc788">RFC 788</a>
Name Server IEN 116
Assigned Numbers <a href="./rfc790">RFC 790</a>
These and associated documents are to be published in a notebook, and
other information useful to implementers is to be gathered. These
documents will be made available on the following schedule:
Internet Protocol Handbook Jan 82
Implementers Hints Jan 82
SDC IP/TCP Specifications Jan 82
Expanded Host Table Jan 82
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Implementation Issues
---------------------
There are several implementation issues that need attention, and
there are some associated facilities with these protocols that are
not necessarily obvious. Some of these may need to be upgraded or
redesigned to work with the new protocols.
Name Tables
Most hosts have a table for converting character string names of
hosts to numeric addresses. There are two effects of this
transition that may impact a host's table of host names: (1) there
will be many more names, and (2) there may be a need to note the
protocol capability of each host (SMTP/TCP, SMTP/NCP, FTP/NCP,
etc.).
Some hosts have kept this table in the operating system address
space to provide for fast translation using a system call. This
may not be practical in the future.
There may be applications that could take alternate actions if
they could easily determine if a remote host supported a
particular protocol. It might be useful to extend host name
tables to note which protocols are supported.
It might be necessary for the host name table to contain names of
hosts reachable only via relays if this name table is used to
verify the spelling of host names in application programs such as
mail composition programs.
It might be advantageous to do away with the host name table and
use a Name Server instead, or to keep a relatively small table as
a cache of recently used host names.
A format, distribution, and update procedure for the expanded host
table will be published soon.
Mail Programs
It may be possible to move to the new SMTP mail procedures by
changing only the mailer-daemon and implementing the SMTP-server,
but in some hosts there may be a need to make some small changes
to some or all of the mail composition programs.
There may be a need to allow users to identify relay hosts for
messages they send. This may require a new command or address
syntax not now currently allowed.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
IP/TCP
Continuing use of IP and TCP will lead to a better understanding
of the performance characteristics and parameters. Implementers
should expect to make small changes from time to time to improve
performance.
Shortcuts
There are some very tempting shortcuts in the implementation of IP
and TCP. DO NOT BE TEMPTED! Others have and they have been
caught! Some deficiencies with past implementations that must be
remedied and are not allowed in the future are the following:
IP problems:
Some IP implementations did not verify the IP header
checksum.
Some IP implementations did not implement fragment
reassembly.
Some IP implementations used static and limited routing
information, and did not make use of the ICMP redirect
message information.
Some IP implementations did not process options.
Some IP implementations did not report errors they detected
in a useful way.
TCP problems:
Some TCP implementations did not verify the TCP checksum.
Some TCP implementations did not reorder segments.
Some TCP implementations did not protect against silly
window syndrome.
Some TCP implementations did not report errors they detected
in a useful way.
Some TCP implementations did not process options.
Host problems:
Some hosts had limited or static name tables.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Relay Service
The provision of relay services has started. There are two
concerns about the relay service: (1) reliability, and (2) load.
The reliability is a concern because relaying puts another host in
the chain of things that have to all work at the same time to get
the job done. It is desirable to provide alternate relay hosts if
possible. This seems quite feasible for mail, but it may be a bit
sticky for Telnet and FTP due to the need for access control of
the login accounts.
The load is a potential problem, since an overloaded relay host
will lead to unhappy users. This is another reason to provide a
number of relay hosts, to divide the load and provide better
service.
A Digression on the Numbers
How bad could it be, this relay load? Essentially any "dual
protocol" host takes itself out of the game (i.e., does not need
relay services). Let us postulate that the number of NCP-only
hosts times the number of TCP-only hosts is a measure of the relay
load.
Total Hosts Dual Hosts NCP Hosts TCP Hosts "Load" Date
200 20 178 2 356 Jan-82
210 40 158 12 1896 Mar-82
220 60 135 25 3375 May-82
225 95 90 40 3600 Jul-82
230 100 85 45 3825 Sep-82
240 125 55 60 3300 Nov-82
245 155 20 70 1400 Dec-82
250 170 0 80 0 31-Dec-82
250 0 0 250 0 1-Jan-83
This assumes that most NCP-only hosts (but not all) will become to
dual protocol hosts, and that 50 new host will show up over the
course of the year, and all the new hosts are TCP-only.
If the initial 200 hosts immediately split into 100 NCP-only and
100 TCP-only then the "load" would be 10,000, so the fact that
most of the hosts will be dual protocol hosts helps considerably.
This load measure (NCP hosts times TCP hosts) may over state the
load significantly.
Please note that this digression is rather speculative!
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Gateways
There must be continuing development of the internet gateways.
The following items need attention:
Congestion Control via ICMP
Gateways use connected networks intelligently
Gateways have adequate buffers
Gateways have fault isolation instrumentation
Note that the work in progress on the existing gateways will
provide the capability to deal with many of these issues early in
1982. Work is also underway to provide improved capability
gateways based on new hardware late in 1982.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
APPENDIX A. Telnet Relay Scenario
Suppose a user at a TCP-only host wishes to use the interactive
services of an NCP-only service host.
1) Use the local user Telnet program to connect via Telnet/TCP to
the RELAY host.
2) Login on the RELAY host using a special account for the relay
service.
3) Use the user Telnet on the RELAY host to connect via
Telnet/NCP to the service host. Since both Telnet/TCP and
Telnet/NCP are available on the RELAY host the user must
select which is to be used in this step.
4) Login on the service host using the regular account.
+---------+ +---------+ +---------+
| | Telnet | | Telnet | |
| Local |<-------->| Relay |<-------->| Service |
| Host | TCP | Host | NCP | Host |
+---------+ +---------+ +---------+
Suppose a user at a NCP-only host wishes to use the interactive
services of an TCP-only service host.
1) Use the local user Telnet program to connect via Telnet/NCP to
the RELAY host.
2) Login on the RELAY host using a special account for the relay
service.
3) Use the user Telnet on the RELAY host to connect via
Telnet/NCP to the service host. Since both Telnet/TCP and
Telnet/NCP are available on the RELAY host the user must
select which is to be used in this step.
4) Login on the service host using the regular account.
+---------+ +---------+ +---------+
| | Telnet | | Telnet | |
| Local |<-------->| Relay |<-------->| Service |
| Host | NCP | Host | TCP | Host |
+---------+ +---------+ +---------+
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
APPENDIX B. FTP Relay Scenario
Suppose a user at a TCP-only host wishes copy a file from a NCP-only
donor host.
Phase 1:
1) Use the local user Telnet program to connect via Telnet/TCP
to the RELAY host.
2) Login on the RELAY host using a special account for the
relay service.
3) Use the user FTP on the RELAY host to connect via FTP/NCP
to the donor host.
4) FTP login on the donor host using the regular account.
5) Copy the file from the donor host to the RELAY host.
6) End the FTP session, and disconnect from the donor host.
7) Logout of the RELAY host, close the Telnet/TCP connection,
and quit Telnet on the local host.
+---------+ +---------+ +---------+
| | Telnet | | FTP | |
| Local |<-------->| Relay |<-------->| Service |
| Host | TCP | Host | NCP | Host |
+---------+ +---------+ +---------+
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Phase 2:
1) Use the local user FTP to connect via FTP/TCP to the RELAY
host.
2) FTP login on the RELAY host using the special account for
the relay service.
3) Copy the file from the RELAY host to the local host, and
delete the file from the RELAY host.
4) End the FTP session, and disconnect from the RELAY host.
+---------+ +---------+
| | FTP | |
| Local |<-------->| Relay |
| Host | TCP | Host |
+---------+ +---------+
Note that the relay host may have a policy of deleting files more
than a few hours or days old.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
APPENDIX C. Mail Relay Scenario
Suppose a user on a TCP-only host wishes to send a message to a user
on an NCP-only host which has implemented SMTP.
1) Use the local mail composition program to prepare the message.
Address the message to the recipient at his or her host. Tell
the composition program to queue the message.
2) The background mailer-daemon finds the queued message. It
checks the destination host name in a table to find the
internet address. Instead it finds that the destination host
is a NCP-only host. The mailer-daemon then checks a list of
mail RELAY hosts and selects one. It send the message to the
selected mail RELAY host using the SMTP procedure.
3) The mail RELAY host accepts the message for relaying. It
checks the destination host name and discovers that it is a
NCP-only host which has implemented SMTP. The mail RELAY host
then sends the message to the destination using the SMTP/NCP
procedure.
+---------+ +---------+ +---------+
| | SMTP | | SMTP | |
| Source |<-------->| Relay |<-------->| Dest. |
| Host | TCP | Host | NCP | Host |
+---------+ +---------+ +---------+
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Suppose a user on a TCP-only host wishes to send a message to a user
on an NCP-only non-SMTP host.
1) Use the local mail composition program to prepare the message.
Address the message to the recipient at his or her host. Tell
the composition program to queue the message.
2) The background mailer-daemon finds the queued message. It
checks the destination host name in a table to find the
internet address. Instead it finds that the destination host
is a NCP-only host. The mailer-daemon then checks a list of
mail RELAY hosts and selects one. It send the message to the
selected mail RELAY host using the SMTP procedure.
3) The mail RELAY host accepts the message for relaying. It
checks the destination host name and discovers that it is a
NCP-only non-SMTP host. The mail RELAY host then sends the
message to the destination using the old FTP/NCP mail
procedure.
+---------+ +---------+ +---------+
| | SMTP | | FTP | |
| Source |<-------->| Relay |<-------->| Dest. |
| Host | TCP | Host | NCP | Host |
+---------+ +---------+ +---------+
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
Suppose a user on a NCP-only non-SMTP host wishes to send a message
to a user on an TCP-only host. Suppose the destination user is
"Smith" and the host is "ABC-X".
1) Use the local mail composition program to prepare the message.
Address the message to "Smith.ABC-X@FORWARDER". Tell the
composition program to queue the message.
2) The background mailer-daemon finds my queued message. It
sends the message to host FORWARDER using the old FTP/NCP mail
procedure.
3) The special forwarder host converts the "user name" supplied
by the FTP/NCP mail procedure (in the MAIL or MLFL command) to
"Smith@ABC-X" (in the SMTP RCTP command) and queues the
message to be processed by the SMTP mailer-daemon program on
this same host. No conversion of the mailbox addresses in
made in thr message header or body.
4) The SMTP mailer-daemon program on the forwarder host finds
this queued message and checks the destination host name in a
table to find the internet address. It finds the destination
address and send the mail using the SMTP procedure.
+---------+ +---------+ +---------+
| | FTP | | SMTP | |
| Source |<-------->|Forwarder|<-------->| Dest. |
| Host | NCP | Host | TCP | Host |
+---------+ +---------+ +---------+
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
APPENDIX D. IP/TCP Implementation Status
Please note that the information in this section may become quickly
dated. Current information on the status of IP and TCP
implementations can be obtained from the file
<INTERNET-NOTEBOOK>TCP-IP-STATUS.TXT on ISIF.
BBN C70 UNIX
Date: 18 Nov 1981
From: Rob Gurwitz <gurwitz at BBN-RSM>
The C/70 processor is a BBN-designed system with a native
instruction set oriented toward executing the C language. It
supports UNIX Version 7 and provides for user processes with a
20-bit address space. The TCP/IP implementation for the C/70 was
ported from the BBN VAX TCP/IP, and shares all of its features.
This version of TCP/IP is running experimentally at BBN, but is
still under development. Performance tuning is underway, to make
it more compatible with the C/70's memory management system.
BBN GATEWAYS
Date: 19 Nov 1981
From: Alan Sheltzer <sheltzer at BBN-UNIX>
In an effort to provide improved service in the gateways
controlled by BBN, a new gateway implementation written in
macro-11 instead of BCPL is being developed. The macro-11 gateway
will provide users with internet service that is functionally
equivalent to that provided by the current BCPL gateways with some
performance improvements.
ARPANET/SATNET gateway at BBN (10.3.0.40),
ARPANET/SATNET gateway at NDRE (10.3.0.41),
Comsat DCN Net/SATNET gateway at COMSAT (4.0.0.39),
SATNET/UCL Net/RSRE Net gateway at UCL (4.0.0.60),
PR Net/RCC Net gateway at BBN (3.0.0.62),
PR Net/ARPANET gateways at SRI (10.3.0.51, 10.1.0.51),
PR Net/ARPANET gateway at Ft. Bragg (10.0.0.38).
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
BBN H316 and C/30 TAC
Date: 18 November 1981
From: Bob Hinden <Hinden@BBN-UNIX>
The Terminal Access Controller (TAC) is user Telnet host that
supports TCP/IP and NCP host to host protocols. It runs in 32K
H-316 and 64K C/30 computers. It supports up to 63 terminal
ports. It connects to a network via an 1822 host interface.
For more information on the TAC's design, see IEN-166.
BBN HP-3000
Date: 14 May 1981
From: Jack Sax <sax@BBN-UNIX>
The HP3000 TCP code is in its final testing stages. The code
includes under the MPE IV operating system as a special high
priority process. It is not a part of the operating system kernel
because MPE IV has no kernel. The protocol process includes TCP,
IP, 1822 and a new protocol called HDH which allows 1822 messages
to be sent over HDLC links. The protocol process has about 8k
bytes of code and at least 20k bytes of data depending on the
number of buffers allocated.
In addition to the TCP the HP3000 has user and server TELNET as
well as user FTP. A server FTP may be added later.
A complete description of the implementation software can be found
in IEN-167.
BBN PDP-11 UNIX
Date: 14 May 1981
From: Jack Haverty <haverty@BBN-UNIX>
This TCP implementation was written in C. It runs as a user
process in version 6 UNIX, with modifications added by BBN for
network access. It supports user and server Telnet.
This implementation was done under contract to DCEC. It is
installed currently on several PDP-11/70s and PDP-11/44s. Contact
Ed Cain at DCEC <cain@EDN-UNIX> for details of further
development.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
BBN TENEX & TOPS20
Date: 23 Nov 1981
From: Charles Lynn <CLynn@BBNA>
TCP4 and IP4 are available for use with the TENEX operating system
running on a Digital KA10 processor with BBN pager. TCP4 and IP4
are also available as part of TOPS20 Release 3A and Release 4 for
the Digital KL10 and KL20 processors.
Above the IP layer, there are two Internet protocols within the
monitor itself (TCP4 and GGP). In addition up to eight (actually
a monitor assembly parameter) protocols may be implemented by
user-mode programs via the "Internet User Queue" interface. The
GGP or Gateway-Gateway Protocol is used to receive advice from
Internet Gateways in order to control message flow. The GGP code
is in the process of being changed and the ICMP protocol is being
added.
TCP4 is the other monitor-supplied protocol and it has two types
of connections -- normal data connections and "TCP Virtual
Terminal" (TVT) connections. The former are used for bulk data
transfers while the latter provide terminal access for remote
terminals.
Note that TVTs use the standard ("New") TELNET protocol. This is
identical to that used on the ARPANET with NCP and in fact, is
largely implemented by the same code.
Performance improvements, support for the new address formats, and
User and Server FTP processes above the TCP layer are under
development.
BBN VAX UNIX
Date: 18 Nov 1981
From: Rob Gurwitz <gurwitz at BBN-RSM>
The VAX TCP/IP implementation is written in C for Berkeley 4.1BSD
UNIX, and runs in the UNIX kernel. It has been run on VAX 11/780s
and 750s at several sites, and is due to be generally available in
early 1982.
The implementation conforms to the TCP and IP specifications (<a href="./rfc791">RFC</a>
<a href="./rfc791">791</a>, 793). The implementation supports the new extended internet
address formats, and both GGP and ICMP. It also supports multiple
network access protocols and device drivers. Aside from ARPANET
1822 and the ACC LH/DH-11 driver, experimental drivers have also
been developed for ETHERNET. There are user interfaces for
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
accessing the IP and local network access layers independent of
the TCP.
Higher level protocol services include user and server TELNET,
MTP, and FTP, implemented as user level programs. There are also
tools available for monitoring and recording network traffic for
debugging purposes.
Continuing development includes performance enhancements. The
implementation is described in IEN-168.
COMSAT
Date: 30 Apr 1980
From: Dave Mills <Mills@ISIE>
The TCP/IP implementation here runs in an LSI-11 with a homegrown
operating system compatible in most respects to RT-11. Besides the
TCP/IP levels the system includes many of the common high-level
protocols used in the ARPANET community, such as TELNET, FTP and
XNET.
DCEC PDP-11 UNIX
Date: 23 Nov 1981
From: Ed Cain <cain@EDN-UNIX>
This TCP/IP/ICMP implementation runs as a user process in version
6 UNIX, with modifications obtained from BBN for network access.
IP reassembles fragments into datagrams, but has no separate IP
user interface. TCP supports user and server Telnet, echo,
discard, internet mail, and a file transfer service. ICMP
generates replies to Echo Requests, and sends Source-Quench when
reassembly buffers are full.
Hardware - PDP-11/70 and PDP-11/45 running UNIX version 6, with
BBN IPC additions. Software - written in C, requiring 25K
instruction space, 20K data space. Supports 10 connections.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
DTI VAX
Date: 15 May 1981
From: Gary Grossman <grg@DTI)>
Digital Technology Incorporated (DTI) IP/TCP for VAX/VMS
The following describes the IP and TCP implementation that DTI
plans to begin marketing in 4th Quarter 1981 as part of its
VAX/VMS network software package.
Hardware: VAX-11/780 or /750. Operating System: DEC standard
VAX/VMS Release 2.0 and above. Implementation Language: Mostly
C, with some MACRO. Connections supported: Maximum of 64.
User level protocols available: TELNET, FTP, and MTP will be
available. (The NFE version uses AUTODIN II protocols.)
MIT MULTICS
Date: 13 May 1981
From: Dave Clark <Clark@MIT-Multics>
Multics TCP/IP is implemented in PL/1 for the HISI 68/80. It has
been in experimental operation for about 18 months; it can be
distributed informally as soon as certain modifications to the
system are released by Honeywell. The TCP and IP package are
currently being tuned for performance, especially high throughput
data transfer.
Higher level services include user and server telnet, and a full
function MTP mail forwarding package.
The TCP and IP contain good logging and debugging facilities,
which have proved useful in the checkout of other implementations.
Please contact us for further information.
SRI LSI-11
Date: 15 May 1981
From: Jim Mathis <mathis.tscb@Sri-Unix>
The IP/TCP implementation for the Packet Radio terminal interface
unit is intended to run on an LSI-11 under the MOS real-time
operating system. The TCP is written in MACRO-11 assembler
language. The IP is currently written in assembler language; but
is being converted into C. There are no plans to convert the TCP
from assembler into C.
<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="./rfc801">RFC 801</a> November 1981</span>
NCP/TCP Transition Plan
The TCP implements the full specification. The TCP appears to be
functionally compatible with all other major implementations. In
particular, it is used on a daily basis to provide communications
between users on the Ft. Bragg PRNET and ISID on the ARPANET.
The IP implementation is reasonably complete, providing
fragmentation and reassembly; routing to the first gateway; and a
complete host-side GGP process.
A measurement collection mechanism is currently under development
to collect TCP and IP statistics and deliver them to a measurement
host for data reduction.
UCLA IBM
Date: 13 May 1981
From: Bob Braden <Braden@ISIA>
Hardware: IBM 360 or 370, with a "Santa Barbara" interface to the
IMP.
Operating System: OS/MVS with ACF/VTAM. An OS/MVT version is
also available. The UCLA NCP operates as a user job, with its own
internal multiprogramming and resource management mechanisms.
Implementation Language: BAL (IBM's macro assembly language)
User-Level Protocols Available: User and Server Telnet
Postel [Page 21]
</pre>
|