diff --git a/ChangeLog b/ChangeLog index d605b65..012b36d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 0.9.8 - Brielle Bruns - Almost at v1.0 quality for my tastes - BLOCK_(INCOMING/OUTGOING)_RFC1918 options to help sure up security of LAN space leakage + - Changes to LANDHCPSERVER so it accepts interface names, plus a possible fix for win7 + hammering DHCP server for unknown reason? 0.9.7 - Brielle Bruns - Support for marking packets, uses new config file and diff --git a/bin/firewall-sosdg b/bin/firewall-sosdg index 882ea2d..42859e0 100755 --- a/bin/firewall-sosdg +++ b/bin/firewall-sosdg @@ -402,6 +402,7 @@ fi if [ "$LANDHCPSERVER" ]; then for i in $LANDHCPSERVER; do + $IPTABLES -A INPUT -i $i -s 0.0.0.0 -j ACCEPT $IPTABLES -A INPUT -i $i -p udp --dport 67:68 -j ACCEPT $IPTABLES -A INPUT -i $i -p tcp --dport 67:68 -j ACCEPT $IPTABLES -A OUTPUT -o $i -p udp --dport 67:68 -j ACCEPT