作为一名网络工程师,经常需要给各种品牌的网络设备进行IOS升级操作,试想,当网络设备数量众多时,我们怎么才能批量升级呢。这时,我们就需要架设一台TFTP服务器了,也就是本文要讲的主要内容。

1、安装tftp服务

yum install tftp-server

2、编辑/etc/xinetd.d/tftp文件,修改disable 和server_args属性,配置模板如下:


3、开启服务,设置为开机自启动服务

   systemctl start xinetd.service

   systemctl enable xinetd.service



4、检查TFTP服务器状态

   systemctl status xinetd.service


5、验证