dns-caveats.html.en revision 5effc8b39fae5cd169d17f342bfc265705840014
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
This file is generated from xml source: DO NOT EDIT
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
-->
<title>Issues Regarding DNS and Apache HTTP Server - Apache HTTP Server</title>
<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
<body id="manual-page"><div id="page-header">
<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
<p class="apache">Apache HTTP Server Version 2.5</p>
<div id="path">
<a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="./">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Issues Regarding DNS and Apache HTTP Server</h1>
<div class="toplang">
<p><span>Available Languages: </span><a href="/en/dns-caveats.html" title="English"> en </a> |
</div>
<p>This page could be summarized with the statement: don't
configure Apache HTTP Server in such a way that it relies on DNS resolution
for parsing of the configuration files. If httpd requires DNS
resolution to parse the configuration files then your server
may be subject to reliability problems (ie. it might not start up),
or denial and theft of service attacks (including virtual hosts able
to steal hits from other virtual hosts).</p>
</div>
<div id="quickview"><ul id="toc"><li><img alt="" src="/images/down.gif" /> <a href="#example">A Simple Example</a></li>
</ul></div>
<div class="section">
<h2><a name="example" id="example">A Simple Example</a></h2>
<div class="example"><p><code>
# This is a misconfiguration example, do not use on your server <br />
<VirtualHost www.example.dom> <br />
ServerAdmin webgirl@example.dom <br />
</VirtualHost>
</code></p></div>
<p>In order for the server to function properly, it absolutely needs
to have two pieces of information about each virtual host: the
IP address that the server will bind and respond to. The above
example does not include the IP address, so httpd must use DNS
reason DNS is not available at the time your server is parsing
its config file, then this virtual host <strong>will not be
configured</strong>. It won't be able to respond to any hits
to this virtual host.</p>
Then consider this configuration snippet:</p>
<div class="example"><p><code>
# This is a misconfiguration example, do not use on your server <br />
<VirtualHost 192.0.2.1> <br />
ServerAdmin webgirl@example.dom <br />
</VirtualHost>
</code></p></div>
<p>This time httpd needs to use reverse DNS to find the
<code>ServerName</code> for this virtualhost. If that reverse
lookup fails then it will partially disable the virtualhost.
If the virtual host is name-based then it will effectively be
totally disabled, but if it is IP-based then it will mostly
work. However, if httpd should ever have to generate a full
URL for the server which includes the server name (such as when a
Redirect is issued), then it will fail to generate a valid URL.</p>
<p>Here is a snippet that avoids both of these problems:</p>
<div class="example"><p><code>
<VirtualHost 192.0.2.1> <br />
ServerName www.example.dom <br />
ServerAdmin webgirl@example.dom <br />
</VirtualHost>
</code></p></div>
<div class="section">
<h2><a name="denial" id="denial">Denial of Service</a></h2>
<p>Consider this configuration snippet:</p>
<div class="example"><p><code>
<VirtualHost www.example1.dom><br />
<span class="indent">
ServerAdmin webgirl@example1.dom<br />
</span>
</VirtualHost><br />
<br />
<VirtualHost www.example2.dom><br />
<span class="indent">
ServerAdmin webguy@example2.dom<br />
</span>
</VirtualHost>
</code></p></div>
<p>Suppose that you've assigned 192.0.2.1 to
192.0.2.2. Since they control their own DNS you can't stop them
wish.</p>
<p>Requests coming in to 192.0.2.2 (including all those where
users typed in URLs of the form
this happens requires a more in-depth discussion of how httpd
matches up incoming requests with the virtual host that will
<div class="section">
<h2><a name="main" id="main">The "main server" Address</a></h2>
virtual host support</a> requires httpd to know
the IP address(es) of the host that <code class="program"><a href="/programs/httpd.html">httpd</a></code>
is running on. To get this address it uses either the global
(if present) or calls the C function <code>gethostname</code>
(which should return the same as typing "hostname" at the
command prompt). Then it performs a DNS lookup on this address.
At present there is no way to avoid this lookup.</p>
<p>If you fear that this lookup might fail because your DNS
server is down then you can insert the hostname in
that the machine can boot properly). Then ensure that your
event that DNS fails. Depending on what OS you are using this
<p>If your server doesn't have to perform DNS for any other
reason then you might be able to get away with running httpd
with the <code>HOSTRESORDER</code> environment variable set to
"local". This all depends on what OS and resolver libraries you
are using. It also affects CGIs unless you use
<code class="module"><a href="/mod/mod_env.html">mod_env</a></code> to control the environment. It's best
to consult the man pages or FAQs for your OS.</p>
<div class="section">
<h2><a name="tips" id="tips">Tips to Avoid These Problems</a></h2>
<ul>
<li>
use IP addresses in
</li>
<li>
use IP addresses in
</li>
<li>
ensure all virtual hosts have an explicit
</li>
<li>create a <code><VirtualHost _default_:*></code>
server that has no pages to serve</li>
</ul>
</div></div>
<div class="bottomlang">
<p><span>Available Languages: </span><a href="/en/dns-caveats.html" title="English"> en </a> |
</div><div id="footer">
<p class="apache">Copyright 2012 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/directives.html">Directives</a> | <a href="/faq/">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div>
</body></html>