Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I facing an Issue with following cmd could youi please help where is the problem , I am getting error asmy @lines; @lines = $telnet->cmd('config t'); print @lines; my @com1 ; @com1 = $telnet->cmd(' interface vlan 2'); print @com1; my @com2 ; @com2 = $telnet->cmd("$command"); @com2 = $telnet->cmd( ' ip address ' 10.1.4.1 255.255.255.0); print @com2;
command timed out @com2 = $telnet->cmd( ' ip address ' 10.1.4.1 255.255.255.0);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Telnet.pm error
by karlgoethebier (Abbot) on Nov 11, 2014 at 14:34 UTC |