I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2008-03-06 06:34:35-08 by oliver in response to 7214
Re: how to increase timeout in waiting for command response
Hi chicks1dig1unix, There is a Timeout option for the cmd method which will do what you want. Pass it a number of secon +ds. You will need to change the way you call the method though, from this: $s->cmd('show interfaces'); to this: $s->cmd( String => 'show interfaces', Timeout => 60, ); There are other options, mentioned in the docs, Hope that helps, regards, oliver.
Direct Responses: Write a response