|
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.
|