SSH connection to Dalia
This page was translated by an AI (LLM) with a cursory human check and is awaiting full review.
To connect to Dalia, you must have provided IDRIS with the public part of an SSH key (file .pub) and a connection IP address when creating your account on Dalia.
The connection is made using the ssh command from the machine whose IP address you have declared:
ssh -i ~/.ssh/udlxxxxxx-DALIA udlxxxxxx@dalia.idris.fr
udlxxxxxxcorresponds to your login on Dalia;udlxxxxxx-DALIAcorresponds to the SSH key whose public part you provided when creating your account on Dalia.
The connection cannot be made until the IDRIS engineers have added the public part of your SSH key to the .ssh/authorized_keys file of your Dalia login!
To simplify the connection command in ssh dalia, you can create an alias in the ~/.ssh/config file.
- If you have direct access to Dalia:
Host dalia
Hostname dalia.idris.fr
User udlxxxxxx
ForwardX11 yes
ForwardAgent yes
IdentityFile ~/.ssh/udlxxxxxx-DALIA
- If you need to go through an intermediate machine (here
machine_proxywith the loginlogin_proxy):
Host dalia
Hostname dalia.idris.fr
User udlxxxxxx
ForwardX11 yes
ForwardAgent yes
ProxyJump login_proxy@machine_proxy
IdentityFile ~/.ssh/udlxxxxxx-DALIA
In this case, you must also manage the connection between your machine and the intermediate machine.