Group,
I have a very simple task ( I thought would be simple). I need to telnet into a box and do a "type file_to_type".
I log in successfully, but no matter what I do I can not get the type of the file.
I have done a $t->print(String=>'type file_to_type');
I have been up one side and down the other with $t->cmd.
I am at a loss.
Has anyone done this type of thing before on Windows 2000 - works perfectly on unix.
Thanks.
my $cmd = 'type \\PROGRA~1\\Mitel\\OPSManager\\Data\\export.out';
$t = new Net::Telnet (Timeout => 10,
Prompt => '/[>] $/');
$t->dump_log($dump_file);
$t->input_log($input_log);
$t->open("10.0.75.1");
$t->waitfor(String=>"login");
$t->print($username);
$t->waitfor(String=>"password");
$t->print($passwd);
$t->waitfor(String=>">");
@lines = $t->cmd(String=>$cmd,
Prompt => '/\\[a-zA-Z0-9]*> $/',
Timeout=>500);
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.