iterm2免密码连接远程服务器教程

iterm2免密码连接远程服务器

  1. command+O:打开iterm的Profiles。如下图
    iterm2免密码连接远程服务器教程_第1张图片
  2. 打开:Edit Profiles,页面如下图
    点击左侧底部➕
    iterm2免密码连接远程服务器教程_第2张图片
  3. Send text at start位置写:/Users/XXX/iterm_login.sh 22 username 服务器ip password
    demo:/Users/xiaoming/iterm_login.sh 22 lihua 192.168.0.0 lihua123
  4. 这个位置的文件内容/Users/xiaoming/iterm_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
  1. 下次连接服务器直接command+o打开选中回车即可。

你可能感兴趣的:(技术,bug解决,python,服务器,运维,macos)