Linux Commands Helper
💬 Your AI-powered Linux assistant
tftp Command - Trivial File Transfer Protocol Client
The tftp command is used to transfer files to and from a remote TFTP server.
Syntax
tftp [options] host
Examples
tftp 192.168.1.100
Connect to TFTP server at 192.168.1.100.
tftp -m binary 192.168.1.100 -c get file.bin
Download file.bin from the TFTP server in binary mode.
Notes
- TFTP is a simple protocol that does not provide authentication or encryption.
- Commonly used in network boot environments (e.g. PXE boot).