in reply to Re^2: telnet from a cisco telnet
in thread telnet from a cisco telnet
yes finally i did with this..done!!but small problem,here it is writing value 1 to the text file..but declared it as array ..here im expecting some set of commands from the device.....any help please?
use Net::Cisco; my $t =Net::Telnet::Cisco->new(Host=>'10.0.2.2'); my @output; my $tl=0; $t->login('9190','KUM@R425'); $t->print("telnet 192.168.203.23")or $tl=1; $t->waitfor('m/password:/'); $t->print("public"); $t->waitfor('m/]>/'); @output=$t->print("show system"); $t->waitfor('m/]>/'); $t->print("exit"); open(CONFIG,">config.txt"); print CONFIG "@output\n"; close(CONFIG); $t->close;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: telnet from a cisco telnet
by Corion (Patriarch) on Aug 09, 2011 at 12:21 UTC | |
by Kumar Mantri (Novice) on Aug 09, 2011 at 12:35 UTC | |
by Corion (Patriarch) on Aug 09, 2011 at 12:40 UTC |