Hi,
> So I have a bunch of systems in my network that require a monitoring
> system to
> test if network connectivity is there (sound familiar anyone?). So, rather
> than
ever heard of snmp? google!
hth,
Jan
--
'use strict' is my sensai
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additi
Give this a try.
I can't remember where the code came from so forgive me if I didn't give the
proper credit to the author.
use Net::Ping;
$p = Net::Ping->new("icmp");
if (($p->ping($your_hostip, 2)) eq 0)
{
If no response do this.
}
sleep(1)
Forgot to send my post to the list. Sorry.
I can point you to a module, but I can point you to a software product that
works for *nix and NT. Try http://bb4.com. The product is called Big
Brother, and it's used on campus here at Spring Arbor University. Our
sysadmin uses it, so I can't give
you could just do a `ping hostname` - escapes into shell and returns the
result to perl.
joel
-Original Message-
From: James Kelty [mailto:[EMAIL PROTECTED]]
Sent: 28 August 2001 17:22
To: [EMAIL PROTECTED]
Subject: System Health Checks...
So I have a bunch of systems in my network tha