2009-04-04 19:21:41 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
|
|
|
|
<article>
|
|
|
|
<!--$Id$-->
|
|
|
|
|
|
|
|
<articleinfo>
|
|
|
|
<title>Dynamic Zones</title>
|
|
|
|
|
|
|
|
<authorgroup>
|
|
|
|
<author>
|
|
|
|
<firstname>Tom</firstname>
|
|
|
|
|
|
|
|
<surname>Eastep</surname>
|
|
|
|
</author>
|
|
|
|
</authorgroup>
|
|
|
|
|
|
|
|
<pubdate><?dbtimestamp format="Y/m/d"?></pubdate>
|
|
|
|
|
|
|
|
<copyright>
|
|
|
|
<year>2009</year>
|
|
|
|
|
2013-11-04 19:50:38 +01:00
|
|
|
<year>2013</year>
|
|
|
|
|
2009-04-04 19:21:41 +02: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
|
|
|
|
<quote><ulink url="GnuCopyright.htm">GNU Free Documentation
|
|
|
|
License</ulink></quote>.</para>
|
|
|
|
</legalnotice>
|
|
|
|
</articleinfo>
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<title>Overview</title>
|
|
|
|
|
|
|
|
<para>There is sometimes a need to be able to define a zone whose members
|
|
|
|
are unknown at compile-time. For example, you may wish to require
|
|
|
|
authentication of internal users before allowing them access to the
|
|
|
|
internet. When a user is authenticated, the user's IP address is added to
|
|
|
|
the zone of users permitted web access.</para>
|
|
|
|
|
|
|
|
<para>Shorewall provides basic support for defining such zones. This
|
|
|
|
support is based on <ulink
|
2013-11-04 19:50:38 +01:00
|
|
|
url="http://ipset.netfilter.org/">ipset</ulink>. Most current
|
|
|
|
distributions have ipset, but you may need to install the <ulink
|
2016-02-18 01:01:21 +01:00
|
|
|
url="http://xtables-addons.sourceforge.net/">xtables-addons</ulink>
|
|
|
|
package.</para>
|
2009-05-30 17:34:34 +02:00
|
|
|
</section>
|
|
|
|
|
2012-10-07 21:20:36 +02:00
|
|
|
<section>
|
2016-02-18 01:01:21 +01:00
|
|
|
<title>Dynamic Zones</title>
|
2012-10-07 21:20:36 +02:00
|
|
|
|
|
|
|
<para>Prior to Shorewall 4.5.9, when multiple records for a zone appear in
|
|
|
|
<filename>/etc/shorewall/hosts</filename>, Shorewall would create a
|
|
|
|
separate ipset for each interface. This meant that an add or delete
|
|
|
|
command was required for each of the interface, when the address involved
|
|
|
|
was reachable via multiple interfaces.</para>
|
|
|
|
|
|
|
|
<para>Beginning with Shoreawll 4.5.9, it is possible to have a single
|
|
|
|
ipset shared among all interfaces. This also simplifies management of
|
|
|
|
dynamic zone contents for dynamic zones associated with only a single
|
|
|
|
interface.</para>
|
|
|
|
|
|
|
|
<para>The earlier implementation described below is still available in
|
|
|
|
these later releases.</para>
|
2009-04-04 19:21:41 +02:00
|
|
|
|
2012-10-07 21:20:36 +02:00
|
|
|
<section id="defining">
|
|
|
|
<title>Defining a Dynamic Zone</title>
|
2009-04-04 19:21:41 +02:00
|
|
|
|
2012-10-09 16:08:35 +02:00
|
|
|
<para>A dynamic zone is defined by specifying the <emphasis
|
|
|
|
role="bold">dynamic_shared</emphasis> option in the zones file and using
|
|
|
|
the <emphasis role="bold">dynamic</emphasis> keyword in the hosts
|
|
|
|
list.</para>
|
2009-04-04 19:21:41 +02:00
|
|
|
|
|
|
|
<para><filename>/etc/shorewall/zones</filename>:<programlisting>#NAME TYPE OPTIONS
|
2012-10-07 21:20:36 +02:00
|
|
|
net ipv4
|
|
|
|
rsyncok:loc ipv4 <emphasis role="bold">dynamic_shared</emphasis></programlisting><filename>/etc/shorewall/interfaces</filename>:</para>
|
2009-04-04 19:21:41 +02:00
|
|
|
|
|
|
|
<programlisting>#ZONE INTERFACE BROADCAST OPTIONS
|
2009-06-04 21:46:14 +02:00
|
|
|
loc eth0 - …
|
2012-10-07 21:20:36 +02:00
|
|
|
loc eth1 - …</programlisting>
|
2009-06-04 21:46:14 +02:00
|
|
|
|
|
|
|
<para><filename>/etc/shorewall/hosts</filename>:</para>
|
|
|
|
|
|
|
|
<programlisting>#ZONE HOSTS OPTIONS
|
2012-10-09 16:08:35 +02:00
|
|
|
rsyncok eth0:<emphasis role="bold">dynamic</emphasis>
|
|
|
|
rsyncok eth1:<emphasis role="bold">dynamic</emphasis></programlisting>
|
2012-10-07 21:20:36 +02:00
|
|
|
|
2012-10-09 16:08:35 +02:00
|
|
|
<para>When the <emphasis role="bold">dynamic_shared</emphasis> option is
|
|
|
|
specified, a single ipset is created; the ipset has the same name as the
|
|
|
|
zone.</para>
|
2012-10-07 21:20:36 +02:00
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="Adding">
|
|
|
|
<title>Adding a Host to a Dynamic Zone.</title>
|
|
|
|
|
|
|
|
<para>Adding a host to a dynamic zone is accomplished by adding the
|
|
|
|
host's IP address to the appropriate ipset. Shorewall provldes a command
|
|
|
|
for doing that:<blockquote>
|
|
|
|
<para><command>shorewall add</command> <replaceable>zone
|
|
|
|
address</replaceable> ...</para>
|
|
|
|
</blockquote></para>
|
|
|
|
|
|
|
|
<para>Example:</para>
|
|
|
|
|
|
|
|
<blockquote>
|
|
|
|
<para><command>shorewall add rsyncok 70.90.191.124</command></para>
|
|
|
|
</blockquote>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="delete">
|
|
|
|
<title>Deleting a Host from a Dynamic Zone</title>
|
|
|
|
|
|
|
|
<para>Deleting a host from a dynamic zone is accomplished by removing
|
|
|
|
the host's IP address from the appropriate ipset. Shorewall provldes a
|
|
|
|
command for doing that:</para>
|
|
|
|
|
|
|
|
<blockquote>
|
|
|
|
<para><command>shorewall delete</command>
|
|
|
|
<replaceable>zone</replaceable> <replaceable>address</replaceable>
|
|
|
|
...</para>
|
|
|
|
</blockquote>
|
|
|
|
|
|
|
|
<para>Example:</para>
|
|
|
|
|
|
|
|
<blockquote>
|
|
|
|
<para><command>shorewall delete rsyncok 70.19.191.124</command></para>
|
|
|
|
</blockquote>
|
|
|
|
|
|
|
|
<para>The command can only be used when the ipset involved is of type
|
|
|
|
iphash. For other ipset types, the <command>ipset</command> command must
|
|
|
|
be used directly.</para>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section id="listing">
|
|
|
|
<title>Listing the Contents of a Dynamic Zone</title>
|
|
|
|
|
|
|
|
<para>The shorewall show command may be used to list the current
|
|
|
|
contents of a dynamic zone.</para>
|
|
|
|
|
|
|
|
<blockquote>
|
|
|
|
<para><command>shorewall show dynamic</command>
|
|
|
|
<replaceable>zone</replaceable></para>
|
|
|
|
</blockquote>
|
|
|
|
|
|
|
|
<para>Example:</para>
|
|
|
|
|
|
|
|
<blockquote>
|
|
|
|
<programlisting><command>shorewall show dynamic rsyncok</command>
|
|
|
|
rsyncok:
|
|
|
|
70.90.191.122
|
|
|
|
70.90.191.124</programlisting>
|
|
|
|
</blockquote>
|
|
|
|
</section>
|
2009-04-04 19:21:41 +02:00
|
|
|
</section>
|
|
|
|
|
2009-08-07 22:54:24 +02:00
|
|
|
<section id="start-stop">
|
2009-04-04 20:31:47 +02:00
|
|
|
<title>Dynamic Zone Contents and Shorewall stop/start/restart</title>
|
|
|
|
|
2012-10-07 21:20:36 +02:00
|
|
|
<para>When SAVE_IPSETS=Yes in shorewall.conf, the contents of a dynamic
|
|
|
|
zone survive <command>shorewall stop/shorewall start</command> and
|
|
|
|
<command>shorewall restart</command>. During <command>shorewall
|
|
|
|
stop</command>, the contents of the ipsets are saved in the file
|
|
|
|
<filename>${VARDIR}/ipsets.save</filename> (usually
|
2009-05-06 16:14:31 +02:00
|
|
|
<filename>/var/lib/shorewall/ipsets.save</filename>). During
|
|
|
|
<command>shorewall start</command>, the contents of that file are restored
|
|
|
|
to the sets. During both <command>shorewall start</command> and
|
|
|
|
<command>shorewall restart</command>, any new ipsets required as a result
|
|
|
|
of a configuration change are added.</para>
|
2009-04-04 20:31:47 +02:00
|
|
|
</section>
|
2009-04-04 19:21:41 +02:00
|
|
|
</article>
|