免费注册 查看新帖 |

Chinaunix

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

perl Expect 模块未按找期望执行,程序中断退出 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-12-31 11:19 |只看该作者 |倒序浏览
程序目的是备份博科san switch 的配置信息,程序内容如下:
1  #!/usr/bin/perl -w
     2  use Expect;
     3  $switch_ip = "192.168.17.15";
     4  #$Date = `date`;
     5
     6  $get_log = Expect->spawn( "ssh $switch_ip -l admin") or die "Couldn't spawn ssh,$!";
     7  $get_log->log_stdout(1);
     8  #$get_log->debug(2);
     9
    10  if ($get_log->expect(10, -re=>qr /Are .* \(yes\/no\)\?/i) ){
    11          $get_log->send("yes\r");
    12  }
    13
    14  elsif ($get_log->expect( 10, -re=>qr/admin\@.* password:/i)) {
    15  $get_log->send("1qaz!QAZ\r" );
    16  $get_log->send("configupload -scp 192.168.18.201,root,/bakdat/wzs/switch15.txt\r");
    17          if ($get_log->expect(2,"Password:")) {
    18          $get_log->send("HA5-5tgb\r");
    19          }
    20
    21  }
    22
    23  #$get_log->send("exit \r");

15行之前执行没有问题,但是执行完16行号后,程序直接退出,为执行17行后面的代码。
执行结果:
HA5-BF01#[/bakdat/wzs/perl]perl san1.pl
admin@192.168.17.15's password:
configupload -scp 192.168.18.201,root,/bakdat/wzs/switch15.txt

-----------------------------------------------------------------
configupload -scp 192.168.18.201,root,/bakdat/wzs/switch15.txt
HA5-SAN15:admin> configupload -scp 192.168.18.201,root,/bakdat/wzs/switch15.txt
Password: HA5-BF01#[/bakdat/wzs/perl]

论坛徽章:
0
2 [报告]
发表于 2014-12-31 14:06 |只看该作者
没用这个模块,查了下
$object->send(@strings)
Sends the given strings to the spawned command. Note that the strings are not logged in the logfile (see print_log_file) but will probably be echoed back by the pty, depending on pty settings (default is echo) and thus end up there anyway. This must also be taken into account when expect()ing for an answer: the next string will be the command just sent. I suggest setting the pty to raw, which disables echo and makes the pty transparently act like a bidirectional pipe.
如果是调用scp命令,这里看起来应该改成
$get_log->spawn("configupload -scp 192.168.18.201,root,/bakdat/wzs/switch15.txt\r");

论坛徽章:
0
3 [报告]
发表于 2014-12-31 14:37 |只看该作者
本帖最后由 ts99 于 2014-12-31 14:38 编辑

Hi aku1, 我是先要登录到switch上,然后执行configupload收集配置,configupload中要调用scp或是ftp命令,所以出现二次expect匹配。
expect debug输出如下:
perl san1.pl
Starting EXPECT pattern matching...
at /opt/perl_32/lib/site_perl/5.8.8/Expect.pm line 597
        Expect::expect('Expect=GLOB(0x4008a5f4)', 10, '-re', '(?i-xsm:Are .* \(yes/no\)\?)') called at san1.pl line 10
admin@192.168.17.15's password: Starting EXPECT pattern matching...
at /opt/perl_32/lib/site_perl/5.8.8/Expect.pm line 597
        Expect::expect('Expect=GLOB(0x4008a5f4)', 10, '-re', '(?i-xsm:admin\@.* password') called at san1.pl line 10
Starting EXPECT pattern matching...
at /opt/perl_32/lib/site_perl/5.8.8/Expect.pm line 597
        Expect::expect('Expect=GLOB(0x4008a5f4)', 2, 'Password:') called at san1.pl line 17


-----------------------------------------------------------------
HA5-SAN15:admin> Closing spawn id(3).
at /opt/perl_32/lib/site_perl/5.8.8/Expect.pm line 1621
        Expect::hard_close('Expect=GLOB(0x4008a5f4)') called at /opt/perl_32/lib/site_perl/5.8.8/Expect.pm line 1848
        Expect:ESTROY('Expect=GLOB(0x4008a5f4)') called at san1.pl line 0
        eval {...} called at san1.pl line 0
spawn id(3) closed.
Pid 22329 of spawn id(3) terminated, Status: 0xFF00

论坛徽章:
0
4 [报告]
发表于 2014-12-31 15:06 |只看该作者
aku1 发表于 2014-12-31 14:06
没用这个模块,查了下
$object->send(@strings)
Sends the given strings to the spawned command. Note  ...

我的意思是从解释来看,用send传命令是错误的,到perl搜下应该有类似的

论坛徽章:
0
5 [报告]
发表于 2014-12-31 15:15 |只看该作者
aku1 发表于 2014-12-31 15:06
我的意思是从解释来看,用send传命令是错误的,到perl搜下应该有类似的

Sorry,我上面说法,有误,是可以传命令,我搜了下,不知道跟这个参数有关不$object->raw_pty(1 | 0)

论坛徽章:
0
6 [报告]
发表于 2015-01-01 10:10 |只看该作者
@aku1,上班后我在测试下你说的这个参数,多谢!新年快了

求职 : Linux运维
论坛徽章:
3
戌狗
日期:2015-01-11 13:27:532015年辞旧岁徽章
日期:2015-03-03 16:54:152015年亚洲杯纪念徽章
日期:2015-05-08 15:03:30
7 [报告]
发表于 2015-01-09 22:56 |只看该作者
回复 1# ts99


    15行send以后,在16行插入expect,等待prompt以后,再执行后续命令。

论坛徽章:
0
8 [报告]
发表于 2015-01-14 14:20 |只看该作者
呵呵,换成这个个Net-SSH-Expect-1.09模块搞定了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP