sudo apt-get install tftpd tftp //安装tftp服务器端和客户端
安装xinetd
在/etc/xined.d下面建tftp文件配置如下
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = nobody
server = /usr/sbin/in.tftpd 此处为自己tftp服务器的目录地址
server_args = /srv/tftp
}
保存
安装service
命令 sudo service xinetd restart
或者是 sudo /etc/init.d/xinetd restart
启动即可
测试
tftp localhost
put 文件名
get 文件名
文章评论(0条评论)
登录后参与讨论