ArifS has asked for the wisdom of the Perl Monks concerning the following question:
But both devices work fine while I use Putty to telnet in. Please let me know.3 use Net::Telnet::Cisco; 4 5 my $cs = Net::Telnet::Cisco->new( Host => '10.10.1.2', Port => +'7012', ); 6 $cs->login( 'user', 'pass' ); 7 8 # Execute a command 9 my @cmd_output = $cs->cmd( 'show ver | inc Configuration' ); 10 print @cmd_output; 11 12 $cs->close;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Net::Telnet::Cisco - command timed-out error
by Loops (Curate) on Oct 21, 2014 at 03:56 UTC | |
by ArifS (Beadle) on Oct 21, 2014 at 14:40 UTC | |
by soonix (Chancellor) on Oct 22, 2014 at 09:04 UTC | |
by ArifS (Beadle) on Oct 22, 2014 at 15:43 UTC | |
by soonix (Chancellor) on Oct 23, 2014 at 06:48 UTC | |
|