Como configurar um servidor tftp no ubuntu 14.04

0

Estou tentando configurar um servidor tftp no meu computador, sem sucesso.

Eu tentei seguir os dois este e < href="https://sobrelinux.info/questions/1757/how-do-i-install-and-run-a-tftp-server"> este guia sem sucesso

$ sudo tftp localhost
tftp> get pippo.txt
Transfer timed out.
    
por suppamax 02.03.2015 / 23:34

1 resposta

0

verifique se você está enviando o arquivo do diretório atual. E mais uma coisa que você pode verificar é editar o arquivo de serviço tftp em /etc/xinetd.d/tftp

faça a configuração assim

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