Answers for "linux ports that are being used"

5

linux see used ports

netstat -tulpn
Posted by: Guest on September-23-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 "linux ports that are being used"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language