如何指定通过 ipaddress 连接服务器时使用哪个密钥?
我试过了,但没有用
Host 1.2.3.4
IdentityFile ~/.ssh/my_other_key
答案1
要么使用-i
选项,如
ssh -i ~/.ssh/my_other_key 1.2.3.4
或者在配置中使用 IdentityFile,正确的语法是
Host 1.2.3.4
IdentityFile=~/.ssh/my_other_key
注意 Host 关键字后的行缩进。
如何指定通过 ipaddress 连接服务器时使用哪个密钥?
我试过了,但没有用
Host 1.2.3.4
IdentityFile ~/.ssh/my_other_key
要么使用-i
选项,如
ssh -i ~/.ssh/my_other_key 1.2.3.4
或者在配置中使用 IdentityFile,正确的语法是
Host 1.2.3.4
IdentityFile=~/.ssh/my_other_key
注意 Host 关键字后的行缩进。