日期:2014-05-16  浏览次数:20692 次

ubuntu11.04环境tftp Transfer timed out.
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.

有知道的说下,以前没遇到这个问题


------解决方案--------------------
同样遇到这样的问题
望高人解决
------解决方案--------------------
http://www.360doc.com/content/10/0428/11/496343_25245558.shtml
楼主要不也尝试一下这样
我这边可以工作了