Telnet - Knowledge Base Archives - Hivelocity Hosting https://www.hivelocity.net/kb/tag/telnet/ Dedicated Servers, Private Cloud & Colocation Wed, 06 Dec 2023 16:34:47 +0000 en-US hourly 1 https://wordpress.org/?v=6.6 How to Disable Telnet access on server? https://www.hivelocity.net/kb/how-to-disable-telnet-access-on-server/ https://www.hivelocity.net/kb/how-to-disable-telnet-access-on-server/#respond Wed, 30 Jan 2013 14:11:39 +0000 https://kb.hivelocity.net/?p=11061 1. Login to your server as a root user.   2. Edit the file as follows: # vi /etc/xinetd.d/telnet   3. Look for the line: disable = no and replace with disable = yes   4. Now restart the inetd service: #/etc/rc.d/init.d/xinetd restart   5. Turn off it through chkconfig as well because it can …

How to Disable Telnet access on server? Read More »

The post How to Disable Telnet access on server? appeared first on Hivelocity Hosting.

]]>
1. Login to your server as a root user.

 

2. Edit the file as follows:

# vi /etc/xinetd.d/telnet

 

3. Look for the line: disable = no and replace with disable = yes

 

4. Now restart the inetd service:

#/etc/rc.d/init.d/xinetd restart

 

5. Turn off it through chkconfig as well because it can still start through that.

#/sbin/chkconfig telnet off

 

6. Scan your server to ensure port 23 is closed.

#nmap -sT -O localhost

 

Also run ps -aux | grep telnet and if you find anything other than “grep telnet” as result ,then in that case kill that process.

The post How to Disable Telnet access on server? appeared first on Hivelocity Hosting.

]]>
https://www.hivelocity.net/kb/how-to-disable-telnet-access-on-server/feed/ 0