自动化交互expect

时间:2023-07-21 11:43:08

自动化交互expect

一,介绍

    每次服务器控制链接都需要输入密码,很麻烦,每次交互大大延长了时间

因此就有了免交互及自动化交互存在expect

二,安装

    yum install expect -y

    查看是否安装成功

    rpm -qa expect

自动化交互expect

  自动化交互expect

  自动化交互expect

  安装算是完成了

三,ssh链接交互

  主机:三台 ---->一台主控制服务器

  10.0.0.203        ----mysql服务器

  10.0.0.204  -----web服务器

  自动化交互expect

  手动链接服务器的话需要实现两次交互操作

  我们现在用expect交互

  编写kingle.exp文件

 #!/uer/bin/expect
#解析开头
spawn ssh root@10.0.0.203 uptime
#执行ssh命令
expect "*password"
#获取字符串
send "123456\n"
#获取到子浮川的时候自动发送密码,\n换行
expect eof
#结束

  运行expect脚本

  # expect kingle.exp

  少了一次密码交互这样

  

自动化交互expect

四,实战分析

  实战一 ,交互式执行命令

  expect脚本

  

 #########################################################################
# File Name: command.exp
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月03日 星期五 16时21分13秒
#########################################################################
#!/usr/bin/expect
if { $argc != } { #判断传入值个数是不是两个
puts "usage: expect $argv0 ip command"  #报错信息
exit #退出
}
set ip [ lindex $argv ] # 接受ip信息复制给ip
set cmd [ lindex $argv ] # 接收命令赋值给cmd
set password "123456"  #设置密码
spawn ssh root@$ip $cmd  #客户端执行的命令
expect {  #配置交互模块
"yes/no" {send "yes\r;exp_continue"}  #收到yes/no就发送yes交互,并持续接受
"*password" {send "$password\r"}  #收到密码则发送密码
}
expect eof  #结束

  执行结果如下

自动化交互expect

  传入IP的值  和传入 需要执行的命令

  使用shell进行多台内网交互

  

 #########################################################################
# File Name: command.sh
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月03日 星期五 16时44分04秒
#########################################################################
#!/bin/bash
if [ $# -ne 1 ]
#是否传入值
then
echo $"USAGE:$0 cmd"
#输出需要传入命令操作
exit
fi
cmd=$
#传值
for n in
#for 循环调用
do
expect command.exp 10.0..$n "$cmd"
#expect 调用脚本 并且给予值
done

执行脚本

sh commaod.sh

自动化交互expect

成功 显示两台服务器的负载信息

我们在看一下他的其他信息

自动化交互expect

实战二,批量发送文件

  expect脚本:

  

#########################################################################
# File Name: fileup.exp
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月03日 星期五 16时44分04秒
########################################################################
#!/usr/bin/expect
if { $argc != } {
puts "usage: expect $argv0 file host dir"
exit
}
set file [lindex $argv ]
#获取数据并传值
set host [lindex $argv ]
set dir [lindex $argv ]
set password "123456"
spawn scp -P22 -rp $file root@$host:$dir
#执行命令
expect {
"yes/no" {send "yes\r" ;exp_continue}
"*password" {send "$password\r"}
}
expect eof

我们发送文件看看

expect fileup.exp /etc/hosts 10.0.0.203 /home

自动化交互expect

显示成功了,,好了我们要集群网络发送了编写脚本

 

 #########################################################################
# File Name: fileup.sh
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月03日 星期五 16时16分12秒
#########################################################################
#!/bin/bash
if [ $# -ne 2 ]
then
echo $"USAGE:$0 file dir"
exit
fi
file=$
dir=$
for n in
do
expect fileup.exp $file 10.0..$n $dir
done

使用脚本执行命令

sh fileup.sh fileup.sh /tmp

 自动化交互expect

我看一下是否成功了呢

自动化交互expect

 自动化交互expect

可以看到成功额,不过我的服务器名字一样不好看呢

这样就成功了

我们结合上面的两个来实战一下全网络安装系统

我们编写个安装脚本

全集群下载源码包

wget -P /root/opt http://www.linuxvirtualserver.org/software/kernel-2.6/ipvsadm-1.26.tar.gz

自动化交互expect

自动化交互expect

把这个文件发放到整个局域网

自动化交互expect

查看下局域网是否存在

自动化交互expect

然后通过第一个脚本进行执行命令

自动化交互expect

注意执行命令用source

自动化交互expect

我们查看一下

  自动化交互expect

已经下好了

实战三,ssh面登入交互部署

  ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa &>/dev/null

  自动化交互expect

  生成本地密钥

  全局下发公钥

 #########################################################################
# File Name: ssh.exp
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月03日 星期五 16时16分12秒
#########################################################################
#!/usr/bin/expect
if { $argc != } {
send_user "usage: expect.exp file host\n"
exit
}
set file [lindex $argv ]
set host [lindex $argv ]
set password "123456"
spawn ssh-copy-id root@$host
expect {
"yes/no" {send "yes\r";exp_continue}
"*password" {send "$password\r"}
}
expect eof

ssh脚本全局下发

 #########################################################################
# File Name: ssh.sh
# Author: kingle
# Mail: kingle122@vip.qq.com
# Created Time: 2018年08月04日 星期六 17时11分23秒
#########################################################################
#!/bin/bash
for n in
do
expect ssh.exp ~/.ssh/id_dsa.pub 10.0..$n
done

执行脚本

就完成了

现在我们看下

配置脚本

uptime.sh

ssh 10.0.0.203 uptime

ssh 10.0.0.204 uptime

不用密码就能交互了