Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Filezilla remote tunneling instructions #453

Merged
merged 5 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _episodes/16-transferring-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,8 @@ Hit "Quickconnect" to connect. You should see your remote files appear on the
right hand side of the screen. You can drag-and-drop files between the left
(local) and right (remote) sides of the screen to transfer files.

{% include {{ site.snippets }}/transferring-files/filezilla-ssh-tunnel-instructions.snip %}

Finally, if you need to move large files (typically larger than a gigabyte)
from one remote computer to another remote computer, SSH in to the computer
hosting the files and use `scp` or `rsync` to transfer over to the other. This
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
> ## Connecting Remotely Via an SSH Tunnel
>
> If you are remote and not using a VPN, you will need to set up an SSH tunnel
using your terminal.
>
> ```
> {{ site.local.prompt }} ssh -L 3333:{{ site.remote.login }}:22 {{ site.remote.user }}@ssh-gateway.ucl.ac.uk -N
> ```
> {: .language-bash}
>
> This connects the local port 3333 to the cluster's SSH port, via the
> remote gateway. The `-N` option tells it not to execute any remote
> commands. Leave this running in the terminal and in FileZilla, set
>
> * Host: `sftp://localhost`
> * User: Your cluster username
> * Password: Your cluster password (leave blank to use your SSH keys)
> * Port: 3333
>
> Hit "Quickconnect" to connect.
{: .callout}
Loading