Minor fixes.

master
bbruns 2010-10-02 05:47:58 +00:00
parent 31aac96f8d
commit 565538ee20
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,8 @@
0.9.8 - Brielle Bruns <bruns@2mbit.com>
- 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 <bruns@2mbit.com>
- Support for marking packets, uses new config file and

View File

@ -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