lsof print numeric ports

Run lsof -P.

And make sure the P goes before the i, if you combine the option with -i:

lsof -Pi

According to man lsof, -P inhibits the conversion of port numbers to port names for network files. Inhibiting the conversion may make lsof run a little faster. It is also useful when port name lookup is not working properly.”

Leave a Comment