On Thu, 2008-04-17 at 19:17 +1000, [EMAIL PROTECTED] wrote:
>         Is it possible to use ssh as a type of dynamic vpn so that
>         when I
>         connect to a remote machine the remote machine has access to
>         the
>         initiating machine?

>From your machine:

ssh -L 1200:localhost:22 [EMAIL PROTECTED]
ssh -p 1200 [EMAIL PROTECTED]

usually useful in this context
ssh -L 1200:another.local.machine:22 [EMAIL PROTECTED]

>From other machine:

ssh -R 1200:localhost:22 [EMAIL PROTECTED]
and from your machine
ssh -p 1200 [EMAIL PROTECTED]

To stop localhost bitching frome ssh
.ssh/config
Host localhost
StrictHostKeyChecking no

James

-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to