*if* rexec is allowed, that is the most simple solution.
# perl -MNet::Rexec=rexec -le"my ($rc, @out) = rexec ("remote_host", "df -k", "username", "password");
But chances are that that connection is refused, as rexec is not commonly allowed. If it works, you've got the output of the command
df -k in
@out.
In script that might look like:
use strict;
use warnings;
use Net::Netrc;
use Net::Rexec qw( rexec );
foreach my $host (qw( host1 host2 host3 )) {
my $machine;
unless ($machine = Net::Netrc->lookup ($host)) {
warn "Machine $host not found in .netrc\n";
next;
}
my ($user, $password) = $machine->lpa;
my ($rc, @out) = rexec ($host, "df -k", $user, $password);
foreach my $df_line (@out) {
# ...
}
}
Net::SNMP might suffer the same problem. Not all hosts have the protocol enabled (open in the firewall), and if they do, you would need to find the right setup parameters, which is not always easy. I don't think that if you say you are a real beginner,
Net::SNMP is the correct module to start with.
Enjoy, Have FUN! H.Merijn
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.