Not able to connect to any server using Telnet

telnet

I am new to Telnet. I have been trying to connect to different servers. I type the following command in my Linux terminal:

telnet 74.125.236.160

and then after sometime I get the message:

unable to connect to remote host: connection timed out

What might I be doing wrong?

Best Answer

Try

ping 74.125.236.160

If ping responds(assuming no firewall blocks it)

telnet 74.125.236.160 <port>

i.e.

telnet 743.125.236.160 80
Related Question