You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, there are three authentication methods: password, pubkey, ssh-agent.
If the 3 auth methods are all valid, the current priority order is password > pubkey > ssh-agent.
But I think a more reasonable order should be: ssh-agent > pubkey > password. The next gossh version will adjust the order to this.
Tips:
You can observe the actual authentication method used from the /var/log/secure file of the target host.
tail -f /var/log/secure
The text was updated successfully, but these errors were encountered:
Now, there are three authentication methods:
password
,pubkey
,ssh-agent
.If the 3 auth methods are all valid, the current priority order is
password
>pubkey
>ssh-agent
.But I think a more reasonable order should be:
ssh-agent
>pubkey
>password
. The nextgossh
version will adjust the order to this.Tips:
You can observe the actual authentication method used from the
/var/log/secure
file of the target host.The text was updated successfully, but these errors were encountered: