How do I see which processes have open TCP/IP ports in Mac OS X?
6 Answers
One alternative is the use of the lsof utility; specifically, lsof -i 4tcp will list all processes with some sort of TCP IPv4 network sockets open. The manpage of lsof will provide you with detailed information on how to use the utility and how to interpret the output.
- 11,970
If you are interested in a specific port, you can use this example:
lsof -i 4tcp:8080 -sTCP:LISTEN
If you would only like to get the process id, you can run this:
lsof -i 4tcp:8080 -sTCP:LISTEN -Fp
- 311
I use the command below when I want to see everything that's on a specific port for either TCP or UDP. The -n option disables attempting to resolve the IP addresses into domain names, and the -P disables attempting to figure out the name of a particular port. Also, running as root will show you more processes than running as a normal user.
sudo lsof -iTCP:53 -iUDP:53 -n -P
- 193
To my taste https://github.com/mezantrop/sockstat has easy arguments to remember:
sudo sockstat -T -l
- 111
- 2
This should be possible in a terminal window using the Netstat command.
And if you like the GUI way more:
With Mac OS X 10.5, the /Applications/Utilities folder contains a network utility called: Network Utility, see tab Netstat for these stats presented in a gui application, along with Ping, Lookup, Traceroute, Whois, Finger and Port Scan.
- 10,732