netsat show open prots linux code example
Example 1: check what ports are open linux
## if you use linux
sudo ss -tulw
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