Skip to content

Instantly share code, notes, and snippets.

@defunkt
Created April 21, 2010 17:24
Show Gist options
  • Save defunkt/374130 to your computer and use it in GitHub Desktop.
Save defunkt/374130 to your computer and use it in GitHub Desktop.
List what ports are in use on OS X
# List what ports are in use on OS X
sudo lsof -iTCP -sTCP:LISTEN -P
@kennethreitz
Copy link

Wow, sudo lsof -iTCP -sTCP:LISTEN -P is alot faster and works great.

@acdha
Copy link

acdha commented Apr 22, 2010

@kennethreitz: that's why I posted it - doing the filtering in lsof rather than on its output can be enormously faster (particularly if you use the host/port filtering syntax - e.g. sudo lsof -iTCP:80 -sTCP:LISTEN -P for HTTP) and I've tended to encounter that in situations where it really mattered on busy servers.

@nevans
Copy link

nevans commented Apr 23, 2010

I've long been a fan of sudo netstat -tunlp, but I don't know if all of those options are cross-platform or Linux only.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment