Pages

Sunday, June 4, 2017

Difference between FTP and TFTP

Difference between FTP and TFTP

FTP 

FTP stands for File Transfer Protocol. It is used to send/receive file from the remote computer. It is defined in RFC959. FTP establishes two connections between client system and server system, one for control information and the other for data to be transfered. Control information carry commands/response. Authentication need to be done initially by way of validating username and password. Once it is done files can be transferred between two systems. FTP handles both binary and text format files.

When a FTP client requests to connect to the FTP server, a TCP connection is being established to the FTP server's port 21 reserved for FTP. After authentication is done, another TCP connection is being established for the actual data transfer on port number 20.

TFTP

TFTP stands for Trivial File Transfer Protocol. It is defined in RFC783. It is simpler than FTP, does file transfer between client and server process but does not provide user authentication and other useful features supported by FTP. TFTP uses UDP while FTP uses TCP.

As TFTP is unreliable protocol due to UDP, it uses application layer recovery supported by UDP. This is done by embedding a small header between the UDP header and the data. This header incorporates codes for example read,write and acknowledgement along with numbering scheme which numbers 512 bytes of data. These block numbers provided are used to acknowledge the receipt and re-send the data in case of checksum failures. TFTP sends one block and waits on acknowledgement before sending another block.

The default configuration file for tftpd-hpa is /etc/default/tftpd-hpa.

The default root directory where files will be stored is /var/lib/tftpboot.                            

FTP (File Transfer Protocol)
TFTP(Trivial File Transfer Protocol)
It uses TCP port numbers 20 & 21.          
It uses UDP port number 69.
It uses TCP as transport layer protocol
It uses UDP as transport layer protocol.
FTP uses robust control commands.
TFTP uses simple control commands.
Sends data over a separate TCP  
It uses no connections because UDP is connectionless protocol.
It requires less memory and programming effort.
It requires less memory and programming effort.
It is specified in RFC959 document.
It is specified in RFC959 document.

No comments:

Post a Comment