Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
3 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
2 Replies
- Former Member
Interesting, that has no affect for me.
- 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
```