How to List All Open/Listening Ports

0
1311

If you find yourself needing to check all open/listening ports that your server is using (a good idea for security), run the follow command via SSH:

Code:
netstat -tulp

The command will print a list of all open ports, the programs using them, their PIDs, local addresses, and connection type (tcp/udp).

Leave A Reply

Please enter your comment!
Please enter your name here