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

  • bloubz
    link
    fedilink
    arrow-up
    3
    ·
    5 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.