<<Back to Linux Main Page
How to Check if port to a remote server is open or not
to check if the port XYZ to a remote server ABC is open or not you can use telnettelnet ABC XZY
$telnet host1 1521
But many times we realize that the package telnet is not installed we can use curl in that case
How to Check if port to a remote server is open or not without using telnet
curl: (7) Failed to connect to 192.250.65.175 port 1521: Connection refused
Comments
Post a Comment