- 论坛徽章:
- 0
|
perl -d get_alarm.pl 92.168.1.149 23 oams oams
Loading DB routines from perl5db.pl version 1.28
Editor support available.
Enter h or `h h' for help, or `perldoc perldebug' for more help.
main: get_alarm.pl:5): print "\nUsage: get_alarm.pl remote_host_ip port User_Na
me Password \n\n";
DB<1> n
Usage: get_alarm.pl remote_host_ip port User_Name Password
main: get_alarm.pl:7): my $remote_host_ip = $ARGV[0];
DB<1> n
main: get_alarm.pl: : my $port = $ARGV[1] ;
DB<1> n
main: get_alarm.pl:9): my $username = $ARGV[2] ;
DB<1> n
main: get_alarm.pl:10): my $password = $ARGV[3] ;
DB<1> n
main: get_alarm.pl:11): my $recv_file_name = $ARGV[4] ;
DB<1> n
main: get_alarm.pl:13): my $first_cmd ="cd /var/log/report";
DB<1> n
main: get_alarm.pl:14): my $second_cmd = "ps -ef|grep -v grep|grep tail|
awk '{print $2}'|xargs kill -9";
DB<1> n
main: get_alarm.pl:15): my $third_cmd = "tail -f Alarm.log";
DB<1> n
main: get_alarm.pl:1 : print "ip remote_host_ip\n";
DB<1> n
ip:192。168.1.149
main::(get_alarm.pl:19): print "port port\n";
DB<1> n
port:23
main::(get_alarm.pl:20): print "name username\n";
DB<1> n
name ams
main::(get_alarm.pl:21): print "passwd password\n";
DB<1> n
passwd ams
main::(get_alarm.pl:23): my $telnet_hd=new Net::Telnet (Timeout => 10);
DB<1> n
main::(get_alarm.pl:24): print "now telnet......\n";
DB<1> n
now telnet......
main::(get_alarm.pl:26): print "ceshi....\n";
DB<1> n
ceshi....
main::(get_alarm.pl:27): $telnet_hd->open(Host=>$remote_host_ip,Port=>$po
rt);
DB<1> n
main::(get_alarm.pl:2 : print "now open ......\n";
DB<1> n
now open ......
main::(get_alarm.pl:29): $telnet_hd->login(Name=>$username,PASSWORD=>$pas
sword);
DB<1> n
timed-out waiting for command prompt at get_alarm.pl line 29
at C:/Perl/site/lib/Net/Telnet.pm line 2036
Net::Telnet::_croak('Net::Telnet=GLOB(0x1f57dc4)', 'timed-out waiting fo
r command prompt') called at C:/Perl/site/lib/Net/Telnet.pm line 539
Net::Telnet::error('Net::Telnet=GLOB(0x1f57dc4)', 'timed-out waiting for
command prompt') called at C:/Perl/site/lib/Net/Telnet.pm line 1088
Net::Telnet::__ANON__[C:/Perl/site/lib/Net/Telnet.pm:1097]('timed-out wa
iting for command prompt') called at C:/Perl/site/lib/Net/Telnet.pm line 1146
Net::Telnet::login('Net::Telnet=GLOB(0x1f57dc4)', 'Name', 'oams', 'PAS
SWORD', 'oams') called at get_alarm.pl line 29
Debugged program terminated. Use q to quit or R to restart,
use o inhibit_exit to avoid stopping after program termination,
h q, h R or h o to get additional info.
DB<1> 这是单步的执行结果 谁知道咋回事 |
|