bind9/bin/named/lwresd.html

294 lines
11 KiB
HTML
Raw Normal View History

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2001-03-27 12:54:37 -05:00
<!--
2016-07-21 03:53:18 -04:00
- Copyright (C) 2000, 2001, 2004, 2005, 2007-2009, 2014-2016 Internet Systems Consortium, Inc. ("ISC")
2005-05-11 02:05:43 -04:00
-
2016-07-21 03:53:18 -04:00
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/.
2001-03-27 12:54:37 -05:00
-->
<html lang="en">
2005-05-11 02:05:43 -04:00
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>lwresd</title>
2015-10-07 00:11:09 -04:00
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
2005-05-11 02:05:43 -04:00
</head>
2015-10-07 00:11:09 -04:00
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="refentry">
2015-09-22 21:05:36 -04:00
<a name="man.lwresd"></a><div class="titlepage"></div>
2016-12-06 20:09:50 -05:00
<div class="refnamediv">
2005-05-11 02:05:43 -04:00
<h2>Name</h2>
2016-12-06 20:09:50 -05:00
<p>
<span class="application">lwresd</span>
&#8212; lightweight resolver daemon
</p>
2005-05-11 02:05:43 -04:00
</div>
2016-12-06 20:09:50 -05:00
<div class="refsynopsisdiv">
2005-05-11 02:05:43 -04:00
<h2>Synopsis</h2>
2016-12-06 20:09:50 -05:00
<div class="cmdsynopsis"><p>
<code class="command">lwresd</code>
[<code class="option">-c <em class="replaceable"><code>config-file</code></em></code>]
[<code class="option">-C <em class="replaceable"><code>config-file</code></em></code>]
[<code class="option">-d <em class="replaceable"><code>debug-level</code></em></code>]
[<code class="option">-f</code>]
[<code class="option">-g</code>]
[<code class="option">-i <em class="replaceable"><code>pid-file</code></em></code>]
[<code class="option">-m <em class="replaceable"><code>flag</code></em></code>]
[<code class="option">-n <em class="replaceable"><code>#cpus</code></em></code>]
[<code class="option">-P <em class="replaceable"><code>port</code></em></code>]
[<code class="option">-p <em class="replaceable"><code>port</code></em></code>]
[<code class="option">-s</code>]
[<code class="option">-t <em class="replaceable"><code>directory</code></em></code>]
[<code class="option">-u <em class="replaceable"><code>user</code></em></code>]
[<code class="option">-v</code>]
[<code class="option">-4</code>]
[<code class="option">-6</code>]
</p></div>
</div>
<div class="refsection">
2015-10-07 00:11:09 -04:00
<a name="id-1.7"></a><h2>DESCRIPTION</h2>
2016-12-06 20:09:50 -05:00
<p><span class="command"><strong>lwresd</strong></span>
2005-05-11 02:05:43 -04:00
is the daemon providing name lookup
services to clients that use the BIND 9 lightweight resolver
library. It is essentially a stripped-down, caching-only name
server that answers queries using the BIND 9 lightweight
resolver protocol rather than the DNS protocol.
</p>
2016-12-06 20:09:50 -05:00
<p><span class="command"><strong>lwresd</strong></span>
2005-05-11 02:05:43 -04:00
listens for resolver queries on a
UDP port on the IPv4 loopback interface, 127.0.0.1. This
2015-10-06 01:45:21 -04:00
means that <span class="command"><strong>lwresd</strong></span> can only be used by
2009-01-20 20:12:08 -05:00
processes running on the local machine. By default, UDP port
2005-05-11 02:05:43 -04:00
number 921 is used for lightweight resolver requests and
responses.
</p>
2016-12-06 20:09:50 -05:00
<p>
2005-05-11 02:05:43 -04:00
Incoming lightweight resolver requests are decoded by the
server which then resolves them using the DNS protocol. When
2015-10-06 01:45:21 -04:00
the DNS lookup completes, <span class="command"><strong>lwresd</strong></span> encodes
2005-05-11 02:05:43 -04:00
the answers in the lightweight resolver format and returns
them to the client that made the request.
</p>
2016-12-06 20:09:50 -05:00
<p>
2005-05-11 02:05:43 -04:00
If <code class="filename">/etc/resolv.conf</code> contains any
2015-10-06 01:45:21 -04:00
<code class="option">nameserver</code> entries, <span class="command"><strong>lwresd</strong></span>
2005-05-11 02:05:43 -04:00
sends recursive DNS queries to those servers. This is similar
to the use of forwarders in a caching name server. If no
<code class="option">nameserver</code> entries are present, or if
2015-10-06 01:45:21 -04:00
forwarding fails, <span class="command"><strong>lwresd</strong></span> resolves the
2005-05-11 02:05:43 -04:00
queries autonomously starting at the root name servers, using
a built-in list of root server hints.
</p>
2016-12-06 20:09:50 -05:00
</div>
<div class="refsection">
2015-10-07 00:11:09 -04:00
<a name="id-1.8"></a><h2>OPTIONS</h2>
2016-12-06 20:09:50 -05:00
<div class="variablelist"><dl class="variablelist">
2007-05-16 02:12:02 -04:00
<dt><span class="term">-4</span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2007-05-16 02:12:02 -04:00
Use IPv4 only even if the host machine is capable of IPv6.
<code class="option">-4</code> and <code class="option">-6</code> are mutually
exclusive.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2007-05-16 02:12:02 -04:00
<dt><span class="term">-6</span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2007-05-16 02:12:02 -04:00
Use IPv6 only even if the host machine is capable of IPv4.
<code class="option">-4</code> and <code class="option">-6</code> are mutually
exclusive.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2007-05-16 02:12:02 -04:00
<dt><span class="term">-c <em class="replaceable"><code>config-file</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2007-05-16 02:12:02 -04:00
Use <em class="replaceable"><code>config-file</code></em> as the
configuration file instead of the default,
<code class="filename">/etc/lwresd.conf</code>.
2008-09-25 00:45:05 -04:00
<code class="option">-c</code> can not be used with <code class="option">-C</code>.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-C <em class="replaceable"><code>config-file</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Use <em class="replaceable"><code>config-file</code></em> as the
configuration file instead of the default,
<code class="filename">/etc/resolv.conf</code>.
2008-09-25 00:45:05 -04:00
<code class="option">-C</code> can not be used with <code class="option">-c</code>.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-d <em class="replaceable"><code>debug-level</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Set the daemon's debug level to <em class="replaceable"><code>debug-level</code></em>.
2015-10-06 01:45:21 -04:00
Debugging traces from <span class="command"><strong>lwresd</strong></span> become
2005-05-11 02:05:43 -04:00
more verbose as the debug level increases.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-f</span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Run the server in the foreground (i.e. do not daemonize).
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-g</span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Run the server in the foreground and force all logging
to <code class="filename">stderr</code>.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2007-05-16 02:12:02 -04:00
<dt><span class="term">-i <em class="replaceable"><code>pid-file</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2007-05-16 02:12:02 -04:00
Use <em class="replaceable"><code>pid-file</code></em> as the
PID file instead of the default,
2008-11-06 20:11:20 -05:00
<code class="filename">/var/run/lwresd/lwresd.pid</code>.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2007-05-16 02:12:02 -04:00
<dt><span class="term">-m <em class="replaceable"><code>flag</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2007-05-16 02:12:02 -04:00
Turn on memory usage debugging flags. Possible flags are
<em class="replaceable"><code>usage</code></em>,
<em class="replaceable"><code>trace</code></em>,
<em class="replaceable"><code>record</code></em>,
<em class="replaceable"><code>size</code></em>, and
2015-10-22 01:53:09 -04:00
<em class="replaceable"><code>mctx</code></em>.
2007-05-16 02:12:02 -04:00
These correspond to the ISC_MEM_DEBUGXXXX flags described in
<code class="filename">&lt;isc/mem.h&gt;</code>.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-n <em class="replaceable"><code>#cpus</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Create <em class="replaceable"><code>#cpus</code></em> worker threads
to take advantage of multiple CPUs. If not specified,
2015-10-06 01:45:21 -04:00
<span class="command"><strong>lwresd</strong></span> will try to determine the
2005-05-11 02:05:43 -04:00
number of CPUs present and create one thread per CPU.
If it is unable to determine the number of CPUs, a
single worker thread will be created.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-P <em class="replaceable"><code>port</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Listen for lightweight resolver queries on port
<em class="replaceable"><code>port</code></em>. If
not specified, the default is port 921.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-p <em class="replaceable"><code>port</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Send DNS lookups to port <em class="replaceable"><code>port</code></em>. If not
specified, the default is port 53. This provides a
way of testing the lightweight resolver daemon with a
name server that listens for queries on a non-standard
port number.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-s</span></dt>
<dd>
2016-12-06 20:09:50 -05:00
<p>
2005-05-11 02:05:43 -04:00
Write memory usage statistics to <code class="filename">stdout</code>
on exit.
</p>
2016-12-06 20:09:50 -05:00
<div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
2005-05-11 02:05:43 -04:00
<h3 class="title">Note</h3>
2016-12-06 20:09:50 -05:00
<p>
2005-05-11 02:05:43 -04:00
This option is mainly of interest to BIND 9 developers
and may be removed or changed in a future release.
</p>
2016-12-06 20:09:50 -05:00
</div>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-t <em class="replaceable"><code>directory</code></em></span></dt>
<dd>
2016-12-06 20:09:50 -05:00
<p>Chroot
2005-05-11 02:05:43 -04:00
to <em class="replaceable"><code>directory</code></em> after
processing the command line arguments, but before
reading the configuration file.
</p>
2016-12-06 20:09:50 -05:00
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2005-05-11 02:05:43 -04:00
<h3 class="title">Warning</h3>
2016-12-06 20:09:50 -05:00
<p>
2005-05-11 02:05:43 -04:00
This option should be used in conjunction with the
<code class="option">-u</code> option, as chrooting a process
running as root doesn't enhance security on most
2007-05-08 23:33:51 -04:00
systems; the way <code class="function">chroot(2)</code> is
2005-05-11 02:05:43 -04:00
defined allows a process with root privileges to
escape a chroot jail.
</p>
2016-12-06 20:09:50 -05:00
</div>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-u <em class="replaceable"><code>user</code></em></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>Setuid
2005-05-11 02:05:43 -04:00
to <em class="replaceable"><code>user</code></em> after completing
privileged operations, such as creating sockets that
listen on privileged ports.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term">-v</span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
Report the version number and exit.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
</dl></div>
2016-12-06 20:09:50 -05:00
</div>
<div class="refsection">
2015-10-07 00:11:09 -04:00
<a name="id-1.9"></a><h2>FILES</h2>
2016-12-06 20:09:50 -05:00
<div class="variablelist"><dl class="variablelist">
2005-05-11 02:05:43 -04:00
<dt><span class="term"><code class="filename">/etc/resolv.conf</code></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
The default configuration file.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
<dt><span class="term"><code class="filename">/var/run/lwresd.pid</code></span></dt>
2016-12-06 20:09:50 -05:00
<dd>
<p>
2005-05-11 02:05:43 -04:00
The default process-id file.
2016-12-06 20:09:50 -05:00
</p>
</dd>
2005-05-11 02:05:43 -04:00
</dl></div>
2016-12-06 20:09:50 -05:00
</div>
<div class="refsection">
2015-10-07 00:11:09 -04:00
<a name="id-1.10"></a><h2>SEE ALSO</h2>
2016-12-06 20:09:50 -05:00
<p><span class="citerefentry">
<span class="refentrytitle">named</span>(8)
</span>,
<span class="citerefentry">
<span class="refentrytitle">lwres</span>(3)
</span>,
<span class="citerefentry">
<span class="refentrytitle">resolver</span>(5)
</span>.
2005-05-11 02:05:43 -04:00
</p>
2016-12-06 20:09:50 -05:00
</div>
2005-05-11 02:05:43 -04:00
</div></body>
</html>