Link to home
Start Free TrialLog in
Avatar of smart Z
smart Z

asked on

Looking for a tool to test ports and protocols access

I want to check my network and see if certain ports and protocols are already allowed through the firewall, is there a windows  tool that I can use to verify this before I poke on the firewall?

Thank you,
Avatar of Andrew Leniart
Andrew Leniart
Flag of Australia image

Have you tried just typing the netstat command in a DOS command prompt window?
ASKER CERTIFIED SOLUTION
Avatar of Andrew Leniart
Andrew Leniart
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Prabhin MP
Prabhin MP
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Running NETSTAT -A on the server will give you a list of LISTENING ports, but that won't tell you for sure if the firewall is allowing them through.  Instead, take any Windows machine with the TELNET client and run this command for each port:
   TELNET ServerName PortNumber
If the firewall is blocking the port, you'll get an error message.  If the firewall isnot blocking it, and if the port is LISTENING, then you should get a black screen with a blinking cursor.  Most apps have no telnet interface, so that'll be all you willsee.  If you find one that DOES have an interface, you may actually get a response, but that is immaterial here.
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial