The telnet service is not running

The telnet service not running is one of the most likely causes of the “connection refused” error.

Telnetd is the server program that allows Telnet connections. So for Telnet to work properly, the telnet service needs to be installed on the machine you are trying to connect to.

If Telnetd is not installed, there is no server program to respond to the Telnet connection request from your computer. This results in the “connection refused” error.

Error :

telnet localhost 1181
Trying 127.0.0.1...
telnet: Unable to connect to remote host: Connection refused

How to Fix This Error :

Check if Telnet is actually installed on the machine they want to connect to. If Telnetd is not installed, we need to install the Telnet server program.

Command :

apt-get install telnetd

Output :

Installation of Telnet

Next, we needed to restart the Telnet server program to do that follow the Below Command.

Command :

/etc/initd/inetd restart

Output :

Restart the Telnet server

How To Solve Telnet Connection Refused By Remote Host In Linux

Wanted to access a remote server over Telnet but got “connection refused” errors? This is a common problem that can leave you stranded when trying to handle Linux systems from afar. Failure to initiate a Telnet session locks you out of administrating and diagnosing problems on servers, networking equipment and other devices.

The good news is that often these “connection refused” errors are easy to resolve with just some basic checks. In this simple, step-by-step guide, we will get to know how to quickly get Telnet working again. By tweaking firewall rules, fixing network/port settings, and checking for connectivity issues one can have Telnet sessions up in no time. The above couple of small changes will take care of the irritating connection-related difficulties and allow remote reentry into your Linux-based gadgets in an effortless way.

Similar Reads

Telnet Connection Refused by Remote Host – Errors & their Fixes

1. The telnet service is not running...

1. The telnet service is not running

The telnet service not running is one of the most likely causes of the “connection refused” error....

2. Telnet is disabled in the configuration file

This error can also happen if the Telnet service is disabled in its configuration file....

3. Service is not running

Another reason for the “connection refused” error is that there is no service listening on the port you are trying to connect to....

Conclusion

The “Telnet connection refused” error often happens when the Telnet service is not installed or running on the remote machine you are trying to connect to; it means no Telnet server program listens for incoming connections from your computer. Another cause of this error is if the destination port number specified in the Telnet command is closed or blocked by a firewall, and your connection request will be refused if the intended service is not actually running or listening on that port....