Describe when someone would need this information. For example "when connecting to wi-fi for the first time".
Pre-requisite: please create a ssh config file .ssh/config adapting the template below.
Host ela
HostName ela.cscs.ch
User <username>
IdentityFile ~/.ssh/cscs-key
IdentitiesOnly yes
Host daint-ela
Hostname daint.cscs.ch
User <username>
IdentityFile ~/.ssh/cscs-key
ProxyJump ela
IdentitiesOnly yes
Host eiger-ela
Hostname eiger.cscs.ch
User <username>
IdentityFile ~/.ssh/cscs-key
ProxyJump ela
IdentitiesOnly yes |
Please note that the ssh config file can be written in many different ways, the template above is for your reference only. In particular:
<username> in the above snippet needs to be configured with your cscs usernameHost given as daint-ela or eiger-ela Please follow the steps below (the first two steps are required if you are connecting for the first time or if the downloaded keys got expired):
~/.ssh with names cscs-key and cscs-key-cert.pub. The permission of cscs-key should be set as 600 ssh daint-ela OR ssh eiger-ela |
|