如果我尝试连接到某个服务器
ssh example.com
ssh 中止,Too many authentication failures
因为我的 .ssh 文件夹中有超过 5 个 ssh 密钥,并且它循环遍历所有这些密钥,但没有一个适合(详细描述在这里)
我怎样才能告诉 ssh 不要查看我的密钥而只给我密码提示?
答案1
以下方法有效:
ssh -o PreferredAuthentications=password host.example.org
如果我尝试连接到某个服务器
ssh example.com
ssh 中止,Too many authentication failures
因为我的 .ssh 文件夹中有超过 5 个 ssh 密钥,并且它循环遍历所有这些密钥,但没有一个适合(详细描述在这里)
我怎样才能告诉 ssh 不要查看我的密钥而只给我密码提示?
以下方法有效:
ssh -o PreferredAuthentications=password host.example.org