Answers for "netstat listening ports"

39

linux how to see ports in use

# Any of the following
sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo lsof -i:22 # see a specific port such as 22
sudo nmap -sTU -O IP-address-Here
Posted by: Guest on March-31-2020
16

find out process using port windows

netstat -ano | findstr 8080
Posted by: Guest on December-09-2019
13

how to check the ports in use in windows cmd

netstat -aon
Posted by: Guest on August-15-2020
1

netstat find port

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

linux see used ports

netstat -tulpn
Posted by: Guest on September-23-2020
1

netstat check port

sudo netstat -plnt
Posted by: Guest on March-19-2020

Code answers related to "netstat listening ports"

Browse Popular Code Answers by Language