2-3DescriptionUse the tftp get command to download a file from a TFTP server, and save it to the local storagedevice.Different from the FTP function, the working directory of a TFTP server cannot be changed or specifiedon a TFTP client. To enter another working directory, you need to modify the working directory on theTFTP server and relog in.The 3com switch 4500 supports the TFTP file size negotiation function, namely, before downloading afile, the switch requests the size of the file to be downloaded to the TFTP server, thus to ensure whetherthere is enough space on the Flash for file downloading. If the TFTP server also supports the function,when the file size is too large, the switch can know this in advance and stops the download operation tosave network resources; if the TFTP server does not support the function, the switch can only downloadthe file to its memory, and delete the file if it finds the file is too large when writing the file to the Flash.Related commands: tftp put.Examples# Download file abc.txt from the TFTP server whose IP address is 1.1.1.1 and save it as efg.txt(suppose free space of the flash memory is sufficient). tftp 1.1.1.1 get abc.txt efg.txtFile will be transferred in binary mode.Downloading file from remote tftp server, please wait......TFTP: 35 bytes received in 0 second(s).File downloaded successfully.# Download file temp.txt from the TFTP server (1.1.1.1) and save it as test1.txt (suppose that freespace of the Flash is insufficient and the TFTP server does not support file size negotiation). tftp 1.1.1.1 get temp.txt test1.txtFile will be transferred in binary mode.Downloading file from remote tftp server, please wait......Not enough space; Writing to device failed; Downloaded data will be deleted.............Deleting file successful.# Download file temp.txt from the TFTP server (1.1.1.1) and save it as test2.txt (suppose that freespace of the Flash is insufficient and the TFTP server supports file size negotiation). tftp 1.1.1.1 get temp.txt test2.txtFile will be transferred in binary mode.Downloading file from remote tftp server, please wait......Not enough space; Quit writing to device; Created file will be deleted.............Deleting file successful.tftp putSyntaxtftp tftp-server put source-file [ dest-file ]ViewUser view