BW ssh-agent and .ssh/config

I’m working on a Linux machine and my private SSH keys are usually managed by .ssh/config. I’m now trying the BW ssh agent from the desktop app.

TL;DR:

  • Only with an IdentityFile set in the config file the BW SSH agent is queried.
  • However, this file is not used when BW has the key in its store, but is has to be there anyway.

Is there a better way of configuring the system without this duplication of keys?

Long read:

My .ssh/config looks something like this:

host *
  IdentitiesOnly yes
  AddKeysToAgent yes

Host YYYYYYY
  HostName XXXXX.org
  Port 12345
  User name
  IdentityFile /home/mike/.ssh/myprivatekey

This way I can simply type

ssh YYYYYYY

without specifying host name, user, port, or identity file.

I’ve started to migrate the ssh keys to Bitwarden, which asks for the passphrase. This makes it likely that Bitwarden stores the keys “naked”.
Then I’ve added BW as ssh key agent and now I’m being prompted every time a ssh-key is being asked for. So far so good.

However, I can not drop the “IdentityFile” from .ssh/config nor can I delete the IdentityFile itself.
Only with that line and the file present will BW be queried - without reading the file itself.

The problem is made worse when BW generates the ssh key.

In order to get the entry in .ssh/config working, I have to

  • copy the private key to disk
  • change its access permissions
  • encrypt it with a passphrase (because the BW copy is not password protected)

…only for the file not being used after all - but it has to be there.

Is there a smarter way to solve this?

From man ssh_config:

     IdentityFile
             Specifies a file from which the user's DSA, ECDSA, authenticator-
             hosted ECDSA, Ed25519, authenticator-hosted Ed25519 or RSA au‐
             thentication identity is read.  You can also specify a public key
             file to use the corresponding private key that is loaded in
             ssh-agent(1) when the private key file is not present locally.

Oh… using the public key instead of the private one worked :slight_smile:
…if the private key is stored in the ssh agent.

Thanks for the info.

1 Like