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
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 Pro...
floris_1P
1Password Team
3 years agoYes, you can use the PreferredAuthentications
field in the SSH config. For example:
```
Host some-host-to-authenticate-with-server-password
PreferredAuthentications password
Host some-host-with-server-password-fallback
PreferredAuthentications publickey,password
```