in reply to Re: Command Timeout for Net::Appliance::Session
in thread Command Timeout for Net::Appliance::Session

Thank you so much for the guidance. I was able to get it working with the options like this:
$session->cmd( Timeout => 1000, String => 'String');

Replies are listed 'Best First'.
Re^3: Command Timeout for Net::Appliance::Session
by Anonymous Monk on Mar 10, 2014 at 18:37 UTC
    How are you making the input_log work?
    my $s = Net::Appliance::Session->new({ personality => 'ios', transport => 'SSH', Input_log => 'input.log', Timeout => 15, host => $ip, });
    I get nothing from the log
      Enable debug:
      $session->set_global_log_at('debug');
      with the new version you have to $s->set_global_log_at('notice');