Enhorabuena chicos!!
Parece que vais por el buen camino para poder habilitar el telnet.
Aquí va mi granito de arena:
En el HD795T el telnet creo que se arranca desde el fichero inetd.conf del directorio /etc, aquí os pongo lo que contiene:
Código:
/etc # more inetd.conf#
# /etc/inetd.conf A simple inetd.conf
#
# <service_name> <sock_type> <proto> <flags> <user> <server_path> <args>
#
# To re-read this file after changes, just do a 'killall -HUP inetd'
#
#
#ftp stream tcp nowait root /usr/sbin/ftpd ftpd -u 100
telnet stream tcp nowait root /usr/sbin/telnetd telnetd
#auth stream tcp nowait nobody /usr/sbin/nullidentd nullidentd
#www stream tcp nowait www-data /usr/sbin/httpd httpd -h /var/www
#
# End of inetd.conf
Todo lo que empieza por # son comentarios, o sea que lo único que se arranca en este caso es el telnet.
También tendréis que comprobar que existe el "fichero" telnetd en /usr/sbin, lo pongo entre comillas porque es en realidad un link. Este es el contenido de ese directorio:
Código:
/usr/sbin # ll teln*
lrwxrwxrwx 1 root root 17 Mar 7 2011 telnetd -> ../../bin/busybox
Ánimo y saludos