8

Is there a Linux or multiplatform software with GUI that allows you to browse and download files from a server behind a SSH tunnel (this is a winscp example)?

|client|----ssh----|gateway|-----ssh-----|target_host|
   |                                         |
   +------------WinSCP alternative-----------+

UPDATE

To clarify, there are 3 systems involved. A local one (client) and 2 remote:

  • The first one, which I called gateway is accessible via ssh from the internet. But it doesn't have the files I want.
  • The second one, which I called target_host is accessible from gateway but not directly from the Internet

I want to graphically browse the target_host, and I have done so using WinSCP, that allows me to establish a ssh tunnel to gateway and then connect to target_host.

xabitrigo
  • 181

3 Answers3

1

I don't think it's very common for file transfer software to address this use case, so it's interesting that WinSCP has it. Unless someone else knows of other software that does this, you'll probably have to do the tunnel setup yourself. This should help:

An SSH tunnel via multiple hops

jjlin
  • 16,120
0

Take a look at SecureFX. Assuming you are running locally, and needing to copy files from remote server A to remote server B, it may require a daisy chain of downloading to your local computer and then uploading to the second server... but the tabbed interface allowing multiple connections simultaneously may help speed things up for you.

-1

I was not able to comment (not +50 yet) so here's a response. I am not sure I understand your question either. It sounds like you want a GUI to be able to copy files back and forth with the destination server accessed via ssh.

winscp and filezilla client both work fine for windows. Since you are looking for multi-platform and winscp does not work on windows, I would say go with filezilla client. By default it will use ftp port 21. Just enter port 22 and it will use sftp/scp

I'm guessing I misundestand your question too, but that is what it sounds like you're asking (?)

ben
  • 176