2011-05-24 16:09:15 +02:00
|
|
|
#
|
|
|
|
# Shorewall version 4 - Drop Action
|
|
|
|
#
|
2011-05-24 20:31:42 +02:00
|
|
|
# /usr/share/shorewall/action.A_Drop
|
2011-05-24 16:09:15 +02:00
|
|
|
#
|
2011-05-24 20:31:42 +02:00
|
|
|
# The audited default DROP common rules
|
2011-05-24 16:09:15 +02:00
|
|
|
#
|
|
|
|
# This action is invoked before a DROP policy is enforced. The purpose
|
|
|
|
# of the action is:
|
|
|
|
#
|
|
|
|
# a) Avoid logging lots of useless cruft.
|
|
|
|
# b) Ensure that 'auth' requests are rejected, even if the policy is
|
|
|
|
# DROP. Otherwise, you may experience problems establishing
|
|
|
|
# connections with servers that use auth.
|
|
|
|
# c) Ensure that certain ICMP packets that are necessary for successful
|
|
|
|
# internet operation are always ACCEPTed.
|
|
|
|
#
|
|
|
|
# IF YOU ARE HAVING CONNECTION PROBLEMS, CHANGING THIS FILE WON'T HELP!!!!!!!!!
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
#TARGET SOURCE DEST PROTO DPORT SPORT
|
|
|
|
#
|
|
|
|
# Count packets that come through here
|
|
|
|
#
|
|
|
|
COUNT
|
|
|
|
#
|
|
|
|
# Reject 'auth'
|
|
|
|
#
|
|
|
|
Auth(A_REJECT)
|
|
|
|
#
|
|
|
|
# Don't log broadcasts
|
|
|
|
#
|
|
|
|
dropBcast(audit)
|
|
|
|
#
|
|
|
|
# ACCEPT critical ICMP types
|
|
|
|
#
|
2011-05-24 20:31:42 +02:00
|
|
|
A_AllowICMPs - - icmp
|
2011-05-24 16:09:15 +02:00
|
|
|
#
|
|
|
|
# Drop packets that are in the INVALID state -- these are usually ICMP packets
|
|
|
|
# and just confuse people when they appear in the log.
|
|
|
|
#
|
|
|
|
dropInvalid(audit)
|
|
|
|
#
|
|
|
|
# Drop Microsoft noise so that it doesn't clutter up the log.
|
|
|
|
#
|
|
|
|
SMB(A_DROP)
|
2011-05-24 20:31:42 +02:00
|
|
|
A_DropUPnP
|
2011-05-24 16:09:15 +02:00
|
|
|
#
|
|
|
|
# Drop 'newnotsyn' traffic so that it doesn't get logged.
|
|
|
|
#
|
|
|
|
dropNotSyn(audit) - - tcp
|
|
|
|
#
|
|
|
|
# Drop late-arriving DNS replies. These are just a nuisance and clutter up
|
|
|
|
# the log.
|
|
|
|
#
|
2011-05-24 20:31:42 +02:00
|
|
|
A_DropDNSrep
|