source: lvs/debian/config/etc/nagios/nrpe.cfg @ 756

Last change on this file since 756 was 713, checked in by quentin, 16 years ago
Allow syn to monitor LVS directors
File size: 5.5 KB
Line 
1#############################################################################
2# Sample NRPE Config File
3# Written by: Ethan Galstad (nagios@nagios.org)
4#
5# Last Modified: 03-05-2003
6#
7# NOTES:
8# This is a sample configuration file for the NRPE daemon.  It needs to be
9# located on the remote host that is running the NRPE daemon, not the host
10# from which the check_nrpe client is being executed.
11#############################################################################
12
13
14
15# PORT NUMBER
16# Port number we should wait for connections on.
17# NOTE: This must be a non-priviledged port (i.e. > 1024).
18# NOTE: This option is ignored if NRPE is running under either inetd or xinetd
19
20server_port=5666
21
22
23
24# SERVER ADDRESS
25# Address that nrpe should bind to in case there are more than one interface
26# and you do not want nrpe to bind on all interfaces.
27# NOTE: This option is ignored if NRPE is running under either inetd or xinetd
28
29#server_address=192.168.1.1
30
31
32
33# ALLOWED HOST ADDRESSES
34# This is a comma-delimited list of IP address of hosts that are allowed
35# to talk to the NRPE daemon.
36#
37# NOTE: The daemon only does rudimentary checking of the client's IP
38#       address.  I would highly recommend adding entries in your
39#       /etc/hosts.allow file to allow only the specified host to connect
40#       to the port you are running this daemon on.
41#
42# NOTE: This option is ignored if NRPE is running under either inetd or xinetd
43
44allowed_hosts=18.187.1.128,18.181.0.65
45
46
47
48# NRPE USER
49# This determines the effective user that the NRPE daemon should run as. 
50# You can either supply a username or a UID.
51#
52# NOTE: This option is ignored if NRPE is running under either inetd or xinetd
53
54nrpe_user=nagios
55
56
57
58# NRPE GROUP
59# This determines the effective group that the NRPE daemon should run as. 
60# You can either supply a group name or a GID.
61#
62# NOTE: This option is ignored if NRPE is running under either inetd or xinetd
63
64nrpe_group=nagios
65
66
67
68# COMMAND ARGUMENT PROCESSING
69# This option determines whether or not the NRPE daemon will allow clients
70# to specify arguments to commands that are executed.  This option only works
71# if the daemon was configured with the --enable-command-args configure script
72# option. 
73#
74# *** ENABLING THIS OPTION IS A SECURITY RISK! ***
75# Read the SECURITY file for information on some of the security implications
76# of enabling this variable.
77#
78# Values: 0=do not allow arguments, 1=allow command arguments
79
80dont_blame_nrpe=1
81
82
83
84# DEBUGGING OPTION
85# This option determines whether or not debugging messages are logged to the
86# syslog facility.
87# Values: 0=debugging off, 1=debugging on
88
89debug=0
90
91
92
93# COMMAND TIMEOUT
94# This specifies the maximum number of seconds that the NRPE daemon will
95# allow plugins to finish executing before killing them off.
96
97command_timeout=60
98
99
100
101# INCLUDE CONFIG FILE
102# This directive allows you to include definitions from an external config file.
103
104#include=<somefile.cfg>
105
106
107
108# INCLUDE CONFIG DIRECTORY
109# This directive allows you to include definitions from config files (with a
110# .cfg extension) in one or more directories (with recursion).
111
112#include_dir=<somedirectory>
113#include_dir=<someotherdirectory>
114
115
116
117# COMMAND DEFINITIONS
118# Command definitions that this daemon will run.  Definitions
119# are in the following format:
120#
121# command[<command_name>]=<command_line>
122#
123# When the daemon receives a request to return the results of <command_name>
124# it will execute the command specified by the <command_line> argument.
125#
126# Unlike Nagios, the command line cannot contain macros - it must be
127# typed exactly as it should be executed.
128#
129# Note: Any plugins that are used in the command lines must reside
130# on the machine that this daemon is running on!  The examples below
131# assume that you have plugins installed in a /usr/local/nagios/libexec
132# directory.  Also note that you will have to modify the definitions below
133# to match the argument format the plugins expect.  Remember, these are
134# examples only!
135
136# The following examples use hardcoded command arguments...
137
138#command[check_users]=/usr/lib/nagios/plugins/check_users -w 5 -c 10
139#command[check_load]=/usr/lib/nagios/plugins/check_load -w 15,10,5 -c 30,25,20
140command[check_disk1]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/hda1
141command[check_disk2]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/hdb1
142command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z
143command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 150 -c 200
144
145# The following examples allow user-supplied arguments and can
146# only be used if the NRPE daemon was compiled with support for
147# command arguments *AND* the dont_blame_nrpe directive in this
148# config file is set to '1'...
149
150command[check_users]=/usr/lib/nagios/plugins/check_users -w $ARG1$ -c $ARG2$
151command[check_load]=/usr/lib/nagios/plugins/check_load -w $ARG1$ -c $ARG2$
152command[check_disk]=/usr/lib/nagios/plugins/check_disk -w $ARG1$ -c $ARG2$
153command[check_disk_p]=/usr/lib/nagios/plugins/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
154command[check_procs]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$
155command[check_procs_C]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -C $ARG3$
156command[check_procs_P]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -P $ARG3$
157command[check_procs_m]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -m $ARG3$
158command[check_procs_s]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$
159command[check_procs_u]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -u $ARG3$
160command[check_procs_z]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -z $ARG3$
161
162
163include=/etc/nagios/nrpe_local.cfg
Note: See TracBrowser for help on using the repository browser.