In junipercmd you have:

Prompt => '/ERX02>$/' But in your example the prompt returned is ERX02#
So it won't match, thus won't return command to your program. Try a simple ERXO2. You really only need to set this once. ***You probably don't even need to set it at all as there is an inbuilt default that should work***.

As an aside you are obviously not using strict and passing things around as globals - this is bad. The logic for having subs that simply serve as more or less useless wrappers around the existing functions in Net::Telnet::Cisco eludes me. In your prompt RE you have @[ which will not be doing what you think it does, whatever that might be.

Does this work:

#!/usr/bin/perl use Net::Telnet::Cisco; use strict; my $rtrip = 'xx.xx.xx.xxx'; my $user = 'login'; my $pass = 'support123'; my $cmd = 'some command'; my $session = Net::Telnet::Cisco->new( Host => $rtrip, Prompt => '/ERX02/, Timeout => '30'); $session->login( Name => $login, Password => $pass, ); my @output = $session->cmd($cmd); print @output;

In reply to Re: help needed by tachyon-II
in thread help needed by Mejaz

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.