mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 16:54:10 +01:00
a60fe6e665
and in shorewall.conf. Signed-off-by: Tom Eastep <teastep@shorewall.net>
89 lines
2.1 KiB
Plaintext
89 lines
2.1 KiB
Plaintext
#
|
|
# Shorewall version 4 - Drop Action
|
|
#
|
|
# /usr/share/shorewall/action.Drop
|
|
#
|
|
# The default DROP common rules
|
|
#
|
|
# 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.
|
|
#
|
|
# The action accepts three optional parameters:
|
|
#
|
|
# 1 - 'audit' or '-'. Default is '-' which means don't audit in builtin
|
|
# actions.
|
|
# 2 - Action to take with Auth requests. Default is REJECT or A_REJECT,
|
|
# depending on the setting of the first parameter.
|
|
# 3 - Action to take with SMB requests. Default is DROP or A_DROP,
|
|
# depending on the setting of the first parameter.
|
|
#
|
|
# IF YOU ARE HAVING CONNECTION PROBLEMS, CHANGING THIS FILE WON'T HELP!!!!!!!!!
|
|
#
|
|
###############################################################################
|
|
FORMAT 2
|
|
#
|
|
# The following magic provides different defaults for $2 and $3, when $1 is
|
|
# 'audit'.
|
|
#
|
|
BEGIN PERL
|
|
use Shorewall::Config;
|
|
|
|
my $p1 = read_action_param(1);
|
|
|
|
if ( defined $p1 && $p1 eq 'audit' ) {
|
|
my ( $p2, $p3 ) = ( read_action_param(2) , read_action_param(3) );
|
|
|
|
set_action_param( 2, 'A_REJECT') unless defined $p2;
|
|
set_action_param( 3, 'A_DROP') unless defined $p3;
|
|
};
|
|
|
|
1;
|
|
|
|
END PERL
|
|
|
|
DEFAULTS -,REJECT,DROP
|
|
|
|
#TARGET SOURCE DEST PROTO DPORT SPORT
|
|
#
|
|
# Count packets that come through here
|
|
#
|
|
COUNT
|
|
#
|
|
# Reject 'auth'
|
|
#
|
|
Auth($2)
|
|
#
|
|
# Don't log broadcasts
|
|
#
|
|
dropBcast($1)
|
|
#
|
|
# ACCEPT critical ICMP types
|
|
#
|
|
AllowICMPs($1) - - icmp
|
|
#
|
|
# 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)
|
|
#
|
|
# Drop Microsoft noise so that it doesn't clutter up the log.
|
|
#
|
|
SMB($3)
|
|
DropUPnP($1)
|
|
#
|
|
# Drop 'newnotsyn' traffic so that it doesn't get logged.
|
|
#
|
|
dropNotSyn($1) - - tcp
|
|
#
|
|
# Drop late-arriving DNS replies. These are just a nuisance and clutter up
|
|
# the log.
|
|
#
|
|
DropDNSrep($1)
|