Hello Monks, I am trying to remotely execute a command in a linux box using the following piece of code:
use warnings; use strict; use Net::SSH::Perl; my $command = "ls"; my $host = "192.168.112.191"; my $user = "admin"; my $pass = "admin\@123"; my $ssh = Net::SSH::Perl->new( $host ); $ssh->login( $user, $pass ); my($stdout, $stderr, $exit) = $ssh->cmd( $command ); print $stdout;
However, when I run the script I get the following error message:

Permission denied at net_ssh_perl.pl line 12.

I have seen some posts with diverse opinion about using Net::SSH:Perl module. Posting this question expecting wisdom.

Please let me know if I should be looking for some alternatives to achieve my goal. In short, I want to run a command in a remote machine and want to know the output of the command.


In reply to Remote Execution of a Command in Linux Box by bihuboliya

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.