SSL connection with DBD::Oracle?

SSL connection with DBD::Oracle?

am 25.01.2008 23:07:16 von t.hester

------=_NextPart_000_00CA_01C85F6C.5AFA02E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I need to connect to an Oracle db on a remote machine, on the local =
network, that only supports ssl connections. Is there a way to do this =
using DBD::Oracle? Is there some other way to do this?

Any assistance appreciated.

Tim Hester
------=_NextPart_000_00CA_01C85F6C.5AFA02E0--

Re: SSL connection with DBD::Oracle?

am 26.01.2008 02:37:59 von Alexander

If you can connect via ssh (not SSL, that's an additional layer inside
application protocols), you could use port forwarding.

For a basic setup, try running one of the following commands:

ssh user@remote.machine -L 1521:remote.machine:1521
ssh user@remote.machine -L 1521:127.0.0.1:1521

This will forward TCP port 1521 to your local machine, i.e. you can
connect to localhost:1521 instead of remote.machine:1521 as long as the
ssh connection stays open. See man ssh for more details. If you do not
want to enter a password every time you connect, use a public key in
$HOME/.ssh/autorized_hosts on the remote machine and ssh-agent on the
local machine.

For Oracle's own SSL,

may help.

Alexander

On 25.01.2008 23:07, Tim Hester wrote:
> I need to connect to an Oracle db on a remote machine, on the local network, that only supports ssl connections. Is there a way to do this using DBD::Oracle? Is there some other way to do this?
>
> Any assistance appreciated.
>
> Tim Hester
>


--
Alexander Foken
mailto:alexander@foken.de http://www.foken.de/alexander/