Linux TFTP
Linux TFTP
当前环境为Manjro Linux。
1. TFTP Server
Google 搜索Archwiki tftp
。
- 安装tftp server。
$ yay -S tftp-hpa
- 修改tftp的默认路径。
$ sudo vim /etc/conf.d/tftp
将文件中路径设置为我们的tftp server根目录。
TFTPD_ARGS="--secure /home/duapple/tftp"
- 启动服务。
设置开机启动。
$ sudo systemctl enable tftpd.service
启动服务,并查看状态。
$ sudo systemctl start tftpd.service
$ sudo systemctl status tftpd.service
- 测试。
$ tftp localhost -c get openwrt-128M.bin
2. TFTP Client
- 使用
curl
工具来实现客户端。
$ curl -T test.txt tftp://192.168.1.103
- 使用tftp-hpa。
$ tftp