If telnet is enables on the Linux computer, but most distributions do not enable telnet servers by default (some do not even install it.)
(The instructions below are for RedHat and may need to be modified for other distros)
To see if telnet (server) is installed, type
rpm -qa|grep telnet-server
at the command prompt, if you see it returned it will be available... to see if it is running, type
netstat -pl|grep telnet
If nothing is retuned then you need to edit the /etc/xinetd.d/telnet file and change the
disabled = yes
to
disabled = no
then restart xinetd
/etc/init.d/xinetd restart
Another option, which is more secure and supported, is SSH.
You can download a windows SSH client for free (for trial, academic, or non-commercial use) at
Then all you need to do is ensure that ssh is started on the linux box (netstat -pl will do this)
SSH (SecureSHell) is an encrypted "telnet" client (an a whole lot more...)
---
John Hoke
If you found this post helpfull, please click below and let us know!