GNU/Linux >> Tutoriales Linux >  >> Linux

Cómo instalar y configurar telnet en RHEL/CentOS 5,6

Se recomienda utilizar ssh en lugar de telnet para conectarse a un sistema remoto por motivos de seguridad. Las contraseñas se transmiten en texto sin formato cuando utiliza Telnet. Si aún desea utilizar telnet, siga los pasos a continuación.

Instalar telnet

1. Para activar Telnet, asegúrese de tener el servidor telnet correcto. y telnet RPM instalados. Para verificar si tiene instalados los paquetes de telnet, use el siguiente comando.

# rpm -qa | grep telnet
telnet-server-0.17-26.EL3.2
telnet-0.17-26.EL3.2

2. Si no tiene instalados los paquetes telnet-server o telnet, puede instalarlos con los RPM disponibles en su medio de instalación o puede usar la utilidad yum para descargar e instalar los paquetes. Por ejemplo:

# yum install telnet-server telnet

Habilitar telnet

Una vez que tenga los paquetes instalados, consulte el /etc/xinetd.d/telnet archivo y asegúrese de que disable =yes se cambia para leer disable =no .

# vi /etc/xinetd.d/telnet
# default: on
# description: The telnet server serves telnet sessions; it uses \\
#       unencrypted username/password pairs for authentication.
service telnet
{
        flags           = REUSE
        socket_type     = stream

        wait            = no
        user            = root
        server          = /usr/sbin/in.telnetd
        log_on_failure  += USERID
        disable         = no
}

2. Si la siguiente línea no está comentada en /etc/xinetd.conf, agregue telnet al archivo.

# vi /etc/xinetd.conf
enabled = telnet

Activar el servidor telnet

1. Encienda el servidor Telnet usando chkconfig comando y luego haga que el servicio esté disponible para su uso inmediato con el servicio dominio.

Nota :Debe ser root para usar estos comandos. Además, si obtiene "comando no encontrado", es posible que deba usar la ruta completa del comando. Por ejemplo, para encontrar la ruta completa del comando chkconfig, escriba which chkconfig y obtendrá la ruta completa:/sbin/chkconfig.
# chkconfig --list telnet
telnet          off
# chkconfig telnet on
# chkconfig --list telnet
telnet          on

El comando chkconfig hará que el servidor Telnet esté disponible para iniciarse la próxima vez que se reinicie el sistema.

2. Notará que Telnet es parte del demonio xinetd. Para que el servicio Telnet esté disponible de inmediato, use el comando de servicio para reiniciar el demonio xinetd.

# service xinetd restart
Stopping xinetd:                                           [  OK  ]
Starting xinetd:                                           [  OK  ]

Verificar

Ahora debería poder conectarse con Telnet al servidor con éxito:

# telnet 192.168.10.10
Trying 192.168.10.10...
Connected to 192.168.10.10
Escape character is '^]'.
[snip]
login: user
Password:
Last login: Sat Nov  2 14:46:57 from 172.168.21.21
CentOS / RHEL 7:Cómo instalar y configurar telnet


Linux
  1. CentOS/RHEL 7:Cómo instalar y configurar telnet

  2. Cómo instalar y configurar Samba en CentOS/RHEL

  3. CentOS / RHEL 4:Cómo instalar y configurar el servidor FTP (vsftpd)

  4. CentOS / RHEL 5:Cómo instalar y configurar el servidor vsftpd

  5. Cómo instalar y configurar Kerberos en CentOS/RHEL 7

Cómo instalar y configurar Nagios Core en CentOS 8 / RHEL 8

Cómo instalar y configurar el servidor VNC en CentOS 7 / RHEL 7

Cómo instalar y configurar Jenkins en CentOS 8 / RHEL 8

Cómo instalar y configurar GlusterFS en CentOS 7/CentOS 8

Cómo instalar y configurar MariaDB en CentOS/RHEL 7

Cómo instalar y configurar el servidor VNC en CentOS/RHEL 8