A userspace application that filters DHCP floods to protect a DHCP server. It uses the Netfilter userspace packet queuing API.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021
  1. # max_pkt_per_interval
  2. # maximum number of packets authorised per time interval.
  3. max_pkt_per_interval=1
  4. # interval
  5. # measurement time interval in seconds.
  6. interval=10
  7. # debug
  8. # enable debugging, warning, very verbose
  9. debug=1
  10. # blacklist_time
  11. # number of seconds this client will be ignored once
  12. # it exceeded the max_pkt_per_interval per interval
  13. blacklist_time=10
  14. # queue number
  15. # refers to the queue-num of iptables.
  16. # -A FORWARD -p udp -m udp --dport 67 -j NFQUEUE --queue-num 67 --queue-bypass
  17. queue=67