Here are a few tools to check if ports are open from a remote host.
nc -zvw10 192.168.0.1 22 nmap 192.168.0.1 -p 22 telnet 192.168.0.1 22 |
You may have to install netcat and nmap if missing in your distro.
yum install nc yum install nmap |
cloud engineer
Here are a few tools to check if ports are open from a remote host.
nc -zvw10 192.168.0.1 22 nmap 192.168.0.1 -p 22 telnet 192.168.0.1 22 |
nc -zvw10 192.168.0.1 22 nmap 192.168.0.1 -p 22 telnet 192.168.0.1 22
You may have to install netcat and nmap if missing in your distro.
yum install nc yum install nmap |
yum install nc yum install nmap
You can test a network port connection using the “nc” command on Linux and “telnet” on Windows.
Format:
$ nc -zv domain.com port
C:\> telnet domain.com port
$ nc -zv domain.com 80 Connection to domain.com 80 port [tcp/http] succeeded! |
$ nc -zv domain.com 80 Connection to domain.com 80 port [tcp/http] succeeded!
C:\> telnet -zv domain.com 80 Connecting To domain.com...Could not open connection to the host, on port 80: Connect failed |
C:\> telnet -zv domain.com 80 Connecting To domain.com...Could not open connection to the host, on port 80: Connect failed
For Telnet, if a connection is successful, it returns no message.