just ME
just ME

Reputation: 1827

how to check for opened ports on a wifi router

I want to check remotely if a specific port is opened on a wifi router. How can I do that?

Do I need to set something on the router side?

I tried using telnet but I get Unable to connect to remote host.

Upvotes: 2

Views: 26991

Answers (2)

aDoubleSo
aDoubleSo

Reputation: 1148

Scan with PortScan your Router-IP. Think this should work for you.

Switch scan type to "Scan All Ports". In this case I simply scanned the local host. Change localhost to your Router IP.

enter image description here

Upvotes: 1

kwapik
kwapik

Reputation: 61

On ubuntu: sudo apt-get install nmap; nmap -vv <router-ip>

Upvotes: 6

Related Questions