Answers for "test an open port linux server"

2

linux check if a port is open

sudo lsof -i -P -n | grep LISTEN
Posted by: Guest on June-16-2021
1

linux test port

# Nice and verbose! From the man pages.
# Single port:
nc -zv 127.0.0.1 80

# Multiple ports:
nc -zv 127.0.0.1 22 80 8080

# Range of ports:
nc -zv 127.0.0.1 20-30
Posted by: Guest on February-04-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language