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