windows-server-2003portping

How do I determine if a port is open on a Windows server?


I'm trying to install a site under an alternative port on a server, but the port may be closed by a firewall. Is there a way to ping out or in, on a specific port, to see if it is open?


Solution

  • Assuming that it's a TCP (rather than UDP) port that you're trying to use:

    1. On the server itself, use netstat -an to check to see which ports are listening.

    2. From outside, just use telnet host port (or telnet host:port on Unix systems) to see if the connection is refused, accepted, or timeouts.

    On that latter test, then in general:

    On Windows 7 or Windows Vista the default option 'telnet' is not recognized as an internal or external command, operable program or batch file. To solve this, just enable it: Click *Start** → Control PanelProgramsTurn Windows Features on or off. In the list, scroll down and select Telnet Client and click OK.