0
1
I've Googled it a lot and checked it on many forums, but still haven't been able to solve it.
When I do a telnet from a Windows system 192.18.212.169
to an RHEL system on 192.18.212.124
I get the error
Connecting To 192.18.212.124...Could not open connection to the host, on port 23 : Connect failed.
When I try from a CentOS system 192.18.209.87
I get the error
Trying 192.18.212.124... telnet: connect to address 192.18.212.124: No route to host
The telnet server and client have been installed on 192.18.212.124
and I'm able to login to a switch from 192.18.209.124
once I allowed it's subnet on the switch.
But when I try to connect to 192.18.212.124
from any other system, it doesn't work. Although if I try connecting using ssh from any system, it works.
I know telnet is old, but it's required for a particular software I'm using. Please help.
Update:
ip route
for the CentOS client (192.18.209.87):
default via 192.18.209.3 dev enp1s0 proto static metric 1024
192.18.200.80 via 192.18.209.3 dev enp1s0 proto static metric 1
192.18.209.0/24 dev enp1s0 proto kernel scope link src 192.18.209.87
192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1
ip route
of RHEL server (192.18.212.124):
192.18.212.0/24 dev eth2 proto kernel scope link src 192.18.212.124 metric 1
default via 192.18.212.3 dev eth2 proto static
No route to host
... might be crucial. – Hennes – 2014-08-26T14:07:13.9931but I'm able to connect using ssh – Nav – 2014-08-26T14:20:18.173
Can you dump the routing table of the CentOS client and the RHEL server?
ip route
– Nicolas – 2014-08-26T14:36:39.120@Nicolas: updated my question with the dump info – Nav – 2014-08-27T03:08:16.463