系统相关
首页 > 系统相关> > Mac iTerm2 ssh连接Linux服务器

Mac iTerm2 ssh连接Linux服务器

作者:互联网

User:www.redelego.cn

Create Time:2021/6/10 9:00 上午

expect+配置文件来登陆

manual> 在一个目录下创建一个expect执行的脚本文件
txt> #!/usr/bin/expect -f
     set user xxx
     set password xxxxx
     set host xxxxx
     set port 22
     set timeout -1        
     spawn ssh $user@$host
     expect "*assword:*"
     send "$password\r"
     interact
     expect eof
manul> 进入iterm2 -> preference -> profiles
manul> 在send text at start 处输入指令
       txt> expect file_path
manual> profiles下点击具体标签登陆

克隆连接

manual> 目录下的.ssh文件夹创建一个config文件(不要修改名称)
txt> host *
     ControlMaster auto
     ControlPath ~/.ssh/master-%r@%h:%p

标签:set,manual,iTerm2,Mac,expect,txt,ssh
来源: https://blog.csdn.net/u011078141/article/details/117768610