目前我正在使用 ssh 连接到我的服务器
ssh 域名.com -l root
我已通过公钥和私钥对进行身份验证。
我的 Mac 用户名与 root 不同,所以我需要提供 -l 键。
有没有选项可以输入此密钥,所以简单来说:
ssh 域名.com
?
答案1
把这个放进去~/.ssh/config
Host domain
Hostname domain.com
User root
然后你就可以简单地做ssh domain
。
目前我正在使用 ssh 连接到我的服务器
ssh 域名.com -l root
我已通过公钥和私钥对进行身份验证。
我的 Mac 用户名与 root 不同,所以我需要提供 -l 键。
有没有选项可以输入此密钥,所以简单来说:
ssh 域名.com
?
把这个放进去~/.ssh/config
Host domain
Hostname domain.com
User root
然后你就可以简单地做ssh domain
。