2004-02-14 19:06:39 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2008-07-07 22:22:09 +02:00
|
|
|
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
2004-02-14 19:06:39 +01:00
|
|
|
<article>
|
|
|
|
<!--$Id$-->
|
|
|
|
|
|
|
|
<articleinfo>
|
2011-05-18 17:30:01 +02:00
|
|
|
<title>Shorewall Blacklisting/Whitelisting Support</title>
|
2004-02-14 19:06:39 +01:00
|
|
|
|
|
|
|
<authorgroup>
|
|
|
|
<author>
|
|
|
|
<firstname>Tom</firstname>
|
|
|
|
|
|
|
|
<surname>Eastep</surname>
|
|
|
|
</author>
|
|
|
|
</authorgroup>
|
|
|
|
|
2006-07-07 03:04:16 +02:00
|
|
|
<pubdate><?dbtimestamp format="Y/m/d"?></pubdate>
|
2004-02-14 19:06:39 +01:00
|
|
|
|
|
|
|
<copyright>
|
2006-03-23 17:47:07 +01:00
|
|
|
<year>2002-2006</year>
|
2004-02-14 19:06:39 +01:00
|
|
|
|
2010-08-11 02:33:50 +02:00
|
|
|
<year>2010</year>
|
|
|
|
|
2011-05-18 17:30:01 +02:00
|
|
|
<year>2011</year>
|
|
|
|
|
2004-02-14 19:06:39 +01:00
|
|
|
<holder>Thomas M. Eastep</holder>
|
|
|
|
</copyright>
|
|
|
|
|
|
|
|
<legalnotice>
|
|
|
|
<para>Permission is granted to copy, distribute and/or modify this
|
|
|
|
document under the terms of the GNU Free Documentation License, Version
|
|
|
|
1.2 or any later version published by the Free Software Foundation; with
|
|
|
|
no Invariant Sections, with no Front-Cover, and with no Back-Cover
|
|
|
|
Texts. A copy of the license is included in the section entitled
|
2004-10-24 23:10:47 +02:00
|
|
|
<quote><ulink url="GnuCopyright.htm">GNU Free Documentation
|
|
|
|
License</ulink></quote>.</para>
|
2004-02-14 19:06:39 +01:00
|
|
|
</legalnotice>
|
|
|
|
</articleinfo>
|
|
|
|
|
2010-09-12 16:51:59 +02:00
|
|
|
<caution>
|
|
|
|
<para><emphasis role="bold">This article applies to Shorewall 4.4 and
|
|
|
|
later. If you are running a version of Shorewall earlier than Shorewall
|
|
|
|
4.3.5 then please see the documentation for that
|
|
|
|
release.</emphasis></para>
|
|
|
|
</caution>
|
|
|
|
|
2007-06-28 17:09:37 +02:00
|
|
|
<section id="Intro">
|
2004-02-14 19:06:39 +01:00
|
|
|
<title>Introduction</title>
|
|
|
|
|
(Fwd) [Shorewall-users] Shorewall-lite on OpenWRT
On 7 Jun 2016 at 8:21, Tom Eastep wrote:
> On 06/07/2016 06:40 AM, Matt Darfeuille wrote:
> > On 5 Jun 2016 at 12:53, Tom Eastep wrote:
> >
> >> On 06/05/2016 12:33 PM, Matt Darfeuille wrote:
> >>> On 5 Jun 2016 at 7:57, Tom Eastep wrote:
> >>>
> >>>> On 05/29/2016 02:00 AM, Matt Darfeuille wrote:
> >>>>
> >>>> Hi Matt,
> >>>>
> >>>>>
> >>>>> -------------- Enclosure number 1 ----------------
> >>>>> >From 6ff651108df33ab8be4562caef03a8582e9eac5e Mon Sep 17 00:00:00 2001
> >>>>> From: Matt Darfeuille <matdarf@gmail.com>
> >>>>> Date: Tue, 24 May 2016 13:10:28 +0200
> >>>>> Subject: [PATCH 1/8] Emulate 'ps -p' using grep to work on openwrt
> >>>>>
> >>>>> Signed-off-by: Matt Darfeuille <matdarf@gmail.com>
> >>>>> ---
> >>>>> Shorewall-core/lib.common | 2 +-
> >>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>>>
> >>>>> diff --git a/Shorewall-core/lib.common b/Shorewall-core/lib.common
> >>>>> index 03ecb2a..fcb02ee 100644
> >>>>> --- a/Shorewall-core/lib.common
> >>>>> +++ b/Shorewall-core/lib.common
> >>>>> @@ -776,7 +776,7 @@ mutex_on()
> >>>>> error_message "WARNING: Stale lockfile ${lockf} removed"
> >>>>> elif [ $lockpid -eq $$ ]; then
> >>>>> return 0
> >>>>> - elif ! qt ps p ${lockpid}; then
> >>>>> + elif ! qt ps | grep -v grep | grep ${lockpid}; then
> >>>>
> >>>> I don't see how this can work -- 'qt ps' will produce no output yet the
> >>>> code pipes into tandem greps.
> >>>>
> >>>> Do you really want this instead?
> >>>>
> >>>> elif ! ps | grep -v grep | qt grep ${lockpid}; then
> >>>>
> >>>
> >>> Oops sorry Tom, that's what I meant(do you want the corrected
> >>> patch?)!
> >>
> >> Yes, please.
> >>
> >
> > Tom, along with correcting this faulty commit I realize, after some
> > more testing, that I've also sent unnecessary commits.
> >
> > Should I revert these 3 commits(git revert ...):
> > Set proper permissions for the LOCKFILE on openwrt
> > 2ded346cb557212389212fd5adcd4c6800edbb62
> > Create lockfile before using openwrt's lock utility
> > 08e8796ff1abc3b24b8bbd40bf5e0a2b36464d61
> > Emulate 'ps -p' using grep to work on openwrt
> > 6ff651108df33ab8be4562caef03a8582e9eac5e
> >
> > or should I simply create new commits that will correct these faulty
> > commits?
> >
> > In other words what's the best way to correct submited commits.
> >
>
> Matt,
>
> Either way is fine.
>
Hopefully these 3 commits will do it(code-fixes.patch):
Patch 1 will correct the error you have point out!
On OpenWRT the lock utility doesn't allow to append the pid of the
currently running script to the LOCKFILE that's why I've simply
deleted that line(patch 2).
I've also reordered the permissions line to be added after the line
that will lock the file specified by the LOCKFILE variable(patch 3).
and two other patches:
While installing shorewall-init using the DESTDIR variable on debian,
'mkdir' would complain if the directory ${DESTDIR}/${etc}/default
already exist; corrected using 'mkdir -p ...'(patch 4).
The last patch will correct a typo in the blacklisting_support
article.
-Matt
-------------- Enclosure number 1 ----------------
>From 1a2ff15c8dc994030e819d2882570d188b99c501 Mon Sep 17 00:00:00 2001
From: Matt Darfeuille <matdarf@gmail.com>
Date: Wed, 8 Jun 2016 09:09:46 +0200
Subject: [PATCH 1/5] Correct pid detection mutex_on()
Signed-off-by: Matt Darfeuille <matdarf@gmail.com>
Signed-off-by: Tom Eastep <teastep@shorewall.net>
2016-06-08 21:17:15 +02:00
|
|
|
<para>Shorewall supports two different types of blacklisting; rule-based,
|
2015-10-05 17:18:52 +02:00
|
|
|
static and dynamic. The BLACKLIST option in /etc/shorewall/shorewall.conf
|
|
|
|
controls the degree of blacklist filtering.</para>
|
|
|
|
|
|
|
|
<para>The BLACKLIST option lists the Netfilter connection-tracking states
|
|
|
|
that blacklist rules are to be applied to (states are NEW, ESTABLISHED,
|
|
|
|
RELATED, INVALID, NOTRACK). The BLACKLIST option supersedes the
|
|
|
|
BLACKLISTNEWONLY option:</para>
|
2004-02-14 19:06:39 +01:00
|
|
|
|
|
|
|
<orderedlist>
|
|
|
|
<listitem>
|
2009-02-28 04:45:43 +01:00
|
|
|
<para>BLACKLISTNEWONLY=No -- All incoming packets are checked against
|
|
|
|
the blacklist. New blacklist entries can be used to terminate existing
|
|
|
|
connections.</para>
|
2004-02-14 19:06:39 +01:00
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>BLACKLISTNEWONLY=Yes -- The blacklists are only consulted for
|
|
|
|
new connection requests. Blacklists may not be used to terminate
|
2011-10-04 01:02:01 +02:00
|
|
|
existing connections.</para>
|
2004-02-14 19:06:39 +01:00
|
|
|
</listitem>
|
|
|
|
</orderedlist>
|
2013-07-11 19:39:21 +02:00
|
|
|
|
|
|
|
<important>
|
|
|
|
<para>For automatic blacklisting based on exceeding defined threshholds,
|
|
|
|
see <ulink url="Events.html">Events</ulink>.</para>
|
|
|
|
</important>
|
2011-10-04 01:02:01 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Rule-based Blacklisting</title>
|
|
|
|
|
|
|
|
<para>Beginning with Shorewall 4.4.25, the preferred method of
|
2011-11-08 21:59:40 +01:00
|
|
|
blacklisting and whitelisting is to use the blrules file (<ulink
|
|
|
|
url="manpages/shorewall-blrules.html">shorewall-blrules</ulink> (5)).
|
|
|
|
There you have access to the DROP, ACCEPT, REJECT and WHITELIST actions,
|
|
|
|
standard and custom macros as well as standard and custom actions. See
|
2017-12-27 01:56:37 +01:00
|
|
|
<ulink url="manpages/shorewall-blrules.html">shorewall-blrules</ulink> (5)
|
2016-02-18 00:48:10 +01:00
|
|
|
for details.</para>
|
2011-10-04 01:02:01 +02:00
|
|
|
|
|
|
|
<para>Example:</para>
|
|
|
|
|
2016-02-18 00:48:10 +01:00
|
|
|
<programlisting>#ACTION SOURCE DEST PROTO DPORT
|
|
|
|
|
2011-10-04 01:02:01 +02:00
|
|
|
WHITELIST net:70.90.191.126 all
|
|
|
|
DROP net all udp 1023:1033,1434,5948,23773
|
|
|
|
DROP all net udp 1023:1033
|
|
|
|
DROP net all tcp 57,1433,1434,2401,2745,3127,3306,3410,4899,5554,5948,6101,8081,9898,23773
|
|
|
|
DROP net:221.192.199.48 all
|
|
|
|
DROP net:61.158.162.9 all
|
|
|
|
DROP net:81.21.54.100 all tcp 25
|
|
|
|
DROP net:84.108.168.139 all
|
|
|
|
DROP net:200.55.14.18 all
|
|
|
|
</programlisting>
|
2011-10-31 16:46:11 +01:00
|
|
|
|
2011-11-08 21:59:40 +01:00
|
|
|
<para>Beginning with Shorewall 4.4.26, the <command>update</command>
|
|
|
|
command supports a <option>-b</option> option that causes your legacy
|
|
|
|
blacklisting configuration to use the blrules file.</para>
|
2011-10-04 01:02:01 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
2017-01-26 22:17:11 +01:00
|
|
|
<title>Chain-based Dynamic Blacklisting</title>
|
2011-10-04 01:02:01 +02:00
|
|
|
|
2016-02-18 00:48:10 +01:00
|
|
|
<para>Beginning with Shorewall 4.4.7, dynamic blacklisting is enabled by
|
|
|
|
setting DYNAMIC_BLACKLIST=Yes in <filename>shorewall.conf</filename>.
|
|
|
|
Prior to that release, the feature is always enabled.</para>
|
2004-02-14 19:06:39 +01:00
|
|
|
|
2016-02-18 00:48:10 +01:00
|
|
|
<para>Once enabled, dynamic blacklisting doesn't use any configuration
|
|
|
|
parameters but is rather controlled using /sbin/shorewall[-lite] commands.
|
|
|
|
<emphasis role="bold">Note</emphasis> that <emphasis
|
|
|
|
role="bold">to</emphasis> and <emphasis role="bold">from</emphasis> may
|
|
|
|
only be specified when running <emphasis role="bold">Shorewall 4.4.12 or
|
|
|
|
later</emphasis>.</para>
|
2004-03-17 16:03:46 +01:00
|
|
|
|
2016-02-18 00:48:10 +01:00
|
|
|
<itemizedlist>
|
|
|
|
<listitem>
|
|
|
|
<para>drop [to|from] <emphasis><ip address list></emphasis> -
|
|
|
|
causes packets from the listed IP addresses to be silently dropped by
|
|
|
|
the firewall.</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>reject [to|from]<emphasis><ip address list></emphasis> -
|
|
|
|
causes packets from the listed IP addresses to be rejected by the
|
|
|
|
firewall.</para>
|
|
|
|
</listitem>
|
2005-08-29 01:37:51 +02:00
|
|
|
|
2016-02-18 00:48:10 +01:00
|
|
|
<listitem>
|
|
|
|
<para>allow [to|from] <emphasis><ip address list></emphasis> -
|
|
|
|
re-enables receipt of packets from hosts previously blacklisted by a
|
|
|
|
<emphasis>drop</emphasis> or <emphasis>reject</emphasis>
|
|
|
|
command.</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>save - save the dynamic blacklisting configuration so that it
|
|
|
|
will be automatically restored the next time that the firewall is
|
|
|
|
restarted.</para>
|
|
|
|
|
|
|
|
<para><emphasis role="bold">Update:</emphasis> Beginning with
|
|
|
|
Shorewall 4.4.10, the dynamic blacklist is automatically retained over
|
|
|
|
<command>stop/start</command> sequences and over
|
|
|
|
<command>restart</command> and <emphasis
|
|
|
|
role="bold">reload</emphasis>.</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>show dynamic - displays the dynamic blacklisting
|
|
|
|
configuration.</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>logdrop [to|from] <emphasis><ip address list></emphasis> -
|
|
|
|
causes packets from the listed IP addresses to be dropped and logged
|
|
|
|
by the firewall. Logging will occur at the level specified by the
|
|
|
|
BLACKLIST_LOGLEVEL setting at the last [re]start (logging will be at
|
|
|
|
the 'info' level if no BLACKLIST_LOGLEVEL was given).</para>
|
|
|
|
</listitem>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>logreject [to|from}<emphasis><ip address list></emphasis>
|
|
|
|
- causes packets from the listed IP addresses to be rejected and
|
|
|
|
logged by the firewall. Logging will occur at the level specified by
|
|
|
|
the BLACKLIST_LOGLEVEL setting at the last [re]start (logging will be
|
|
|
|
at the 'info' level if no BLACKLIST_LOGLEVEL was given).</para>
|
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
2004-02-14 19:06:39 +01:00
|
|
|
</section>
|
2017-01-26 22:17:11 +01:00
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Ipset-based Dynamic Blacklisting</title>
|
|
|
|
|
|
|
|
<para>Beginning with Shorewall 5.0.8, it is possible to use an ipset to
|
|
|
|
hold blacklisted addresses. The DYNAMIC_BLACKLIST option was expanded
|
|
|
|
to:</para>
|
|
|
|
|
|
|
|
<para><emphasis role="bold">DYNAMIC_BLACKLIST=</emphasis>{<emphasis
|
|
|
|
role="bold">Yes</emphasis>|<emphasis role="bold">No</emphasis>||<emphasis
|
|
|
|
role="bold">ipset</emphasis>[<emphasis
|
|
|
|
role="bold">-only</emphasis>][<replaceable>,option</replaceable>[,...]][:[<replaceable>setname</replaceable>][:<replaceable>log_level</replaceable>|:l<replaceable>og_tag</replaceable>]]]}</para>
|
|
|
|
|
|
|
|
<para>When <option>ipset</option> or <option>ipset-only</option> is
|
|
|
|
specified, the <command>shorewall blacklist</command> command is used to
|
|
|
|
blacklist a single host or a network. The <command>allow</command> command
|
|
|
|
is used to remove entries from the ipset. The name of the set
|
|
|
|
(<replaceable>setname</replaceable>) and the level
|
|
|
|
(<replaceable>log_level</replaceable>), if any, at which blacklisted
|
|
|
|
traffic is to be logged may also be specified. The default set name is
|
|
|
|
SW_DBL4 and the default log level is <option>none</option> (no logging).
|
|
|
|
If <option>ipset-only</option> is given, then chain-based dynamic
|
|
|
|
blacklisting is disabled just as if DYNAMIC_BLACKLISTING=No had been
|
|
|
|
specified.</para>
|
|
|
|
|
|
|
|
<para>Possible <replaceable>option</replaceable>s are:</para>
|
|
|
|
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term>src-dst</term>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>Normally, only packets whose source address matches an entry
|
|
|
|
in the ipset are dropped. If <option>src-dst</option> is included,
|
|
|
|
then packets whose destination address matches an entry in the ipset
|
|
|
|
are also dropped.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>disconnect</option></term>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>The <option>disconnect</option> option was added in Shorewall
|
|
|
|
5.0.13 and requires that the conntrack utility be installed on the
|
|
|
|
firewall system. When an address is blacklisted using the
|
|
|
|
<command>blacklist</command> command, all connections originating
|
|
|
|
from that address are disconnected. if the <option>src-dst</option>
|
|
|
|
option was also specified, then all connections to that address are
|
|
|
|
also disconnected.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term><option>timeout</option>=<replaceable>seconds</replaceable></term>
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
<para>Added in Shorewall 5.0.13. Normally, Shorewall creates the
|
|
|
|
dynamic blacklisting ipset with timeout 0 which means that entries
|
|
|
|
are permanent. If you want entries in the set that are not accessed
|
|
|
|
for a period of time to be deleted from the set, you may specify
|
|
|
|
that period using this option. Note that the
|
|
|
|
<command>blacklist</command> command can override the ipset's
|
|
|
|
timeout setting.</para>
|
|
|
|
|
|
|
|
<important>
|
|
|
|
<para>Once the dynamic blacklisting ipset has been created,
|
|
|
|
changing this option setting requires a complete restart of the
|
|
|
|
firewall; <command>shorewall restart</command> if RESTART=restart,
|
|
|
|
otherwise <command>shorewall stop && shorewall
|
|
|
|
start</command></para>
|
|
|
|
</important>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
|
|
|
|
<para>When ipset-based dynamic blacklisting is enabled, the contents of
|
|
|
|
the blacklist will be preserved over
|
|
|
|
<command>stop</command>/<command>reboot</command>/<command>start</command>
|
|
|
|
sequences if SAVE_IPSETS=Yes, SAVE_IPSETS=ipv4 or if
|
|
|
|
<replaceable>setname</replaceable> is included in the list of sets to be
|
|
|
|
saved in SAVE_IPSETS.</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>BLACKLIST Policy and Action</title>
|
|
|
|
|
|
|
|
<para>Beginning with Shorewall 5.1.1, it is possible to specify BLACKLIST
|
|
|
|
in the POLICY column of <ulink
|
2017-12-27 01:56:37 +01:00
|
|
|
url="manpages/shorewall-policy.html">shorewall-policy</ulink>(5) when
|
2017-01-26 22:17:11 +01:00
|
|
|
ipset-based dynamic blacklisting is being used. When a packet is disposed
|
|
|
|
of via the BLACKLIST policy, the packet's sender is added to the dynamic
|
|
|
|
blacklist ipset and the packet is dropped.</para>
|
|
|
|
|
|
|
|
<para>Also available beginning with Shorewall 5.1.1 is a BLACKLIST action
|
|
|
|
for use in the rules file, macros and filter table actions. Execute the
|
|
|
|
<command>shorewall show action BLACKLIST</command> command for
|
|
|
|
details.</para>
|
|
|
|
</section>
|
2007-07-04 02:10:35 +02:00
|
|
|
</article>
|