Link to home
Start Free TrialLog in
Avatar of robatelucid
robatelucid

asked on

Telnet refusing connection


Hi

I have a new Redhat 3.0 ES which has had telnet installed (and yes I know it is insecure!)

The problem is I can telnet from the console but not from any client PCs, it can be ping'd and ftp'd to. The telnetd runs when connected locally. There is no specific iptables entry for telnet. xinetd is running and the telnet config file exists.

The error below is reported

C:\Documents and Settings\RCooper>telnet 10.0.0.12
Connecting To 10.0.0.12...Could not open connection to the host, on port 23: Connect failed

How do I get it to respond?

Thanks

Rob Cooper

ASKER CERTIFIED SOLUTION
Avatar of rindi
rindi
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
yeap. rindi is right.

you can test if you issue

iptables -I INPUT -p tcp --dport 23 -j ACCEPT

and then try again from the client.
Avatar of l0st
l0st

To make the changes permanent you should use the firewall configuration app.
Menu ->  System Settings ->  Security level
And check telnet as a trusted service
Thanx.