sshpass+expect解决交互式问题

1、sshpass:

使用场景:

ssh登陆不能在命令行中指定密码,sshpass 的出现,解决了这一问题,用于非交互的ssh 密码验证 它支持密码从命令行,文件,环境变量中读取。

安装

[[email protected] ~]# yum install sshpass -y
已安装:
  sshpass.x86_64 0:1.05-1.el6                                                                                                                 

完毕!
[[email protected] ~]#

参数:

[[email protected] ~]# 
[[email protected] ~]# sshpass --help
sshpass: invalid option -- ‘-‘
Usage: sshpass [-f|-d|-p|-e] [-hV] command parameters
   -f filename   Take password to use from file
   -d number     Use number as file descriptor for getting password
   -p password   Provide password as argument (security unwise)
   -e            Password is passed as env-var "SSHPASS"
   With no parameters - password will be taken from stdin

   -h            Show help (this screen)
   -V            Print version information
At most one of -f, -d, -p or -e should be used
#这里sshpass支持三种模式,密码,文件,环境变量

案例:

简单模式:(修改端口,主机互信)
[[email protected] ~]# ssh [email protected] -p21386 ‘ls‘
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
[email protected]‘s password: 
node2
RPM-GPG-KEY-EPEL-6
[[email protected] ~]#

#命令行下:
[[email protected] ~]# sshpass -prenzhiyuan ssh [email protected] -p21386 ‘ls‘
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
node2
RPM-GPG-KEY-EPEL-6
[[email protected] ~]#

#文件模式:
[[email protected] ~]# cat renzhiyuan 
renzhiyuan
[[email protected] ~]# sshpass -f renzhiyuan ssh [email protected] -p21386 ‘ls‘
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
node2
RPM-GPG-KEY-EPEL-6
[[email protected] ~]#

#环境变量里面
[[email protected] ~]# cat /etc/profile.d/renzhiyuan.sh 
export SSHPASS="renzhiyuan"
sshpass -e ssh [email protected] -p21386 ‘ls‘
[[email protected] ~]#
[[email protected] ~]# /etc/profile.d/renzhiyuan.sh 
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
node2
RPM-GPG-KEY-EPEL-6
[[email protected] ~]#


2、expect:

使用场景:

通过Shell可以实现简单的控制流功能,如:循环、判断等。但是对于需要交互的场合则必须通过人工来干预,有时候我们可能会需要实现和交互程序如telnet服务器等进行交互的功能。

而expect是一个免费的编程工具语言,用来实现自动和交互式任务进行通信,而无需人的干预。

[[email protected] ~]# yum install expect -y
已安装:
  expect.x86_64 0:5.44.1.15-5.el6_4                                                                                                           

作为依赖被安装:
  tcl.x86_64 1:8.5.7-6.el6                                                                                                                    

完毕!
[[email protected] ~]#

案例:

2.1)ssh实现自动登录,并停在登录服务器上
yum  install expect -y
[[email protected] ~]# cat ssh.sh 
#!/usr/bin/expect -f  
set ip [lindex $argv 0 ]  
set password [lindex $argv 1 ]
set timeout 20        
spawn ssh -p21386 [email protected]$ip
expect {
"*yes/no" { send "yes\r"; exp_continue } 
"*password:" { send "$password\r" }
}  
interact 
                               
[[email protected] ~]# ./ssh.sh 192.168.1.221 renzhiyuan
spawn ssh -p21386 [email protected]
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
[email protected]‘s password: 
Last login: Wed Dec  7 16:43:27 2016 from 192.168.1.217
[[email protected] ~]#

#!/usr/bin/expect -f  
 set ip [lindex $argv 0 ]                   //接收第一个参数,并设置IP  
 set password [lindex $argv 1 ]             //接收第二个参数,并设置密码  
 set timeout 10                             //设置超时时间  
 spawn ssh [email protected]$ip                         //发送ssh请滶  
 expect {                                   //返回信息匹配  
 "*yes/no" { send "yes\r"; exp_continue}    //第一次ssh连接会提示yes/no,继续  
 "*password:" { send "$password\r" }        //出现密码提示,发送密码  
 }  
 interact                                   //交互模式,用户会停留在远程服务器上面. 
 

2、2)根据IP和密码连接到不同的机器.
[[email protected] ~]# ./ssh.sh 
spawn ssh -p21386 [email protected]
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
[email protected]‘s password: 
Last login: Wed Dec  7 16:43:56 2016 from 192.168.1.217
[[email protected] ~]#

2.3)远程登录到服务器,并且执行命令,执行完后并退出
[[email protected] ~]# ./ssh.sh 
spawn ssh -p21386 [email protected]
Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
[email protected]‘s password: 
Last login: Wed Dec  7 16:45:33 2016 from 192.168.1.217
[[email protected] ~]# pwd
/root
[[email protected] ~]# exit
logout
Connection to 192.168.1.221 closed.
[[email protected] ~]#

3、问题:(能力有限,至今寻求帮助和研究都没出来)

如果做的是有密码的ssh互信,如何利用sshpass或者except解决密钥密码交互式问题?

3.1)#sshpass -p ‘密码‘ ssh -p21345 -i renzhiyuan 用户@ip (不可取)

2.2)except脚本居然没能越过ssh密钥的密码。

欢迎大家各抒己见,互相学习进步。

时间: 2024-12-13 09:41:57

sshpass+expect解决交互式问题的相关文章

expect实现交互式输入

一.用expect实现交互式输入 #!/usr/bin/expect -fset LUKS_passphrase xxxx123set Verify_passphrase xxxx123spawn cryptsetup luksFormat /dev/vdb1 expect "Are you sure? (Type uppercase yes):"set timeout 5send "YES\r" expect "Enter LUKS passphrase

Expect 自动交互式程序

1. Expect 自动交互式程序介绍及安装 1.1 Expect 介绍 Expect 是一个用来实现自动化交互功能的软件套件. 1.2 为什么使用 Expect 在现今的企业运维中,自动化运维已经成为运维的主流趋势,但是在很多情况下,执行系统命令或程序时,系统会以交互式的形式要求运维人员输入指定的字符串,之后才能继续执行命令.例如: ① 为用户设置密码时,一般情况下就需要手工输入两次密码 ② 使用 SSH 远程连接服务时,第一次连接要和系统实现两次交互式输入: 简单地说,Expect 就是用来

expect非交互式功能实战

非交互式工具:expect,sshpass,pash 在管理机m01上面安装expece [[email protected] ~]# rpm -qa expect  #检查有没有安装expect[[email protected] ~]# yum install expect -y #用yum安装expect 安装完后再查看是否有 [[email protected] ~]# rpm -qa expectexpect-5.44.1.15-5.el6_4.x86_64 检查已经安装 非交互式生成

sshpass 一个免交互式ssh登录工具

centos 下面使用yum方式安装sshpass 远程登录其他机器执行命令,之前一直用export 脚本的方式.现在感觉用这个更加方便一点,但是不安全,不建议在生产环境中使用此命令! 安装epel源 wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo yum install sshpass -y 命令使用: sshpass  -p 'password' ssh [email protecte

《跟老男孩学Linux运维之shell编程实战》-第一章 shell脚本初步入门

本文是在学习<跟老男孩学Linux运维之shell编程实战>这本书时记录的知识点.看了这本书,我受益匪浅,当然这仅是我个人观点.下面我们言归正传,开始了解一下shell脚本吧! shell本身是一个命令解释器,它的作用是解释执行用户输入的命令及程序等. shell脚本语言的种类:sh.ksh.bash.csh.tcsh,Linux中主流的shell是bash,所以本文及后续shell脚本以bash为主. 那我们如何查看Linux系统中默认的shell? [[email protected] ~

(转)SSH批量分发管理&amp;非交互式expect

目录 1 SSH批量分发管理 1.1 测试环境 1.2 批量管理步骤 1.3 批量分发管理实例 1.3.1 利用sudo提权来实现没有权限的用户拷贝 1.3.2 利用sudo提权开发管理脚本 1.3.3 利用rsync来实现增量备份 1.4 SSH批量管理分发脚本实战 1.5 SSH批量管理总结 2 非交互式expect 2.1 非交互式生成密钥及实现批量管理 2.2 一键批量安装httpd服务 2.3 一键自动化50台规模集群网站 1 SSH批量分发管理 基于口令的,如何实现批量管理:expe

sshpass笔记

sshpass简介 ssh登录的时候使用的是交互式输入,不能预先在命令行使用参数指定密码,sshpass就是为了解决这个问题的.sshpass提供非交互式输入密码的方式,可以用在shell脚本中自动输入密码. 比如在执行ssh.scp.rsync等命令时可以使用sshpass来实现预先指定密码. 安装 CentOS使用yum安装即可: yum install sshpass 使用 -p指定明文密码 使用-p选项在ssh登录的时候指定明文密码: sshpass -p nopasswd ssh [e

sshpass的安装使用

介绍:sshpass可以解决scp时的密码交互式输入.主要用于脚本当中,缺点是容易暴露密码,泄露安全信息.1.安装 yum install sshpass2.使用命令sshpass -p (passwd) scp (绝对路径文件)[email protected](IP):/home/copy#如果拷贝文件夹需要添加scp -r 参数3.脚本方式 #!/bin/bash password=qwer user=root ip=192.168.1.100 file=/home/file.txt ss

expect基本使用方法

参考: http://www.cnblogs.com/lzrabbit/p/4298794.html expect是linux系统中可以和子进程进行交互的一个命令,使用它可以做一些自动化工作.python中也有一个模块pexpect,提供了类似的功能. 例如:使用ssh登陆需要输入密码,可以使用expect代替手工输入. 例如:使用passwd修改账户密码,也可以使用expect代替. expect用多种执行方式,交互式,执行文件,执行命令. 1.交互式 在命令行输入expect进入交互式 常用