Estoy instalando Ubuntu Server 13.10 y no puedo hacer que Telnet funcione en el servidor. Instalé xinet.d y telnetd a través de apt-get y reinicié xinetd, pero no se inicia nada cuando hago una netstat -l
. En Google, el problema que veo menciona al agregar telnet stream tcp wait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
línea /etc/inetd.conf
. Yo no tengo inetd.conf
. Veo que inetd ha sido depracado y puse la línea xinetd.conf
y reinicié el servicio xinetd pero aún no escucho telnet. ¿Alguien puede aconsejarme sobre cuáles son las configuraciones adecuadas para el servidor telnet y en qué archivos deben estar? Aquí está el contenido de mi xinetd.conf
archivo:
# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
# Please note that you need a log_type line to be able to use log_on_success
# and log_on_failure. The default is the following :
# log_type = SYSLOG daemon info
}
includedir /etc/xinetd.d
#:STANDARD: These are standard services.
telnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
Gracias
ssh
lugar: es seguro, más rápido (usa compresión) y tiene otras características ingeniosas, como la capacidad de reenviar puertos./etc/inetd.conf
yxinetd.conf
usas el mismo formato. Ha leídoman xinetd
,man -k xinetd
,man inetd
,man -k inetd
,man telnetd
? ¿Existe/etc/default/telnetd
? Has hechogrep telnet /var/log/*
?Respuestas:
Después de instalar telnetd y xinetd con comando
sudo apt-get install xinetd telnetd
Crear archivo
telnet
y ponerlo/etc/xinetd.d
sudo nano /etc/xinetd.d/telnet
Reiniciar el servicio xinetd
sudo service xinetd restart
En
xinetd.conf
tienesincludedir /etc/xinetd.d
y no necesitas líneatelnet stream tcp nowait telnetd /usr/sbin/tcpd /usr/sbin/in.telnetd
Bórralo.
En el archivo telnet puede agregar más opciones como:
fuente