Monday, September 26, 2022

How to check in linux which ports are used?

 Use one of the following commands to check

sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo ss -tulpn | grep LISTEN
sudo lsof -i:22 ## see a specific port such as 22 ##
sudo nmap -sTU -O IP-address-Here

No comments:

Post a Comment