How to Check if Telnet Is Running on a 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. 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.
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.
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. 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:
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.
Alternatively, scan your server for open port 23, which Telnet normally uses to connect to. If the port 23 is not closed, mean Telnet service may be running. To check if port 23 is closed or opened, you need to have nmap installed on server. The command to use is:
nmap -sT -O localhost
Related Articles
- Install and Enable Telnet Server Service in Windows Vista
- Disable and Turn Off Telnet in Linux
- How to Find and Check Number of Connections to a Server
- Cannot FTP to Web Host or Server running cPanel/WHM
- How to Check and Identify Which Application is Listening or Opening Port 80 and 443 on Windows
- Enable and Install Telnet Client in Vista
- How to Check Memory Usage in Linux based Server
- Monitor and Check Web Site or Server Uptime and Availability for Free
- How to Check and Determine Which Edition of Windows Vista is Installed or Running in Used
- Telnet for Windows 7 and Windows Vista










































August 19th, 2007 22:19
[...] some web hosting providers has Telnet disabled by default. Webmasters or system administrators can verify if the Telnet service is turned off. If it’s still running, the following guide will provide steps to disable and turn off Telnet [...]