diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2008-02-26 18:01:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2008-02-26 18:01:26 +0000 |
commit | 00941eea77c90a492fa53615713975f46f7ff3ae (patch) | |
tree | af678fe47e8c2070ad5507a33721804858ba29f3 | |
parent | f49beb3f505ca30a155134deb5a9b4b7167c6728 (diff) | |
download | postgresql-00941eea77c90a492fa53615713975f46f7ff3ae.tar.gz postgresql-00941eea77c90a492fa53615713975f46f7ff3ae.zip |
Add more clarification about SSH tunnels from Faheem Mitha.
-rw-r--r-- | doc/src/sgml/runtime.sgml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index b9989d4c859..0e538a09443 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.408 2008/02/26 16:07:16 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.409 2008/02/26 18:01:26 petere Exp $ --> <chapter Id="runtime"> <title>Operating System Environment</title> @@ -1823,6 +1823,10 @@ ssh -L 63333:foo.com:5432 joe@foo.com <programlisting> ssh -L 63333:db.foo.com:5432 joe@shell.foo.com </programlisting> + Note that this way the connection + from <literal>shell.foo.com</literal> + to <literal>db.foo.com</literal> will not be encrypted by the SSH + tunnel. SSH offers quite a few configuration possibilities when the network is restricted in various ways. Please refer to the SSH documentation for details. |