分类: LINUX
2011-05-19 15:19:55
yum install tftp tftp-server
3 打开路径/etc/xinetd.d/tftp,配置tftp配置文件
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot -c
# disable = yes
per_source = 11
cps = 100 2
flags = IPv4
}
其中
server_args = -s /tftpboot,指出tftpboot安装目录,这是创建在根目录下
注释disable=yes或者更改disable=no
4 在/下创建tftpboot目录,并且修改权限
mkdir tftpboot
chmod 777 tftpboot/
5 启动tftp服务器
service xinetd restart
6 最后输入netstat -a|grep tftp
如果出现
udp 0 0 *:tftp *:*
代表TFTP就安装成功了