What is the best tool for checking if my ISP blocks port 25?
to determine which exactly host (subdomain) is listening port 25:
For example:
On Linux, you can 'dig', I guess. |
||||
|
|
|
|
|||
|
|
telnet host 25 Just select a host that you know is listening on port 25. |
|||
|
|
|
You could call them and ask. |
|||||
|
|
Probing a server that listens on your desired port is of course the best option, as abatishchev has shown. In the case where you can't find an "echo" service on your desired port or you want to know who is blocking you on the path you can resort to firewalking. Firewalking probes the path by starting with a Time-To-Live (TTL) set to zero and then icrementing it by one each iteration. When you stop getting "ICMP TTL Exceeded" messages that means the next hop in the chain is filtering your packets. You can use hping3 to do this:
or use Firewalk which was created for exactly this. Edit: Any NAT devices on the route will silently destroy your results since the TTL is reset to whatever sane value the router sees fit. |
||||
|
|
|
Or you could just use the online test at http://port25.icannotconnect.com |
|||
|
|