Disable and Turn Off Telnet in Linux Inhabilitar y desconectar el telnet en linux
Telnet is an unsecured network protocol that facilitates remote login to a server via network connection. Telnet es un protocolo de red no segura que facilita login remoto a un servidor a través de una conexión de red. The protocol allows server to be located thousands of miles away from the administrator yet still can be managed even without physical console access. El protocolo permite que el servidor se encuentra a miles de millas de distancia del administrador y aún puede ser manejado incluso sin acceso a la consola física. However, Telnet has slowly replaced with SSH (Secure Shell) protocol due to security risks as the data transmission packet, including login username and password for Telnet is unencrypted, allowing hackers or crackers to easily sniff and obtain these information easily. Sin embargo, Telnet ha sustituido lentamente con SSH (Secure Shell) protocolo debido a los riesgos de seguridad como la transmisión de datos por paquetes, incluyendo nombre de usuario login y la contraseña de Telnet es sin encriptar, permitiendo que los hackers o crackers para olfatear y fácilmente obtener esta información fácilmente.
So it’sa good practice to disable Telnet service on server, especially web server which reachable from Internet, and replaced with SSH. Por lo tanto, es una buena práctica para desactivar el servicio telnet en el servidor, sobre todo que servidor web accesible desde Internet, y sustituye con SSH. For web servers that are subscribed from some web hosting providers has Telnet disabled by default. Para los servidores web que están suscritas a partir de algunos proveedores de alojamiento web ha Telnet desactivado por defecto. Webmasters or system administrators can Webmasters o los administradores del sistema pueden verify if the Telnet service is turned off verificar si el servicio telnet está apagado . If it’s still running, the following guide will provide steps to disable and turn off Telnet service. Si aún en funcionamiento, la siguiente guía proporcionará medidas para desactivar y desactivar el servicio Telnet. Telnet server listens for incoming messages on port 23, and sends outgoing messages to port 23. Telnet servidor escucha para los mensajes entrantes en el puerto 23, y envía los mensajes salientes al puerto 23.
How to Disable Telnet Cómo desactivar telnet
- SSH into server and login as root. En el servidor SSH y accediendo al sistema como root.
- At shell command prompt type the following command and press Enter. En shell de comandos escriba el comando siguiente y pulse Enter. This example use pico to edit text file, you can use vi or other text editor if you want. Este ejemplo el uso pico para editar archivos de texto, puede utilizar vi u otro editor de texto si lo desea.
pico -w /etc/xinetd.d/telnet pico-w / etc / xinetd.d / telnet
- Locate the following line: Busque la siguiente línea:
disable = no desactivar = no
Change the “disable = no” to “disable = yes” (no to yes). Cambie el "desactivar = no" para "desactivar = yes" (no para sí).
- Save and exit. Guardar y salir.
- Restart the inetd service by using the following command: Reinicia el servicio de inetd con el siguiente comando:
/etc/rc.d/init.d/xinetd restart / etc / rc.d / init.d / xinetd restart
- Turn off Telnet through chkconfig as well because it can still start through that: Apague Telnet a través de chkconfig y porque todavía puede iniciar a través de lo siguiente:
/sbin/chkconfig telnet off / sbin / chkconfig telnet off
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Se trata de una máquina que traduzca la página se proporciona "tal cual" sin garantía. Machine translation may be difficult to understand. La traducción automática puede resultar difícil de entender. Please refer to Por favor, consulte original English article artículo original Inglés whenever possible. siempre que sea posible.
Share and contribute or get technical support and help at Compartir y contribuir o recibir apoyo técnico y ayudar a My Digital Life Forums Mi vida digital Foros .
Related Articles Artículos relacionados
- Enable and Install Telnet Client in Vista Activar e instalar el cliente Telnet de Vista
- How to Check if Telnet Is Running on a Server Cómo Telnet Compruebe si está corriendo en un servidor
- Install and Enable Telnet Server Service in Windows Vista Instalar y habilitar el servicio de servidor Telnet de Windows Vista
- How to Enable and Turn On Hibernation Feature in Windows Vista ¿Cómo permitir a su vez y en función de hibernación de Windows Vista
- Ways to Turn Off and Disable Vista IE 7 Protected Mode Formas de apagar y desactivar Vista IE 7 modo protegido
- Temporarily Disable IE7 Protected Mode in Vista on Ad-hoc Basis IE7 desactivar temporalmente en modo protegido Vista en Ad-hoc
- How to Disable or Enable Vista User Access Control in Command Prompt Cómo desactivar o activar Vista usuario de control de acceso en comandos
- Turn Off and Disable Search Indexing Service in Windows XP Apague y desactivar el servicio de búsqueda en la indexación de Windows XP
- Disable or Enable Backspace as ‘Go Back’ Page Browsing Function in Firefox Desactivar o activar retroceso como 'Volver' Buscando Page Función en Firefox
- Running Google Earth on Suse Linux with VMware Atletismo Google Earth en Suse Linux con VMware
































