- 安装服务器:
sudo apt-get install tftpd-hpa tftp-hpa
- 创建服务器根目录:
mkdir tftpboot chmod 777 tftpboot
- 编辑配置文件:
sudo vi /etc/default/tftpd-hpa
- 编辑内容:
# /etc/default/tftpd-hpa TFTP_USERNAME="tftp" TFTP_DIRECTORY="/home/linux/tftpboot/" # 根目录路径 TFTP_ADDRESS="0.0.0.0:69" # IP 和端口号 TFTP_OPTIONS="-c -l -s" # 运行参数
- 重启服务:
sudo service tftpd-hpa restart
- 测试使用:
touch test.txt tftp 127.0.0.1 > put test.txt > quit
- 可以在
tftp
根目录找到test.txt