Hi, after executing the below code, its printing value 1 but i am expecting some set of commands, i ll show you prompts of the remote host , i did this manually before writing this code... if the telnet 192.168.203.23 the prompt is "Please enter password:" this is the last sentence it will show for entering a password and after this , it will show the prompt as "]> " ..i think i specified both correct if not help me...thank u

use Net::Cisco; my $t =Net::Telnet::Cisco->new(Host=>'10.0.1.1'); my @output; my $tl=0; $t->login('9190','KUM@R425'); $t->print('telnet 192.168.203.23')or $tl=1; $t->waitfor('/password:/'); $t->print('public'); $t->waitfor('/]>/'); @output=$t->print('show system'); print @output; $t->waitfor('/]>/'); $t->print("exit"); open(CONFIG,">config.txt"); print CONFIG "@output\n"; close(CONFIG); $t->close;

In reply to Re^7: telnet from a cisco telnet by Kumar Mantri
in thread telnet from a cisco telnet by Kumar Mantri

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.