1、安装相关软件包
apt-get install tftpd (服务端)
apt-get install tftp (客户端)
apt-get install xinetd
2、建立配置文件
sudo gedit /etc/xinetd.d/tftp
输入:
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /home/xxx/tftproot
指定tfpt的文件目录 disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
3、建立tftp服务文件目录
mkdir /home/xxx/tftproot
4、重新启动服务
/etc/init.d/xinetd restart
5、安装完成,测试方法:
在/home/xxx/tftproot目录下放任意文件“hello”
然后 运行
tftp localhost
进入tftp命令行,输入
get hello /home/xxx/hello
看看是不是在/home/xxx有hello这个文件