Fix cut-and-paste error in arp_ignore processing

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@2906 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2005-10-19 14:30:13 +00:00
parent 12da490736
commit 629d7c87d2
3 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,8 @@ Changes in 3.0.0 RC 2.
1) Fix support for OpenVPN and tcp.
2) Correct cut-and-paste error in 'arp_ignore' processing.
Changes in 3.0.0 RC 1.
1) Correct spelling of MACLIST_TABLE in shorewall.conf.

View File

@ -8052,7 +8052,7 @@ add_common_rules() {
for f in /proc/sys/net/ipv4/conf/*; do
run_and_save_command "[ -f $f/arp_filter ] && echo 0 > $f/arp_filter"
run_and_save_command "[ -f $f/arp_filter ] && echo 0 > $f/arp_ignore"
run_and_save_command "[ -f $f/arp_ignore ] && echo 0 > $f/arp_ignore"
done
interfaces=$(find_interfaces_by_option arp_filter)

View File

@ -6,6 +6,12 @@ Problems Corrected in 3.0.0 RC 2:
implementation was incomplete. It has now been completed and is
documented in the /etc/shorewall/tunnels file.
2) When running on older kernels, the following message could be issued
during "shorewall start":
/usr/share/shorewall/firewall: line 1: \
/proc/sys/net/ipv4/conf/all/arp_ignore: No such file or directory
Migration Considerations:
1) The "monitor" command has been eliminated.