]> granicus.if.org Git - apache/blob - docs/manual/dns-caveats.html.en
Documentation rebuild after recent commits
[apache] / docs / manual / dns-caveats.html.en
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
4 <meta content="text/html; charset=ISO-8859-1" http-equiv="Content-Type" />
5 <!--
6         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
7               This file is generated from xml source: DO NOT EDIT
8         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
9       -->
10 <title>Issues Regarding DNS and Apache HTTP Server - Apache HTTP Server Version 2.5</title>
11 <link href="./style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
12 <link href="./style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
13 <link href="./style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="./style/css/prettify.css" />
14 <script src="./style/scripts/prettify.min.js" type="text/javascript">
15 </script>
16
17 <link href="./images/favicon.ico" rel="shortcut icon" /></head>
18 <body id="manual-page"><div id="page-header">
19 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p>
20 <p class="apache">Apache HTTP Server Version 2.5</p>
21 <img alt="" src="./images/feather.png" /></div>
22 <div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="./images/left.gif" /></a></div>
23 <div id="path">
24 <a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="./">Version 2.5</a></div><div id="page-content"><div id="preamble"><h1>Issues Regarding DNS and Apache HTTP Server</h1>
25 <div class="toplang">
26 <p><span>Available Languages: </span><a href="./en/dns-caveats.html" title="English">&nbsp;en&nbsp;</a> |
27 <a href="./fr/dns-caveats.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
28 <a href="./ja/dns-caveats.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
29 <a href="./ko/dns-caveats.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
30 <a href="./tr/dns-caveats.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
31 </div>
32
33     <p>This page could be summarized with the statement: don't
34     configure Apache HTTP Server in such a way that it relies on DNS resolution
35     for parsing of the configuration files. If httpd requires DNS
36     resolution to parse the configuration files then your server
37     may be subject to reliability problems (ie. it might not start up),
38     or denial and theft of service attacks (including virtual hosts able
39     to steal hits from other virtual hosts).</p>
40   </div>
41 <div id="quickview"><ul id="toc"><li><img alt="" src="./images/down.gif" /> <a href="#example">A Simple Example</a></li>
42 <li><img alt="" src="./images/down.gif" /> <a href="#denial">Denial of Service</a></li>
43 <li><img alt="" src="./images/down.gif" /> <a href="#main">The "main server" Address</a></li>
44 <li><img alt="" src="./images/down.gif" /> <a href="#tips">Tips to Avoid These Problems</a></li>
45 </ul><h3>See also</h3><ul class="seealso"><li><a href="#comments_section">Comments</a></li></ul></div>
46 <div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
47 <div class="section">
48 <h2><a name="example" id="example">A Simple Example</a></h2>
49     
50
51     <pre class="prettyprint lang-config"># This is a misconfiguration example, do not use on your server
52 &lt;VirtualHost www.example.dom&gt;
53   ServerAdmin webgirl@example.dom
54   DocumentRoot "/www/example"
55 &lt;/VirtualHost&gt;</pre>
56
57
58     <p>In order for the server to function properly, it absolutely needs
59     to have two pieces of information about each virtual host: the
60     <code class="directive"><a href="./mod/core.html#servername">ServerName</a></code> and at least one
61     IP address that the server will bind and respond to. The above
62     example does not include the IP address, so httpd must use DNS
63     to find the address of <code>www.example.dom</code>. If for some
64     reason DNS is not available at the time your server is parsing
65     its config file, then this virtual host <strong>will not be
66     configured</strong>. It won't be able to respond to any hits
67     to this virtual host.</p>
68
69     <p>Suppose that <code>www.example.dom</code> has address 192.0.2.1.
70     Then consider this configuration snippet:</p>
71
72     <pre class="prettyprint lang-config"># This is a misconfiguration example, do not use on your server
73 &lt;VirtualHost 192.0.2.1&gt;
74   ServerAdmin webgirl@example.dom
75   DocumentRoot "/www/example"
76 &lt;/VirtualHost&gt;</pre>
77
78
79     <p>This time httpd needs to use reverse DNS to find the
80     <code>ServerName</code> for this virtualhost. If that reverse
81     lookup fails then it will partially disable the virtualhost.
82     If the virtual host is name-based then it will effectively be
83     totally disabled, but if it is IP-based then it will mostly
84     work. However, if httpd should ever have to generate a full
85     URL for the server which includes the server name (such as when a
86     Redirect is issued), then it will fail to generate a valid URL.</p>
87
88     <p>Here is a snippet that avoids both of these problems:</p>
89
90     <pre class="prettyprint lang-config">&lt;VirtualHost 192.0.2.1&gt;
91   ServerName www.example.dom
92   ServerAdmin webgirl@example.dom
93   DocumentRoot "/www/example"
94 &lt;/VirtualHost&gt;</pre>
95
96   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
97 <div class="section">
98 <h2><a name="denial" id="denial">Denial of Service</a></h2>
99     
100
101     <p>Consider this configuration snippet:</p>
102
103     <pre class="prettyprint lang-config">&lt;VirtualHost www.example1.dom&gt;
104   ServerAdmin webgirl@example1.dom
105   DocumentRoot "/www/example1"
106 &lt;/VirtualHost&gt;
107 &lt;VirtualHost www.example2.dom&gt;
108   ServerAdmin webguy@example2.dom
109   DocumentRoot "/www/example2"
110 &lt;/VirtualHost&gt;</pre>
111
112
113     <p>Suppose that you've assigned 192.0.2.1 to
114     <code>www.example1.dom</code> and 192.0.2.2 to
115     <code>www.example2.dom</code>. Furthermore, suppose that
116     <code>example1.dom</code> has control of their own DNS. With this
117     config you have put <code>example1.dom</code> into a position where
118     they can steal all traffic destined to <code>example2.dom</code>. To
119     do so, all they have to do is set <code>www.example1.dom</code> to
120     192.0.2.2. Since they control their own DNS you can't stop them
121     from pointing the <code>www.example1.dom</code> record wherever they
122     wish.</p>
123
124     <p>Requests coming in to 192.0.2.2 (including all those where
125     users typed in URLs of the form
126     <code>http://www.example2.dom/whatever</code>) will all be served by
127     the <code>example1.dom</code> virtual host. To better understand why
128     this happens requires a more in-depth discussion of how httpd
129     matches up incoming requests with the virtual host that will
130     serve it. A rough document describing this <a href="vhosts/details.html">is available</a>.</p>
131   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
132 <div class="section">
133 <h2><a name="main" id="main">The "main server" Address</a></h2>
134     
135
136     <p><a href="vhosts/name-based.html">Name-based
137     virtual host support</a> requires httpd to know
138     the IP address(es) of the host that <code class="program"><a href="./programs/httpd.html">httpd</a></code>
139     is running on. To get this address it uses either the global
140     <code class="directive"><a href="./mod/core.html#servername">ServerName</a></code>
141     (if present) or calls the C function <code>gethostname</code>
142     (which should return the same as typing "hostname" at the
143     command prompt). Then it performs a DNS lookup on this address.
144     At present there is no way to avoid this lookup.</p>
145
146     <p>If you fear that this lookup might fail because your DNS
147     server is down then you can insert the hostname in
148     <code>/etc/hosts</code> (where you probably already have it so
149     that the machine can boot properly). Then ensure that your
150     machine is configured to use <code>/etc/hosts</code> in the
151     event that DNS fails. Depending on what OS you are using this
152     might be accomplished by editing <code>/etc/resolv.conf</code>,
153     or maybe <code>/etc/nsswitch.conf</code>.</p>
154
155     <p>If your server doesn't have to perform DNS for any other
156     reason then you might be able to get away with running httpd
157     with the <code>HOSTRESORDER</code> environment variable set to
158     "local". This all depends on what OS and resolver libraries you
159     are using. It also affects CGIs unless you use
160     <code class="module"><a href="./mod/mod_env.html">mod_env</a></code> to control the environment. It's best
161     to consult the man pages or FAQs for your OS.</p>
162   </div><div class="top"><a href="#page-header"><img alt="top" src="./images/up.gif" /></a></div>
163 <div class="section">
164 <h2><a name="tips" id="tips">Tips to Avoid These Problems</a></h2>
165     
166
167     <ul>
168       <li>
169         use IP addresses in
170         <code class="directive"><a href="./mod/core.html#virtualhost">VirtualHost</a></code>
171       </li>
172
173       <li>
174         use IP addresses in
175         <code class="directive"><a href="./mod/mpm_common.html#listen">Listen</a></code>
176       </li>
177
178       <li>
179         ensure all virtual hosts have an explicit
180         <code class="directive"><a href="./mod/core.html#servername">ServerName</a></code>
181       </li>
182
183       <li>create a <code>&lt;VirtualHost _default_:*&gt;</code>
184       server that has no pages to serve</li>
185     </ul>
186   </div></div>
187 <div class="bottomlang">
188 <p><span>Available Languages: </span><a href="./en/dns-caveats.html" title="English">&nbsp;en&nbsp;</a> |
189 <a href="./fr/dns-caveats.html" hreflang="fr" rel="alternate" title="Français">&nbsp;fr&nbsp;</a> |
190 <a href="./ja/dns-caveats.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
191 <a href="./ko/dns-caveats.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
192 <a href="./tr/dns-caveats.html" hreflang="tr" rel="alternate" title="Türkçe">&nbsp;tr&nbsp;</a></p>
193 </div><div class="top"><a href="#page-header"><img src="./images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&amp;A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div>
194 <script type="text/javascript"><!--//--><![CDATA[//><!--
195 var comments_shortname = 'httpd';
196 var comments_identifier = 'http://httpd.apache.org/docs/trunk/dns-caveats.html';
197 (function(w, d) {
198     if (w.location.hostname.toLowerCase() == "httpd.apache.org") {
199         d.write('<div id="comments_thread"><\/div>');
200         var s = d.createElement('script');
201         s.type = 'text/javascript';
202         s.async = true;
203         s.src = 'https://comments.apache.org/show_comments.lua?site=' + comments_shortname + '&page=' + comments_identifier;
204         (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
205     }
206     else {
207         d.write('<div id="comments_thread">Comments are disabled for this page at the moment.<\/div>');
208     }
209 })(window, document);
210 //--><!]]></script></div><div id="footer">
211 <p class="apache">Copyright 2016 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>
212 <p class="menu"><a href="./mod/">Modules</a> | <a href="./mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="./glossary.html">Glossary</a> | <a href="./sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
213 if (typeof(prettyPrint) !== 'undefined') {
214     prettyPrint();
215 }
216 //--><!]]></script>
217 </body></html>