- 论坛徽章:
- 0
|
调用Net::SSH::Expect->read_line()方法会把操作系统的提示符取回来,有没有办法不取系统提示符的?
代码和执行返回如下,有无方法去掉提示符的?
尝试设置提示操作系统提示符为空好像也不行,请各位大侠帮忙看看,谢谢!
Start SSH ...
Start SSH Login in
ping active and SSH login ok
CMD: uptime
[10.212.48.10] RET: 5:28pm up 142 day(s), 1:40, 2 users, load average: 0.11, 0.12, 0.12
CMD: vmstat 1 2
[10.212.48.10] RET: FSM9000E20-3-/export/home/daladmin> kthr memory page disk faults cpu r b w swap free re mf pi po fr de sr m0 m1 m2 m3 in sy cs us sy id 0 0 0 119875912 61349256 69 2285 2 4 4 0 0 0 0 0 2 1997 10662 1694 0 1 99
- use strict;
- #use Getopt::Long;
- use Net::SSH::Expect;
- use Net::Telnet;
- my $debug=1;
- print "\nStart SSH ...\n";
- my ($net_telnet,$host_ip,$host_usr,$host_pwd);
- $host_ip="xx.xx.xx.xx";
- $host_usr="xxx";
- $host_pwd="xxx";
-
- $net_telnet = new Net::SSH::Expect (
- host => $host_ip,
- user => $host_usr,
- password=> $host_pwd,
- raw_pty => 1
- );
-
- print "\nStart SSH Login in\n";
- my $login_output;
- my $net_prompt = '';
- #$net_telnet->run_ssh() or die "SSH process couldn't start: $!";
- $login_output = $net_telnet->login();
- # print "\$login_output:$login_output\n";
- if ($login_output !~ /Last login/)
- {
- print "ping active and SSH login Failed\n";
- if (defined($net_telnet)) { $net_telnet->close();}
- exit(1);
- }
- else
- {
- # $net_telnet->cmd("csh") ;
- # $net_telnet->prompt("/$net_prompt\$/");
- # $net_telnet->cmd("set prompt = '$net_prompt'");
- print "ping active and SSH login ok\n";
- }
-
- my @ls=exec_cmd(\$net_telnet,"uptime");
- @ls=exec_cmd(\$net_telnet,"vmstat 1 2");
- #print @ls;
- if(defined($net_telnet)) { $net_telnet->close();}
-
- sub traceDebug
- {
- my $str = shift;
- print "[$host_ip] ".$str if ($debug > 0);
- }
-
- sub exec_cmd
- {
- my ($ptelnet,$cmd) = @_;
- my @lines;
- my $line;
- my $net_timeout=10;
- print "CMD: $cmd\n";
- $ptelnet->send("$cmd");
- # $ptelnet->cmd(
- # String => $cmd,
- # Timeout => $net_timeout);
- while(defined($line=$ptelnet->read_line()))
- {
- push @lines,$line;
- }
- traceDebug "RET: @lines\n";
- return @lines;
- }
复制代码 |
|