目录
1、安装tftp软件包
yum install tftp.x86_64
yum install tftp-server.x86_64
查看安装状态:
yum list installed | grep tftp
linux中很多轻量级服务都是使用xinetd来开启的,继续安装xinetd:
yum install xinetd.x86_64
再查看一下安装状态:
yum list installed | grep xinetd
2、进行相关基础配置
vim /etc/xinetd.d/tftp
# default: off
# description: The tftp server serves files using the trivial file transfer \
# protocol. The tftp protocol is often used to boot diskless \
# workstations, download configuration files to network-aware printers, \
# and to start the installation process for some operating systems.
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /var/lib/tftpboot/20200629 -c
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
server_args为文件目录的存放位置,disable修改为no表示启用tftp功能
此外需要给server_args的路径添加权限:
chmod 0777 /var/lib/tftpboot/20200629
启动tftp的服务:
systemctl start xinetd.service
打开防火墙的UDP的69端口:
firewall-cmd --zone=public --add-port=69/udp–permanent
firewall-cmd –reload
至此一台TFTP服务器搭建完成了