The Trivial File Transfer Protocol (TFTP) is a very simple file transfer protocol. It was developed in 1981 on the basis of EFTP. TFTP only supports reading or writing files. Not available are many features of the more powerful FTP such as chmod permissions, display of existing files or user authentication.
Unlike FTP, which requires a connection-oriented transport protocol, TFTP is normally operated using a connectionless protocol such as UDP. However, there is a similarity to FTP in that the data is not transferred in the same connection as the control commands. The client requests an action (read/write) on port 69, but the server does not send with port 69 as the source port, as known from DNS, for example (with port 53). Client and server rather choose so-called Transfer IDentifiers (TID). These TIDs correspond to the UDP port on the respective page and range from 1024 to 65535.
The motivation for developing TFTP was to load operating systems or configurations via the network. Since this is usually done from a firmware or a small bootloader, the connection-oriented TCP and the FTP based on it are much too complex for this purpose. TFTP, on the other hand, was deliberately kept simple with the functions:
Source: https://de.wikipedia.org/wiki/Trivial_File_Transfer_Protocol