📄 rfc354.txt
字号:
Network Working Group Abhay BhushanRequest for Comments: 354 MIT-MACNIC: 10596 July 8, 1972Categories D.4, D.5, D.7Obsoletes: RFC 264 and 265 THE FILE TRANSFER PROTOCOLI. INTRODUCTION The File Transfer Protocol (FTP) is a protocol for filetransfer betweet HOSTs (including terminal IMPs), on the ARPAComputer Network (ARPANET). The primary function of FTP is totransfer files efficiently and reliably among HOSTs and to allowthe convenient use of remote file storage capabilities. The objectives of FTP are 1) to promote sharing of files(computer programs and/or data), 2) fo encourage indirect orimplicit (via programs) use of remote computers, 3) to shield auser from variations in file storage systems among HOSTs, and4) to transfer data reliably and efficiently. FTP, though usabledirectly by user at a terminal, is designed mainly for use byprograms. The attempt in this specification is to satisfy the diverseneeds of users of maxi-HOSTs, mini-HOSTs, TIPs, and theDatacomputer, with a simple, elegant, and easily implementedprotocol design. This paper assumes knowledge of the following protocols: 1) The HOST-HOST Protocol (NIC #8246) 2) The initial Connection Protocol (NIC #7101) 3) The TELNET Protocol (NWG/RFC #318, NIC #9348)II. DISCUSSION In this section, the terminology and the FTP model arediscussed. The terms defined in this section are only those thathave special significance in FTP. [Page 1]The File Transfer Protocol July 8, 197211.A. TerminologyASCII The USASCII character set as defined in NIC #7104. In FTP, ASCII characters are defined to be the lower half of an eight bit code set (i.e., the most significant bit es zero).access controls Access controls define users' access privileges to the use of a system, and to the files in that system. Access controls are necessary to prevent unauthorized or accidental use of files. It is the prerogative of a user-FTP process to provide access controls.byte size The byte size specified for the transfer of data. The data connection is opened with this byte size. Data connection byte size is not necessarily the byte size in which data is to be stored in a system, and may not be related to the structure of data.data connection A simplex connection over which data is transferred, in a specified byte size, mode and type. The data transferred may be a part of a file, an entire file or a number of files. The data connection may be in either direction (server-to-user or user-to server).data socket The socket on which a User-FTP process "listens" for a data connection.EOF The end-of-file conidition that defines the end of a file being transferred.EOR The end-of-record condition that defines the end of a record being transferred.error recovery A procedure that allows a user to recover form certain errors such as failure of either Host system or transfer process In FTP, error recovery may involve restarting a file transfer at a given checkpointFTP commands A set of commands that comprise the control information flowing from the user-FTP to the server-FTP process. [Page 2]The File Transfer Protocol July 8, 1972file An ordered set of computer data (including programs) of arbitrary length uniquely identified by a pathname.mode The mode in which data is to be transferred via the data connection. The mode defines the data format including EOR and EOF. The transfer modes defined in FTP are described in Section III.A.NVT The Network Virtual Terminal as defined in the ARPANET TELNET Protocol.NVFS The Network Virtual File System. A concept which defines a standard network file system with standard commands and pathname conventions. FTP only partially embraces the NFS concept at this time.pathname Pathname is defined to be the character string which must be input to a file system by a user in order to identify a file. Pathname normally contains device and/or directory names, and file name specification. FTP does not yet specify a standard pathname convention. Each user must follow the file naming conventions of hte file systems he wishes to use.record A sequential file may be structured as a number of contiguous parts called records. Record structures are supported by FTP but are not mandatory.reply A reply is an acknowledgment (positive or negative) sent from server to user via the telnet connections in response to FTP commands. The general form of a reply is a completion code (including error codes) followed by an ASCII text string. The codes are for use by programs and the text is for human users.server-FTP process A process or set of processes which perform the function of file transfer in cooperation with a user-FTP process. The server-FTP process must interpret and respond to user commands and initiate the data connection. [Page 3]The File Transfer Protocol July 8, 1972server site A HOST site wich has a server-FTP process.server-TELNET A TELNET process which listens on a specified socket for an ICP initiated by a user-TELNET, and perform in accordance with the ARPANET TELNET Protocol.TELNET connections The full-duplex communication path between a user-TELNET and a server-TELNET. The TELNET connections are established via the standard ARPANET initial Connection Protocol (ICP).type The data representation type used for data transfer and storage. Type implies certain transformations between the time of data storage and data transfer. The representation types defined in FTP are described in Section III.B.user A process on behalf of a human being or a human being wishing to obtain file transfer service.user site A HOST site satisfying any of the following conditions: 1) The site where a user is located, 2) a site where a user-FTP process is located, 3) a site to which a data connection is made by a server. In the normal case, the sites defined by 1, 2, and 3 are the same site, but nothing in FTP requires that this be so.user-FTP process A process or set of precesses which perform the function of file transfer in cooperation with a server-FTP process. The user-FTP process 1) initiates the ICP (via a user-TELNET, 2) initiates FTP commands and 3) "listens" on the data socket for the data connection. In some obvious cases (use from TIPs and other mini-HOSTs) a user-FTP process will be subsumed under the term "user".user-TELNET A TELNET process which initiates an ICP to a specified server-TELNET socket, and performs in accordance with the ARPANET TELNET protocol. [Page 4]The File Transfer Protocol July 8, 1972II.B. The FTP Model With the above definitions in mind, the following model(shown in Figure 1) may be diagrammed for an FTP service. TELNET connectionsFile Server Server<------------ User User FileSystems<-> FTP <->TELNET FTP Commands TELNET<->FTP <->System Process ------------> Process Data <------------------------------>Socket Data Connection(s) | | USERNotes: 1. The data connection may be in either direction. 2. The data connection need not exist all of the time. 3. The distinctions between user-FTP and user-TELNET, and between server-FTP and server-TELNET may not be as clear-cut as shown above. For example, a user- TELNET may be directly driven by the user. FIGURE 1 Model for FTP Use In the model described in Figure 1, the user-TELNETinitiates the TELNET connection. Standard FTP commands are thengenerated by the user and transmitted to the server site via the TELNETconnections. FTP commands are in ASCII, in accordance with NVTconventions and the TELNET protocol. Note that commands may be initiatedby the user directly through the user-TELNET or via a user-FTP process.Standard replies are sent from the server to the user in response to thecommands over the TELNET connections. The FTP commands specify the parameters for teh dataconnection (data socket, byte size, transfer mode, and representationtype), and the nature of file system operation (store, retrieve, append,delete, etc.). The user-FTP process or its designate should "listen" on [Page 5]The File Transfer Protocol July 8, 1972the specified data socket, and it is the server's responsibility toinitiate the data connection and data transfer in accordance with thespecified data connection parameters. It should be noted that the datasocket need not be in the same HOST that initiates the FTP commands viathe TELNET connection, but the user or his user-FTP process must ensurea "listen" on the specified data socket. A practical example of suchfile transfer to third HOSTs is a maxi-HOST user (who may actually be aTIP user) whishing to transmit a file to or from an I/O device attachedto a TIP. It should also be noted that two data connections, one forsend and the other for receive, may exist simultaneously. The protocol requires that the TELNET connections be openwhile data transfer is in progress. It is the responsibility of the userto close the TELNET connections when finished using the FTP service. Theserver may abort data transfer if the TELNET connections are closed.III. DATA TRANSFER FUNCTIONS Data and files are transferred only via the data connection.The data transfer of data is governed by FTP data transfer commandsreceived on the TELNET connections. The data transfer functions includeestablishing the data connection to the specified data socket in thespecified HOST (using the specified byte size), transmitting andreceiving data in the specified representation type and transfer mode,handling EOR and EOF conditions and error recovery (where applicable).III.A Establishing Data Connection The user site shall "listen" on the specified data socket.The FTP request command determines the direction of data transfer, andthe socket number (odd or even) which is to be used in establishing thedata connection. The server on receiving the appropriate store orretrieve request shall initiate the data connection to the specifieduser data socket in the specified byte size (default byte size is 8bits) and send a reply indicating that file transfer may proceed. Priorto this the server should send a reply indicating the server socket forthe data connection. The user may use this server socket information toensure the security of his data transfer. The server may send this replyeither before of after initiating the data connection. The byte size for the data connection is specified by theTYPE (ASCII is 8 bits), or TYPE and BYTE commands. It is not required bythe protocol that servers accept all possible byte size. The user ofvarious byte size is for efficiency in data transfer and servers mayimplement only those byte size for which their data transfer isefficient. It is however recommended that servers implement at least thebyte size of 8 bits. [Page 6]The File Transfer Protocol July 8, 1972 After the data transfer is completed, it is the server'sresponsibility to close the data connection except when the user issender of data. The data connection shall be closed under any of thefollowing conditions: 1) server receives an abort command form user. 2) EOF in stream mode indicated by closing data connection.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -