博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sshpass+expect解决交互式问题
阅读量:5971 次
发布时间:2019-06-19

本文共 4281 字,大约阅读时间需要 14 分钟。

hot3.png

1、sshpass:

使用场景:

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

安装

1

2

3

4

5

6

[root@node6 ~]# yum install sshpass -y

已安装:

  sshpass.x86_64 0:1.05-1.el6                                                                                                                 

 

完毕!

[root@node6 ~]#

参数:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

[root@node6 ~]

[root@node6 ~]# 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支持三种模式,密码,文件,环境变量

案例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

简单模式:(修改端口,主机互信)

[root@node3 ~]# ssh root@192.168.1.221 -p21386 'ls'

Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

root@192.168.1.221's password: 

node2

RPM-GPG-KEY-EPEL-6

[root@node3 ~]#

 

#命令行下:

[root@node3 ~]# sshpass -prenzhiyuan ssh root@192.168.1.221 -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

[root@node3 ~]#

 

#文件模式:

[root@node3 ~]# cat renzhiyuan 

renzhiyuan

[root@node3 ~]# sshpass -f renzhiyuan ssh root@192.168.1.221 -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

[root@node3 ~]#

 

#环境变量里面

[root@node3 ~]# cat /etc/profile.d/renzhiyuan.sh 

export SSHPASS="renzhiyuan"

sshpass -e ssh root@192.168.1.221 -p21386 'ls'

[root@node3 ~]#

[root@node3 ~]# /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

[root@node3 ~]#

2、expect:

使用场景:

 

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

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

1

2

3

4

5

6

7

8

9

[root@node6 ~]# yum install expect -y

已安装:

  expect.x86_64 0:5.44.1.15-5.el6_4                                                                                                           

 

作为依赖被安装:

  tcl.x86_64 1:8.5.7-6.el6                                                                                                                    

 

完毕!

[root@node6 ~]#

案例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

2.1)ssh实现自动登录,并停在登录服务器上

yum  install expect -y

[root@node3 ~]# cat ssh.sh 

#!/usr/bin/expect -f  

set ip [lindex $argv 0 ]  

set password [lindex $argv 1 ]

set timeout 20        

spawn ssh -p21386 root@$ip

expect {

"*yes/no" { send "yes\r"; exp_continue } 

"*password:" { send "$password\r" }

}  

interact 

                                

[root@node3 ~]# ./ssh.sh 192.168.1.221 renzhiyuan

spawn ssh -p21386 root@192.168.1.221

Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

root@192.168.1.221's password: 

Last login: Wed Dec  7 16:43:27 2016 from 192.168.1.217

[root@node3 ~]#

 

#!/usr/bin/expect -f  

 set ip [lindex $argv 0 ]                   //接收第一个参数,并设置IP  

 set password [lindex $argv 1 ]             //接收第二个参数,并设置密码  

 set timeout 10                             //设置超时时间  

 spawn ssh root@$ip                         //发送ssh请滶  

 expect {                                   //返回信息匹配  

 "*yes/no" { send "yes\r"; exp_continue}    //第一次ssh连接会提示yes/no,继续  

 "*password:" { send "$password\r" }        //出现密码提示,发送密码  

 }  

 interact                                   //交互模式,用户会停留在远程服务器上面. 

  

 

2、2)根据IP和密码连接到不同的机器.

[root@node3 ~]# ./ssh.sh 

spawn ssh -p21386 root@192.168.1.221

Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

root@192.168.1.221's password: 

Last login: Wed Dec  7 16:43:56 2016 from 192.168.1.217

[root@node3 ~]#

 

 

2.3)远程登录到服务器,并且执行命令,执行完后并退出

[root@node3 ~]# ./ssh.sh 

spawn ssh -p21386 root@192.168.1.221

Address 192.168.1.221 maps to localhost, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!

root@192.168.1.221's password: 

Last login: Wed Dec  7 16:45:33 2016 from 192.168.1.217

[root@HYXD ~]# pwd

/root

[root@HYXD ~]# exit

logout

Connection to 192.168.1.221 closed.

[root@node3 ~]#

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

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

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

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

 

登录乐搏学院官网

或关注我们的官方微博,还有更多惊喜哦~

本文出自 “” 博客,转载请与作者联系!

转载于:https://my.oschina.net/learnbo/blog/883671

你可能感兴趣的文章
smarty(原理概述)
查看>>
RabbitMQ学习2---使用场景
查看>>
mac平台安装类似yum的工具
查看>>
PHP多种序列化/反序列化的方法(serialize和unserialize函数)
查看>>
阻抗匹配详细讲解(以前的转贴)
查看>>
JS打开新窗口防止被浏览器阻止的方法[转]
查看>>
查看网络port占用
查看>>
杂七杂八的兼容性測试(一)
查看>>
HDU 4930 Fighting the Landlords(扯淡模拟题)
查看>>
ping失败的结果分析
查看>>
HDU 5402 Travelling Salesman Problem (模拟 有规律)(左上角到右下角路径权值最大,输出路径)...
查看>>
使用vi编辑二进制文件
查看>>
【EF】Entity Framework Core 软删除与查询过滤器
查看>>
JS执行上下文(执行环境)详细图解
查看>>
C 语言-HelloWorld
查看>>
NPAPI插件开发详细记录:用VS2010开发NPAPI插件步骤
查看>>
013对象—— __clone __toString __call
查看>>
前端安全之XSS攻击及防御
查看>>
WK2124 驱动移植
查看>>
计算数列:2/1+3/2+5/3+8/5+…的前10项的和
查看>>