我是新来的。 我不知道这个问题是否被问到。 我正在使用CYGWIN for windows。 我已经为我的网站创build了一个快捷方式,使SSH变得简单,并且工作得很好。 我做了以下
Host shortcut HostName hostname.com User ubuntu IdentityFile "~/.ssh/path-to-file.pem"
现在我想把这个事情做到另一个网站,因为input我的大主机名是一个麻烦。 是否有可能在同一个config
文件中定义? 或者应该在新文件中完成? 或者是不可能的?
它可以在相同的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