免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1957 | 回复: 7
打印 上一主题 下一主题

[系统管理] expect 脚本内如何自动根据ip的不同,send不同的密码 [复制链接]

论坛徽章:
1
处女座
日期:2014-04-25 21:29:27
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-08-25 15:08 |只看该作者 |倒序浏览
我这里现有一个expect脚本
#!/usr/bin/expect
set Host [lindex $argv 0]
send $Host[0]\n
proc do_command {} {
expect "*$"
send "df -hT\r"
}
spawn ssh -p 22 root@192.168.$Host
set do_done 1
#while ($do_done)
expect {
                "(yes/no)?"     {send "yes\r";exp_continue}
                "*password"     {send "12345678\r"}
}
interact

可以实现登陆内网的服务器,我们内网,以及线上的服务器密码不同,所以需要两个登陆脚本
我想问一下,expect内如何分析传过来的参数,然后再做不同的处理呢?
例如:我们内网的ip是192.168.1.*  。线上的ip都是192.168.101.*
如何根据第三位数字的不同来进行不同的逻辑呢?
我找了许多expect的教程,找到了了一些条件语句的写法,但是找不到在expect脚本内分析字符串的方法,请问各位,有什么办法吗

论坛徽章:
16
IT运维版块每日发帖之星
日期:2015-08-24 06:20:00综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00IT运维版块每日发帖之星
日期:2015-10-25 06:20:00IT运维版块每日发帖之星
日期:2015-11-06 06:20:00IT运维版块每日发帖之星
日期:2015-12-10 06:20:00平安夜徽章
日期:2015-12-26 00:06:302016猴年福章徽章
日期:2016-02-18 15:30:34IT运维版块每日发帖之星
日期:2016-04-15 06:20:00IT运维版块每日发帖之星
日期:2016-05-21 06:20:00综合交流区版块每日发帖之星
日期:2016-08-16 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-14 06:20:00
2 [报告]
发表于 2015-08-25 16:09 |只看该作者
回复 1# lipengyu1573


    刚好有个类似的问题,你看下这个 http://blog.chinaunix.net/uid-20778583-id-5168027.html

   跟expect类似,但是python.

   就是加个判断呀,if ip == 'xxx'  这种。

论坛徽章:
16
IT运维版块每日发帖之星
日期:2015-08-24 06:20:00综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00IT运维版块每日发帖之星
日期:2015-10-25 06:20:00IT运维版块每日发帖之星
日期:2015-11-06 06:20:00IT运维版块每日发帖之星
日期:2015-12-10 06:20:00平安夜徽章
日期:2015-12-26 00:06:302016猴年福章徽章
日期:2016-02-18 15:30:34IT运维版块每日发帖之星
日期:2016-04-15 06:20:00IT运维版块每日发帖之星
日期:2016-05-21 06:20:00综合交流区版块每日发帖之星
日期:2016-08-16 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-14 06:20:00
3 [报告]
发表于 2015-08-25 16:10 |只看该作者
expect太简单,要pexpect办法就多了,还可以用dict来处理。

论坛徽章:
1
处女座
日期:2014-04-25 21:29:27
4 [报告]
发表于 2015-08-25 16:30 |只看该作者
回复 3# expert1


    额,条件语句我会写啊,就是不会怎么在expect中提出来ip的第三段

听你的说法,好像做不到?

论坛徽章:
16
IT运维版块每日发帖之星
日期:2015-08-24 06:20:00综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00IT运维版块每日发帖之星
日期:2015-10-25 06:20:00IT运维版块每日发帖之星
日期:2015-11-06 06:20:00IT运维版块每日发帖之星
日期:2015-12-10 06:20:00平安夜徽章
日期:2015-12-26 00:06:302016猴年福章徽章
日期:2016-02-18 15:30:34IT运维版块每日发帖之星
日期:2016-04-15 06:20:00IT运维版块每日发帖之星
日期:2016-05-21 06:20:00综合交流区版块每日发帖之星
日期:2016-08-16 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-14 06:20:00
5 [报告]
发表于 2015-08-25 16:31 |只看该作者
回复 4# lipengyu1573


    Google了一下,应该是可以的expect本来是基于tcl/tk这个冷门的语言写的,

