Using Netstat to Get a List of Open Ports

Netstat lists the open ports and the programs using them by protocol and DNS names instead of by port numbers and IP addresses.

ITPro Today

February 21, 2007

1 Min Read
ITPro Today logo in a gray background | ITPro Today

Q: How can I get a list of all the open ports on my system and the programs that have them open?

A: The easiest way is to run Netstat, which is available on every Windows computer. Netstat displays all TCP and UDP connections and their respective states by default if you don’t supply any parameters. Note that this excludes ports in listening mode. Ports in listening mode are ports that a program has open but that don't necessarily have clients connected to them. To also see listening ports, run Netstat with the -a switch. By default, Netstat translates common port numbers into the protocol typically associated with them (e.g., port 25 is translated to smtp) and IP addresses are converted to their DNS names.

If you’d rather see the port and IP address numbers, use the -n switch. By default, Netstat doesn't identify the executable or process identifier (PID) associated with each port. The -b switch tells Netstat to display the specific service within the executable that opened the port. To get the PID of the process associated with each port, use the -o switch, which shows the same PID for a process as Task Manager does.

Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.

You May Also Like