X-Git-Url: https://git.distorted.org.uk/~mdw/firewall/blobdiff_plain/42dae9aeec781a3f02a87673e7b64d20facb9659..87bf159206865ef85e8caa5f2830b141407eb01e:/bookends.m4 diff --git a/bookends.m4 b/bookends.m4 index b51f8ae..a0731d2 100644 --- a/bookends.m4 +++ b/bookends.m4 @@ -105,8 +105,16 @@ m4_divert(32)m4_dnl ## Set forwarding options. Apparently setting ip_forward clobbers other ## settings, so put this first. +case $host_type_<::>FWHOST in + router) forward=1 ;; + *) forward=0 ;; +esac setopt ip_forward $forward setdevopt forwarding $forward +case $forward in + 0) inchains="INPUT" ;; + 1) inchains="INPUT FORWARD" ;; +esac ## Set dynamic port allocation. setopt ip_local_port_range $open_port_min $open_port_max @@ -129,9 +137,11 @@ if [ -x /sbin/brctl ]; then fi fi -## Turn on the reverse-path filter, and log weird things. -setdevopt rp_filter $rp_filter -setdevopt log_martians $log_martians +## Turn off the reverse-path filter. It's basically useless: the filter does +## nothing at all for single-homed hosts; and multi-homed hosts tend to have +## routing aysmmetries if there's any kind of cycle. +setdevopt rp_filter 0 +setdevopt log_martians 0 ## Turn off things which can mess with our routing decisions. setdevopt accept_source_route 0 @@ -164,7 +174,7 @@ errorchain bad-destination-address REJECT errorchain interesting ACCEPT ## Not an error, just log interesting packets. -m4_divert(36)m4_dnl +m4_divert(50)m4_dnl ###-------------------------------------------------------------------------- ### Standard filtering. @@ -179,26 +189,36 @@ run ip6tables -A INPUT -g bad-destination-address \ -d ::1 ## We shouldn't be asked to forward things with link-local addresses. -run iptables -A FORWARD -g bad-source-address \ - -s 169.254.0.0/16 -run iptables -A FORWARD -g bad-destination-address \ - -d 169.254.0.0/16 -run ip6tables -A FORWARD -g bad-source-address \ - -s fe80::/10 -run ip6tables -A FORWARD -g bad-destination-address \ - -d fe80::/10 +case $forward in + 1) + run iptables -A FORWARD -g bad-source-address \ + -s 169.254.0.0/16 + run iptables -A FORWARD -g bad-destination-address \ + -d 169.254.0.0/16 + run ip6tables -A FORWARD -g bad-source-address \ + -s fe80::/10 + run ip6tables -A FORWARD -g bad-destination-address \ + -d fe80::/10 + ;; +esac ## Also, don't forward link-local broadcast or multicast. -run iptables -A FORWARD -g bad-destination-address \ - -d 255.255.255.255 -run iptables -A FORWARD -g bad-destination-address \ - -m addrtype --dst-type BROADCAST -run iptables -A FORWARD -g bad-destination-address \ - -d 224.0.0.0/24 -for x in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do - run ip6tables -A FORWARD -g bad-destination-address \ - -d fe${x}2::/16 -done +case $forward in + 1) + run iptables -A FORWARD -g bad-destination-address \ + -d 255.255.255.255 + run iptables -A FORWARD -g bad-destination-address \ + -m addrtype --dst-type BROADCAST + run iptables -A FORWARD -g bad-destination-address \ + -d 224.0.0.0/24 + clearchain check-fwd-multi + for x in 0 1 2 3 4 5 6 7 8 9 a b c d e f; do + run ip6tables -A check-fwd-multi -g bad-destination-address \ + -d ff${x}2::/16 + done + ip6tables -A FORWARD -j check-fwd-multi -d ff00::/8 + ;; +esac ## Add a hook for fail2ban. clearchain fail2ban @@ -217,5 +237,29 @@ for chain in INPUT FORWARD; do run ip46tables -A $chain -g forbidden done +## Allow stuff through unknown tables. +for ip in ip ip6; do + for table in $(cat /proc/net/${ip}_tables_names); do + case $table in mangle | filter) continue ;; esac + ${ip}tables -nL -t $table | + sed -n '/^Chain \([^ ]\+\) (policy .*$/ s//\1/p ' | + while read chain; do + run ${ip}tables -t $table -P $chain ACCEPT + done + done +done + +## Dump the resulting configuration. +if [ "$FW_DEBUG" ]; then + for ip in ip ip6; do + for table in mangle filter; do + echo "----- $ip $table -----" + echo + ${ip}tables -t $table -nvL + echo + done + done +fi + m4_divert(-1) ###----- That's all, folks --------------------------------------------------