ports listen ubuntu code example
Example 1: ubuntu listening ports
# To see ports in use
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
Example 2: see what is using a port ubuntu
$ sudo lsof -i:22
Example 3: ubuntu open all port
sudo ufw allow 1:9999/tcp