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
可是却总是失败 |