How to Check if Telnet Is Running on a Server Cómo Telnet Compruebe si está corriendo en un servidor
Telnet (TELecommunication NETwork) is a unsecured network protocol used on the Internet or local area network (LAN) connections popularly to remotely access a server from client. Telnet (red de telecomunicaciones) es una red no segura protocolo utilizado en Internet o red de área local (LAN) para conexiones popularmente acceso remoto a un servidor de cliente. The problem with Telnet is that the session is unencrypted with user name and password transmit across network in plain text, greatly increase security risk. El problema con Telnet es que es el período de sesiones sin encriptar con nombre de usuario y contraseña transmitir a través de la red en texto plano, aumentar en gran medida los riesgos de seguridad.
If you want to identify and check if the Telnet service is running on your server, especially on web server or web host which exposes to worldwide attacks, here’s an easy way to perform the verification on Telnet process. Si desea identificar y comprobar si el servicio telnet está corriendo en su servidor, especialmente en servidor web o servicio de alojamiento web que expone a ataques en todo el mundo, aquí está una manera fácil de realizar la verificación en proceso de Telnet.
The easiest way to check if the Telnet process is running or not on the server is by using ps command that displays the currently running processes. La forma más sencilla de comprobar si el proceso de Telnet se encuentra en funcionamiento o no en el servidor es mediante el uso del comando ps que muestra los procesos que se están ejecutando actualmente. To check for any running Telnet process, login to the server via SSH (or physically using console, if you can Telnet into the server, obviously the Telnet service is running), and run the following command: Para comprobar si hay alguna corriendo Telnet proceso, de acceso al servidor a través de SSH (físicamente o mediante la consola, si puede Telnet en el servidor, obviamente el servicio telnet está corriendo), y ejecute el comando siguiente:
ps -aux | grep telnet ps-aux | grep telnet
If the result returns any other processes other than “grep telnet” line means that some Telnet process is running or session is opened. Si el resultado devuelve cualquier otros procesos que no sean "grep telnet" línea significa que algunos Telnet proceso se encuentra en funcionamiento o se abre período de sesiones.
Alternatively, scan your server for open port 23, which Telnet normally uses to connect to. Por otra parte, escanear su servidor para abrir el puerto 23, Telnet que normalmente utiliza para conectar. If the port 23 is not closed, mean Telnet service may be running. Si el puerto 23 no está cerrada, con una media de servicio telnet se puede ejecutar. To check if port 23 is closed or opened, you need to have nmap installed on server. Para comprobar si el puerto 23 está cerrado o abierto, es necesario que usted tenga nmap instalado en el servidor. The command to use is: El comando a utilizar es el siguiente:
nmap -sT -O localhost nmap-sT-O localhost
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
- Disable and Turn Off Telnet in Linux Inhabilitar y desconectar el telnet en linux
- Enable and Install Telnet Client in Vista Activar e instalar el cliente Telnet de Vista
- Install and Enable Telnet Server Service in Windows Vista Instalar y habilitar el servicio de servidor Telnet de Windows Vista
- Cannot FTP to Web Host or Server running cPanel/WHM No se puede FTP a la web de host o servidor corriendo cPanel / WHM
- How to Check Memory Usage in Linux based Server Cómo Check Uso de la memoria en el servidor basado en Linux
- Identify The Running Processes Via ProcessQuickLink Identificar los procesos que se están ejecutando a través de ProcessQuickLink
- Restore Windows XP and 2003 .bkf Backups in Windows Vista and Longhorn Server with NT Backup Restore Utility Restaurar Windows XP y 2003. Bkf Copias de seguridad en Windows Vista y Longhorn Server con NT Backup Restore Utility
- Unable to Connect to Internet in Virtual PC with NAT Shared Networking NAT on Windows XP Guest No es posible conectarse a Internet en Virtual PC con NAT NAT compartido de redes en Windows XP Invitado
- How to Find and Check Number of Connections to a Server Cómo buscar y Check número de conexiones a un servidor
- Restore Windows NT Backup (ntbackup) .bkf in Vista and ‘Longhorn’ Server 2008 Restaurar copia de seguridad de Windows NT (ntbackup). Bkf en Vista y "Longhorn" Server 2008









August 19th, 2007 22:19 19 de agosto de 2007 22:19
[...] some web hosting providers has Telnet disabled by default. [...] Algunos proveedores de alojamiento web ha Telnet desactivado por defecto. Webmasters or system administrators can verify if the Telnet service is turned off. Webmasters o los administradores del sistema pueden verificar si el servicio telnet está apagado. If it’s still running, the following guide will provide steps to disable and turn off Telnet [...] Si aún en funcionamiento, la siguiente guía proporcionará medidas para desactivar y desactivar Telnet [...]