Merge pull request #89 from amitsaha/netstat_update

cheatsheets/netstat: Which process is listening on a port
This commit is contained in:
Chris Lane 2013-09-13 17:48:50 -07:00
commit dc5dbdbb02
1 changed files with 6 additions and 0 deletions

View File

@ -3,3 +3,9 @@ sudo netstat -lnptu
# To view routing table (use -n flag to disable DNS lookups):
netstat -r
# Which process is listening to port <port>
netstat -pln | grep <port> | awk '{print $NF}'
Example output: 1507/python