mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-27 01:53:27 +01:00
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:
parent
12da490736
commit
629d7c87d2
@ -2,6 +2,8 @@ Changes in 3.0.0 RC 2.
|
|||||||
|
|
||||||
1) Fix support for OpenVPN and tcp.
|
1) Fix support for OpenVPN and tcp.
|
||||||
|
|
||||||
|
2) Correct cut-and-paste error in 'arp_ignore' processing.
|
||||||
|
|
||||||
Changes in 3.0.0 RC 1.
|
Changes in 3.0.0 RC 1.
|
||||||
|
|
||||||
1) Correct spelling of MACLIST_TABLE in shorewall.conf.
|
1) Correct spelling of MACLIST_TABLE in shorewall.conf.
|
||||||
|
@ -8052,7 +8052,7 @@ add_common_rules() {
|
|||||||
|
|
||||||
for f in /proc/sys/net/ipv4/conf/*; do
|
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_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
|
done
|
||||||
|
|
||||||
interfaces=$(find_interfaces_by_option arp_filter)
|
interfaces=$(find_interfaces_by_option arp_filter)
|
||||||
|
@ -6,6 +6,12 @@ Problems Corrected in 3.0.0 RC 2:
|
|||||||
implementation was incomplete. It has now been completed and is
|
implementation was incomplete. It has now been completed and is
|
||||||
documented in the /etc/shorewall/tunnels file.
|
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:
|
Migration Considerations:
|
||||||
|
|
||||||
1) The "monitor" command has been eliminated.
|
1) The "monitor" command has been eliminated.
|
||||||
|
Loading…
Reference in New Issue
Block a user