How can I connect to Oracle Database 11g server through ssh tunnel chain (double tunnel, server in company network)?
Yes, it’s possible. E.g. on Linux, run ssh -N -Llocalport:dbserver:dbport yourname@connectionserver where localport is the port on your machine which will be forwarded (can be 1521 if there is no local instance of oracle running) dbserver is the name or IP of the database server dbport is the port of the database (usually 1521) yourname … Read more