in reply to Redirect Question
use Net::Ping; my $ping = new Net::Ping ("icmp"); my $PING_TIMEOUT = 2; my $IP=$_; if ($ping->ping($IP, $PING_TIMEOUT)) { print "Ping Succeeded \n"; } else { print "Ping failed\n";} $ping->close();
Then you can just run your script with your IP as an argument...this would even make it easy to automate automate the script to run a list of IP's on a regular basis.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Redirect Question
by jbaribeault (Novice) on Sep 15, 2003 at 18:45 UTC |