ubuntu11.04环境tftp Transfer timed out.
为伊痴狂 2012-07-11 02:55:45 tftp localhost
tptp>get test.c
xinetd start/running, process 2204
zcg@zcg-Opt:~$ tftp localhost
tftp> get test.c
Transfer timed out.
我的配置过程:
sudo apt-get install tftpd tftp xinetd
创建tftpboot目录,并赋权限777 -R
修改文件sudo vi /etc/xinetd.d/tftp
service tftp
{
protocol = udp
socket_type = dgram
wait = yes
user = nobody
server = /usr/sbin/in.tftpd
server_args = -c /home/zcg/tftpboot
disable = no
}
后重启xinetd:sudo /etc/init.d/xinetd restart
测试:zcg@zcg-Opt:~$ tftp localhost
tftp> get test.c
Transfer timed out.
有知道的说下,以前没遇到这个问题