mirror of https://github.com/cheat/cheat.git
cheatsheets/netstat: Which process is listening on a port
This commit is contained in:
parent
64cba079f9
commit
50fd4c6638
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue