Check if remote port is open
There is multiple ways to check if a remote port is open from a linux command line
- nmap
- telnet
telnet <server> <port>
- curl
curl -v telnet://<server>:<port>
There is multiple ways to check if a remote port is open from a linux command line
telnet <server> <port>
curl -v telnet://<server>:<port>