Answers for "how to find port with netstat"

3

netstat find port

netstat -na | find "8080"
Posted by: Guest on January-12-2021
1

search by netstat by port

sudo netstat -nap | grep :80
or
sudo lsof -i:80
Posted by: Guest on February-26-2021

Browse Popular Code Answers by Language