diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-03-04 21:50:02 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-03-04 21:50:02 +0000 |
commit | a78fd137e972f62deb6bd2370ef869d256b0bfae (patch) | |
tree | 69ad2c8a000582dce68109ff37955d9f9b710d04 /plugins-scripts | |
parent | 59a4f3a1c0b2ba0c3ef53ea1541a7fa1fdd93966 (diff) | |
download | monitoring-plugins-a78fd137e972f62deb6bd2370ef869d256b0bfae.tar.gz |
Support for IPv6 (Merijn Evertse - 1119917)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1145 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins-scripts')
-rwxr-xr-x | plugins-scripts/check_ntp.pl | 38 |
1 files changed, 28 insertions, 10 deletions
diff --git a/plugins-scripts/check_ntp.pl b/plugins-scripts/check_ntp.pl index 7adef984..cd02d477 100755 --- a/plugins-scripts/check_ntp.pl +++ b/plugins-scripts/check_ntp.pl @@ -8,7 +8,7 @@ # should already have it installed. # # $Id$ -# +# # Nothing clever done in this program - its a very simple bare basics hack to # get the job done. # @@ -61,8 +61,8 @@ require 5.004; use POSIX; use strict; use Getopt::Long; -use vars qw($opt_V $opt_h $opt_H $opt_t $opt_w $opt_c $opt_j $opt_k $verbose $PROGNAME $def_jitter); -use lib utils.pm; +use vars qw($opt_V $opt_h $opt_H $opt_t $opt_w $opt_c $opt_j $opt_k $verbose $PROGNAME $def_jitter $ipv4 $ipv6); +use lib utils.pm; use utils qw($TIMEOUT %ERRORS &print_revision &support); $PROGNAME="check_ntp"; @@ -85,7 +85,9 @@ Getopt::Long::Configure('bundling'); GetOptions ("V" => \$opt_V, "version" => \$opt_V, "h" => \$opt_h, "help" => \$opt_h, - "v" => \$verbose, "verbose" => \$verbose, + "v" => \$verbose, "verbose" => \$verbose, + "4" => \$ipv4, "use-ipv4" => \$ipv4, + "6" => \$ipv6, "use-ipv6" => \$ipv6, "w=f" => \$opt_w, "warning=f" => \$opt_w, # offset|adjust warning if above this number "c=f" => \$opt_c, "critical=f" => \$opt_c, # offset|adjust critical if above this number "j=s" => \$opt_j, "jwarn=i" => \$opt_j, # jitter warning if above this number @@ -177,6 +179,18 @@ $SIG{'ALRM'} = sub { }; alarm($timeout); +# Determine protocol to be used for ntpdate and ntpq +my $ntpdate = $utils::PATH_TO_NTPDATE; +my $ntpq = $utils::PATH_TO_NTPQ; +if ($ipv4) { + $ntpdate .= " -4"; + $ntpq .= " -4"; +} +elsif ($ipv6) { + $ntpdate .= " -6"; + $ntpq .= " -6"; +} +# else don't use any flags ### ### @@ -184,7 +198,7 @@ alarm($timeout); ### ### -if (!open (NTPDATE, "$utils::PATH_TO_NTPDATE -q $host 2>&1 |")) { +if (!open (NTPDATE, $ntpdate . " -q $host 2>&1 |")) { print "Could not open ntpdate\n"; exit $ERRORS{"UNKNOWN"}; } @@ -259,7 +273,7 @@ if ( $? && !$ignoreret ) { if ($have_ntpq) { - if ( open(NTPQ,"$utils::PATH_TO_NTPQ -np $host 2>&1 |") ) { + if ( open(NTPQ, $ntpq . " -np $host 2>&1 |") ) { while (<NTPQ>) { print $_ if ($verbose); if ( /timed out/ ){ @@ -409,7 +423,7 @@ exit $state; #### subs sub print_usage () { - print "Usage: $PROGNAME -H <host> [-w <warn>] [-c <crit>] [-j <warn>] [-k <crit>] [-v verbose]\n"; + print "Usage: $PROGNAME -H <host> [-46] [-w <warn>] [-c <crit>] [-j <warn>] [-k <crit>] [-v verbose]\n"; } sub print_help () { @@ -427,10 +441,14 @@ Checks the jitter/dispersion of clock signal between <host> and its sys.peer wit -j (--jwarn) Clock jitter in milliseconds at which a warning message will be generated.\n Defaults to $DEFAULT_JITTER_WARN. -k (--jcrit) - Clock jitter in milliseconds at which a warning message will be generated.\n Defaults to $DEFAULT_JITTER_CRIT.\n + Clock jitter in milliseconds at which a warning message will be generated.\n Defaults to $DEFAULT_JITTER_CRIT. If jitter/dispersion is specified with -j or -k and ntpq times out, then a - warning is returned. -"; + warning is returned.\n +-4 (--use-ipv4) + Use IPv4 connection +-6 (--use-ipv6) + Use IPv6 connection +\n"; support(); } |