mirror of https://github.com/cheat/cheat.git
Merge pull request #89 from amitsaha/netstat_update
cheatsheets/netstat: Which process is listening on a port
This commit is contained in:
commit
dc5dbdbb02
|
@ -3,3 +3,9 @@ sudo netstat -lnptu
|
||||||
|
|
||||||
# To view routing table (use -n flag to disable DNS lookups):
|
# To view routing table (use -n flag to disable DNS lookups):
|
||||||
netstat -r
|
netstat -r
|
||||||
|
|
||||||
|
# Which process is listening to port <port>
|
||||||
|
netstat -pln | grep <port> | awk '{print $NF}'
|
||||||
|
|
||||||
|
Example output: 1507/python
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue