是否可以在SSH配置文件中定义多个主机?

时间:2013-09-02 10:07:49

标签: windows amazon-web-services ssh cygwin config

我是新手。我不知道是否有人问过这个问题。我正在使用CYGWIN for windows。我已经为我的一个站点创建了一个快捷方式,使SSH变得简单,并且它工作正常。我做了以下

Host shortcut    
  HostName hostname.com
  User ubuntu    
  IdentityFile "~/.ssh/path-to-file.pem"

现在我想把这个东西带到另一个网站,因为输入我的主机名很麻烦。是否可以在同一个config文件中定义?或者应该在新文件中完成?还是不可能?

1 个答案:

答案 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