ezcuzi
Usuario (Argentina)
You could try regenerating all of your server keys (it can't hurt, unless you have clients that expect the old keys): ssh-keygen -t rsa1 -f /etc/ssh/ssh_host_key -N '' ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' Note that '' is two single quotes, not a double quote. The error about looking for RSA1 keys in the RSA and DSA files seems strange though. If regenerating keys doesn't work you should post your sshd_config. Luego /etc/init.d/ssh restart.
Hay que tener preinstalado estos paquetes, inetutils-inetd tftpd tftp ######################################## Configuración Crea el directorio /srv/tftp y ponle permisos para nobody. Aquí estarán los ficheros que gestionará el servidor. # mkdir /srv/tftp 1.chown nobody /srv/tftp 2.chmod 0600 /srv/tftp Edita el fichero /etc/inetd.conf y asegurate de que contiene esta línea (o des-coméntala si ya la tiene): tftp dgram udp wait nobody /usr/sbin/tcpd /usr/sbin/in.tftpd /srv/tftp Y reinicia/arranca el superserver: # /etc/init.d/inetutils-inetd restart Para probarlo, Pruébalo con el cliente: $ tftp example.org tftp> binary tftp> get loquesea.mp3 Received 2784015 bytes in 1.1 seconds tftp> put otracosa.ogg Sent 2784015 bytes in 0.4 seconds tftp> quit ######################################################## Me pareció piola postearlo porque no lo configuro seguido y cuando lo necesito no me acuerdo como hacerlo. ########################################################