How to connect to midas
- First you need to have SSH working:
- Find your SSH key (in your
$HOME/.ssh
directory). Or generate it, with$ssh-keygen
.It is located in the file
id_rsa.pub
inside you$HOME/.ssh
directory. - Send it to
helpmi-saclay@inria.fr
and ask formidas
access for your INRIA login - After confirmation, you have SSH access to
ssh.saclay.inria.fr
.Try it:
ssh ssh.saclay.inria.fr
! Then disconnectexit
.May be you have to type
$ ssh your-inria-login@ssh.saclay.inria.fr
, if your login name on your local machine is not your INRIA login name (a classic pitfall). - Copy it on the remote
ssh.saclay.inria.fr
machine, usingscp -r .ssh ssh.saclay.inria.fr:
- To connect from outside the INRIA network
- First you have to reach ssh.saclay.inria.fr
$ ssh ssh.saclay.inria.fr
.May be you have to type
$ ssh your-inria-login@ssh.saclay.inria.fr
, if your login name on your local machine is not your INRIA login name (a classic pitfall). - Then you can reach midas with
$ ssh midas.grace
- To connect from the INRIA network:
- No need to bounce through the
ssh.saclay.inria.fr
gateway. Reach directly midas with$ ssh midas.grace
.
Trick for automatic bouncing
.ssh/config
file:Host midas.gateway
ProxyCommand ssh -q ssh.saclay.inria.fr nc midas.grace 22
ssh midas.gateway
you will automatically go through the gateway, and when you type ssh midas.grace
, you get direct access (only inside the INRIA network)