公分广告词v 发表于 2020-5-13 14:47

transfer time out 问题

Ubuntu tftp的步骤:



sudo apt-get install tftpd tftp xinetd


2、建立配置文件

在/etc/xinetd.d/下建立一个配置文件tftp,

sudo vi tftp


在文件中输入以下内容:

service tftp

{socket_type = dgram

protocol = udp

wait = yes

user = root

server = /usr/sbin/in.tftpd

server_args = -s /tftpboot

disable = no

per_source = 11

cps = 100 2

flags = IPv4}

保存退出



sudo mkdir /tftpboot
sudo chmod 777 /tftpboot -R

4、重新启动服务,,


sudo /etc/init.d/xinetd restart

我已经在tftpboot目录下新建了1.txt
可是却总是失败 编辑

本机测试老是transfer time out

页: [1]
查看完整版本: transfer time out 问题