no longr build 31/sfapy2
[infrastructure.git] / nagios / AutomaticConfig / config-sample / nrpe-sample.cfg
1 #############################################################################
2 # Sample NRPE Config File 
3 # Written by: Ethan Galstad (nagios@nagios.org)
4
5 # Last Modified: 12-11-2006
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 # PID FILE
15 # The name of the file in which the NRPE daemon should write it's process ID
16 # number.  The file is only written if the NRPE daemon is started by the root
17 # user and is running in standalone mode.
18
19 pid_file=/var/run/nrpe.pid
20
21
22
23 # PORT NUMBER
24 # Port number we should wait for connections on.
25 # NOTE: This must be a non-priviledged port (i.e. > 1024).
26 # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
27
28 server_port=5666
29
30
31
32 # SERVER ADDRESS
33 # Address that nrpe should bind to in case there are more than one interface
34 # and you do not want nrpe to bind on all interfaces.
35 # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
36
37 #server_address=192.168.1.1
38
39
40
41 # NRPE USER
42 # This determines the effective user that the NRPE daemon should run as.  
43 # You can either supply a username or a UID.
44
45 # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
46
47 nrpe_user=nrpe,admin,root
48
49
50
51 # NRPE GROUP
52 # This determines the effective group that the NRPE daemon should run as.  
53 # You can either supply a group name or a GID.
54
55 # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
56
57 nrpe_group=nrpe
58
59
60
61 # ALLOWED HOST ADDRESSES
62 # This is an optional comma-delimited list of IP address or hostnames 
63 # that are allowed to talk to the NRPE daemon.
64 #
65 # Note: The daemon only does rudimentary checking of the client's IP
66 # address.  I would highly recommend adding entries in your /etc/hosts.allow
67 # file to allow only the specified host to connect to the port
68 # you are running this daemon on.
69 #
70 # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
71
72 allowed_hosts=127.0.0.1,138.96.250.127,138.96.250.129,87.98.251.120
73  
74
75
76 # COMMAND ARGUMENT PROCESSING
77 # This option determines whether or not the NRPE daemon will allow clients
78 # to specify arguments to commands that are executed.  This option only works
79 # if the daemon was configured with the --enable-command-args configure script
80 # option.  
81 #
82 # *** ENABLING THIS OPTION IS A SECURITY RISK! *** 
83 # Read the SECURITY file for information on some of the security implications
84 # of enabling this variable.
85 #
86 # Values: 0=do not allow arguments, 1=allow command arguments
87
88 dont_blame_nrpe=1
89
90
91
92 # COMMAND PREFIX
93 # This option allows you to prefix all commands with a user-defined string.
94 # A space is automatically added between the specified prefix string and the
95 # command line from the command definition.
96 #
97 # *** THIS EXAMPLE MAY POSE A POTENTIAL SECURITY RISK, SO USE WITH CAUTION! ***
98 # Usage scenario: 
99 # Execute restricted commmands using sudo.  For this to work, you need to add
100 # the nagios user to your /etc/sudoers.  An example entry for alllowing 
101 # execution of the plugins from might be:
102 #
103 # nagios          ALL=(ALL) NOPASSWD: /usr/lib/nagios/plugins/
104 #
105 # This lets the nagios user run all commands in that directory (and only them)
106 # without asking for a password.  If you do this, make sure you don't give
107 # random users write access to that directory or its contents!
108
109 # command_prefix=/usr/bin/sudo 
110
111
112
113 # DEBUGGING OPTION
114 # This option determines whether or not debugging messages are logged to the
115 # syslog facility.
116 # Values: 0=debugging off, 1=debugging on
117
118 debug=0
119
120
121
122 # COMMAND TIMEOUT
123 # This specifies the maximum number of seconds that the NRPE daemon will
124 # allow plugins to finish executing before killing them off.
125
126 command_timeout=60
127
128
129
130 # CONNECTION TIMEOUT
131 # This specifies the maximum number of seconds that the NRPE daemon will
132 # wait for a connection to be established before exiting. This is sometimes
133 # seen where a network problem stops the SSL being established even though
134 # all network sessions are connected. This causes the nrpe daemons to
135 # accumulate, eating system resources. Do not set this too low.
136
137 connection_timeout=300
138
139
140
141 # WEEK RANDOM SEED OPTION
142 # This directive allows you to use SSL even if your system does not have
143 # a /dev/random or /dev/urandom (on purpose or because the necessary patches
144 # were not applied). The random number generator will be seeded from a file
145 # which is either a file pointed to by the environment valiable $RANDFILE
146 # or $HOME/.rnd. If neither exists, the pseudo random number generator will
147 # be initialized and a warning will be issued.
148 # Values: 0=only seed from /dev/[u]random, 1=also seed from weak randomness
149
150 #allow_weak_random_seed=1
151
152
153
154 # INCLUDE CONFIG FILE
155 # This directive allows you to include definitions from an external config file.
156
157 #include=<somefile.cfg>
158
159
160
161 # INCLUDE CONFIG DIRECTORY
162 # This directive allows you to include definitions from config files (with a
163 # .cfg extension) in one or more directories (with recursion).
164
165 #include_dir=<somedirectory>
166 #include_dir=<someotherdirectory>
167
168
169
170 # COMMAND DEFINITIONS
171 # Command definitions that this daemon will run.  Definitions
172 # are in the following format:
173 #
174 # command[<command_name>]=<command_line>
175 #
176 # When the daemon receives a request to return the results of <command_name>
177 # it will execute the command specified by the <command_line> argument.
178 #
179 # Unlike Nagios, the command line cannot contain macros - it must be
180 # typed exactly as it should be executed.
181 #
182 # Note: Any plugins that are used in the command lines must reside
183 # on the machine that this daemon is running on!  The examples below
184 # assume that you have plugins installed in a /usr/local/nagios/libexec
185 # directory.  Also note that you will have to modify the definitions below
186 # to match the argument format the plugins expect.  Remember, these are
187 # examples only!
188
189 # The following examples use hardcoded command arguments...
190
191 command[check_users]=/usr/lib/nagios/plugins/check_users -w 5 -c 10
192 command[check_load]=/usr/lib/nagios/plugins/check_load -w 15,10,5 -c 30,25,20
193 command[check_disk1]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/sda3
194 command[check_disk2]=/usr/lib/nagios/plugins/check_disk -w 20 -c 10 -p /dev/hdb1
195 command[check_zombie_procs]=/usr/lib/nagios/plugins/check_procs -w 5 -c 10 -s Z
196 command[check_total_procs]=/usr/lib/nagios/plugins/check_procs -w 150 -c 200 
197
198 # The following examples allow user-supplied arguments and can
199 # only be used if the NRPE daemon was compiled with support for 
200 # command arguments *AND* the dont_blame_nrpe directive in this
201 # config file is set to '1'...
202
203 #command[check_users]=/usr/lib/nagios/plugins/check_users -w $ARG1$ -c $ARG2$
204 #command[check_load]=/usr/lib/nagios/plugins/check_load -w $ARG1$ -c $ARG2$
205 #command[check_disk]=/usr/lib/nagios/plugins/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
206 command[check_procs]=/usr/lib/nagios/plugins/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$