nrpe.cfg.in 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. # PORT NUMBER
  13. # Port number we should wait for connections on.
  14. # NOTE: This must be a non-priviledged port (i.e. > 1024).
  15. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  16. server_port=@nrpe_port@
  17. # SERVER ADDRESS
  18. # Address that nrpe should bind to in case there are more than one interface
  19. # and you do not want nrpe to bind on all interfaces.
  20. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  21. #server_address=192.168.1.1
  22. # ALLOWED HOST ADDRESSES
  23. # This is a comma-delimited list of IP address of hosts that are allowed
  24. # to talk to the NRPE daemon.
  25. #
  26. # NOTE: The daemon only does rudimentary checking of the client's IP
  27. # address. I would highly recommend adding entries in your
  28. # /etc/hosts.allow file to allow only the specified host to connect
  29. # to the port you are running this daemon on.
  30. #
  31. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  32. allowed_hosts=127.0.0.1
  33. # NRPE USER
  34. # This determines the effective user that the NRPE daemon should run as.
  35. # You can either supply a username or a UID.
  36. #
  37. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  38. nrpe_user=@nrpe_user@
  39. # NRPE GROUP
  40. # This determines the effective group that the NRPE daemon should run as.
  41. # You can either supply a group name or a GID.
  42. #
  43. # NOTE: This option is ignored if NRPE is running under either inetd or xinetd
  44. nrpe_group=@nrpe_grp@
  45. # COMMAND ARGUMENT PROCESSING
  46. # This option determines whether or not the NRPE daemon will allow clients
  47. # to specify arguments to commands that are executed. This option only works
  48. # if the daemon was configured with the --enable-command-args configure script
  49. # option.
  50. #
  51. # *** ENABLING THIS OPTION IS A SECURITY RISK! ***
  52. # Read the SECURITY file for information on some of the security implications
  53. # of enabling this variable.
  54. #
  55. # Values: 0=do not allow arguments, 1=allow command arguments
  56. dont_blame_nrpe=0
  57. # DEBUGGING OPTION
  58. # This option determines whether or not debugging messages are logged to the
  59. # syslog facility.
  60. # Values: 0=debugging off, 1=debugging on
  61. debug=0
  62. # COMMAND TIMEOUT
  63. # This specifies the maximum number of seconds that the NRPE daemon will
  64. # allow plugins to finish executing before killing them off.
  65. command_timeout=60
  66. # INCLUDE CONFIG FILE
  67. # This directive allows you to include definitions from an external config file.
  68. #include=<somefile.cfg>
  69. # INCLUDE CONFIG DIRECTORY
  70. # This directive allows you to include definitions from config files (with a
  71. # .cfg extension) in one or more directories (with recursion).
  72. #include_dir=<somedirectory>
  73. #include_dir=<someotherdirectory>
  74. # COMMAND DEFINITIONS
  75. # Command definitions that this daemon will run. Definitions
  76. # are in the following format:
  77. #
  78. # command[<command_name>]=<command_line>
  79. #
  80. # When the daemon receives a request to return the results of <command_name>
  81. # it will execute the command specified by the <command_line> argument.
  82. #
  83. # Unlike Nagios, the command line cannot contain macros - it must be
  84. # typed exactly as it should be executed.
  85. #
  86. # Note: Any plugins that are used in the command lines must reside
  87. # on the machine that this daemon is running on! The examples below
  88. # assume that you have plugins installed in a /usr/local/nagios/libexec
  89. # directory. Also note that you will have to modify the definitions below
  90. # to match the argument format the plugins expect. Remember, these are
  91. # examples only!
  92. # The following examples use hardcoded command arguments...
  93. command[check_users]=@libexecdir@/check_users -w 5 -c 10
  94. command[check_load]=@libexecdir@/check_load -w 15,10,5 -c 30,25,20
  95. command[check_disk1]=@libexecdir@/check_disk -w 20 -c 10 -p /dev/hda1
  96. command[check_disk2]=@libexecdir@/check_disk -w 20 -c 10 -p /dev/hdb1
  97. command[check_zombie_procs]=@libexecdir@/check_procs -w 5 -c 10 -s Z
  98. command[check_total_procs]=@libexecdir@/check_procs -w 150 -c 200
  99. # The following examples allow user-supplied arguments and can
  100. # only be used if the NRPE daemon was compiled with support for
  101. # command arguments *AND* the dont_blame_nrpe directive in this
  102. # config file is set to '1'...
  103. #command[check_users]=@libexecdir@/check_users -w $ARG1$ -c $ARG2$
  104. #command[check_load]=@libexecdir@/check_load -w $ARG1$ -c $ARG2$
  105. #command[check_disk]=@libexecdir@/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
  106. #command[check_procs]=@libexecdir@/check_procs -w $ARG1$ -c $ARG2$ -s $ARG3$