Advertisement
msx

/etc/munin/munin-node.conf

msx
Sep 17th, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. /etc/munin $ cat munin-node.conf
  2. #
  3. # Example config-file for munin-node
  4. #
  5.  
  6. log_level 4
  7. log_file /var/log/munin/munin-node.log
  8. pid_file /run/munin/munin-node.pid
  9.  
  10. background 1
  11. setsid 1
  12.  
  13. user root
  14. group root
  15.  
  16.  
  17. # Regexps for files to ignore
  18. ignore_file [\#~]$
  19. ignore_file DEADJOE$
  20. ignore_file \.bak$
  21. ignore_file %$
  22. ignore_file \.dpkg-(tmp|new|old|dist)$
  23. ignore_file \.rpm(save|new)$
  24. ignore_file \.pod$
  25.  
  26. # Set this if the client doesn't report the correct hostname when
  27. # telnetting to localhost, port 4949
  28. #
  29. #host_name myhostname
  30.  
  31. # A list of addresses that are allowed to connect. This must be a
  32. # regular expression, since Net::Server does not understand CIDR-style
  33. # network notation unless the perl module Net::CIDR is installed. You
  34. # may repeat the allow line as many times as you'd like
  35.  
  36. allow ^127\.0\.0\.1$
  37.  
  38. # If you have installed the Net::CIDR perl module, you can use one or more
  39. # cidr_allow and cidr_deny address/mask patterns. A connecting client must
  40. # match any cidr_allow, and not match any cidr_deny. Note that a netmask
  41. # *must* be provided, even if it's /32
  42. #
  43. # Example:
  44. #
  45. # cidr_allow 127.0.0.1/32
  46. # cidr_allow 192.0.2.0/24
  47. # cidr_deny 192.0.2.42/32
  48.  
  49. # Which address to bind to;
  50. host *
  51. # host 127.0.0.1
  52.  
  53. # And which port
  54. port 4949
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement