Signing back into the Community for the first time? You'll need to reset your password to access your account. Find out more.
Forum Discussion
Former Member
2 years agoHow to fall back to password authentication when using the SSH-Agent
Is there a way to fallback to password authentication and ignore the ssh-agent?
1Password Version: Not Provided
Extension Version: Not Provided
OS Version: Not Provided
Browser:_ Not Provided
- floris_1P
1Password Team
Yes, you can use the
PreferredAuthentications
field in the SSH config. For example:```
Host some-host-to-authenticate-with-server-password
PreferredAuthentications passwordHost some-host-with-server-password-fallback
PreferredAuthentications publickey,password
``` - Former Member
Interesting, that has no affect for me.