如何在 ubuntu 14.04 中设置 tftp 服务器

如何在 ubuntu 14.04 中设置 tftp 服务器

我试图在我的计算机上设置一个 tftp 服务器,但没有成功。

我尝试过以下两种方式引导无果

$ sudo tftp localhost
tftp> get pippo.txt
Transfer timed out.

答案1

确保你正在从当前目录发送文件。还有一件事你可以检查,那就是编辑 tftp 服务文件/etc/xinetd.d/tftp

像这样设置

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

相关内容