下载相关软件包
#tftp-server是服务程序 tftp是用于连接测试的客户端工具,xinetd是管理服务
dnf install tftp-server tftp xinetd
安装之后,将下面内容复制到文件中
vim /etc/xinetd.d/tftp
#添加内容为下
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/lib/tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
#重启服务配置文件
systemctl restart tftp
systemctl enable tftp
systemctl restart xinetd
systemctl enable xinetd
#防火墙默认没有允许UDP协议的69端口,因此需要手动添加
firewall-cmd --zone=public --permanent --add-port=69/udp
firewall-cmd --reload
然后用客户机开始测试是否能成功下载