[aklug] Re: Remote access to data

From: Leif Sawyer <lsawyer@gci.com>
Date: Thu Dec 06 2007 - 12:18:25 AKST

Damien Hull writeses...
> I'm at the coffee shop trying to access my data back at the=20
> home office. I have access to my DMZ. Most of the time
> that's all I need access to.=20
> Today is a little different. I'm missing a few files on my=20
> test server. I need to access my data storage server in the
> internal network.
>=20
> I could do one of the following.
>=20
> * Allow ssh into the privet network
> o green interface on IPCop
> * Setup a VPN
> o Doesn't give me ssh access
> o I would only be able to grab data on the shared directory
>=20

You don't say what OS is running on your data storage server, or test
server, or the like.

But you could, you know, easily tunnel ssh inside of ssh.
which means also, sftp in ssh.

ssh -x -f -L ${PORT}:${DEST}:22 ${USER}@${BASTION} "sleep 10" && \
   sftp -oPort=3D${PORT} ${USER}@localhost

yah?

---------
To unsubscribe, send email to <aklug-request@aklug.org>
with 'unsubscribe' in the message body.
Received on Thu Dec 6 12:18:38 2007

This archive was generated by hypermail 2.1.8 : Thu Dec 06 2007 - 12:18:38 AKST