Back to articles
October 28, 2024
linux

list of all listening TCP ports with lsof

To get a list of all listening TCP ports with lsof type:

sudo lsof -nP -iTCP -sTCP:LISTEN
Copy
The options used are as follows:

-n - Do not convert port numbers to port names.
-p - Do not resolve hostnames, show numerical addresses.
-iTCP -sTCP:LISTEN - Show only network files with TCP state LISTEN.
Loading comments...