Skip to content
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
7 changes: 7 additions & 0 deletions docs/hpc/02_connecting_to_hpc/01_connecting_to_hpc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 <NetID>
StrictHostKeyChecking no
Expand All @@ -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 `<Your NetID>` 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)

Expand Down
Loading