The Control Flow
If Condition
The Syntax:

if { test1 } {
body1
} elseif { test2 } {
body2
} else {
bodyn
}

If you don't like the curly brackets, you can take them out. But then, you will have to give the full thing in one line. I know that after you had a look at that syntax, you are still wondering what in the world that was. Don't worry - an example will set things straight.


#The marriage status script...
#Change the status please
set marital_status "After"

label .thesis -text "Marriage is a three ring circus..."

if { $marital_status=="Before" } {
set ring "Engagement"
} elseif { $marital_status=="During" } {
set ring "Wedding"
} else {
set ring "suffe -"
}

label .proof -text "$marital_status Marriage: $ring ring"

pack .thesis
pack .proof

Run this script and give the 'marital_status' to "Before", "During" and "After" and see the different results.
Operators

You will need operators to do the checking. Fortunately, the operators in Tcl are same as in any other language. So a small experience with any language will guarantee that you know all them.
Tcl has two kinds of operators.
Relational operators: <, <=, >, >=, ==, != return 0 (false) or 1 (true).
Operator in Tcl         Meaning         Example
==        is equal to        5 == 6
!=        is not equal to        5 != 6
<        is less than         5 < 6
<=         is less than or equal to         5 <= 6
>        is greater than         5 > 6
>=        is greater than or equal to         5 >= 6

Logical Operators: && , ! and || operator - AND, NOT and OR Operators.
Operator         Logical Equivalent         Example
! expression        NOT        !$a
expression1 && expression2        AND        $a > 6 && $a < 10
expression1 || expression2        OR        $a != 6 || $a!=5

论坛徽章:
16
IT运维版块每日发帖之星
日期:2015-08-24 06:20:00综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00IT运维版块每日发帖之星
日期:2015-10-25 06:20:00IT运维版块每日发帖之星
日期:2015-11-06 06:20:00IT运维版块每日发帖之星
日期:2015-12-10 06:20:00平安夜徽章
日期:2015-12-26 00:06:302016猴年福章徽章
日期:2016-02-18 15:30:34IT运维版块每日发帖之星
日期:2016-04-15 06:20:00IT运维版块每日发帖之星
日期:2016-05-21 06:20:00综合交流区版块每日发帖之星
日期:2016-08-16 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-14 06:20:00
6 [报告]
发表于 2015-08-25 16:32 |只看该作者
if的语句如下

if { test1 } {
body1
} elseif { test2 } {
body2
} else {
bodyn
}

判断一下ip等于多少,send它的密码过去,这个真不如python好,直接做个dict数据比较爽。

论坛徽章:
16
IT运维版块每日发帖之星
日期:2015-08-24 06:20:00综合交流区版块每日发帖之星
日期:2015-10-14 06:20:00IT运维版块每日发帖之星
日期:2015-10-25 06:20:00IT运维版块每日发帖之星
日期:2015-11-06 06:20:00IT运维版块每日发帖之星
日期:2015-12-10 06:20:00平安夜徽章
日期:2015-12-26 00:06:302016猴年福章徽章
日期:2016-02-18 15:30:34IT运维版块每日发帖之星
日期:2016-04-15 06:20:00IT运维版块每日发帖之星
日期:2016-05-21 06:20:00综合交流区版块每日发帖之星
日期:2016-08-16 06:20:002015七夕节徽章
日期:2015-08-21 11:06:17IT运维版块每日发帖之星
日期:2015-08-14 06:20:00
7 [报告]
发表于 2015-08-25 16:33 |只看该作者

论坛徽章:
1
CU十四周年纪念徽章
日期:2015-12-16 18:25:16
8 [报告]
发表于 2015-08-25 17:31 |只看该作者
直接用shell判断然后在调用expect,就像下面这样
if  ...;then
echo "[MESSAGE]scp -r -P $port $localPath $user@$ipremotePath"
expect -c "
  spawn  bash $tmpScriptFile
  expect {
    \"$user@$ip*assword:\" {set timeout 3600;send \"$passwd\r\";}
    \"(yes/no)?\" {send \"yes\r\"; exp_continue;}
  }
  expect eof"
else
  ....
fi
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP