Hello,
I"m trying to ping a server from another server using code below and I installed the mod but keep getting this error --> Can't locate object method "new" via package "Net:
ing" (perhapes you forgot to load "Net:
ing"?) at ping.pl line 4.
Mucho Grazzyazz, in advance.
I"m trying to ping a server from another server using code below and I installed the mod but keep getting this error --> Can't locate object method "new" via package "Net:
Mucho Grazzyazz, in advance.
Code:
#!/usr/bin/perl -w
use Net::Ping;
my $ip = '1.1.2.1';
my $p = Net::Ping->new( "icmp", 1, 64 );
if ( $p->ping($ip) ) {
print "$ip answered\n";
} else {
print "$ip did not answer\n";
}