A failed ping only means that the ping failed, doesn't tell you much about the connectivity.
Some frequently used ports:
20, 21 Standard FTP
23 Telnet default
25 SMTP
80 Standard web
115 SFTP
443 Standard secure web
139 NETBIOS (file and printer sharing in Windows)
143 IMAP
445 SMB (to connect to Windows from other OSs)
an example of testing if you can access the web on some ip:
telnet 192.168.1.2 80
when the connection succeeds, you usually just get a black screen, with the cursor staring at you, if the connection fails, you will get an error message
As a final note, in case the connection fails, you might want to use tracert -d [ip address] to get more details of why the connection fails
1 comment:
I've always blocked icmp requests on my home firewall mainly for that very reason. Some people will simply think there is nothing there. But I usually will have other open services
Post a Comment