diff --git a/ChangeLog b/ChangeLog index d6f67c7..4a8b527 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,8 @@ - Changes to LANDHCPSERVER so it accepts interface names, plus a possible fix for win7 hammering DHCP server for unknown reason? - Cleanups + - No longer display list of blocked IPs, considering if they are + as long as my list is, they'll take 4 pages to display... 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 bb4fceb..e9a2b4b 100755 --- a/bin/firewall-sosdg +++ b/bin/firewall-sosdg @@ -136,13 +136,12 @@ if [ -s "$BASEDIR/include/ipv4_custom_blockip" ]; then fi if [ $BLOCKEDIP ]; then - display_c YELLOW "Adding blocked IPs: " N + display_c YELLOW "Adding blocked IPs... " for i in `grep -v "\#" $BLOCKEDIP`; do - echo -n "$i " + #echo -n "$i " $IPTABLES -A INPUT -s $i -j DROP $IPTABLES -A OUTPUT -d $i -j DROP done -echo -ne "\n" fi