How to Check if Telnet Is Running on a Server Come controllare se Telnet è in esecuzione su un server
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 (rete di telecomunicazione) è una rete non protetta protocollo utilizzato su Internet o rete locale (LAN) popolarmente connessioni di accesso remoto a un server dal client. 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. Il problema di Telnet è che la sessione è in chiaro con nome utente e la password di rete trasmette tutta in formato testo normale, aumentare notevolmente rischio per la sicurezza.
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. Se si desidera individuare e controllare se il servizio Telnet è in esecuzione sul server, in particolare su server web o web host che espone a attacchi in tutto il mondo, ecco un modo semplice per eseguire la verifica di Telnet processo.
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. Il modo più semplice per verificare se il processo di Telnet è in esecuzione o no sul server è utilizzare il comando ps che visualizza i processi attualmente in esecuzione. 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: Per controllare la presenza di Telnet processo in esecuzione, effettua il login al server tramite SSH (o fisicamente utilizzando la console, se è possibile in Telnet server, ovviamente, il servizio Telnet è in esecuzione), ed eseguire il seguente comando:
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. Se il risultato restituisce qualsiasi altra processi diverso da "grep telnet" linea significa che alcuni Telnet processo è in esecuzione o la sessione è aperta.
Alternatively, scan your server for open port 23, which Telnet normally uses to connect to. In alternativa, eseguire la scansione del server per aprire la porta 23, Telnet, che normalmente utilizza per connettersi. If the port 23 is not closed, mean Telnet service may be running. Se la porta 23 non è chiuso, significa servizio Telnet può essere in esecuzione. To check if port 23 is closed or opened, you need to have nmap installed on server. Per controllare se la porta 23 è chiuso o aperto, è necessario aver installato nmap sul server. The command to use is: Il comando da utilizzare è:
nmap -sT -O localhost nmap-St-O localhost
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Disable and Turn Off Telnet in Linux Disattivare e chiudere telnet in Linux
- Enable and Install Telnet Client in Vista Attivare e installare client Telnet in Vista
- Install and Enable Telnet Server Service in Windows Vista Installare e attivare il servizio server Telnet di Windows Vista
- Cannot FTP to Web Host or Server running cPanel/WHM Non può FTP su Web Host o server che esegue cPanel / WHM
- How to Check Memory Usage in Linux based Server Come controllare utilizzo della memoria basato su Linux Server
- Identify The Running Processes Via ProcessQuickLink Identificare i processi in esecuzione tramite ProcessQuickLink
- Restore Windows XP and 2003 .bkf Backups in Windows Vista and Longhorn Server with NT Backup Restore Utility Ripristino di Windows XP e 2003. Bkf copie di backup di Windows Vista e Longhorn Server con NT Backup utilità Ripristino
- Unable to Connect to Internet in Virtual PC with NAT Shared Networking NAT on Windows XP Guest Impossibile connettersi a Internet in Virtual PC con connessione di rete condivisa NAT NAT in Windows XP Valutazione
- How to Find and Check Number of Connections to a Server Come trovare e controllare numero di connessioni a un server
- Restore Windows NT Backup (ntbackup) .bkf in Vista and ‘Longhorn’ Server 2008 Ripristino di Windows NT Backup (ntbackup). Bkf in Vista e 'Longhorn' Server 2008

































August 19th, 2007 22:19 19 agosto 2007 22:19
[...] some web hosting providers has Telnet disabled by default. [...] Alcuni fornitori di hosting web Telnet è disattivata per impostazione predefinita. Webmasters or system administrators can verify if the Telnet service is turned off. Webmaster o amministratori di sistema possono verificare se il servizio Telnet è spento. If it’s still running, the following guide will provide steps to disable and turn off Telnet [...] Se è ancora in esecuzione, la seguente guida fornirà passi per disabilitare e si spegne Telnet [...]