Networking Forums

Networking Forums > Computer Networking > Linux Networking > Giving others secure access to my private network.

Reply
Thread Tools Display Modes

Giving others secure access to my private network.

 
 
Ones Self
Guest
Posts: n/a

 
      11-20-2003, 04:13 PM
I have two machines at home. One acting as a gateway, and the other on a
private network. The gateway machine is firewalled, and will only allow ssh
and http access. It also does IP masquerading for the private network. A
friend of mine has a machine at home, and I would like to grant him secure
graphical access to files in my private network. The machines involved all
run Linux (i.e. the gateway, the inner machine, and my friend's machine).

I do not want to use a solution like FTP because it is not secure. I thought
of running a VPN, and then NFS mounting the needed directories from my inner
machine to my friend's. Is there an easier way to do this?

Thanks a lot.
 
Reply With Quote
 
 
 
 
Grant Edwards
Guest
Posts: n/a

 
      11-20-2003, 04:17 PM
On 2003-11-20, Ones Self <(E-Mail Removed)> wrote:

> [...] A friend of mine has a machine at home, and I would like
> to grant him secure graphical access to files in my private
> network.


What does "graphical access" mean?

--
Grant Edwards grante Yow! Am I accompanied by
at a PARENT or GUARDIAN?
visi.com
 
Reply With Quote
 
Ones Self
Guest
Posts: n/a

 
      11-21-2003, 04:13 PM
Grant Edwards <(E-Mail Removed)> wrote in message news:<3fbcf72c$0$41287$(E-Mail Removed) m>...
> On 2003-11-20, Ones Self <(E-Mail Removed)> wrote:
>
> > [...] A friend of mine has a machine at home, and I would like
> > to grant him secure graphical access to files in my private
> > network.

>
> What does "graphical access" mean?


It means that my friend can open up Konqueror or Nautilus, and just
copy files of off my machine. In other words: not have to open
a shell and type in anything (like rsync or scp etc.).
 
Reply With Quote
 
2boxers
Guest
Posts: n/a

 
      11-21-2003, 05:13 PM
On 20 Nov 2003 09:13:10 -0800, (E-Mail Removed) (Ones Self)
wrote:

>I have two machines at home. One acting as a gateway, and the other on a
>private network. The gateway machine is firewalled, and will only allow ssh
>and http access. It also does IP masquerading for the private network. A
>friend of mine has a machine at home, and I would like to grant him secure
>graphical access to files in my private network. The machines involved all
>run Linux (i.e. the gateway, the inner machine, and my friend's machine).
>
>I do not want to use a solution like FTP because it is not secure. I thought
>of running a VPN, and then NFS mounting the needed directories from my inner
>machine to my friend's. Is there an easier way to do this?
>
>Thanks a lot.

read about ssh and sftp. they are reasonably secure. I do not know if
a gui is supported or not.
 
Reply With Quote
 
Jim Fischer
Guest
Posts: n/a

 
      11-21-2003, 09:21 PM
Ones Self wrote:
> I have two machines at home. One acting as a gateway, and the other on a
> private network. The gateway machine is firewalled, and will only allow ssh
> and http access. It also does IP masquerading for the private network. A
> friend of mine has a machine at home, and I would like to grant him secure
> graphical access to files in my private network. The machines involved all
> run Linux (i.e. the gateway, the inner machine, and my friend's machine).
>
> I do not want to use a solution like FTP because it is not secure.


What about using 'sftp' (Secure FTP) and/or 'scp' (Secure CoPy)? Both
programs perform all operations over an encrypted SSH transport. IMO,
using these programs would probably be the easiest solution.

> I thought
> of running a VPN, and then NFS mounting the needed directories from my inner
> machine to my friend's. Is there an easier way to do this?


A VPN/NFS solution will be a lot of work, and I have a hunch that
tunneling NFS packets throubh a VPN tunnel (i.e., across the Internet
"at large") will be problematic.

Maybe if you provide some additional information about what you and your
friend are striving for, we can offer some other/better solutions (e.g.,
the two of you are writing some software together and you want to store
all of the source files on your computer).

--
Jim

To reply by email, remove "link" and change "now.here" to "yahoo"
jfischer_link5809{at}now.here.com


 
Reply With Quote
 
Luke Albers
Guest
Posts: n/a

 
      11-23-2003, 08:26 AM
On Fri, 21 Nov 2003 13:13:58 -0500, 2boxers wrote:

> On 20 Nov 2003 09:13:10 -0800, (E-Mail Removed) (Ones Self)
> wrote:
>
>>I have two machines at home. One acting as a gateway, and the other on a
>>private network. The gateway machine is firewalled, and will only allow ssh
>>and http access. It also does IP masquerading for the private network. A
>>friend of mine has a machine at home, and I would like to grant him secure
>>graphical access to files in my private network. The machines involved all
>>run Linux (i.e. the gateway, the inner machine, and my friend's machine).
>>
>>I do not want to use a solution like FTP because it is not secure. I thought
>>of running a VPN, and then NFS mounting the needed directories from my inner
>>machine to my friend's. Is there an easier way to do this?
>>
>>Thanks a lot.

> read about ssh and sftp. they are reasonably secure. I do not know if
> a gui is supported or not.


I am pretty sure that ssh supports this, but I havent done it. also, there
probably is a graphical scp client you could use

 
Reply With Quote
 
Ones Self
Guest
Posts: n/a

 
      11-23-2003, 04:25 PM
"Luke Albers" <(E-Mail Removed)> wrote in message news:<(E-Mail Removed) du>...
> On Fri, 21 Nov 2003 13:13:58 -0500, 2boxers wrote:
>
> > On 20 Nov 2003 09:13:10 -0800, (E-Mail Removed) (Ones Self)
> > wrote:
> >
> >>I have two machines at home. One acting as a gateway, and the other on a
> >>private network. The gateway machine is firewalled, and will only allow ssh
> >>and http access. It also does IP masquerading for the private network. A
> >>friend of mine has a machine at home, and I would like to grant him secure
> >>graphical access to files in my private network. The machines involved all
> >>run Linux (i.e. the gateway, the inner machine, and my friend's machine).
> >>
> >>I do not want to use a solution like FTP because it is not secure. I thought
> >>of running a VPN, and then NFS mounting the needed directories from my inner
> >>machine to my friend's. Is there an easier way to do this?
> >>
> >>Thanks a lot.

> > read about ssh and sftp. they are reasonably secure. I do not know if
> > a gui is supported or not.

>
> I am pretty sure that ssh supports this, but I havent done it. also, there
> probably is a graphical scp client you could use


This is great. I use scp, rsync, and ssh all the time, but I never knew someone
made a gui front-end for them. This will do nicely. Thank you all for your help.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
private network unable to access public network OM Windows Networking 2 03-29-2007 04:07 PM
secure access point from rest of network oakj423@gmail.com Wireless Internet 4 10-03-2006 11:30 PM
Secure network access Stimpy Network Routers 6 01-23-2006 06:48 AM
Allowing public access to 2 PC's on a private network Jason Windows Networking 4 06-17-2005 04:58 PM
Adding/creating network user for secure folder access TX2 Home Networking 1 09-17-2003 07:41 PM



1 2 3 4 5 6 7 8 9 10 11