diff --git a/docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.mdx b/docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.mdx index 9f9560c943..b85ce10bbf 100644 --- a/docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.mdx +++ b/docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.mdx @@ -32,6 +32,13 @@ Host torch login.torch.hpc.nyu.edu ForwardAgent yes UserKnownHostsFile /dev/null LogLevel ERROR + +# NYU Torch compute nodes — match by hostname pattern, proxy through login +Host cs* cl* gr* ga* gh* gl* + User fs3047 + ProxyCommand ssh -W %h:%p torch-login + ForwardAgent yes +###################################################### ``` :::warning[No SSH Keys on Torch] diff --git a/docs/hpc/12_tutorial_intro_shell_hpc/02_connecting_to_hpc.mdx b/docs/hpc/12_tutorial_intro_shell_hpc/02_connecting_to_hpc.mdx index bf48d434ad..43afe87164 100644 --- a/docs/hpc/12_tutorial_intro_shell_hpc/02_connecting_to_hpc.mdx +++ b/docs/hpc/12_tutorial_intro_shell_hpc/02_connecting_to_hpc.mdx @@ -169,7 +169,7 @@ If you are using PuTTY on Windows, download and use `pageant` as the SSH agent. ## Modifying Your .ssh/config File Please add the following lines to your `~/.ssh/config` file: -``` +``` sh Host dtn.torch.hpc.nyu.edu User StrictHostKeyChecking no @@ -186,6 +186,13 @@ Host torch login.torch.hpc.nyu.edu ForwardAgent yes UserKnownHostsFile /dev/null LogLevel ERROR + +# NYU Torch compute nodes — match by hostname pattern, proxy through login +Host cs* cl* gr* ga* gh* gl* + User fs3047 + ProxyCommand ssh -W %h:%p torch-login + ForwardAgent yes +###################################################### ``` You'll need to replace the sections above labelled `` with your NetID. You can find more details about this at the [Quickstart section of Accessing HPC at NYU](https://sites.google.com/nyu.edu/nyu-hpc/accessing-hpc#h.7t97br4zzvip)