View Single Post
Old 07-16-2022, 05:33 AM   #3
katadelos
rm -rf /
katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.katadelos ought to be getting tired of karma fortunes by now.
 
Posts: 219
Karma: 3333683
Join Date: Nov 2019
Location: United Kingdom
Device: K5, KT, KT2, KT3, KT4, KV, PW2, PW3, PW4, PW5
The name of your SSH key means that it won't be offered by default, you need to specify it when connecting:
Code:
ssh -i ${KEY_PATH} root@kindle
You can also add it to .ssh/config to avoid the need to do this every time:
Code:
Host kindle
  User root
  Hostname 192.168.15.244
  IdentityFile $KEY_PATH
  KexAlgorithms +diffie-hellman-group1-sha1
  StrictHostKeyChecking no
katadelos is offline   Reply With Quote