I am trying to connect to an Adtran TSU-IQ frame modem via its telnet interface, but I am having a bit of an issue actually working with its menu based interface. My short script is below:
#!C:\perl\bin\perl -w use Net::Telnet; my $NT = new Net::Telnet(); $NT->open('128.999.999.999'); #obviously not the IP address $NT->cmd(); my @out1 = $NT->cmd('1\n'); print "OUT1: @out1";
And here is the output from the above script:
C:\Documents and Settings\toms\Desktop>perl isdn.pl OUT1: [3;1H______________________________________________________________ +___________ ______[5;1H[5;1H 1 - Local Login [6;1H 2 - Remote Login [7;1H 3 - Logout [23;1H_____________________________________________________________ +___________ _______[24;2H[KEnter Selection -
I am trying to enter option 1, which is the local login. If I try to pass '1' again using the cmd method, it merely repeats the output again. Any suggestions would be greatly appreciated.

TStanley
--------
People sleep peaceably in their beds at night only because rough men stand ready to do violence on their behalf. -- George Orwell

In reply to Using Net::Telnet by TStanley

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.