Bv9ARM.ch07.html revision 5a4557e8de2951a2796676b5ec4b6a90caa5be14
8N/A<!--
8N/A - Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
8N/A - Copyright (C) 2000-2003 Internet Software Consortium.
8N/A -
8N/A - Permission to use, copy, modify, and distribute this software for any
8N/A - purpose with or without fee is hereby granted, provided that the above
8N/A - copyright notice and this permission notice appear in all copies.
8N/A -
8N/A - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
8N/A - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
8N/A - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
8N/A - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
8N/A - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
8N/A - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
8N/A - PERFORMANCE OF THIS SOFTWARE.
8N/A-->
8N/A<!-- $Id: Bv9ARM.ch07.html,v 1.103 2005/07/19 06:12:19 marka Exp $ -->
8N/A<html>
8N/A<head>
8N/A<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
65N/A<title>Chapter�7.�BIND 9 Security Considerations</title>
8N/A<meta name="generator" content="DocBook XSL Stylesheets V1.68.1">
8N/A<link rel="start" href="Bv9ARM.html" title="BIND 9 Administrator Reference Manual">
8N/A<link rel="up" href="Bv9ARM.html" title="BIND 9 Administrator Reference Manual">
8N/A<link rel="prev" href="Bv9ARM.ch06.html" title="Chapter�6.�BIND 9 Configuration Reference">
65N/A<link rel="next" href="Bv9ARM.ch08.html" title="Chapter�8.�Troubleshooting">
65N/A</head>
65N/A<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
8N/A<div class="navheader">
24N/A<table width="100%" summary="Navigation header">
8N/A<tr><th colspan="3" align="center">Chapter�7.�<span class="acronym">BIND</span> 9 Security Considerations</th></tr>
65N/A<tr>
58N/A<td width="20%" align="left">
58N/A<a accesskey="p" href="Bv9ARM.ch06.html">Prev</a>�</td>
58N/A<th width="60%" align="center">�</th>
58N/A<td width="20%" align="right">�<a accesskey="n" href="Bv9ARM.ch08.html">Next</a>
95N/A</td>
95N/A</tr>
8N/A</table>
8N/A<hr>
65N/A</div>
65N/A<div class="chapter" lang="en">
8N/A<div class="titlepage"><div><div><h2 class="title">
8N/A<a name="Bv9ARM.ch07"></a>Chapter�7.�<span class="acronym">BIND</span> 9 Security Considerations</h2></div></div></div>
8N/A<div class="toc">
37N/A<p><b>Table of Contents</b></p>
8N/A<dl>
8N/A<dt><span class="sect1"><a href="Bv9ARM.ch07.html#Access_Control_Lists">Access Control Lists</a></span></dt>
24N/A<dt><span class="sect1"><a href="Bv9ARM.ch07.html#id2560807"><span><strong class="command">chroot</strong></span> and <span><strong class="command">setuid</strong></span></a></span></dt>
65N/A<dd><dl>
65N/A<dt><span class="sect2"><a href="Bv9ARM.ch07.html#id2560951">The <span><strong class="command">chroot</strong></span> Environment</a></span></dt>
65N/A<dt><span class="sect2"><a href="Bv9ARM.ch07.html#id2561011">Using the <span><strong class="command">setuid</strong></span> Function</a></span></dt>
71N/A</dl></dd>
58N/A<dt><span class="sect1"><a href="Bv9ARM.ch07.html#dynamic_update_security">Dynamic Update Security</a></span></dt>
8N/A</dl>
8N/A</div>
65N/A<div class="sect1" lang="en">
8N/A<div class="titlepage"><div><div><h2 class="title" style="clear: both">
8N/A<a name="Access_Control_Lists"></a>Access Control Lists</h2></div></div></div>
8N/A<p>
37N/A Access Control Lists (ACLs), are address match lists that
8N/A you can set up and nickname for future use in <span><strong class="command">allow-notify</strong></span>,
8N/A <span><strong class="command">allow-query</strong></span>, <span><strong class="command">allow-recursion</strong></span>,
24N/A <span><strong class="command">blackhole</strong></span>, <span><strong class="command">allow-transfer</strong></span>,
65N/A etc.
75N/A </p>
75N/A<p>
75N/A Using ACLs allows you to have finer control over who can access
75N/A your name server, without cluttering up your config files with huge
75N/A lists of IP addresses.
75N/A </p>
75N/A<p>
75N/A It is a <span class="emphasis"><em>good idea</em></span> to use ACLs, and to
75N/A control access to your server. Limiting access to your server by
75N/A outside parties can help prevent spoofing and DoS attacks against
75N/A your server.
75N/A </p>
75N/A<p>
75N/A Here is an example of how to properly apply ACLs:
75N/A </p>
75N/A<pre class="programlisting">
65N/A// Set up an ACL named "bogusnets" that will block RFC1918 space
65N/A// and some reserved space, which is commonly used in spoofing attacks.
65N/Aacl bogusnets {
8N/A 0.0.0.0/8; 1.0.0.0/8; 2.0.0.0/8; 192.0.2.0/24; 224.0.0.0/3;
8N/A 10.0.0.0/8; 172.16.0.0/12; 192.168.0.0/16;
8N/A};
65N/A// Set up an ACL called our-nets. Replace this with the real IP numbers.
65N/Aacl our-nets { x.x.x.x/24; x.x.x.x/21; };
65N/Aoptions {
65N/A ...
65N/A ...
8N/A allow-query { our-nets; };
8N/A allow-recursion { our-nets; };
8N/A ...
8N/A blackhole { bogusnets; };
71N/A ...
50N/A};
58N/Azone "example.com" {
50N/A type master;
50N/A file "m/example.com";
50N/A allow-query { any; };
24N/A};
58N/A</pre>
58N/A<p>
58N/A This allows recursive queries of the server from the outside
58N/A unless recursion has been previously disabled.
58N/A </p>
8N/A<p>
24N/A For more information on how to use ACLs to protect your server,
71N/A see the <span class="emphasis"><em>AUSCERT</em></span> advisory at:
71N/A </p>
24N/A<p>
8N/A <a href="ftp://ftp.auscert.org.au/pub/auscert/advisory/AL-1999.004.dns_dos" target="_top">ftp://ftp.auscert.org.au/pub/auscert/advisory/AL-1999.004.dns_dos</a>
65N/A </p>
65N/A</div>
71N/A<div class="sect1" lang="en">
71N/A<div class="titlepage"><div><div><h2 class="title" style="clear: both">
58N/A<a name="id2560807"></a><span><strong class="command">chroot</strong></span> and <span><strong class="command">setuid</strong></span></h2></div></div></div>
58N/A<p>
71N/A On UNIX servers, it is possible to run <span class="acronym">BIND</span> in a <span class="emphasis"><em>chrooted</em></span> environment
24N/A (<span><strong class="command">chroot()</strong></span>) by specifying the "<code class="option">-t</code>"
65N/A option. This can help improve system security by placing <span class="acronym">BIND</span> in
65N/A a "sandbox", which will limit the damage done if a server is
65N/A compromised.
65N/A </p>
65N/A<p>
65N/A Another useful feature in the UNIX version of <span class="acronym">BIND</span> is the
65N/A ability to run the daemon as an unprivileged user ( <code class="option">-u</code> <em class="replaceable"><code>user</code></em> ).
65N/A We suggest running as an unprivileged user when using the <span><strong class="command">chroot</strong></span> feature.
65N/A </p>
58N/A<p>
58N/A Here is an example command line to load <span class="acronym">BIND</span> in a <span><strong class="command">chroot()</strong></span> sandbox,
58N/A <span><strong class="command">/var/named</strong></span>, and to run <span><strong class="command">named</strong></span> <span><strong class="command">setuid</strong></span> to
71N/A user 202:
71N/A </p>
71N/A<p>
71N/A <strong class="userinput"><code>/usr/local/bin/named -u 202 -t /var/named</code></strong>
71N/A </p>
75N/A<div class="sect2" lang="en">
71N/A<div class="titlepage"><div><div><h3 class="title">
71N/A<a name="id2560951"></a>The <span><strong class="command">chroot</strong></span> Environment</h3></div></div></div>
71N/A<p>
71N/A In order for a <span><strong class="command">chroot()</strong></span> environment
24N/A to
24N/A work properly in a particular directory
8N/A (for example, <code class="filename">/var/named</code>),
8N/A you will need to set up an environment that includes everything
30N/A <span class="acronym">BIND</span> needs to run.
25N/A From <span class="acronym">BIND</span>'s point of view, <code class="filename">/var/named</code> is
25N/A the root of the filesystem. You will need to adjust the values of
25N/A options like
95N/A like <span><strong class="command">directory</strong></span> and <span><strong class="command">pid-file</strong></span> to account
95N/A for this.
95N/A </p>
95N/A<p>
95N/A Unlike with earlier versions of BIND, you will typically
95N/A <span class="emphasis"><em>not</em></span> need to compile <span><strong class="command">named</strong></span>
95N/A statically nor install shared libraries under the new root.
95N/A However, depending on your operating system, you may need
95N/A to set up things like
95N/A <code class="filename">/dev/zero</code>,
95N/A <code class="filename">/dev/random</code>,
95N/A <code class="filename">/dev/log</code>, and/or
95N/A <code class="filename">/etc/localtime</code>.
95N/A </p>
95N/A</div>
95N/A<div class="sect2" lang="en">
95N/A<div class="titlepage"><div><div><h3 class="title">
95N/A<a name="id2561011"></a>Using the <span><strong class="command">setuid</strong></span> Function</h3></div></div></div>
95N/A<p>
95N/A Prior to running the <span><strong class="command">named</strong></span> daemon,
95N/A use
95N/A the <span><strong class="command">touch</strong></span> utility (to change file
95N/A access and
95N/A modification times) or the <span><strong class="command">chown</strong></span>
95N/A utility (to
95N/A set the user id and/or group id) on files
95N/A to which you want <span class="acronym">BIND</span>
95N/A to write.
95N/A </p>
95N/A<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
95N/A<h3 class="title">Note</h3>
95N/A Note that if the <span><strong class="command">named</strong></span> daemon is running as an
95N/A unprivileged user, it will not be able to bind to new restricted
99N/A ports if the server is reloaded.
95N/A </div>
99N/A</div>
95N/A</div>
99N/A<div class="sect1" lang="en">
99N/A<div class="titlepage"><div><div><h2 class="title" style="clear: both">
99N/A<a name="dynamic_update_security"></a>Dynamic Update Security</h2></div></div></div>
99N/A<p>
99N/A Access to the dynamic
99N/A update facility should be strictly limited. In earlier versions of
99N/A <span class="acronym">BIND</span> the only way to do this was
99N/A based on the IP
95N/A address of the host requesting the update, by listing an IP address
95N/A or
95N/A network prefix in the <span><strong class="command">allow-update</strong></span>
95N/A zone option.
95N/A This method is insecure since the source address of the update UDP
95N/A packet
95N/A is easily forged. Also note that if the IP addresses allowed by the
95N/A <span><strong class="command">allow-update</strong></span> option include the
95N/A address of a slave
95N/A server which performs forwarding of dynamic updates, the master can
95N/A be
95N/A trivially attacked by sending the update to the slave, which will
65N/A forward it to the master with its own source IP address causing the
65N/A master to approve it without question.
65N/A </p>
65N/A<p>
58N/A For these reasons, we strongly recommend that updates be
58N/A cryptographically authenticated by means of transaction signatures
58N/A (TSIG). That is, the <span><strong class="command">allow-update</strong></span>
58N/A option should
65N/A list only TSIG key names, not IP addresses or network
65N/A prefixes. Alternatively, the new <span><strong class="command">update-policy</strong></span>
65N/A option can be used.
65N/A </p>
65N/A<p>
58N/A Some sites choose to keep all dynamically updated DNS data
58N/A in a subdomain and delegate that subdomain to a separate zone. This
58N/A way, the top-level zone containing critical data such as the IP
58N/A addresses
58N/A of public web and mail servers need not allow dynamic update at
58N/A all.
58N/A </p>
58N/A</div>
58N/A</div>
58N/A<div class="navfooter">
58N/A<hr>
58N/A<table width="100%" summary="Navigation footer">
58N/A<tr>
58N/A<td width="40%" align="left">
58N/A<a accesskey="p" href="Bv9ARM.ch06.html">Prev</a>�</td>
58N/A<td width="20%" align="center">�</td>
58N/A<td width="40%" align="right">�<a accesskey="n" href="Bv9ARM.ch08.html">Next</a>
58N/A</td>
58N/A</tr>
58N/A<tr>
58N/A<td width="40%" align="left" valign="top">Chapter�6.�<span class="acronym">BIND</span> 9 Configuration Reference�</td>
58N/A<td width="20%" align="center"><a accesskey="h" href="Bv9ARM.html">Home</a></td>
58N/A<td width="40%" align="right" valign="top">�Chapter�8.�Troubleshooting</td>
58N/A</tr>
58N/A</table>
58N/A</div>
58N/A</body>
58N/A</html>
58N/A