- 论坛徽章:
- 0
|
使用这个模块,自动登录到路由器上,然后通过路由器的外网IP ping 新浪,然后抓出ping成功的包的数量,如果ping成功数量小于某个值则对路由执行一些动作。大概的脚本如下:- my $ssh = Net::SSH::Expect->new(
- host => "192.168.1.1",
- user => "username",
- password => "password",
- debug => 1,
- );
- $ssh-> run_ssh() or die "SSH process couldn't start:$!";
- $ssh -> login();
- my %soure_ip = (
- "eht2" => "11.11.11.11", #外网端口一的IP
- "eth3" => "22.22.22.22" #外网端口二的IP
- );
- foreach my $y (keys %soure_ip){
- my $value;
- my $line;
- print "$y\n";
- sleep(3);
- $ssh->send ("ping -c 10 -a $soure_ip{$y} www.sina.com.cn"); #-c 指定ping包数,-a 指定从哪个ip为源ip,ping新浪。
- print "$soure_ip{$y}\n";
-
- while (defined ($line = $ssh->read_line())){
- print "$line\n";
- # $value = $1 if ($line =~ /\s+(\d+).*received/);
- # print $value;
- }
- 这是四次测试中的一次有问题的输出结果:
- eth1
- 11.11.11.11
- <H3C>ping -c 10 -a 11.11.11.11 www.sina.com.cn^M
- Trying DNS server (202.106.0.20) ^M
- PING libra.sina.com.cn (202.108.33.77): 56 data bytes, press CTRL_C to break^M
- Reply from 202.108.33.77: bytes=56 Sequence=1 ttl=51 time=105 ms^M
- Reply from 202.108.33.77: bytes=56 Sequence=2 ttl=51 time=105 ms^M
- Reply from 202.108.33.77: bytes=56 Sequence=3 ttl=51 time=107 ms^M
- [color=Red]此处没有输出完。。。。[/color]
- eth2
- 32 22.22.22.22
- ping -c 10 -a 22.22.22.22 www.sina.com.cn^M
- Trying DNS server (202.106.0.20) ^M
- PING libra.sina.com.cn (202.108.33.98): 56 data bytes, press CTRL_C to break^M
- Reply from 202.108.33.98: bytes=56 Sequence=1 ttl=52 time=10 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=2 ttl=52 time=9 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=3 ttl=52 time=10 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=4 ttl=52 time=10 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=5 ttl=52 time=9 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=6 ttl=52 time=9 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=7 ttl=52 time=9 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=8 ttl=52 time=9 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=9 ttl=52 time=8 ms^M
- Reply from 202.108.33.98: bytes=56 Sequence=10 ttl=52 time=8 ms^M
- ^M
- --- libra.sina.com.cn ping statistics ---^M
- 10 packet(s) transmitted^M
- 10 packet(s) received^M
- 0.00% packet loss^M
- round-trip min/avg/max = 8/9/10 ms^M
复制代码 首先可以排除登录不成功造成的不能输出,然后我在路由上直接运行上面的命令20次以上,也没有上面的输出情况,因此我认为是在执行 $ssh->read_line()时出的问题,请问这个问题应该怎么解决? |
|