| I am attempting to use bolt run date --node <hostname> and am receiving the following error, which I believe is related to my host ssh ca certificates:
➜ ~ bolt command run date --nodes <hostname> |
Started on <hostname>... |
Failed on <hostname>: |
Failed to connect to <hostname>: host key algorithm mismatch for signature 'ssh-ed25519' != 'ssh-ed2551...@openssh.com' |
Failed on 1 node: <hostname> |
Ran on 1 node in 0.21 seconds |
I have experimented with various forms of --no-host-key-check and trying to use an RSA public key rather than ed25519. The hosts public key is signed using a public key which I trust, and this is configured as the sole line in my ~/.ssh/known_hosts:
@cert-authority * ssh-ed25519 <caPublicKey> <ca-comment> |
As currently configured, I am able to ssh to this host normally and without a password. |