I am trying to use sftp over an ssh tunnel

I have a homePC, that can use a gatewayPC as a jump host to login to a remoteserver

i use the ssh tunnel command

$ssh -t userid@gateway ssh remoteserver

from homePC and it worked great

However, I would like to open a nautilus or any other file manager once I am logged into the other machine

one option is to be able to sftp or ftp over this tunnel

Are there GUI based tools like putty for windows in order to make this happen?

Any help is appreciated

Regards, Shivani

link|improve this question

0% accept rate
feedback

3 Answers

I'm not sure what the "right" way to do something like this would be, but I did something similar once by creating a port-forwarding from homePC to gatewayPC, and then from gatewayPC to remoteserver. Then I can connect my local SFTP client to the local end of the port-forwarding pipeline. This gets you doubled encryption, though.

link|improve this answer
feedback

I would suggest using an "ssh -fND 6789 gatewayPC", then use configure tsocks so you can do 'tsocks sshfs remoteserver: /mnt/remoteserver". The first command sets up a SOCK5 proxy that tunnels all TCP requests through to gatewayPC. The tsocks command wraps the network calls of the command given to use a SOCKS5 proxy. sshfs let's you mount a remote file system using sftp.

link|improve this answer
feedback

Your question wasn't clear, so here are two answers:

If you just want to be able to run an X-based file manager application on the remote host, just make sure -X is in effect through every ssh:

homepc% ssh -X me@gatewaypc
  ...Authenticate...
gatewaypc% ssh -X me@otherpc
  ...Authenticate...
otherpc% some-x-application
  ...X application displays on homepc...

If you're looking to do direct file copies with scp,

homepc% ssh -L2222:otherpc:22 me@gatewaypc
  ...Authenticate...
gatewaypc%  (Don't do anything here)

Then you can just do scp on the forwarded port

homepc% scp -P 2222 me@localhost:~/path/to/file /where/it/goes
link|improve this answer
I think he wants to use the file manager on the local computer, but be able to copy files with it between both computers. If it runs on the remote computer, copying between both is not possible. – Paŭlo Ebermann Feb 21 '11 at 14:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.