Perl telnet looping problem

C

CJ

Can someone look at the code below and tell me whats going on?

Here is the problem. I can successfully telnet one of our routers and
successfully put in a command in the while statement, but when the loop goes
around a second time, it gives me:
"pattern match timed-out at c:\filename.pl line 21"

It can't get past the waitfor statement for a prompt the 2nd go around in
the loop.

Ideas??

======================================================

use Net::Telnet;
use constant PASS=>'password';

$i=6300;
$telnet = new Net::Telnet (Timeout=>25);

$ip='<IP ADDRESS HERE>';

$telnet->open($ip);
$telnet->waitfor('/assword: /');
$telnet->print(PASS);

while ($i < 6400) {

print "LOOPED!!!\n"; 'for troubleshooting purposes
$prompt = $telnet->waitfor('/> /');
print "MADE IT PAST PROMPT\n"; 'for troubleshooting purposes

$statement=('<command goes here>');

$telnet->cmd($statement);
print "PORT FILTER ADDED\n"; 'for troubleshooting
$i++;

}


$telnet->close;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top