nrpe.cfg.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #############################################################################
  2. # Sample NRPE Config File
  3. # Written by: Ethan Galstad (nagios@nagios.org)
  4. #
  5. # Last Modified: 06-03-2002
  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=5666
  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. # DEBUGGING OPTION
  46. # This option determines whether or not debugging messages are logged to the
  47. # syslog facility.
  48. # Values: 0=debugging off, 1=debugging on
  49. debug=0
  50. # COMMAND DEFINITIONS
  51. # Command definitions that this daemon will run. Definitions
  52. # are in the following format:
  53. #
  54. # command[<command_name>]=<command_line>
  55. #
  56. # When the daemon receives a request to return the results of <command_name>
  57. # it will execute the command specified by the <command_line> argument.
  58. #
  59. # Unlike Nagios, the command line cannot contain macros - it must be
  60. # typed exactly as it should be executed.
  61. #
  62. # Note: Any plugins that are used in the command lines must reside
  63. # on the machine that this daemon is running on! The examples below
  64. # assume that you have plugins installed in a /usr/local/nagios/libexec
  65. # directory. Also note that you will have to modify the definitions below
  66. # to match the argument format the plugins expect. Remember, these are
  67. # examples only!
  68. command[check_users]=/usr/local/nagios/libexec/check_users -w 5 -c 10
  69. command[check_load]=/usr/local/nagios/libexec/check_load -w 15,10,5 -c 30,25,20
  70. command[check_disk1]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/hda1
  71. command[check_disk2]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /dev/hdb1
  72. command[check_zombie_procs]=/usr/local/nagios/libexec/check_procs -w 5 -c 10 -s Z
  73. command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200