1,首先,安装tftp客户端和服务端
apt-get install tftp tftpd
2,安装xinetd,因为默认下用的是openbsd-inetd
apt-get install xinetd
3,tftp服务器配置inetd.conf,將/etc/inetd.conf中关于tftp的部份注释删掉。
4,在/etc/xinetd.d/下新建一个tftp的文件
vim /etc/xinetd.d/tftp
5,tftp服务器配置中添加如下内容:
- service tftp
- {
- socket_type = dgram
- protocol = udp
- wait = yes
- user = root
- server = /usr/sbin/in.tftpd
- server_args = -s /home/creater/image #替换为你的目录,注意权限
- disable = no
- per_source = 11
- cps = 1002
- flags = IPv4
- }
- /etc/init.d/xinetd reload
- /etc/init.d/xinetd restart
7,验证TFTP服务器是否启动
netstat -a | grep tftp