Disable and Turn Off Telnet in Linux Disattivare e chiudere telnet in Linux
Telnet is an unsecured network protocol that facilitates remote login to a server via network connection. Telnet è un protocollo di rete non protetta che facilita l'accesso remoto a un server tramite connessione di rete. The protocol allows server to be located thousands of miles away from the administrator yet still can be managed even without physical console access. Il protocollo consente server per essere collocate migliaia di chilometri di distanza da l'amministratore ancora ancora può essere gestito anche senza l'accesso fisico console. 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. Tuttavia, Telnet è lentamente sostituito con SSH (Secure Shell) protocollo a causa di rischi per la sicurezza come la trasmissione di dati a pacchetto, tra cui username e la password per Telnet è in chiaro, permettendo agli hacker o cracker facilmente sniff e ottenere queste informazioni in modo facile.
So it’sa good practice to disable Telnet service on server, especially web server which reachable from Internet, and replaced with SSH. Si tratta di un modo di buone prassi per disattivare servizio Telnet sul server, soprattutto server web che raggiungibile da Internet, e sostituito con SSH. For web servers that are subscribed from some web hosting providers has Telnet disabled by default. Per i server web che sono sottoscritte da alcuni fornitori di hosting web Telnet è disattivata per impostazione predefinita. Webmasters or system administrators can Webmaster o amministratori di sistema possono verify if the Telnet service is turned off verificare se il servizio Telnet è spento . If it’s still running, the following guide will provide steps to disable and turn off Telnet service. Se è ancora in esecuzione, la seguente guida fornirà passi per disabilitare e disattivare servizio Telnet. Telnet server listens for incoming messages on port 23, and sends outgoing messages to port 23. Telnet server in ascolto per i messaggi in arrivo sulla porta 23, e invia i messaggi in uscita sulla porta 23.
How to Disable Telnet Come disabilitare telnet
- SSH into server and login as root. SSH in server e il login come root.
- At shell command prompt type the following command and press Enter. Al prompt dei comandi della shell digitare il seguente comando e premere Invio. This example use pico to edit text file, you can use vi or other text editor if you want. Questo esempio uso pico per modificare file di testo, è possibile utilizzare vi o altri editor di testo, se lo si desidera.
pico -w /etc/xinetd.d/telnet pico-w / etc / xinetd.d / telnet
- Locate the following line: Individuare la seguente riga:
disable = no disable = no
Change the “disable = no” to “disable = yes” (no to yes). Modificare il "disable = no" a "disable = yes" (non a yes).
- Save and exit. Salvare e uscire.
- Restart the inetd service by using the following command: Inetd riavviare il servizio utilizzando il seguente 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: Spegnere Telnet attraverso chkconfig e perché può iniziare ancora che attraverso:
/sbin/chkconfig telnet off / sbin / chkconfig telnet off
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
- Enable and Install Telnet Client in Vista Attivare e installare client Telnet in Vista
- How to Check if Telnet Is Running on a Server Come controllare se Telnet è in esecuzione su un server
- Install and Enable Telnet Server Service in Windows Vista Installare e attivare il servizio server Telnet di Windows Vista
- How to Enable and Turn On Hibernation Feature in Windows Vista Come attivare e attivare la funzionalità di ibernazione in Windows Vista
- Ways to Turn Off and Disable Vista IE 7 Protected Mode Modi per spegnere e disattivare Vista IE 7 modalità protetta
- Temporarily Disable IE7 Protected Mode in Vista on Ad-hoc Basis Disattivare temporaneamente IE7 modalità protetta in Vista su base ad hoc
- How to Disable or Enable Vista User Access Control in Command Prompt Come disattivare o attivare Vista utente di controllo di accesso nel prompt dei comandi
- Turn Off and Disable Search Indexing Service in Windows XP Spegnere e disattivare la funzione Ricerca servizio di indicizzazione di Windows XP
- Disable or Enable Backspace as ‘Go Back’ Page Browsing Function in Firefox Disattivare o attivare Backspace come 'Go Back' Page Funzione Visualizzazione in Firefox
- Running Google Earth on Suse Linux with VMware In esecuzione di Google Earth su Suse Linux con VMware
































