0%

在iterm2中设置保存远程登录密码

最近在mac中折腾ssh自动登录的问题,不自动登录每次输入命令太痛苦了,采取的方案是expect脚本的方式。

expect脚本

1
2
3
4
5
6
7
8
9
10
11
12
vim /usr/local/bin/login.exp
#!/usr/bin/expect

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

该脚本比较简单,需要四个参数,第一个参数是远程用户名,第二个参数是远程地址,第三个参数是SSH端口,第四个是密码。
给expect脚本赋予可执行权限。

1
chmod +x /usr/local/bin/login.exp

配置iterm2

在iterm2中用command+o快捷键打开profiles,点击Edit Profiles,按照下图的方式配好后,双击可即可自动登录。
Preferences