linux command to list listening ports code example
Example 1: linux see used ports
netstat -tulpn
Example 2: check if port is running in ubuntu
# Any of the following
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo lsof -i:22 # Port
sudo nmap -sTU -O IP-address-Here