Reputation: 1747
I want to ensure I can connect to my JDBC-capable source, but I want to ensure my firewall rules are correctly set up to allow this. How can I ensure my network infrastructure is correctly set up to connect?
Upvotes: 0
Views: 221
Reputation: 1747
One way to validate this is to use an SSH session to the Agent VM and using the ping
command (or similar netstat
/ traceroute
) to ensure a simple route to your host is available.
This would look like:
ssh
onto the Agent VMping my.hostname.com:PORT
If no route to host
comes back, this means your firewall rules aren't correctly set up, so the Agent VM owner will need to change configuration to allow the traffic.
If a notice indicating X bytes received from my.hostname.com
comes back, this means you can hit the host and your firewall rules are correctly set up.
Upvotes: 0