Is there a simple way to detect ISP port blocking?

79,300

Solution 1

You can set your computer as the DMZ in the router configuration, which means that NAT essentially passes everything to you.

Solution 2

This will take a lot of time but will get you the list of all blocked ports:

#!/bin/bash

COUNTER=1
while [  $COUNTER -lt 65535 ]; do
        echo $COUNTER
        curl portquiz.net:$COUNTER --connect-timeout 1
        let COUNTER=COUNTER+1
done

Solution 3

Firebind.com is able to tell you whether any of the 65535 UDP or TCP ports are being blocked between your client machine and the Internet. They have a Java Applet client that sends packets back and forth from your machine to their server over the port(s) of your choosing, and if the packets transfer successfully, you know the port isn't blocked by any intervening firewall (such as your own home router or your ISPs firewall.)

So in your case you could first run tests from behind your router and get a list of all blocked ports. Then you could connect your machine directly to the Internet (bypassing the firewall) and run the tests again. By comparing the results you'd be able to figure out the difference between what your home router blocks and what your ISP blocks.

It's important to note that Firebind is NOT a port scanner. It's a "PATH" scanner.

http://www.firebind.com

Solution 4

You could set your router/firewall to do logging and see what it is blocking specifically.

Share:
79,300

Related videos on Youtube

Will M
Author by

Will M

Updated on September 17, 2022

Comments

  • Will M
    Will M over 1 year

    Is there a way to tell the difference between my ISP blocking traffic on certain ports and my NAT router/firewall blocking that traffic? The sites “Shields Up” and “Can you see me” show my ports closed or not accessible, but I assume that is primarily due to the NAT router. (Obviously, I could just remove the router, connect directly and use those sites, but is there a simple way to test without doing that?)

  • Will M
    Will M almost 15 years
    Ah - turn on logging, run the Shields up port scan, and any port NOT logged is blocked somewhere else. Great idea.
  • innaM
    innaM almost 15 years
    But you wouldn't want to up-vote this question, would you?
  • Will M
    Will M almost 15 years
    Clever, but no - router (mine, anyway) logs a possible port scan and doesn't keep all the details, so I'm still looking for ideas.
  • tripleee
    tripleee about 6 years
    Bash has for ((counter=1; counter <= 65535; ++counter)); do and also notice the lowercase variable (uppercase is reserved for system variables).