1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#!/usr/bin/perl
delete @ENV{qw(PATH)};
$ENV{PATH} = '/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin';
# take care for tcp:hostname or TCP:ip@
$host = $ARGV[0];
$host =~ s/(?:tcp|udp)6?:/$1/gis;
# leave IPv6 in tact
if (($host =~ tr/:://) == 0) {
$host =~ s/:[0-9]{1,5}/$1/gis;
}
# Addition2
($host) = $host =~ /^([\w.:-]+)$/;
# always have the language in english
$ENV{LANG}='en_US.UTF-8';
#
# Get the OS name
#
my $osname = "$^O";
if ($osname =~ 'solaris') {
# Solaris needs a different ping command
$pingcmd="ping -s $host 64 1";
} else {
$pingcmd="ping -c 1 $host";
}
# old linux version use 'icmp_seq'
# newer use 'icmp_req' instead
open(PROCESS, "$pingcmd 2>&1 | grep -E '(icmp_[s|r]eq.*time|unknown host|Unknown host|not supported|Name or service not known|No address associated with name)' 2>/dev/null |");
$ping = <PROCESS>;
close(PROCESS);
chomp($ping);
if (($ping =~ 'unknown host') || ($ping =~ 'Unknown host') || ($ping =~ 'not supported') || ($ping =~ 'Name or service not known') || ($ping =~ 'No address associated with name')) {
if ((-f '/bin/ping6') || (-f '/sbin/ping6')) {
open(PROCESS, "ping6 -c 1 $host 2>&1 | grep 'icmp_[s|r]eq.*time' 2>/dev/null |");
$ping = <PROCESS>;
close(PROCESS);
chomp($ping);
}
}
$ping =~ m/(.*time=)(.*) (ms|usec)/;
if ($2 == '') {
print 'U'; # avoid cacti errors, but do not fake rrdtool stats
}elsif ($3 eq 'usec') {
print $2/1000; # re-calculate in units of 'ms'
}else{
print $2;
}
|