in reply to Re^2: How to connect from Windows to Unix?
in thread How to connect from Windows to Unix?
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.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) { # ... } }
|
|---|