Answers for "linux tool to open ports on localhost"

1

linux opened ports

netstat -pln
Posted by: Guest on July-02-2021
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