Answers for "how to open ports on linux"

3

ports in use linux

# To see ports in use
sudo lsof -i -P -n | grep LISTEN 
sudo netstat -tulpn | grep LISTEN
Posted by: Guest on January-27-2021
5

check what ports are open linux

## if you use linux
sudo ss -tulw
Posted by: Guest on May-31-2020
0

used ports in linux

# To check the listening ports and applications on Linux
# Use any of the following command on terminal

sudo lsof -i -P -n | grep LISTEN 

sudo netstat -tulpn | grep LISTEN

sudo lsof -i:80 # see a specific port such as 80

@Oceangreen Technology - We Work For Excellence
Posted by: Guest on May-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language