Advertisement
bueddl

Untitled

May 21st, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; default configuration file for module `ssh`
  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.  
  10. ; pings from server to any dest
  11. [icmp_client]
  12. ; enable ping at all or not
  13. enable = true
  14. ; limit pings ?
  15. limit.enable = false
  16. ; unit
  17. ;limit.unit =
  18. ; set limits
  19. ;limit.perDay =
  20. ;limit.perHour =
  21. ;limit.perMinute =
  22. ;limit.perSecond =
  23.  
  24.  
  25. ; pings to the server
  26. [icmp_server]
  27. ; enable ping at all or not
  28. enable = true
  29. ; limit pings ?
  30. limit.enable = true
  31. ; unit
  32. limit.unit = s
  33. ; set limits
  34. ;limit.perDay =
  35. ;limit.perHour =
  36. ;limit.perMinute =
  37. limit.perSecond = 12
  38.  
  39.  
  40. ; overall logging behaviour
  41. [logging]
  42. ; enable logging at all
  43. enable = true
  44. ; enable limit or not
  45. ; it is highly NOT recommended to turn this off! it will flood your logs!
  46. limit.enable = true
  47. ; unit ( s, m, h, d )
  48. limit.unit = h
  49. ; set limits
  50. ;limit.perDay =
  51. limit.perHour = 3600
  52. ;limit.perMinute =
  53. ;limit.perSecond =
  54. ;
  55. prefix.dropTcp = "DROP TCP Packet: "
  56. prefix.dropUdp = "DROP UDP Packet: "
  57. prefix.dropIcmp = "DROP ICMP Packet: "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement