source: server/major/bind.xml@ e4570711

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since e4570711 was e4570711, checked in by Bruce Dubbs <bdubbs@…>, 8 years ago

Update to proftpd-1.3.5b.
Update to libsigc++-2.8.0.
Update to seamonkey-2.40.
Update to bind-9.10.3-P4.
Archive strigi

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17173 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 30.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY bind-download-http " ">
8 <!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
9 <!ENTITY bind-md5sum "173ce5e83e9ba31f8368367ee1ff7807">
10 <!ENTITY bind-size "8.1 MB">
11 <!ENTITY bind-buildsize "135 MB (additional 64 MB for the test suite)">
12 <!ENTITY bind-time "1 SBU (additional 22+ minutes, processor independent, to run the complete test suite)">
13]>
14
15<sect1 id="bind" xreflabel="BIND-&bind-version;">
16 <?dbhtml filename="bind.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>BIND-&bind-version;</title>
24
25 <indexterm zone="bind">
26 <primary sortas="a-BIND">BIND</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to BIND</title>
31
32 <para>The <application>BIND</application> package provides a DNS server
33 and client utilities. If you are only interested in the utilities, refer
34 to the <xref linkend="bind-utils"/>.</para>
35
36 &lfs79_checked;
37
38 <bridgehead renderas="sect3">Package Information</bridgehead>
39 <itemizedlist spacing="compact">
40 <listitem>
41 <para>Download (HTTP): <ulink url="&bind-download-http;"/></para>
42 </listitem>
43 <listitem>
44 <para>Download (FTP): <ulink url="&bind-download-ftp;"/></para>
45 </listitem>
46 <listitem>
47 <para>Download MD5 sum: &bind-md5sum;</para>
48 </listitem>
49 <listitem>
50 <para>Download size: &bind-size;</para>
51 </listitem>
52 <listitem>
53 <para>Estimated disk space required: &bind-buildsize;</para>
54 </listitem>
55 <listitem>
56 <para>Estimated build time: &bind-time;</para>
57 </listitem>
58 </itemizedlist>
59
60 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
61 <itemizedlist spacing='compact'>
62 <listitem>
63 <para>Optional patch (if net-tools is not installed):
64 <ulink
65 url="&patch-root;/bind-&bind-version;-use_iproute2-1.patch"/></para>
66 </listitem>
67 </itemizedlist>
68
69 <bridgehead renderas="sect3">BIND Dependencies</bridgehead>
70
71 <bridgehead renderas="sect4">Optional</bridgehead>
72 <para role="optional">
73 <xref linkend="libcap-pam"/>,
74 <xref linkend="libxml2"/>,
75 <xref linkend="mitkrb"/>,
76 <xref linkend="openssl"/>, and
77 <ulink url='https://github.com/cjheath/geoip'>geoip</ulink>
78 </para>
79
80 <bridgehead renderas="sect4">Optional database backends</bridgehead>
81 <para role="optional">
82 <xref linkend="db"/>,
83 <xref linkend="mariadb"/> or <ulink url="http://www.mysql.com/">MySQL</ulink>,
84 <xref linkend="openldap"/>,
85 <xref linkend="postgresql"/>, and
86 <xref linkend="unixodbc"/>
87 </para>
88
89 <bridgehead renderas="sect4">Optional (to run the test suite)</bridgehead>
90 <para role="optional">
91 <xref linkend="perl-net-dns"/> and
92 <xref linkend="net-tools"/> (you may omit net-tools by using the optional
93 patch to utilize iproute2, but the IPv6 tests will fail)
94 </para>
95
96 <bridgehead renderas="sect4">Optional (to rebuild the documentation)</bridgehead>
97 <para role="optional">
98 <xref linkend="doxygen"/>,
99 <xref linkend="libxslt"/>, and
100 <xref linkend="texlive"/> (or <xref linkend="tl-installer"/>)
101 </para>
102
103 <para condition="html" role="usernotes">User Notes:
104 <ulink url="&blfs-wiki;/bind"/></para>
105
106 </sect2>
107
108 <sect2 role="installation">
109 <title>Installation of BIND</title>
110
111 <para>If you have chosen not to install net-tools, apply the iproute2
112 patch with the following command:</para>
113
114<screen><userinput>patch -Np1 -i ../bind-&bind-version;-use_iproute2-1.patch</userinput></screen>
115
116 <para>Install <application>BIND</application> by running the
117 following commands:</para>
118
119<screen><userinput>./configure --prefix=/usr \
120 --sysconfdir=/etc \
121 --localstatedir=/var \
122 --mandir=/usr/share/man \
123 --enable-threads \
124 --with-libtool \
125 --disable-static \
126 --with-randomdev=/dev/urandom &amp;&amp;
127make</userinput></screen>
128
129 <para>Issue the following commands to run the complete suite of tests.
130 First, as the <systemitem class="username">root</systemitem> user, set up
131 some test interfaces:</para>
132
133 <note><para>If IPv6 is not enabled in the kernel, there will be several
134 error messages: "RTNETLINK answers: Operation not permitted". These
135 messages do not afffect the tests.</para></note>
136
137<screen role="root"><userinput>bin/tests/system/ifconfig.sh up</userinput></screen>
138
139 <para>The test suite may indicate some skipped tests depending on
140 what configuration options are used. Some tests are marked <quote>UNTESTED
141 </quote> if <xref linkend="perl-net-dns"/> is not installed.
142 To run the tests, as an unprivileged user, execute:</para>
143
144<screen><userinput>make -k check</userinput></screen>
145
146 <para>Again as <systemitem class="username">root</systemitem>, clean up the
147 test interfaces:</para>
148
149<screen role="root"><userinput>bin/tests/system/ifconfig.sh down</userinput></screen>
150
151 <para>Finally, install the package as the <systemitem
152 class="username">root</systemitem> user:</para>
153
154<screen role="root"><userinput>make install &amp;&amp;
155
156install -v -m755 -d /usr/share/doc/bind-&bind-version;/{arm,misc} &amp;&amp;
157install -v -m644 doc/arm/*.html \
158 /usr/share/doc/bind-&bind-version;/arm &amp;&amp;
159install -v -m644 doc/misc/{dnssec,ipv6,migrat*,options,rfc-compliance,roadmap,sdb} \
160 /usr/share/doc/bind-&bind-version;/misc</userinput></screen>
161 </sect2>
162
163 <sect2 role="commands">
164 <title>Command Explanations</title>
165
166 <para><parameter>--sysconfdir=/etc</parameter>: This parameter forces
167 <application>BIND</application> to look for configuration
168 files in <filename class='directory'>/etc</filename> instead of
169 <filename class='directory'>/usr/etc</filename>.</para>
170
171 <para><parameter>--enable-threads</parameter>: This parameter enables
172 multi-threading capability.</para>
173
174 <para><parameter>--with-libtool</parameter>: This parameter forces the
175 building of dynamic libraries and links the installed binaries to these
176 libraries.</para>
177
178 <para><parameter>--with-randomdev=/dev/urandom</parameter>: This parameter
179 specifes a non-blocking random device for use with digital signatures.</para>
180
181 <para><option>--enable-fetchlimit</option>: Use this option if you want
182 to be able to limit the the rate of recursive client queries. This may be
183 useful on servers which receive a large number of queries.</para>
184
185 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
186 href="../../xincludes/static-libraries.xml"/>
187
188 <para><command>cd doc; install ...</command>: These commands install
189 additional package documentation. Omit any or all of these commands if
190 desired.</para>
191 </sect2>
192
193 <sect2 role="configuration">
194 <title>Configuring BIND</title>
195
196 <sect3 id="bind-config">
197 <title>Config files</title>
198
199 <para><filename>named.conf</filename>,
200 <filename>root.hints</filename>,
201 <filename>127.0.0</filename>,
202 <filename>rndc.conf</filename> and
203 <filename>resolv.conf</filename></para>
204
205 <indexterm zone="bind bind-config">
206 <primary sortas="e-etc-named.conf">/etc/named.conf</primary>
207 </indexterm>
208
209 <indexterm zone="bind bind-config">
210 <primary sortas="e-etc-rndc.conf">/etc/rndc.conf</primary>
211 </indexterm>
212
213 <indexterm zone="bind bind-config">
214 <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
215 </indexterm>
216
217 <indexterm zone="bind bind-config">
218 <primary
219 sortas="e-etc-namedb-root.hints">/etc/namedb/root.hints</primary>
220 </indexterm>
221
222 <indexterm zone="bind bind-config">
223 <primary
224 sortas="e-etc-namedb-pz-127.0.0.0">/etc/namedb/pz/127.0.0.0</primary>
225 </indexterm>
226 </sect3>
227
228 <sect3>
229 <title>Configuration Information</title>
230
231 <para><application>BIND</application> will be configured to run in a
232 <command>chroot</command> jail as an unprivileged user (<systemitem
233 class="username">named</systemitem>). This configuration is more secure
234 in that a DNS compromise can only affect a few files in the <systemitem
235 class="username">named</systemitem> user's <envar>HOME</envar>
236 directory.</para>
237
238 <para>Create the unprivileged user and group <systemitem
239 class="username">named</systemitem>:</para>
240
241<screen role="root"><userinput>groupadd -g 20 named &amp;&amp;
242useradd -c "BIND Owner" -g named -s /bin/false -u 20 named &amp;&amp;
243install -d -m770 -o named -g named /srv/named</userinput></screen>
244
245 <para>Set up some files, directories and devices needed by
246 <application>BIND</application>:</para>
247
248<screen role="root"><userinput>cd /srv/named &amp;&amp;
249mkdir -p dev etc/namedb/{slave,pz} usr/lib/engines var/run/named &amp;&amp;
250mknod /srv/named/dev/null c 1 3 &amp;&amp;
251mknod /srv/named/dev/urandom c 1 9 &amp;&amp;
252chmod 666 /srv/named/dev/{null,urandom} &amp;&amp;
253cp /etc/localtime etc &amp;&amp;
254touch /srv/named/managed-keys.bind &amp;&amp;
255cp /usr/lib/engines/libgost.so usr/lib/engines &amp;&amp;
256[ $(uname -m) = x86_64 ] &amp;&amp; ln -sv lib usr/lib64</userinput></screen>
257
258 <para>The <filename>rndc.conf</filename> file contains information for
259 controlling <command>named</command> operations with the
260 <command>rndc</command> utility. Generate a key for use in the <filename>named.conf</filename> and <filename>rdnc.conf</filename> with the
261 <command>rndc-confgen</command> command:</para>
262
263<screen role="root"><userinput>rndc-confgen -r /dev/urandom -b 512 > /etc/rndc.conf &amp;&amp;
264sed '/conf/d;/^#/!d;s:^# ::' /etc/rndc.conf > /srv/named/etc/named.conf</userinput></screen>
265
266 <para>Complete the <filename>named.conf</filename> file from which
267 <command>named</command> will read the location of zone files, root
268 name servers and secure DNS keys:</para>
269
270<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt;&gt; /srv/named/etc/named.conf &lt;&lt; "EOF"
271<literal>options {
272 directory "/etc/namedb";
273 pid-file "/var/run/named.pid";
274 statistics-file "/var/run/named.stats";
275
276};
277zone "." {
278 type hint;
279 file "root.hints";
280};
281zone "0.0.127.in-addr.arpa" {
282 type master;
283 file "pz/127.0.0";
284};
285
286// Bind 9 now logs by default through syslog (except debug).
287// These are the default logging rules.
288
289logging {
290 category default { default_syslog; default_debug; };
291 category unmatched { null; };
292
293 channel default_syslog {
294 syslog daemon; // send to syslog's daemon
295 // facility
296 severity info; // only send priority info
297 // and higher
298 };
299
300 channel default_debug {
301 file "named.run"; // write to named.run in
302 // the working directory
303 // Note: stderr is used instead
304 // of "named.run"
305 // if the server is started
306 // with the '-f' option.
307 severity dynamic; // log at the server's
308 // current debug level
309 };
310
311 channel default_stderr {
312 stderr; // writes to stderr
313 severity info; // only send priority info
314 // and higher
315 };
316
317 channel null {
318 null; // toss anything sent to
319 // this channel
320 };
321};</literal>
322EOF</userinput></screen>
323
324 <para>Create a zone file with the following contents:</para>
325
326<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF"
327<literal>$TTL 3D
328@ IN SOA ns.local.domain. hostmaster.local.domain. (
329 1 ; Serial
330 8H ; Refresh
331 2H ; Retry
332 4W ; Expire
333 1D) ; Minimum TTL
334 NS ns.local.domain.
3351 PTR localhost.</literal>
336EOF</userinput></screen>
337
338 <para>Create the <filename>root.hints</filename> file with the following
339 commands:</para>
340
341 <note>
342 <para>Caution must be used to ensure there are no leading spaces in
343 this file.</para>
344 </note>
345
346<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/root.hints &lt;&lt; "EOF"
347<literal>. 6D IN NS A.ROOT-SERVERS.NET.
348. 6D IN NS B.ROOT-SERVERS.NET.
349. 6D IN NS C.ROOT-SERVERS.NET.
350. 6D IN NS D.ROOT-SERVERS.NET.
351. 6D IN NS E.ROOT-SERVERS.NET.
352. 6D IN NS F.ROOT-SERVERS.NET.
353. 6D IN NS G.ROOT-SERVERS.NET.
354. 6D IN NS H.ROOT-SERVERS.NET.
355. 6D IN NS I.ROOT-SERVERS.NET.
356. 6D IN NS J.ROOT-SERVERS.NET.
357. 6D IN NS K.ROOT-SERVERS.NET.
358. 6D IN NS L.ROOT-SERVERS.NET.
359. 6D IN NS M.ROOT-SERVERS.NET.
360A.ROOT-SERVERS.NET. 6D IN A 198.41.0.4
361B.ROOT-SERVERS.NET. 6D IN A 192.228.79.201
362C.ROOT-SERVERS.NET. 6D IN A 192.33.4.12
363D.ROOT-SERVERS.NET. 6D IN A 199.7.91.13
364E.ROOT-SERVERS.NET. 6D IN A 192.203.230.10
365F.ROOT-SERVERS.NET. 6D IN A 192.5.5.241
366G.ROOT-SERVERS.NET. 6D IN A 192.112.36.4
367H.ROOT-SERVERS.NET. 6D IN A 128.63.2.53
368I.ROOT-SERVERS.NET. 6D IN A 192.36.148.17
369J.ROOT-SERVERS.NET. 6D IN A 192.58.128.30
370K.ROOT-SERVERS.NET. 6D IN A 193.0.14.129
371L.ROOT-SERVERS.NET. 6D IN A 199.7.83.42
372M.ROOT-SERVERS.NET. 6D IN A 202.12.27.33</literal>
373EOF</userinput></screen>
374
375 <para>The <filename>root.hints</filename> file is a list of root name
376 servers. This file must be updated periodically with the
377 <command>dig</command> utility. A current copy of root.hints can be
378 obtained from <ulink url="ftp://rs.internic.net/domain/named.root" />.
379 For details, consult the "BIND 9 Administrator Reference Manual", included
380 in every source archive of BIND 9 distributed by ISC, in HTML and PDF
381 formats, also available at
382 <ulink url="ftp://ftp.isc.org/isc/bind9/cur/&bind-minor-version;/doc/arm/Bv9ARM.html">
383 BIND 9 Administrator Reference Manual</ulink>.</para>
384
385 <para>Create or modify <filename>resolv.conf</filename> to use the new
386 name server with the following commands:</para>
387
388 <note>
389 <para>Replace <replaceable>&lt;yourdomain.com&gt;</replaceable> with
390 your own valid domain name.</para>
391 </note>
392
393<screen role="root"><userinput>cp /etc/resolv.conf /etc/resolv.conf.bak &amp;&amp;
394cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
395<literal>search <replaceable>&lt;yourdomain.com&gt;</replaceable>
396nameserver 127.0.0.1</literal>
397EOF</userinput></screen>
398
399 <para>Set permissions on the <command>chroot</command> jail with the
400 following command:</para>
401
402<screen role="root"><userinput>chown -R named:named /srv/named</userinput></screen>
403
404 </sect3>
405
406 <sect3 id="bind-init">
407 <title>Boot Script</title>
408
409 <para>To start the DNS server at boot, install the
410 <filename>/etc/rc.d/init.d/bind</filename> init script included
411 in the <xref linkend="bootscripts"/> package.</para>
412
413 <indexterm zone="bind bind-init">
414 <primary sortas="f-bind">bind</primary>
415 </indexterm>
416
417<screen role="root"><userinput>make install-bind</userinput></screen>
418
419 <para>Now start <application>BIND</application> with
420 the new boot script:</para>
421
422<screen role="root"><userinput>/etc/rc.d/init.d/bind start</userinput></screen>
423
424 </sect3>
425
426 <sect3>
427 <title>Testing BIND</title>
428
429 <para>Test out the new <application>BIND</application> 9 installation.
430 First query the local host address with <command>dig</command>:</para>
431
432<screen><userinput>dig -x 127.0.0.1</userinput></screen>
433
434 <para>Now try an external name lookup, taking note of the speed
435 difference in repeated lookups due to the caching. Run the
436 <command>dig</command> command twice on the same address:</para>
437
438<screen><userinput>dig www.&lfs-domainname; &amp;&amp;
439dig www.&lfs-domainname;</userinput></screen>
440
441 <para>You can see almost instantaneous results with the named caching
442 lookups. Consult the <application>BIND</application> Administrator
443 Reference Manual located at <filename>doc/arm/Bv9ARM.html</filename>
444 in the package source tree, for further configuration options.</para>
445
446 </sect3>
447
448 </sect2>
449
450 <sect2 role="content">
451 <title>Contents</title>
452
453 <segmentedlist>
454 <segtitle>Installed Programs</segtitle>
455 <segtitle>Installed Libraries</segtitle>
456 <segtitle>Installed Directories</segtitle>
457
458 <seglistitem>
459
460 <seg>arpaname, bind9-config hardlinked to isc-config.sh, ddns-confgen,
461 delv, dig, dnssec-checkds, dnssec-coverage, dnssec-dsfromkey,
462 dnssec-importkey, dnssec-keyfromlabel, dnssec-keygen, dnssec-revoke,
463 dnssec-settime, dnssec-signzone, dnssec-verify, genrandom, host,
464 isc-hmac-fixup, lwresd hardlinked to named, named-checkconf,
465 named-checkzone, named-compilezone (symlink), named-journalprint,
466 named-rrchecker, nsec3hash, nslookup, nsupdate, rndc, rndc-confgen,
467 and tsig-keygen (symlink)</seg>
468
469 <seg>libbind9.so, libdns.so, libirs.so, libisc.so, libisccc.so,
470 libisccfg.so, and liblwres.so</seg>
471
472 <seg>/usr/include/{bind9,dns,dst,irs,isc,isccc,isccfg,lwres,pk11,pkcs11},
473 /usr/share/doc/bind-&bind-version; and /srv/named</seg>
474 </seglistitem>
475 </segmentedlist>
476
477 <variablelist>
478 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
479 <?dbfo list-presentation="list"?>
480 <?dbhtml list-presentation="table"?>
481
482 <varlistentry id="arpaname">
483 <term><command>arpaname</command></term>
484 <listitem>
485 <para>
486 translate IP addresses to the corresponding ARPA names.
487 </para>
488 <indexterm zone="bind arpaname">
489 <primary sortas="b-arpaname">arpaname</primary>
490 </indexterm>
491 </listitem>
492 </varlistentry>
493
494 <varlistentry id="bind9-config">
495 <term><command>bind9-config</command></term>
496 <listitem>
497 <para>
498 hardlinked to <command>isc-config.sh</command>.
499 </para>
500 <indexterm zone="bind bind9-config">
501 <primary sortas="b-bind9-config">bind9-config</primary>
502 </indexterm>
503 </listitem>
504 </varlistentry>
505
506 <varlistentry id="ddns-confgen">
507 <term><command>ddns-confgen</command></term>
508 <listitem>
509 <para>
510 generates a key for use by nsupdate and named.
511 </para>
512 <indexterm zone="bind ddns-confgen">
513 <primary sortas="b-ddns-confgen">ddns-confgen</primary>
514 </indexterm>
515 </listitem>
516 </varlistentry>
517
518 <varlistentry id="delv">
519 <term><command>delv</command></term>
520 <listitem>
521 <para>
522 is a new debugging tool that is a successor to
523 <command>dig</command>.
524 </para>
525 <indexterm zone="bind delv">
526 <primary sortas="b-delv">delv</primary>
527 </indexterm>
528 </listitem>
529 </varlistentry>
530
531 <varlistentry id="dig">
532 <term><command>dig</command></term>
533 <listitem>
534 <para>interrogates DNS servers.</para>
535 <indexterm zone="bind dig">
536 <primary sortas="b-dig">dig</primary>
537 </indexterm>
538 </listitem>
539 </varlistentry>
540
541 <varlistentry id="dnssec-checkds">
542 <term><command>dnssec-checkds</command></term>
543 <listitem>
544 <para>
545 is a DNSSEC delegation consistency checking tool.
546 </para>
547 <indexterm zone="bind dnssec-checkds">
548 <primary sortas="b-dnssec-checkds">dnssec-checkds</primary>
549 </indexterm>
550 </listitem>
551 </varlistentry>
552
553 <varlistentry id="dnssec-coverage">
554 <term><command>dnssec-coverage</command></term>
555 <listitem>
556 <para>
557 verifies that the DNSSEC keys for a given zone or a set of zones
558 have timing metadata set properly to ensure no future lapses
559 in DNSSEC coverage.
560 </para>
561 <indexterm zone="bind dnssec-coverage">
562 <primary sortas="b-dnssec-coverage">dnssec-coverage</primary>
563 </indexterm>
564 </listitem>
565 </varlistentry>
566
567 <varlistentry id="dnssec-dsfromkey">
568 <term><command>dnssec-dsfromkey</command></term>
569 <listitem>
570 <para>
571 outputs the Delegation Signer (DS) resource record (RR).
572 </para>
573 <indexterm zone="bind dnssec-dsfromkey">
574 <primary sortas="b-dnssec-dsfromkey">dnssec-dsfromkey</primary>
575 </indexterm>
576 </listitem>
577 </varlistentry>
578
579 <varlistentry id="dnssec-importkey">
580 <term><command>dnssec-importkey</command></term>
581 <listitem>
582 <para>
583 reads a public DNSKEY record and generates a pair of
584 .key/.private files.
585 </para>
586 <indexterm zone="bind dnssec-importkey">
587 <primary sortas="b-dnssec-importkey">dnssec-importkey</primary>
588 </indexterm>
589 </listitem>
590 </varlistentry>
591
592 <varlistentry id="dnssec-keyfromlabel">
593 <term><command>dnssec-keyfromlabel</command></term>
594 <listitem>
595 <para>
596 gets keys with the given label from a crypto hardware and builds
597 key files for DNSSEC.
598 </para>
599 <indexterm zone="bind dnssec-keyfromlabel">
600 <primary sortas="b-dnssec-keyfromlabel">dnssec-keyfromlabel</primary>
601 </indexterm>
602 </listitem>
603 </varlistentry>
604
605 <varlistentry id="dnssec-keygen">
606 <term><command>dnssec-keygen</command></term>
607 <listitem>
608 <para>is a key generator for secure DNS.</para>
609 <indexterm zone="bind dnssec-keygen">
610 <primary sortas="b-dnssec-keygen">dnssec-keygen</primary>
611 </indexterm>
612 </listitem>
613 </varlistentry>
614
615 <varlistentry id="dnssec-revoke">
616 <term><command>dnssec-revoke</command></term>
617 <listitem>
618 <para>
619 Set the REVOKED bit on a DNSSEC key.
620 </para>
621 <indexterm zone="bind dnssec-revoke">
622 <primary sortas="b-dnssec-revoke">dnssec-revoke</primary>
623 </indexterm>
624 </listitem>
625 </varlistentry>
626
627 <varlistentry id="dnssec-settime">
628 <term><command>dnssec-settime</command></term>
629 <listitem>
630 <para>
631 set the key timing metadata for a DNSSEC key.
632 </para>
633 <indexterm zone="bind dnssec-settime">
634 <primary sortas="b-dnssec-settime">dnssec-settime</primary>
635 </indexterm>
636 </listitem>
637 </varlistentry>
638
639 <varlistentry id="dnssec-signzone">
640 <term><command>dnssec-signzone</command></term>
641 <listitem>
642 <para>generates signed versions of zone files.</para>
643 <indexterm zone="bind dnssec-signzone">
644 <primary sortas="b-dnssec-signzone">dnssec-signzone</primary>
645 </indexterm>
646 </listitem>
647 </varlistentry>
648
649 <varlistentry id="dnssec-verify">
650 <term><command>dnssec-verify</command></term>
651 <listitem>
652 <para>
653 verifies that a zone is fully signed for each algorithm found
654 in the DNSKEY RRset for the zone, and that the NSEC / NSEC3
655 chains are complete.
656 </para>
657 <indexterm zone="bind dnssec-verify">
658 <primary sortas="b-dnssec-verify">dnssec-verify</primary>
659 </indexterm>
660 </listitem>
661 </varlistentry>
662
663 <varlistentry id="genrandom">
664 <term><command>genrandom</command></term>
665 <listitem>
666 <para>
667 generate a file containing random data.
668 </para>
669 <indexterm zone="bind genrandom">
670 <primary sortas="b-genrandom">genrandom</primary>
671 </indexterm>
672 </listitem>
673 </varlistentry>
674
675 <varlistentry id="host">
676 <term><command>host</command></term>
677 <listitem>
678 <para>is a utility for DNS lookups.</para>
679 <indexterm zone="bind host">
680 <primary sortas="b-host">host</primary>
681 </indexterm>
682 </listitem>
683 </varlistentry>
684
685 <varlistentry id="isc-config.sh">
686 <term><command>isc-config.sh</command></term>
687 <listitem>
688 <para>
689 prints information related to the installed version of ISC BIND.
690 </para>
691 <indexterm zone="bind isc-config.sh">
692 <primary sortas="b-isc-config.sh">isc-config.sh</primary>
693 </indexterm>
694 </listitem>
695 </varlistentry>
696
697 <varlistentry id="isc-hmac-fixup">
698 <term><command>isc-hmac-fixup</command></term>
699 <listitem>
700 <para>
701 fixes HMAC keys generated by older versions of BIND.
702 </para>
703 <indexterm zone="bind isc-hmac-fixup">
704 <primary sortas="b-isc-hmac-fixup">isc-hmac-fixup</primary>
705 </indexterm>
706 </listitem>
707 </varlistentry>
708
709 <varlistentry id="lwresd">
710 <term><command>lwresd</command></term>
711 <listitem>
712 <para>is a caching-only name server for local process use.</para>
713 <indexterm zone="bind lwresd">
714 <primary sortas="b-lwresd">lwresd</primary>
715 </indexterm>
716 </listitem>
717 </varlistentry>
718
719 <varlistentry id="named">
720 <term><command>named</command></term>
721 <listitem>
722 <para>is the name server daemon.</para>
723 <indexterm zone="bind named">
724 <primary sortas="b-named">named</primary>
725 </indexterm>
726 </listitem>
727 </varlistentry>
728
729 <varlistentry id="named-checkconf">
730 <term><command>named-checkconf</command></term>
731 <listitem>
732 <para>checks the syntax of <filename>named.conf</filename>
733 files.</para>
734 <indexterm zone="bind named-checkconf">
735 <primary sortas="b-named-checkconf">named-checkconf</primary>
736 </indexterm>
737 </listitem>
738 </varlistentry>
739
740 <varlistentry id="named-checkzone">
741 <term><command>named-checkzone</command></term>
742 <listitem>
743 <para>checks zone file validity.</para>
744 <indexterm zone="bind named-checkzone">
745 <primary sortas="b-named-checkzone">named-checkzone</primary>
746 </indexterm>
747 </listitem>
748 </varlistentry>
749
750 <varlistentry id="named-compilezone">
751 <term><command>named-compilezone</command></term>
752 <listitem>
753 <para>
754 is similar to <command>named-checkzone</command>, but it always
755 dumps the zone contents to a specified file in a specified format.
756 </para>
757 <indexterm zone="bind named-compilezone">
758 <primary sortas="b-named-compilezone">named-compilezone</primary>
759 </indexterm>
760 </listitem>
761 </varlistentry>
762
763 <varlistentry id="named-journalprint">
764 <term><command>named-journalprint</command></term>
765 <listitem>
766 <para>
767 print zone journal in human-readable form.
768 </para>
769 <indexterm zone="bind named-journalprint">
770 <primary sortas="b-named-journalprint">named-journalprint</primary>
771 </indexterm>
772 </listitem>
773 </varlistentry>
774
775 <varlistentry id="named-rrchecker">
776 <term><command>named-rrchecker</command></term>
777 <listitem>
778 <para>
779 read a individual DNS resource record from standard input and
780 checks if it is syntactically correct.
781 </para>
782 <indexterm zone="bind named-rrchecker">
783 <primary sortas="b-named-rrchecker">named-rrchecker</primary>
784 </indexterm>
785 </listitem>
786 </varlistentry>
787
788 <varlistentry id="nsec3hash">
789 <term><command>nsec3hash</command></term>
790 <listitem>
791 <para>
792 generates an NSEC3 hash based on a set of NSEC3 parameters.
793 </para>
794 <indexterm zone="bind nsec3hash">
795 <primary sortas="b-nsec3hash">nsec3hash</primary>
796 </indexterm>
797 </listitem>
798 </varlistentry>
799
800 <varlistentry id="nslookup">
801 <term><command>nslookup</command></term>
802 <listitem>
803 <para>is a program used to query Internet domain nameservers.</para>
804 <indexterm zone="bind nslookup">
805 <primary sortas="b-nslookup">nslookup</primary>
806 </indexterm>
807 </listitem>
808 </varlistentry>
809
810 <varlistentry id="nsupdate">
811 <term><command>nsupdate</command></term>
812 <listitem>
813 <para>is used to submit DNS update requests.</para>
814 <indexterm zone="bind nsupdate">
815 <primary sortas="b-nsupdate">nsupdate</primary>
816 </indexterm>
817 </listitem>
818 </varlistentry>
819
820 <varlistentry id="rndc">
821 <term><command>rndc</command></term>
822 <listitem>
823 <para>controls the operation of <application>BIND</application>.</para>
824 <indexterm zone="bind rndc">
825 <primary sortas="b-rndc">rndc</primary>
826 </indexterm>
827 </listitem>
828 </varlistentry>
829
830 <varlistentry id="rndc-confgen">
831 <term><command>rndc-confgen</command></term>
832 <listitem>
833 <para>generates <filename>rndc.conf</filename> files.</para>
834 <indexterm zone="bind rndc-confgen">
835 <primary sortas="b-rndc-confgen">rndc-confgen</primary>
836 </indexterm>
837 </listitem>
838 </varlistentry>
839
840 <varlistentry id="tsig-keygen">
841 <term><command>tsig-keygen</command></term>
842 <listitem>
843 <para>
844 is a symlink to <command>ddns-confgen</command>.
845 </para>
846 <indexterm zone="bind tsig-keygen">
847 <primary sortas="b-tsig-keygen">tsig-keygen</primary>
848 </indexterm>
849 </listitem>
850 </varlistentry>
851
852 </variablelist>
853
854 </sect2>
855
856</sect1>
Note: See TracBrowser for help on using the repository browser.