nrpe.cfg.in 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. #############################################################################
  2. # Sample NRPE Config File
  3. # Written by: Ethan Galstad (nagios@nagios.org)
  4. #
  5. # Last Modified: 2016-05-10
  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. # LOG FACILITY
  13. # The syslog facility that should be used for logging purposes.
  14. log_facility=@log_facility@
  15. # LOG FILE
  16. # If a log file is specified in this option, nrpe will write to
  17. # that file instead of using syslog.
  18. #log_file=@logdir@/nrpe.log
  19. # DEBUGGING OPTION
  20. # This option determines whether or not debugging messages are logged to the
  21. # syslog facility.
  22. # Values: 0=debugging off, 1=debugging on
  23. debug=0
  24. # PID FILE
  25. # The name of the file in which the NRPE daemon should write it's process ID
  26. # number. The file is only written if the NRPE daemon is started by the root
  27. # user and is running in standalone mode.
  28. pid_file=@piddir@/nrpe.pid
  29. # PORT NUMBER
  30. # Port number we should wait for connections on.
  31. # NOTE: This must be a non-privileged port (i.e. > 1024).
  32. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  33. server_port=@nrpe_port@
  34. # SERVER ADDRESS
  35. # Address that nrpe should bind to in case there are more than one interface
  36. # and you do not want nrpe to bind on all interfaces.
  37. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  38. #server_address=127.0.0.1
  39. # LISTEN QUEUE SIZE
  40. # Listen queue size (backlog) for serving incoming connections.
  41. # You may want to increase this value under high load.
  42. #listen_queue_size=5
  43. # NRPE USER
  44. # This determines the effective user that the NRPE daemon should run as.
  45. # You can either supply a username or a UID.
  46. #
  47. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  48. nrpe_user=@nrpe_user@
  49. # NRPE GROUP
  50. # This determines the effective group that the NRPE daemon should run as.
  51. # You can either supply a group name or a GID.
  52. #
  53. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  54. nrpe_group=@nrpe_group@
  55. # ALLOWED HOST ADDRESSES
  56. # This is an optional comma-delimited list of IP address or hostnames
  57. # that are allowed to talk to the NRPE daemon. Network addresses with a bit mask
  58. # (i.e. 192.168.1.0/24) are also supported. Hostname wildcards are not currently
  59. # supported.
  60. #
  61. # Note: The daemon only does rudimentary checking of the client's IP
  62. # address. I would highly recommend adding entries in your /etc/hosts.allow
  63. # file to allow only the specified host to connect to the port
  64. # you are running this daemon on.
  65. #
  66. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  67. allowed_hosts=127.0.0.1,::1
  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. dont_blame_nrpe=0
  80. # BASH COMMAND SUBSTITUTION
  81. # This option determines whether or not the NRPE daemon will allow clients
  82. # to specify arguments that contain bash command substitutions of the form
  83. # $(...). This option only works if the daemon was configured with both
  84. # the --enable-command-args and --enable-bash-command-substitution configure
  85. # script options.
  86. #
  87. # *** ENABLING THIS OPTION IS A HIGH SECURITY RISK! ***
  88. # Read the SECURITY file for information on some of the security implications
  89. # of enabling this variable.
  90. #
  91. # Values: 0=do not allow bash command substitutions,
  92. # 1=allow bash command substitutions
  93. allow_bash_command_substitution=0
  94. # COMMAND PREFIX
  95. # This option allows you to prefix all commands with a user-defined string.
  96. # A space is automatically added between the specified prefix string and the
  97. # command line from the command definition.
  98. #
  99. # *** THIS EXAMPLE MAY POSE A POTENTIAL SECURITY RISK, SO USE WITH CAUTION! ***
  100. # Usage scenario:
  101. # Execute restricted commmands using sudo. For this to work, you need to add
  102. # the nagios user to your /etc/sudoers. An example entry for allowing
  103. # execution of the plugins from might be:
  104. #
  105. # nagios ALL=(ALL) NOPASSWD: /usr/lib/nagios/plugins/
  106. #
  107. # This lets the nagios user run all commands in that directory (and only them)
  108. # without asking for a password. If you do this, make sure you don't give
  109. # random users write access to that directory or its contents!
  110. # command_prefix=/usr/bin/sudo
  111. # COMMAND TIMEOUT
  112. # This specifies the maximum number of seconds that the NRPE daemon will
  113. # allow plugins to finish executing before killing them off.
  114. command_timeout=60
  115. # CONNECTION TIMEOUT
  116. # This specifies the maximum number of seconds that the NRPE daemon will
  117. # wait for a connection to be established before exiting. This is sometimes
  118. # seen where a network problem stops the SSL being established even though
  119. # all network sessions are connected. This causes the nrpe daemons to
  120. # accumulate, eating system resources. Do not set this too low.
  121. connection_timeout=300
  122. # WEAK RANDOM SEED OPTION
  123. # This directive allows you to use SSL even if your system does not have
  124. # a /dev/random or /dev/urandom (on purpose or because the necessary patches
  125. # were not applied). The random number generator will be seeded from a file
  126. # which is either a file pointed to by the environment valiable $RANDFILE
  127. # or $HOME/.rnd. If neither exists, the pseudo random number generator will
  128. # be initialized and a warning will be issued.
  129. # Values: 0=only seed from /dev/[u]random, 1=also seed from weak randomness
  130. #allow_weak_random_seed=1
  131. # SSL/TLS OPTIONS
  132. # These directives allow you to specify how to use SSL/TLS.
  133. # SSL VERSION
  134. # This can be any of: SSLv2 (only use SSLv2), SSLv2+ (use any version),
  135. # SSLv3 (only use SSLv3), SSLv3+ (use SSLv3 or above), TLSv1 (only use
  136. # TLSv1), TLSv1+ (use TLSv1 or above), TLSv1.1 (only use TLSv1.1),
  137. # TLSv1.1+ (use TLSv1.1 or above), TLSv1.2 (only use TLSv1.2),
  138. # TLSv1.2+ (use TLSv1.2 or above)
  139. # If an "or above" version is used, the best will be negotiated. So if both
  140. # ends are able to do TLSv1.2 and use specify SSLv2, you will get TLSv1.2.
  141. # If you are using openssl 1.1.0 or above, the SSLv2 options are not available.
  142. #ssl_version=SSLv2+
  143. # SSL USE ADH
  144. # This is for backward compatibility and is DEPRECATED. Set to 1 to enable
  145. # ADH or 2 to require ADH. 1 is currently the default but will be changed
  146. # in a later version.
  147. #ssl_use_adh=1
  148. # SSL CIPHER LIST
  149. # This lists which ciphers can be used. For backward compatibility, this
  150. # defaults to 'ssl_cipher_list=ALL:!MD5:@STRENGTH' in this version but
  151. # will be changed to something like the example below in a later version of NRPE.
  152. #ssl_cipher_list=ALL:!MD5:@STRENGTH
  153. #ssl_cipher_list=ALL:!aNULL:!eNULL:!SSLv2:!LOW:!EXP:!RC4:!MD5:@STRENGTH
  154. # SSL Certificate and Private Key Files
  155. #ssl_cacert_file=/etc/ssl/servercerts/ca-cert.pem
  156. #ssl_cert_file=/etc/ssl/servercerts/nagios-cert.pem
  157. #ssl_privatekey_file=/etc/ssl/servercerts/nagios-key.pem
  158. # SSL USE CLIENT CERTS
  159. # This options determines client certificate usage.
  160. # Values: 0 = Don't ask for or require client certificates (default)
  161. # 1 = Ask for client certificates
  162. # 2 = Require client certificates
  163. #ssl_client_certs=0
  164. # SSL LOGGING
  165. # This option determines which SSL messages are send to syslog. OR values
  166. # together to specify multiple options.
  167. # Values: 0x00 (0) = No additional logging (default)
  168. # 0x01 (1) = Log startup SSL/TLS parameters
  169. # 0x02 (2) = Log remote IP address
  170. # 0x04 (4) = Log SSL/TLS version of connections
  171. # 0x08 (8) = Log which cipher is being used for the connection
  172. # 0x10 (16) = Log if client has a certificate
  173. # 0x20 (32) = Log details of client's certificate if it has one
  174. # -1 or 0xff or 0x2f = All of the above
  175. #ssl_logging=0x00
  176. # NASTY METACHARACTERS
  177. # This option allows you to override the list of characters that cannot
  178. # be passed to the NRPE daemon.
  179. # nasty_metachars="|`&><'\\[]{};\r\n"
  180. # INCLUDE CONFIG FILE
  181. # This directive allows you to include definitions from an external config file.
  182. #include=<somefile.cfg>
  183. # INCLUDE CONFIG DIRECTORY
  184. # This directive allows you to include definitions from config files (with a
  185. # .cfg extension) in one or more directories (with recursion).
  186. #include_dir=<somedirectory>
  187. #include_dir=<someotherdirectory>
  188. # COMMAND DEFINITIONS
  189. # Command definitions that this daemon will run. Definitions
  190. # are in the following format:
  191. #
  192. # command[<command_name>]=<command_line>
  193. #
  194. # When the daemon receives a request to return the results of <command_name>
  195. # it will execute the command specified by the <command_line> argument.
  196. #
  197. # Unlike Nagios, the command line cannot contain macros - it must be
  198. # typed exactly as it should be executed.
  199. #
  200. # Note: Any plugins that are used in the command lines must reside
  201. # on the machine that this daemon is running on! The examples below
  202. # assume that you have plugins installed in a /usr/local/nagios/libexec
  203. # directory. Also note that you will have to modify the definitions below
  204. # to match the argument format the plugins expect. Remember, these are
  205. # examples only!
  206. # The following examples use hardcoded command arguments...
  207. command[check_users]=@pluginsdir@/check_users -w 5 -c 10
  208. command[check_load]=@pluginsdir@/check_load -r -w .15,.10,.05 -c .30,.25,.20
  209. command[check_hda1]=@pluginsdir@/check_disk -w 20% -c 10% -p /dev/hda1
  210. command[check_zombie_procs]=@pluginsdir@/check_procs -w 5 -c 10 -s Z
  211. command[check_total_procs]=@pluginsdir@/check_procs -w 150 -c 200
  212. # The following examples allow user-supplied arguments and can
  213. # only be used if the NRPE daemon was compiled with support for
  214. # command arguments *AND* the dont_blame_nrpe directive in this
  215. # config file is set to '1'. This poses a potential security risk, so
  216. # make sure you read the SECURITY file before doing this.
  217. #command[check_users]=@pluginsdir@/check_users -w $ARG1$ -c $ARG2$
  218. #command[check_load]=@pluginsdir@/check_load -w $ARG1$ -c $ARG2$
  219. #command[check_disk]=@pluginsdir@/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
  220. #command[check_procs]=@pluginsdir@/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$