Mac下使用iTerm2让SSH免密码登录远程服务器

第一步: 创建shell命令文件,具体的路径自己放置,示例: ~/.ssh/login.sh

#!/usr/bin/expect

set timeout 30
spawn ssh -p [lindex $argv 0] [lindex $argv 1]@[lindex $argv 2]
expect {
        "(yes/no)?"
        {send "yes\n";exp_continue}
        "password:"
        {send "[lindex $argv 3]\n"}
}
interact

第二步:赋予文件可执行权限

chmod +x ~/.ssh/login.sh

第三步: 设置iterm2,在profiles中建立一个新profile,配置如下:

Mac下使用iTerm2让SSH免密码登录远程服务器_第1张图片
img

profile设置

1、Name: 填写便于记忆的名称

2、Login shell -> Send text at start:

~/.ssh/login.sh 端口 root ip地址 password

第四步: 运行profile, 在iterm2的顶部工具栏有一栏Profiles,就可以看到对应的profle,双击就可以了。

你可能感兴趣的:(Mac下使用iTerm2让SSH免密码登录远程服务器)