tftp不能用了,所以要配置一下,但是不是每次都能上网找,得有自己的记录
所以如下配置即可
环境 REDHAT 5.4
先查看有没有安装tftp-server
rpm -qa | grep tftp
我的结果如下:
[root@localhost tftpboot]# rpm -qa | grep tftp
tftp-server-0.42-3.1
然后
vim /etc/xinetd.d/tftp
参考如下配置
service tftp
{
disable = no
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /work/tftpboot -c
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
说明:修改项server_args= -s -c,其中处可以改为你的tftp-server的根目录,参数-s指定chroot,-c指定了可以创建文件。
再如下 启动服务
[root@localhost tftpboot]# service xinetd restart
Stopping xinetd: [ OK ]
Starting xinetd: [ OK ]
[root@localhost tftpboot]# netstat -a | grep tftp
udp 0 0 *:tftp *:*
udp 0 0 *:tftp *:*
阅读(781) | 评论(0) | 转发(0) |