Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
4 years agoJust tried to configure 1Password SSH and am having trouble (Windows 11)
Hi, I get an error when I try the test recommended in the set up document. When I run ssh -T git@github.com , I get
sign_and_send_pubkey: signing failed: agent refused operation
git@github.c...
K_J__1P
1Password Team
4 years ago@chatii A possible cause is the client/server is attempting key exchange with ssh-rsa
(RSA with SHA1) which is not supported. 1Password currently only supports rsa-sha2-512
and rsa-sha2-256
for RSA keys. A quick way to test is with the following command:
```
Github supports rsa-sha2 and it takes precedence over ssh-rsa
ssh -vvT git@github.com ls |& grep 'peer server KEXINIT proposal' -A3 | grep 'host key algorithms'
debug2: host key algorithms: ssh-ed25519,ecdsa-sha2-nistp256,rsa-sha2-512,rsa-sha2-256,ssh-rsa
Azure DevOps only supports ssh-rsa
ssh -vvT git@ssh.dev.azure.com ls |& grep 'peer server KEXINIT proposal' -A3 | grep 'host key algorithms'
debug2: host key algorithms: ssh-rsa
```
If rsa-sha2
is supported, but has lower preference than ssh-rsa
, PubkeyAcceptedKeyTypes
in ~/.ssh/config
can be used to remove it from the proposed lois