公钥-私钥对 ssh 授权用于其他登录

公钥-私钥对 ssh 授权用于其他登录

目前我正在使用 ssh 连接到我的服务器

ssh 域名.com -l root

我已通过公钥和私钥对进行身份验证。

我的 Mac 用户名与 root 不同,所以我需要提供 -l 键。

有没有选项可以输入此密钥,所以简单来说:

ssh 域名.com

答案1

把这个放进去~/.ssh/config

    Host domain
    Hostname domain.com
    User root

然后你就可以简单地做ssh domain

相关内容