Bv9ARM.ch05.html revision e4a70b8fdfc5d2db2d992d884327a1e1fec67a07
4049N/A<!--
3652N/A - Copyright (C) 2004-2014 Internet Systems Consortium, Inc. ("ISC")
3998N/A - Copyright (C) 2000-2003 Internet Software Consortium.
3998N/A -
3998N/A - Permission to use, copy, modify, and/or distribute this software for any
3998N/A - purpose with or without fee is hereby granted, provided that the above
3998N/A - copyright notice and this permission notice appear in all copies.
3998N/A -
3998N/A - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
3998N/A - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
3998N/A - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
3998N/A - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
3998N/A - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
3998N/A - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
3998N/A - PERFORMANCE OF THIS SOFTWARE.
3998N/A-->
3652N/A<!-- $Id$ -->
3652N/A<html>
3652N/A<head>
3652N/A<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
3652N/A<title>Chapter�5.�The BIND 9 Lightweight Resolver</title>
3652N/A<meta name="generator" content="DocBook XSL Stylesheets V1.71.1">
3998N/A<link rel="start" href="Bv9ARM.html" title="BIND 9 Administrator Reference Manual">
3652N/A<link rel="up" href="Bv9ARM.html" title="BIND 9 Administrator Reference Manual">
3652N/A<link rel="prev" href="Bv9ARM.ch04.html" title="Chapter�4.�Advanced DNS Features">
3652N/A<link rel="next" href="Bv9ARM.ch06.html" title="Chapter�6.�BIND 9 Configuration Reference">
3652N/A</head>
3998N/A<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
3652N/A<div class="navheader">
3652N/A<table width="100%" summary="Navigation header">
3652N/A<tr><th colspan="3" align="center">Chapter�5.�The <acronym class="acronym">BIND</acronym> 9 Lightweight Resolver</th></tr>
3998N/A<tr>
3652N/A<td width="20%" align="left">
3652N/A<a accesskey="p" href="Bv9ARM.ch04.html">Prev</a>�</td>
4046N/A<th width="60%" align="center">�</th>
3652N/A<td width="20%" align="right">�<a accesskey="n" href="Bv9ARM.ch06.html">Next</a>
3998N/A</td>
3998N/A</tr>
3998N/A</table>
3998N/A<hr>
3998N/A</div>
3652N/A<div class="chapter" lang="en">
3652N/A<div class="titlepage"><div><div><h2 class="title">
4046N/A<a name="Bv9ARM.ch05"></a>Chapter�5.�The <acronym class="acronym">BIND</acronym> 9 Lightweight Resolver</h2></div></div></div>
3652N/A<div class="toc">
3652N/A<p><b>Table of Contents</b></p>
3652N/A<dl>
3652N/A<dt><span class="sect1"><a href="Bv9ARM.ch05.html#id2571895">The Lightweight Resolver Library</a></span></dt>
3652N/A<dt><span class="sect1"><a href="Bv9ARM.ch05.html#lwresd">Running a Resolver Daemon</a></span></dt>
3652N/A</dl>
3652N/A</div>
3652N/A<div class="sect1" lang="en">
3652N/A<div class="titlepage"><div><div><h2 class="title" style="clear: both">
3652N/A<a name="id2571895"></a>The Lightweight Resolver Library</h2></div></div></div>
3652N/A<p>
3652N/A Traditionally applications have been linked with a stub resolver
3652N/A library that sends recursive DNS queries to a local caching name
3652N/A server.
3652N/A </p>
3652N/A<p>
3652N/A IPv6 once introduced new complexity into the resolution process,
3998N/A such as following A6 chains and DNAME records, and simultaneous
3998N/A lookup of IPv4 and IPv6 addresses. Though most of the complexity was
3652N/A then removed, these are hard or impossible
3652N/A to implement in a traditional stub resolver.
3652N/A </p>
3652N/A<p>
3652N/A <acronym class="acronym">BIND</acronym> 9 therefore can also provide resolution
3652N/A services to local clients
3652N/A using a combination of a lightweight resolver library and a resolver
3652N/A daemon process running on the local host. These communicate using
3652N/A a simple UDP-based protocol, the "lightweight resolver protocol"
3652N/A that is distinct from and simpler than the full DNS protocol.
3652N/A </p>
3652N/A</div>
3652N/A<div class="sect1" lang="en">
3652N/A<div class="titlepage"><div><div><h2 class="title" style="clear: both">
3652N/A<a name="lwresd"></a>Running a Resolver Daemon</h2></div></div></div>
3652N/A<p>
3652N/A To use the lightweight resolver interface, the system must
3652N/A run the resolver daemon <span><strong class="command">lwresd</strong></span> or a
3652N/A local
3652N/A name server configured with a <span><strong class="command">lwres</strong></span>
3652N/A statement.
3652N/A </p>
3652N/A<p>
3652N/A By default, applications using the lightweight resolver library will
3652N/A make
3652N/A UDP requests to the IPv4 loopback address (127.0.0.1) on port 921.
3652N/A The
3652N/A address can be overridden by <span><strong class="command">lwserver</strong></span>
3652N/A lines in
3652N/A <code class="filename">/etc/resolv.conf</code>.
3652N/A </p>
3652N/A<p>
3998N/A The daemon currently only looks in the DNS, but in the future
3998N/A it may use other sources such as <code class="filename">/etc/hosts</code>,
3652N/A NIS, etc.
3652N/A </p>
3652N/A<p>
3652N/A The <span><strong class="command">lwresd</strong></span> daemon is essentially a
3652N/A caching-only name server that responds to requests using the
3652N/A lightweight
3652N/A resolver protocol rather than the DNS protocol. Because it needs
3652N/A to run on each host, it is designed to require no or minimal
3652N/A configuration.
3652N/A Unless configured otherwise, it uses the name servers listed on
3652N/A <span><strong class="command">nameserver</strong></span> lines in <code class="filename">/etc/resolv.conf</code>
3652N/A as forwarders, but is also capable of doing the resolution
3652N/A autonomously if
3652N/A none are specified.
3652N/A </p>
3652N/A<p>
3652N/A The <span><strong class="command">lwresd</strong></span> daemon may also be
3652N/A configured with a
3652N/A <code class="filename">named.conf</code> style configuration file,
3652N/A in
3652N/A <code class="filename">/etc/lwresd.conf</code> by default. A name
3652N/A server may also
3652N/A be configured to act as a lightweight resolver daemon using the
3652N/A <span><strong class="command">lwres</strong></span> statement in <code class="filename">named.conf</code>.
3652N/A </p>
3652N/A</div>
3652N/A</div>
3652N/A<div class="navfooter">
3652N/A<hr>
3652N/A<table width="100%" summary="Navigation footer">
3652N/A<tr>
3652N/A<td width="40%" align="left">
3652N/A<a accesskey="p" href="Bv9ARM.ch04.html">Prev</a>�</td>
3652N/A<td width="20%" align="center">�</td>
3652N/A<td width="40%" align="right">�<a accesskey="n" href="Bv9ARM.ch06.html">Next</a>
3652N/A</td>
3652N/A</tr>
3652N/A<tr>
3652N/A<td width="40%" align="left" valign="top">Chapter�4.�Advanced DNS Features�</td>
3652N/A<td width="20%" align="center"><a accesskey="h" href="Bv9ARM.html">Home</a></td>
3652N/A<td width="40%" align="right" valign="top">�Chapter�6.�<acronym class="acronym">BIND</acronym> 9 Configuration Reference</td>
3652N/A</tr>
3652N/A</table>
3652N/A</div>
3652N/A</body>
3652N/A</html>
3652N/A