X-Git-Url: https://git.distorted.org.uk/~mdw/firewall/blobdiff_plain/51988d089b81f995878ae55853f9f92e0beeb7f3..d8e50664d13e3ad4818841f514970380e4e78e55:/bookends.m4 diff --git a/bookends.m4 b/bookends.m4 index 807e8d9..1004b76 100644 --- a/bookends.m4 +++ b/bookends.m4 @@ -137,13 +137,13 @@ setopt icmp_echo_ignore_broadcasts 0 ## Turn off iptables filtering for bridges. We'll use ebtables if we need ## to; but right now the model is that we do filtering at the borders, and ## are tolerant of things which are local. -if [ -x /sbin/brctl ]; then +if [ -x /sbin/brctl ] || [ -x /usr/sbin/brctl ]; then modprobe bridge || : - if [ -d /proc/sys/net/bridge ]; then - for filter in arptables iptables ip6tables; do - run sysctl -q net.bridge.bridge-nf-call-$filter=0 - done - fi +fi +if [ -d /proc/sys/net/bridge ]; then + for filter in arptables iptables ip6tables; do + run sysctl -q net.bridge.bridge-nf-call-$filter=0 + done fi ## Turn off the reverse-path filter. It's basically useless: the filter does @@ -177,6 +177,10 @@ errorchain bad-source-address DROP ## Packet arrived on wrong interface for its source address. Drops the ## packet, since there's nowhere sensible to send an error. +errorchain dns-rate-limit DROP +## Dropped incoming DNS query due to rate limiting. The source address is +## suspicious, so don't produce ICMP. + errorchain bad-destination-address REJECT ## Packet arrived on non-loopback interface with loopback destination.