Bài giảng TCP/IP Protocol - Chapter 19: File Transfer: FTP and TFTP

Example 1 (cONTINUED) 6. The client issues a passive open on an ephemeral port for the data connection and sends the PORT command (over the control connection) to give this port number to the server. 7. The server does not open the connection at this time, but it prepares itself for issuing an active open on the data connection between port 20 (server side) and the ephemeral port received from the client. It sends response 150 (data connection will open shortly). 8. The client sends the LIST message. 9. Now the server responds with 125 and opens the data connection.

ppt48 trang | Chia sẻ: thanhle95 | Lượt xem: 353 | Lượt tải: 0download
Bạn đang xem trước 20 trang tài liệu Bài giảng TCP/IP Protocol - Chapter 19: File Transfer: FTP and TFTP, để xem tài liệu hoàn chỉnh bạn click vào nút DOWNLOAD ở trên
Chapter 19Upon completion you will be able to:File Transfer:FTP and TFTP Understand the connections needed for FTP file transfer Be familiar with FTP commands and responses Know the differences between FTP and TFTP Be familiar with TFTP message types Understand TFTP flow and error controlObjectives 1TCP/IP Protocol Suite19.1 FILE TRANSFER PROTOCOL (FTP)File Transfer Protocol (FTP) is the standard mechanism provided by TCP/IP for copying a file from one host to another. The topics discussed in this section include:Connections Communication Command Processing File Transfer Anonymous FTP 2TCP/IP Protocol SuiteFTP uses the services of TCP. It needs two TCP connections.The well-known port 21 is used for the control connection and the well-known port 20 for the data connection.Note:3TCP/IP Protocol SuiteFigure 19.1 FTP4TCP/IP Protocol SuiteFigure 19.2 Opening the control connection5TCP/IP Protocol SuiteFigure 19.3 Creating the data connection6TCP/IP Protocol SuiteFigure 19.4 Using the control connection7TCP/IP Protocol SuiteFigure 19.5 Using the data connection8TCP/IP Protocol SuiteFigure 19.6 Command processing9TCP/IP Protocol SuiteTable 19.1 Access commands10TCP/IP Protocol SuiteTable 19.2 File management commands11TCP/IP Protocol SuiteTable 19.3 Data formatting commands12TCP/IP Protocol SuiteTable 19.4 Port defining commands13TCP/IP Protocol SuiteTable 19.5 File transfer commands14TCP/IP Protocol SuiteTable 19.5 File transfer commands (continued)15TCP/IP Protocol SuiteTable 19.6 Miscellaneous commands16TCP/IP Protocol SuiteTable 19.7 Responses17TCP/IP Protocol SuiteTable 19.7 Responses (continued)18TCP/IP Protocol SuiteTable 19.7 Responses (continued)19TCP/IP Protocol SuiteTable 19.7 Responses (continued)Table 19.7 Responses (continued)20TCP/IP Protocol SuiteTable 19.7 Responses (continued)Table 19.7 Responses (continued)21TCP/IP Protocol SuiteFigure 19.7 File transfer22TCP/IP Protocol SuiteFigure 19.8 shows an example of using FTP for retrieving a list of items in a directory.1. After the control connection to port 21 is created, the FTP server sends the 220 (service ready) response on the control connection. 2. The client sends the USER command. 3. The server responds with 331 (user name is OK, password is required). 4. The client sends the PASS command.5. The server responds with 230 (user login is OK)Example 1See Next Slide23TCP/IP Protocol Suite 6. The client issues a passive open on an ephemeral port for the data connection and sends the PORT command (over the control connection) to give this port number to the server. 7. The server does not open the connection at this time, but it prepares itself for issuing an active open on the data connection between port 20 (server side) and the ephemeral port received from the client. It sends response 150 (data connection will open shortly). 8. The client sends the LIST message. 9. Now the server responds with 125 and opens the data connection.Example 1 (cONTINUED)See Next Slide24TCP/IP Protocol Suite10. The server then sends the list of the files or directories (as a file) on the data connection. When the whole list (file) is sent, the server responds with 226 (closing data connection) over the control connection. 11. The client now has two choices. It can use the QUIT command to request the closing of the control connection or it can send another command to start another activity (and eventually open another data connection). In our example, the client sends a QUIT command. 12. After receiving the QUIT command, the server responds with 221 (service closing) and then closes the control connection.Example 1 (cONTINUED)See Next Slide25TCP/IP Protocol SuiteFigure 19.8 Example 126TCP/IP Protocol SuiteThe following shows an actual FTP session that parallels Example 1. The colored lines show the responses from the server control connection; the black lines show the commands sent by the client. The lines in white with black background shows data transfer.Example 2See Next Slide$ ftp voyager.deanza.fhda.edu Connected to voyager.deanza.fhda.edu. 220 (vsFTPd 1.2.1) 530 Please login with USER and PASS. Name (voyager.deanza.fhda.edu:forouzan): forouzan 331 Please specify the password.27TCP/IP Protocol SuiteExample 2Password: 230 Login successful. Remote system type is UNIX. Using binary mode to transfer files. ftp> ls reports 227 Entering Passive Mode (153,18,17,11,238,169) 150 Here comes the directory listing.drwxr-xr-x 2 3027 411 4096 Sep 24 2002 business drwxr-xr-x 2 3027 411 4096 Sep 24 2002 personal drwxr-xr-x 2 3027 411 4096 Sep 24 2002 school226 Directory send OK. ftp> quit 221 Goodbye.28TCP/IP Protocol SuiteFigure 19.9 shows an example of how an image (binary) file is stored. 1. After the control connection to port 21 is created, the FTP server sends the 220 (service ready) response on the control connection. 2. The client sends the USER command. 3. The server responds with 331 (user name is OK, a password is required). 4. The client sends the PASS command. 5. The server responds with 230 (user login is OK). 6. The client issues a passive open on an ephemeral port for the data connection and sends the PORT command (over the control connection) to give this port number to the server.Example 3See Next Slide29TCP/IP Protocol Suite7. The server does not open the connection at this time, but prepares itself for issuing an active open on the data connection between port 20 (server side) and the ephemeral port received from the client. It sends the response 150 (data connection will open shortly). 8. The client sends the TYPE command. 9. The server responds with the response 200 (command OK). 10. The client sends the STRU command. 11. The server responds with 200 (command OK). 12. The client sends the STOR command. 13. The server opens the data connection and sends the response 250.Example 3 (cONTINUED)See Next Slide30TCP/IP Protocol Suite14. The client sends the file on the data connection. After the entire file is sent, the data connection is closed. Closing the data connection means end-of-file. 15. The server sends the response 226 on the control connection. 16. The client sends the QUIT command or uses other commands to open another data connection for transferring another file. In our example, the QUIT command is sent. 17. The server responds with 221 (service closing) and it closes the control connection.Example 3 (cONTINUED)See Next Slide31TCP/IP Protocol SuiteFigure 19.9 Example 332TCP/IP Protocol SuiteWe show an example of anonymous FTP. We assume that some public data are available at internic.net.Example 4See Next Slide$ ftp internic.net Connected to internic.net 220 Server ready Name: anonymous 331 Guest login OK, send “guest” as password Password: guest ftp > pwd 257 ’/’ is current directory33TCP/IP Protocol Suitebin . . . . . . . . .Example 4ftp > close 221 Goodbye ftp > quit34TCP/IP Protocol Suite19.2 TRIVIAL FILE TRANSFER PROTOCOL (TFTP)Trivial File Transfer Protocol (TFTP) is a simple file transfer protocol without the sophisticated features of FTP.The topics discussed in this section include:Messages Connection Data Transfer UDP Ports TFTP Example TFTP Options Security Applications 35TCP/IP Protocol SuiteTFTP uses the services of UDP on the well-known port 69.Note:36TCP/IP Protocol SuiteFigure 19.10 Message categories37TCP/IP Protocol SuiteFigure 19.11 RRQ format38TCP/IP Protocol SuiteFigure 19.12 WRQ format39TCP/IP Protocol SuiteFigure 19.13 DATA format40TCP/IP Protocol SuiteFigure 19.14 ACK format41TCP/IP Protocol SuiteFigure 19.15 ERROR format42TCP/IP Protocol SuiteTable 19.8 Error numbers and their meanings43TCP/IP Protocol SuiteFigure 19.16 Connection establishment44TCP/IP Protocol SuiteFigure 19.17 Sorcerer’s apprentice bug45TCP/IP Protocol SuiteFigure 19.18 UDP port numbers used by TFTP46TCP/IP Protocol SuiteFigure 19.19 TFTP example47TCP/IP Protocol SuiteFigure 19.20 Use of TFTP with BOOTP48TCP/IP Protocol Suite
Tài liệu liên quan