mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-13 07:31:16 +01:00
11 lines
278 B
Text
11 lines
278 B
Text
# To view which users/processes are listening to which ports:
|
|
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
|
|
|