Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
sososo
4 years agoOccasional Contributor
No fingerprint prompt when SSHing
Hi,
I've gone over the doc multiple times but can't seem to get it to work. I settled on a per key activation to avoid impacting my work. When I look in the logs I can see
INFO 2022-07-07T09:3...
sososo
4 years agoOccasional Contributor
Hi floris_1P ,
thanks for helping out. I fixed my typo (thanks for that) and did all the steps again in the following order
- Enable 1P SSH agent
- Log into Linode and generated an SSH Key
- tried to login via ssh without success. Same problem, no prompt.
My Linode ssh config:
~~~
Host linode
User jdoe
Hostname 123.123.123.123
IdentitiesOnly yes
IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
~~~
I did not export SSH_AUTH_SOCK
as I guess I don't needed if I use the agent.sock in the ssh config.
I do however have the following settings which might affect things, what do you think? Disabling bellow doesn't seem to improve anything.
~~~
Host *
UseKeychain yes
AddKeysToAgent yes
TCPKeepAlive yes
ServerAliveInterval 59
ServerAliveCountMax 3
~~~
I also do the following check which all seems ok
~~~
$ ssh-add -l
256 SHA256:PfY15ZT3nH123123EcR7UdPSrJ+rtufgqf5CMDYKXYw aws (ED25519)
$ SSH_AUTH_SOCK=~/.1password/agent.sock ssh-add -l
256 SHA256:hE2UmRsuU123123xDFNeshruftNhRCiHblPEOXhL4c Linode (ED25519)
~~~
What am I missing?