使用 ssh 而不尝试 ssh-keys

使用 ssh 而不尝试 ssh-keys

如果我尝试连接到某个服务器

ssh example.com

ssh 中止,Too many authentication failures因为我的 .ssh 文件夹中有超过 5 个 ssh 密钥,并且它循环遍历所有这些密钥,但没有一个适合(详细描述在这里

我怎样才能告诉 ssh 不要查看我的密钥而只给我密码提示?

答案1

以下方法有效:

ssh -o PreferredAuthentications=password host.example.org

相关内容