ssh-keygen -t rsa
on your local machine and hit enter after each prompt.ssh-copy-id <NetID>@<ClusterName>.princeton.edu
on your local machine, repeating the process for each machine you want to access.ssh-keygen -t rsa
on your local machine and hit enter after each prompt. This is easiest to do using the cmder program.~/.ssh/id_rsa.pub
on your local machine into a new line of the ~/.ssh/authorized_keys
file on all remote machine. Repeat this process for every machine you want to easily log into.ssh tiger
would SSH you into <NetID>@tiger-arrk.princeton.edu
automatically, for instance. The process is simple — all you need to do is set up an ~/.ssh/config
file on your local machine as shown below. As a bonus, the config file below will also help with reducing the frequency of Duo requests , although you can still use the Global Protect VPN client to circumvent this entirely.ssh-copy-id <NetID>@tigressgateway.princeton.edu
on your local machinemkdir ~/.ssh/sockets
on your local machine~/.ssh/config
file on your local machine (or make the file if it does not exist already). Make sure to replace <NetID>
each time it is present.Host tiger-arrk.princeton.edu tigerHostName tiger-arrk.princeton.eduUser <NetID>ProxyJump tigressgateway.princeton.eduControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%rHost della.princeton.edu dellaHostName della.princeton.eduUser <NetID>ProxyJump tigressgateway.princeton.eduControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%rHost della-gpu.princeton.edu della-gpuHostName della-gpu.princeton.eduUser <NetID>ProxyJump tigressgateway.princeton.eduControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%rHost adroit.princeton.edu adroitHostName adroit.princeton.eduUser <NetID>ControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%rHost neuronic.cs.princeton.edu neuronicHostName neuronic.cs.princeton.eduUser <NetID>ControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%rHost tigressgateway.princeton.edu tigressgatewayHostName tigressgateway.princeton.eduUser <NetID>ServerAliveInterval 300ControlMaster autoControlPersist yesControlPath ~/.ssh/sockets/%p-%h-%r
id_rsa.pub
info to ~/.ssh/authorized_keys
on <NetID>@tigeressgateway.princeton.edu
~/.ssh/config
file on your local machine (or make the file if it does not exist already). Make sure to replace <NetID>
each time it is present.Host tiger-arrk.princeton.edu tigerHostName tiger-arrk.princeton.eduUser <NetID>MACs hmac-sha2-512ProxyJump tigressgateway.princeton.eduHost della.princeton.edu dellaHostName della.princeton.eduUser <NetID>MACs hmac-sha2-512ProxyJump tigressgateway.princeton.eduHost della.princeton.edu della-gpuHostName della-gpu.princeton.eduUser <NetID>MACs hmac-sha2-512ProxyJump tigressgateway.princeton.eduHost adroit.princeton.edu adroitHostName adroit.princeton.eduUser <NetID>MACs hmac-sha2-512Host neuronic.cs.princeton.edu neuronicHostName neuronic.cs.princeton.eduUser <NetID>MACs hmac-sha2-512Host tigressgateway.princeton.edu tigressgatewayHostName tigressgateway.princeton.eduUser <NetID>MACs hmac-sha2-512ServerAliveInterval 300