nrpe.cfg.in 6.9 KB

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