Avoid unwanted deletion of SNAT addresses

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3794 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2006-04-15 22:40:03 +00:00
parent 1120a080b2
commit 0ab2143d68
3 changed files with 6 additions and 1 deletions

View File

@ -11,6 +11,8 @@ Changes in 3.2.0 Beta 5
5) Rename the rtrules file to route_rules.
6) Fix deletion of SNAT ip addresses.
Changes in 3.2.0 Beta 4
1) Fix 'routeback' with bridge ports.

View File

@ -6934,7 +6934,7 @@ __EOF__
;;
esac
if [ -n"$add_snat_aliases" ]; then
if [ -n "$add_snat_aliases" ]; then
for address in $(separate_list $addresses); do
address=${address%:)}
if [ -n "$address" ]; then

View File

@ -43,6 +43,9 @@ Problems Corrected in 3.2.0 Beta 5
3) Previously, if your kernel did not supply the mangle table FORWARD chain
then "shorewall [re]start" would fail.
4) Regardless of the setting of ADD_SNAT_IPADDRS, Shorewall will delete
the ADDRESS in an SNAT rule (/etc/shorewall/masq) during [re]start.
Other changes in 3.2.0 Beta 5
1) The "shorewall refresh" command no longer refreshes traffic shaping.