ssh配置文件config

ssh配置文件有2处:

  • /etc/ssh/ssh_config
  • ~/.ssh/config

第二处是针对用户级别的,这里编辑的就是它.

示例:

Host host00
    HostName 12.122.62.77
    Port 8088
    User smith

#远程服务器别名    
Host host01    
    #远程服务器地址
    HostName www.gggg.com
    #远程端口
    Port 6061
    #远程登录用户名
    User git-ted
    #私钥,必须是绝对路径
    IdentityFile ~/.ssh/id_rsa

保存.
使用 ssh host00 便可以连接到域名为 12.122.62.77 的服务器. ssh host01 可以连接到 www.gggg.com 的服务器.

若想使用 scp,可以这样: scp ./file host00:~/xxx

你可能感兴趣的:(ssh)