bash/ssh 测试公钥身份验证

发布于 2024-11-02 19:05:47 字数 233 浏览 0 评论 0原文

有没有办法以编程方式测试 ssh 是否可以使用公钥进行身份验证?我想做这样的事情(最好在 bash 中,但我对 python 解决方案持开放态度):

ssh-test-thingy user@host || echo "could not authenticate using publickey"

如果远程上没有公钥匹配,则 ssh-test-thingy 返回非零退出状态主持人。

Is there a way to programmatically test whether ssh can authenticate using a public key? I would like to do something like this (preferably in bash, but am open to a python solution):

ssh-test-thingy user@host || echo "could not authenticate using publickey"

where ssh-test-thingyreturns a non-zero exit status if no public key matches on the remote host.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

◇流星雨 2024-11-09 19:05:47

我将选项 -o BatchMode=yes 传递给 ssh 并查看是否有效。它将禁用输入密码的提示,我认为这在实践中相当于您想了解是否可以通过密钥进行身份验证。 ssh-test-thingy 可以编写为 bash 脚本,如下所示:

exec ssh -o BatchMode=yes "$@" true

这将简单地传递 user@host (以及任何其他参数),并尝试运行 true在远程主机上,如果有效,将立即返回成功状态代码 (0)。

I'd pass the option -o BatchMode=yes to ssh and see if that works. It will disable prompting for a password, which I think is equivalent in practice to your desire to find out if authentication via keys is possible. ssh-test-thingy could be written as a bash script like so:

exec ssh -o BatchMode=yes "$@" true

This will simply pass the user@host (and any other arguments) along, and try to run true on the remote host, which if it works will immediately return a status code of success (0).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文