0

I am trying to setup a tftp server on my computer, without success.

I've tried following both this and this guide without success

$ sudo tftp localhost
tftp> get pippo.txt
Transfer timed out.
suppamax
  • 131
  • 1
  • 5
  • using the xinetd.d/tftp file suggested [here](http://forums.fedoraforum.org/showthread.php?t=191865) it worked – suppamax Mar 02 '15 at 23:08

1 Answers1

0

make sure you are sending the file from the current directory. And one more thing you can check is edit the tftp service file in /etc/xinetd.d/tftp

make the setting like this

service tftp
{
   protocol = udp
   port = 69
   socket_type = dgram
   wait = yes
   user = nobody
   server = /usr/sbin/in.tftpd
   server_args = /tftpboot -s
   disable = no
}
Ravi Sharma
  • 61
  • 1
  • 1
  • 5