Wednesday, August 12, 2009

Instalando/Configurando TFTP

*-A. Instalacion del tftpd.

sudo apt-get install xinetd tftpd tftp

*-B. Creemos ahora el archivo tftp
/etc/xinetd.d/tftp

C. Y agreguemos las lineas de abajo

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


*-D. Creemos el directorio /tftpboot


sudo mkdir /tftpboot
sudo chmod -R 777 /tftpboot
sudo chown -R nobody /tftpboot



*-E. Iniciemos el servicio tftpd

sudo /etc/init.d/xinetd start (puede ser stop primero y luego start, o restart)



Y listo ... deberia estar funfionando... y si no: siga googleando...

No comments:

Post a Comment