系统:ubuntu16
配置服务端
1. 安装xinetd
#sudo apt-get install xinetd
2. 安装tftp和tftpd
sudo apt-get install tftp tftpd
3. 修改配置文件
/etc/xinetd.d/tftp
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/tftpboot/
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
4. 创建服务器目录
sudo mkdir -pv /var/tftpboot
sudo chmod 777 /var/tftpboot
5. 启动tftp服务
sudo /etc/init.d/xinetd start
6. 测试
tftp 127.0.0.1
>get file
>q
7. 查看服务是否开启
netstat -a | grep tftp
8. 配置开启启动
/etc/rc.local增加
/etc/init.d/xinetd start
9. 说明
默认占用的是69端口
客户端(busybox中的)
1. 获取文件
tftp -g -r file ip
-g表示下载文件(get)
-p表示上传文件(put)
-l表示本地文件名(local file)
-r表示远程主机的文件名(remote file)