Telnet is disabled in the configuration file

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

In Linux, the xinetd service controls Telnet. The “disable” parameter in the Telnet xinetd config file “/etc/xinetd.d/telnet” controls whether Telnet is enabled or disabled.

We have seen cases where users accidentally leave Telnet disabled by setting “disable = yes”. This prevents Telnet connections.

Error :

service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
disable = yes
}

How to Fix This Error :

Open the terminal on your Linux machine and log in as root or a user with sudo privileges. After, that Open the Telnet file for editing with any editor you have like nano, vi, gedit etc by using the below Command.

Command :

sudo gedit /etc/xinetd.d/telnet

Output :

Open the xinetd Telnet file in Available Editor and make Changes

After, that Restart the xinetd service so the new configuration takes effect to do this use the Below Command.

Command :

sudo systemctl restart xinetd

Output :

Restart the xinetd 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....