List All Open/Listening Ports on Linux

Premium services since 2010

Trusted by thousands of businesses worldwide • 99.9% Uptime Guarantee • Crypto Accepted

Table of Contents

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:

# 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).