我是新手。我不知道是否有人问过这个问题。我正在使用CYGWIN for windows。我已经为我的一个站点创建了一个快捷方式,使SSH变得简单,并且它工作正常。我做了以下
Host shortcut
HostName hostname.com
User ubuntu
IdentityFile "~/.ssh/path-to-file.pem"
现在我想把这个东西带到另一个网站,因为输入我的主机名很麻烦。是否可以在同一个config
文件中定义?或者应该在新文件中完成?还是不可能?
答案 0 :(得分:2)
可以在同一config
中定义。它看起来像以下示例
Host shortcut
HostName hostname.com
User ubuntu
IdentityFile ~/.ssh/path-to-file.pem
Host shortcut2
HostName hostname2.com
User ubuntu
IdentityFile ~/.ssh/path-to-file2.pem