Disable and Turn Off Telnet in Linux Desativar e desligar o telnet no Linux
Telnet is an unsecured network protocol that facilitates remote login to a server via network connection. Telnet é um protocolo que facilite a rede não segura login para um servidor remoto via conexão de rede. The protocol allows server to be located thousands of miles away from the administrator yet still can be managed even without physical console access. O protocolo permite ao servidor se localiza a milhares de quilómetros de distância a partir do administrador, muito embora ainda possa ser gerida mesmo sem acesso físico 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. No entanto, Telnet tem lentamente substituído com SSH (Secure Shell) protocolo devido aos riscos de segurança como a transmissão de dados pacotes, incluindo nomes de usuário e senha para login Telnet é não codificada, permitindo que hackers ou crackers para farejar e facilmente obter estas informações facilmente.
So it’sa good practice to disable Telnet service on server, especially web server which reachable from Internet, and replaced with SSH. Portanto, é uma boa prática para desativar Telnet serviço no servidor, especialmente servidor web que acessado a partir de internet, e substituído com SSH. For web servers that are subscribed from some web hosting providers has Telnet disabled by default. Para os servidores da Web que está inscrito na web a partir de alguns provedores de hospedagem tem Telnet desativada por padrão. Webmasters or system administrators can Webmasters ou administradores de sistema podem verify if the Telnet service is turned off verificar se o serviço de Telnet é desligado . If it’s still running, the following guide will provide steps to disable and turn off Telnet service. Se ele ainda está funcionando, o seguinte guia irá fornecer passos para desabilitar e desligar Telnet serviço. Telnet server listens for incoming messages on port 23, and sends outgoing messages to port 23. Telnet servidor escuta para as mensagens recebidas na porta 23, e envia mensagens enviadas para a porta 23.
How to Disable Telnet Como desabilitar o telnet
- SSH into server and login as root. SSH em servidor e login como root.
- At shell command prompt type the following command and press Enter. Na shell prompt digite o seguinte comando e pressione Enter. This example use pico to edit text file, you can use vi or other text editor if you want. Este exemplo usar pico para editar arquivo texto, você pode usar vi ou outro editor de texto, se quiser.
pico -w /etc/xinetd.d/telnet pico-w / etc / xinetd.d / telnet
- Locate the following line: Localize a seguinte linha:
disable = no = sem desativar
Change the “disable = no” to “disable = yes” (no to yes). Altere o "desativar = no" para "desativar = sim" (sem a sim).
- Save and exit. Salve e saia.
- Restart the inetd service by using the following command: Reinicie o serviço inetd, utilizando o seguinte 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: Desligue Telnet através chkconfig tão bem porque ele ainda pode iniciar através de:
/sbin/chkconfig telnet off / sbin / chkconfig telnet off
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- Enable and Install Telnet Client in Vista Habilitar e instalar no cliente Telnet Vista
- How to Check if Telnet Is Running on a Server Como verificar se está rodando em um Telnet Server
- Install and Enable Telnet Server Service in Windows Vista Instalar e ativar Telnet Server Service no Windows Vista
- How to Enable and Turn On Hibernation Feature in Windows Vista Como ativar e girar em hibernação recurso no Windows Vista
- Ways to Turn Off and Disable Vista IE 7 Protected Mode Formas de desligar e desabilitar Vista IE 7 modo protegido
- Temporarily Disable IE7 Protected Mode in Vista on Ad-hoc Basis Desativar temporariamente no IE7 Protected Mode Vista em Ad-hoc
- How to Disable or Enable Vista User Access Control in Command Prompt Como ativar ou desativar Vista usuário controle de acesso no prompt
- Turn Off and Disable Search Indexing Service in Windows XP Desligue e desativar pesquisa Indexação do Windows XP Service
- How to Disable and Turn Off vBulletin Plugin and Product System Como desabilitar e desligar vBulletin Plugin e Sistema de Produtos
- Disable or Enable Backspace as ‘Go Back’ Page Browsing Function in Firefox Desativar ou Ativar Backspace como "Go Back" Função Page Navegando no Firefox
































