this post was submitted on 02 Feb 2024
1 points (100.0% liked)

Open Source

30364 readers
734 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
 

Disclaimer : I am absolute noob in terms of SSH kind of stuffs.

I maded a SSH key on ConnectBot app on android.I still have password of that key.I got a private and public key.I shared public key with tildes for making accounts.Now they know me by my that key but I want to login by termux. On termux I installed openssh and tried to login it says that authentication failed.

So I just need to backup keys from connected bot and restore on termux and my PC . Will it work ? How to do it? Will making a new pair of keys using same pass and name will work?

I did not got anything regarding this on searches

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 7 months ago

If you sent a public key for connection, only the private key associated with it will be able to connect. If you regenerate new keys, it doesn't matter what passphrase you use, it will be different keys. Keys are randomly generated and your passphrase does not impact this, it "only" encrypts your private key at rest so that if someone steals it, it cannot be used without the passphrase.

It is generally advised to create different key pairs for each device and each server to connect to, in this since both termux and connectbot are an your phone you may want to use the same key, or you may generate a new key pair in termux and share the public key again to be authorized to connect with this new private key.

If you want to reuse your old key, you have to find where it currently is and copy it to ~/.ssh/. I would advise to inform ssh how to connect to your server by editing (or creating) the ~/.ssh/config file (you can find the syntax online). It should mention the key to use to connect to your host.