How to ssh into control node? #762
-
Hi there, when trying ssh -i ~/.ssh/myprivatekey MYIPADDRESS I get
Any help is highly appreciated. @pschiffe ? (I saw that you also had ssh problem) |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
I was able to manage it by adding the following ssh config and connect to ssh -i ~/.ssh/myprivatekey -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o 'IdentitiesOnly yes' -o PubkeyAuthentication=yes root@MYIPADDRESS I have not enough experience with ssh - why are these extra options needed? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@schlichtanders @pschiffe If you folks see ways to enhance the current SSH flows, PR are always welcome! |
Beta Was this translation helpful? Give feedback.
Interesting. What do you see in the output of command
ssh-add -L
, how many keys? Does the login work with this command?ssh -i ~/.ssh/MYPRIVATEKEY -o 'IdentitiesOnly yes' root@MYIP
What is you local OS setup?