tftp

tftp:

安装

软件包:

tftpd(服务端)tftp(客户端)xinetd

1
sudo apt-get install tftpd tftp xinetd

建立配置文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
vi /etc/xinetd.d/tftp

service tftp
{
protocol = udp
port = 69
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = /home/xxx/tftprootfs
disable = no
}

重启服务

1
sudo /etc/init.d/xinetd restart

window工具–tftpd服务

下载:tftpd32

本地测试

1
2
3
$tftp localhost
tftp> get aaa
Received 8 bytes in 0.0 seconds

开发板使用

下载:

1
tftp –gr 源文件名  服务器地址

上传:

1
tftp –pr 目标文件名 服务器地址