Update IPv6 standard default actions to use new parameterized actions

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2011-07-04 08:01:18 -07:00
parent caa0a12e8c
commit cb8d9e8e14
2 changed files with 6 additions and 6 deletions

View File

@ -71,12 +71,12 @@ AllowICMPs($4) - - ipv6-icmp
# Drop Broadcasts so they don't clutter up the log
# (broadcasts must *not* be rejected).
#
dropBcast($1)
Broadcast(DROP,$1)
#
# Drop packets that are in the INVALID state -- these are usually ICMP packets
# and just confuse people when they appear in the log.
#
dropInvalid($1)
Invalid(DROP,$1)
#
# Drop Microsoft noise so that it doesn't clutter up the log.
#
@ -84,7 +84,7 @@ SMB($3)
#
# Drop 'newnotsyn' traffic so that it doesn't get logged.
#
dropNotSyn - - tcp
NotSyn(DROP,$1) - - tcp
#
# Drop late-arriving DNS replies. These are just a nuisance and clutter up
# the log.

View File

@ -68,13 +68,13 @@ AllowICMPs($4) - - ipv6-icmp
# Drop Broadcasts so they don't clutter up the log
# (broadcasts must *not* be rejected).
#
dropBcast($1)
Broadcast(DROP,$1)
#
# Drop packets that are in the INVALID state -- these are usually ICMP packets
# and just confuse people when they appear in the log (these ICMPs cannot be
# rejected).
#
dropInvalid($1)
Invalid(DROP,$1)
#
# Reject Microsoft noise so that it doesn't clutter up the log.
#
@ -82,7 +82,7 @@ SMB($3)
#
# Drop 'newnotsyn' traffic so that it doesn't get logged.
#
dropNotSyn($1) - - tcp
NotSyn(DROP,$1) - - tcp
#
# Drop late-arriving DNS replies. These are just a nuisance and clutter up
# the log.