Mac 上 iterm2 配置免密登录开发机
环境
MAC电脑
系统自带“终端”
目的
终端下已登录relay,打开新的窗口(command+t),命令行执行:ssh username@relay01.baidu.com,可免密登录到relay
配置
打开文件 ~/.ssh/config,保存如下内容:
Host *
ControlMaster auto
ControlPath ~/.ssh/master-%r@%h:%p
ControlPersist yes
ServerAliveInterval 60
ControlMaster #连接共享
ControlPath #与ControlMaster一起使用,指定连接共享的路径
ControlPersist #与ControlMaster一起使用,在后台保持打开
ServerAliveInterval #与服务器通讯的时间间隔(秒)
官方文档:http://man.openbsd.org/ssh_config.5
以上内容亲测有效 以上内容是在本地MAC上配置
我的配置