Re: ssh tunnel problem - Mailing list pgsql-general

From Craig H. Anderson
Subject Re: ssh tunnel problem
Date
Msg-id 20021121182632.GM6227@gentoo.coot.net
Whole thread Raw
In response to ssh tunnel problem  ("Craig H. Anderson" <craig@coot.net>)
List pgsql-general
I figured out my problem.
Here is the log of a working psql over ssh.

ssh -N -f -L 5430:127.0.0.1:5432 216.38.48.94 psql --host localhost
--port 5430 --username username --dbname template1 Password: Welcome to
psql, the PostgreSQL interactive terminal.  ... template1=#

The following attempt failed because 216.38.48.94 is the IP address of
the Cisco DSL modem. The Postgresql server has a private address and
the Cisco is forwarding the ssh port to the Postgresql IP address. The
working ssh tunnel is 5430:127.0.0.1:5432, using the loopback address
to refer to the system on the end of the ssh connection.
ssh -N -f -L 5430:216.38.48.94:5432 username@216.38.48.94 psql --host
localhost --port 5430 --username username --dbname template1 channel 1:
open failed: connect failed: Connection timed out psql: could not
receive server response to SSL negotiation packet: Success


pgsql-general by date:

Previous
From: "QUINN, JAY (SBCSI)"
Date:
Subject: Re: Dumb Newbie Question - Mandrake 9.0 / PGSQL 7.2
Next
From: "Henrik Steffen"
Date:
Subject: Re: what's that error?