mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 16:54:10 +01:00
01c45b8897
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9487 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
#
|
|
# Shorewall version 4 - Reject Macro
|
|
#
|
|
# /usr/share/shorewall/macro.Reject
|
|
#
|
|
# This macro generates the same rules as the Reject default action
|
|
# It is used in place of action.Reject when USE_ACTIONS=No.
|
|
#
|
|
# Example:
|
|
#
|
|
# Reject loc fw
|
|
#
|
|
#
|
|
###############################################################################
|
|
#ACTION SOURCE DEST PROTO DEST SOURCE RATE USER/
|
|
# PORT(S) PORT(S) LIMIT GROUP
|
|
#
|
|
# Don't log 'auth' REJECT
|
|
#
|
|
REJECT - - tcp 113
|
|
#
|
|
# Drop Broadcasts so they don't clutter up the log
|
|
# (broadcasts must *not* be rejected).
|
|
#
|
|
dropBcast
|
|
#
|
|
# ACCEPT critical ICMP types
|
|
#
|
|
ACCEPT - - icmp fragmentation-needed
|
|
ACCEPT - - icmp time-exceeded
|
|
#
|
|
# 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
|
|
#
|
|
# Reject Microsoft noise so that it doesn't clutter up the log.
|
|
#
|
|
REJECT - - udp 135,445
|
|
REJECT - - udp 137:139
|
|
REJECT - - udp 1024: 137
|
|
REJECT - - tcp 135,139,445
|
|
DROP - - udp 1900
|
|
#
|
|
# Drop 'newnotsyn' traffic so that it doesn't get logged.
|
|
#
|
|
dropNotSyn
|
|
#
|
|
# Drop late-arriving DNS replies. These are just a nuisance and clutter up
|
|
# the log.
|
|
#
|
|
DROP - - udp - 53
|
|
#LAST LINE -- ADD YOUR ENTRIES BEFORE THIS ONE -- DO NOT REMOVE
|