X-Git-Url: https://git.distorted.org.uk/~mdw/firewall/blobdiff_plain/f98dfdf667181aad1d53a6e3a3758c2c6caec3a8..781acc946464f4073274fb9e4743661f1c7ad0dc:/local.m4 diff --git a/local.m4 b/local.m4 index 52dc94c..b321cde 100644 --- a/local.m4 +++ b/local.m4 @@ -56,19 +56,19 @@ m4_divert(60)m4_dnl ## Allow ping from safe/noloop to untrusted networks. run iptables -A FORWARD -j ACCEPT \ - -p icmp --icmp-type echo-request \ + -p icmp ! -f --icmp-type echo-request \ -m mark --mark $to_untrusted/$MASK_TO run iptables -A FORWARD -j ACCEPT \ - -p icmp --icmp-type echo-reply \ + -p icmp ! -f --icmp-type echo-reply \ -m mark --mark $from_untrusted/$MASK_FROM \ -m state --state ESTABLISHED ## Allow SSH from safe/noloop to untrusted networks. run iptables -A FORWARD -j ACCEPT \ - -p tcp --destination-port $port_ssh \ + -p tcp ! -f --destination-port $port_ssh \ -m mark --mark $to_untrusted/$MASK_TO run iptables -A FORWARD -j ACCEPT \ - -p tcp --source-port $port_ssh \ + -p tcp ! -f --source-port $port_ssh \ -m mark --mark $from_untrusted/$MASK_FROM \ -m state --state ESTABLISHED @@ -79,6 +79,7 @@ m4_divert(80)m4_dnl clearchain inbound ## Track connections. +commonrules inbound conntrack inbound ## Allow incoming bootp. Bootp won't be forwarded, so this is obviously a