forked from extern/shorewall_code
Make SOURCE and DEST reserved names
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6197 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
38a76d35ae
commit
fd7d07cd75
@ -12,6 +12,8 @@ Changes in 3.9.6
|
||||
|
||||
6) Add RCP_COMMAND and RSH_COMMAND options in shorewall.conf
|
||||
|
||||
7) Apply Luigi's MARK patch.
|
||||
|
||||
Changes in 3.9.5
|
||||
|
||||
1) Fix dynamic zone problem.
|
||||
|
@ -68,6 +68,10 @@ Other changes in Shorewall 3.9.6.
|
||||
destination - The directory on the remote system that the files
|
||||
are to be copied into.
|
||||
|
||||
2) The accounting, masq, rules and tos files now have a 'MARK' column
|
||||
similar to the column of the same name in the tcrules file. This
|
||||
column allows filtering by MARK and CONNMARK value.
|
||||
|
||||
Migration Considerations:
|
||||
|
||||
1) You cannot simply upgrade your existing Shorewall package. You must
|
||||
|
@ -107,7 +107,9 @@ our $firewall_zone;
|
||||
our %interfaces;
|
||||
|
||||
my %reservedName = ( all => 1,
|
||||
none => 1 );
|
||||
none => 1,
|
||||
SOURCE => 1,
|
||||
DEST => 1 );
|
||||
|
||||
#
|
||||
# Parse the passed option list and return a reference to a hash as follows:
|
||||
|
Loading…
Reference in New Issue
Block a user