Answers for "port list linux"

-1

how to get list port linux cmd

lsof -i -P -n | grep LISTEN
Posted by: Guest on May-15-2021
5

linux how to see ports in use

sudo netstat -tulpn | grep LISTEN

sudo lsof -i:22 # see a specific port such as 22
Posted by: Guest on July-25-2020
0

list of running ports linux

# it list the all running ports with process id.
$ netstat -ltnp
Posted by: Guest on July-17-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language