Advertisement
bueddl

Untitled

May 21st, 2013
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; default configuration file for module `basic`
  2.  
  3. ; Author: Sebastian Büttner
  4. ; Copyright 2013
  5. ; Last-modification: 2013-05-21
  6. ;
  7. ; Description: basicfunctions like ping and loggin
  8.  
  9. ; currently unused
  10. [interfaces]
  11. ;primary network interface
  12. primary.iface = eth0
  13.  
  14.  
  15. ; pings from server to any dest
  16. [icmp_client]
  17. ; enable ping at all or not
  18. enable = true
  19. ; limit pings ?
  20. limit.enable = false
  21. ; unit
  22. ;limit.unit =
  23. ; set limits
  24. ;limit.perDay =
  25. ;limit.perHour =
  26. ;limit.perMinute =
  27. ;limit.perSecond =
  28.  
  29.  
  30. ; pings to the server
  31. [icmp_server]
  32. ; enable ping at all or not
  33. enable = true
  34. ; limit pings ?
  35. limit.enable = true
  36. ; unit
  37. limit.unit = s
  38. ; set limits
  39. ;limit.perDay =
  40. ;limit.perHour =
  41. ;limit.perMinute =
  42. limit.perSecond = 12
  43.  
  44.  
  45. ; overall logging behaviour
  46. [logging]
  47. ; enable logging at all
  48. enable = true
  49. ; enable limit or not
  50. ; it is highly NOT recommended to turn this off! it will flood your logs!
  51. limit.enable = true
  52. ; unit ( s, m, h, d )
  53. limit.unit = h
  54. ; set limits
  55. ;limit.perDay =
  56. limit.perHour = 3600
  57. ;limit.perMinute =
  58. ;limit.perSecond =
  59. ;
  60. prefix.dropTcp = "DROP TCP Packet: "
  61. prefix.dropUdp = "DROP UDP Packet: "
  62. prefix.dropIcmp = "DROP ICMP Packet: "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement