source: server/major/bind.xml@ 90d904f

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 90d904f was efe9371, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Update to bind-9.10.0

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

  • Property mode set to 100644
File size: 22.4 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
9 "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
10 <!ENTITY bind-md5sum "53e9311d006a5b615d400478965189b8">
11 <!ENTITY bind-size "8.0 MB">
12 <!ENTITY bind-buildsize "179 MB (additional 35 MB to run the test suite)">
13 <!ENTITY bind-time "1.6 SBU (additional 17 minutes, processor
14 independent, to run the complete test suite)">
15]>
16
17<sect1 id="bind" xreflabel="BIND-&bind-version;">
18 <?dbhtml filename="bind.html"?>
19
20 <sect1info>
21 <othername>$LastChangedBy$</othername>
22 <date>$Date$</date>
23 </sect1info>
24
25 <title>BIND-&bind-version;</title>
26
27 <indexterm zone="bind">
28 <primary sortas="a-BIND">BIND</primary>
29 </indexterm>
30
31 <sect2 role="package">
32 <title>Introduction to BIND</title>
33
34 <para>The <application>BIND</application> package provides a DNS server
35 and client utilities. If you are only interested in the utilities, refer
36 to the <xref linkend="bind-utils"/>.</para>
37
38 &lfs75_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&bind-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&bind-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &bind-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &bind-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &bind-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &bind-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
63 <itemizedlist spacing='compact'>
64 <listitem>
65 <para>Optional patch (if net-tools is not installed):
66 <ulink
67 url="&patch-root;/bind-&bind-version;-use_iproute2-1.patch"/></para>
68 </listitem>
69 </itemizedlist>
70
71 <bridgehead renderas="sect3">BIND Dependencies</bridgehead>
72
73 <bridgehead renderas="sect4">Optional</bridgehead>
74 <para role="optional">
75 <xref linkend="libcap-pam"/>,
76 <xref linkend="libxml2"/>,
77 <xref linkend="mitkrb"/>, and
78 <xref linkend="openssl"/>
79 </para>
80
81 <bridgehead renderas="sect4">Optional database backends</bridgehead>
82 <para role="optional">
83 <xref linkend="postgresql"/>,
84 <xref linkend="mariadb"/> or <ulink url="http://www.mysql.com/">MySQL</ulink>,
85 <xref linkend="db"/>,
86 <xref linkend="openldap"/>, and
87 <xref linkend="unixodbc"/>
88 </para>
89
90 <bridgehead renderas="sect4">Optional (to run the test suite)</bridgehead>
91 <para role="optional">
92 <xref linkend="perl-net-dns"/> and
93 <xref linkend="net-tools"/> (you may omit net-tools by using the optional
94 patch to utilize iproute2, but the IPv6 tests will fail)
95 </para>
96
97 <bridgehead renderas="sect4">Optional (to rebuild the documentation)</bridgehead>
98 <para role="optional">
99 <xref linkend="doxygen"/>,
100 <xref linkend="texlive"/>, and
101 <xref linkend="libxslt"/>
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/bind"/></para>
106
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of BIND</title>
111
112 <para>If you have chosen not to install net-tools, apply the iproute2
113 patch with the following command:</para>
114
115<screen><userinput>patch -Np1 -i ../bind-&bind-version;-use_iproute2-1.patch</userinput></screen>
116
117 <para>Install <application>BIND</application> by running the
118 following commands:</para>
119
120<screen><userinput>sed -i "s/xfer //" bin/tests/system/conf.sh.in &amp;&amp;
121./configure --prefix=/usr \
122 --sysconfdir=/etc \
123 --localstatedir=/var \
124 --mandir=/usr/share/man \
125 --enable-threads \
126 --with-libtool \
127 --disable-static \
128 --with-randomdev=/dev/urandom &amp;&amp;
129make</userinput></screen>
130
131 <para>Issue the following commands to run the complete suite of tests.
132 First, as the <systemitem class="username">root</systemitem> user, set up
133 some test interfaces:</para>
134
135<screen role="root"><userinput>bin/tests/system/ifconfig.sh up</userinput></screen>
136
137 <para>Now run the test suite as an unprivileged user:</para>
138
139<screen><userinput>make check 2&gt;&amp;1 | tee check.log</userinput></screen>
140
141 <para>Again as <systemitem class="username">root</systemitem>, clean up the
142 test interfaces:</para>
143
144<screen role="root"><userinput>bin/tests/system/ifconfig.sh down</userinput></screen>
145
146 <para>Issue the following command to check that all 185 tests
147 ran successfully:</para>
148
149<screen><userinput>grep "R:PASS" check.log | wc -l</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;
155chmod -v 0755 /usr/lib/lib{bind9,dns,isc{,cc,cfg},lwres}.so &amp;&amp;
156
157install -v -m755 -d /usr/share/doc/bind-&bind-version;/{arm,misc} &amp;&amp;
158install -v -m644 doc/arm/*.html \
159 /usr/share/doc/bind-&bind-version;/arm &amp;&amp;
160install -v -m644 \
161 doc/misc/{dnssec,ipv6,migrat*,options,rfc-compliance,roadmap,sdb} \
162 /usr/share/doc/bind-&bind-version;/misc</userinput></screen>
163 </sect2>
164
165 <sect2 role="commands">
166 <title>Command Explanations</title>
167
168 <para><command>sed ... bin/tests/system/conf.sh.in</command>:
169 This command removes a test that fails because it depends on an
170 out of date version of the Perl module Net::DNS.</para>
171
172 <para><parameter>--sysconfdir=/etc</parameter>: This parameter forces
173 <application>BIND</application> to look for configuration
174 files in <filename class='directory'>/etc</filename> instead of
175 <filename class='directory'>/usr/etc</filename>.</para>
176
177 <para><parameter>--enable-threads</parameter>: This parameter enables
178 multi-threading capability.</para>
179
180 <para><parameter>--with-libtool</parameter>: This parameter forces the
181 building of dynamic libraries and links the installed binaries to these
182 libraries.</para>
183
184 <para><parameter>--with-randomdev=/dev/urandom</parameter>: This parameter
185 specifes a non-blocking random device for use with digital signatures.</para>
186
187 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
188 href="../../xincludes/static-libraries.xml"/>
189
190 <para><command>chmod 0755
191 /usr/lib/{lib{bind9,dns,isc{,cc,cfg},lwres}.so</command>:
192 Enable the execute bit to prevent a warning when using
193 <command>ldd</command> to check library dependencies.</para>
194
195 <para><command>cd doc; install ...</command>: These commands install
196 additional package documentation. Omit any or all of these commands if
197 desired.</para>
198 </sect2>
199
200 <sect2 role="configuration">
201 <title>Configuring BIND</title>
202
203 <sect3 id="bind-config">
204 <title>Config files</title>
205
206 <para><filename>named.conf</filename>,
207 <filename>root.hints</filename>,
208 <filename>127.0.0</filename>,
209 <filename>rndc.conf</filename> and
210 <filename>resolv.conf</filename></para>
211
212 <indexterm zone="bind bind-config">
213 <primary sortas="e-etc-named.conf">/etc/named.conf</primary>
214 </indexterm>
215
216 <indexterm zone="bind bind-config">
217 <primary sortas="e-etc-rndc.conf">/etc/rndc.conf</primary>
218 </indexterm>
219
220 <indexterm zone="bind bind-config">
221 <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
222 </indexterm>
223
224 <indexterm zone="bind bind-config">
225 <primary
226 sortas="e-etc-namedb-root.hints">/etc/namedb/root.hints</primary>
227 </indexterm>
228
229 <indexterm zone="bind bind-config">
230 <primary
231 sortas="e-etc-namedb-pz-127.0.0.0">/etc/namedb/pz/127.0.0.0</primary>
232 </indexterm>
233 </sect3>
234
235 <sect3>
236 <title>Configuration Information</title>
237
238 <para><application>BIND</application> will be configured to run in a
239 <command>chroot</command> jail as an unprivileged user (<systemitem
240 class="username">named</systemitem>). This configuration is more secure
241 in that a DNS compromise can only affect a few files in the <systemitem
242 class="username">named</systemitem> user's <envar>HOME</envar>
243 directory.</para>
244
245 <para>Create the unprivileged user and group <systemitem
246 class="username">named</systemitem>:</para>
247
248<screen role="root"><userinput>groupadd -g 20 named &amp;&amp;
249useradd -c "BIND Owner" -g named -s /bin/false -u 20 named &amp;&amp;
250install -d -m770 -o named -g named /srv/named</userinput></screen>
251
252 <para>Set up some files, directories and devices needed by
253 <application>BIND</application>:</para>
254
255<screen role="root"><userinput>cd /srv/named &amp;&amp;
256mkdir -p dev etc/namedb/{slave,pz} usr/lib/engines var/run/named &amp;&amp;
257mknod /srv/named/dev/null c 1 3 &amp;&amp;
258mknod /srv/named/dev/random c 1 8 &amp;&amp;
259chmod 666 /srv/named/dev/{null,random} &amp;&amp;
260cp /etc/localtime etc &amp;&amp;
261touch /srv/named/managed-keys.bind &amp;&amp;
262cp /usr/lib/engines/libgost.so usr/lib/engines &amp;&amp;
263[ $(uname -m) = x86_64 ] &amp;&amp; ln -sv lib usr/lib64</userinput></screen>
264
265 <para>The <filename>rndc.conf</filename> file contains information for
266 controlling <command>named</command> operations with the
267 <command>rndc</command> utility. Generate a key for use in the <filename>named.conf</filename> and <filename>rdnc.conf</filename> with the
268 <command>rndc-confgen</command> command:</para>
269
270<screen role="root"><userinput>rndc-confgen -r /dev/urandom -b 512 > /etc/rndc.conf &amp;&amp;
271sed '/conf/d;/^#/!d;s:^# ::' /etc/rndc.conf > /srv/named/etc/named.conf</userinput></screen>
272
273 <para>Complete the <filename>named.conf</filename> file from which
274 <command>named</command> will read the location of zone files, root
275 name servers and secure DNS keys:</para>
276
277<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt;&gt; /srv/named/etc/named.conf &lt;&lt; "EOF"
278<literal>options {
279 directory "/etc/namedb";
280 pid-file "/var/run/named.pid";
281 statistics-file "/var/run/named.stats";
282
283};
284zone "." {
285 type hint;
286 file "root.hints";
287};
288zone "0.0.127.in-addr.arpa" {
289 type master;
290 file "pz/127.0.0";
291};
292
293// Bind 9 now logs by default through syslog (except debug).
294// These are the default logging rules.
295
296logging {
297 category default { default_syslog; default_debug; };
298 category unmatched { null; };
299
300 channel default_syslog {
301 syslog daemon; // send to syslog's daemon
302 // facility
303 severity info; // only send priority info
304 // and higher
305 };
306
307 channel default_debug {
308 file "named.run"; // write to named.run in
309 // the working directory
310 // Note: stderr is used instead
311 // of "named.run"
312 // if the server is started
313 // with the '-f' option.
314 severity dynamic; // log at the server's
315 // current debug level
316 };
317
318 channel default_stderr {
319 stderr; // writes to stderr
320 severity info; // only send priority info
321 // and higher
322 };
323
324 channel null {
325 null; // toss anything sent to
326 // this channel
327 };
328};</literal>
329EOF</userinput></screen>
330
331 <para>Create a zone file with the following contents:</para>
332
333<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF"
334<literal>$TTL 3D
335@ IN SOA ns.local.domain. hostmaster.local.domain. (
336 1 ; Serial
337 8H ; Refresh
338 2H ; Retry
339 4W ; Expire
340 1D) ; Minimum TTL
341 NS ns.local.domain.
3421 PTR localhost.</literal>
343EOF</userinput></screen>
344
345 <para>Create the <filename>root.hints</filename> file with the following
346 commands:</para>
347
348 <note>
349 <para>Caution must be used to ensure there are no leading spaces in
350 this file.</para>
351 </note>
352
353<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/root.hints &lt;&lt; "EOF"
354<literal>. 6D IN NS A.ROOT-SERVERS.NET.
355. 6D IN NS B.ROOT-SERVERS.NET.
356. 6D IN NS C.ROOT-SERVERS.NET.
357. 6D IN NS D.ROOT-SERVERS.NET.
358. 6D IN NS E.ROOT-SERVERS.NET.
359. 6D IN NS F.ROOT-SERVERS.NET.
360. 6D IN NS G.ROOT-SERVERS.NET.
361. 6D IN NS H.ROOT-SERVERS.NET.
362. 6D IN NS I.ROOT-SERVERS.NET.
363. 6D IN NS J.ROOT-SERVERS.NET.
364. 6D IN NS K.ROOT-SERVERS.NET.
365. 6D IN NS L.ROOT-SERVERS.NET.
366. 6D IN NS M.ROOT-SERVERS.NET.
367A.ROOT-SERVERS.NET. 6D IN A 198.41.0.4
368B.ROOT-SERVERS.NET. 6D IN A 192.228.79.201
369C.ROOT-SERVERS.NET. 6D IN A 192.33.4.12
370D.ROOT-SERVERS.NET. 6D IN A 199.7.91.13
371E.ROOT-SERVERS.NET. 6D IN A 192.203.230.10
372F.ROOT-SERVERS.NET. 6D IN A 192.5.5.241
373G.ROOT-SERVERS.NET. 6D IN A 192.112.36.4
374H.ROOT-SERVERS.NET. 6D IN A 128.63.2.53
375I.ROOT-SERVERS.NET. 6D IN A 192.36.148.17
376J.ROOT-SERVERS.NET. 6D IN A 192.58.128.30
377K.ROOT-SERVERS.NET. 6D IN A 193.0.14.129
378L.ROOT-SERVERS.NET. 6D IN A 199.7.83.42
379M.ROOT-SERVERS.NET. 6D IN A 202.12.27.33</literal>
380EOF</userinput></screen>
381
382 <para>The <filename>root.hints</filename> file is a list of root
383 name servers. This file must be updated periodically with the
384 <command>dig</command> utility. A current copy of root.hints can be
385 obtained from <ulink url="ftp://rs.internic.net/domain/named.root" />.
386 Consult the <ulink url="http://www.bind9.net/Bv9ARM.html">BIND 9
387 Administrator Reference Manual</ulink> for details.</para>
388
389 <para>Create or modify <filename>resolv.conf</filename> to use the new
390 name server with the following commands:</para>
391
392 <note>
393 <para>Replace <replaceable>&lt;yourdomain.com&gt;</replaceable> with
394 your own valid domain name.</para>
395 </note>
396
397<screen role="root"><userinput>cp /etc/resolv.conf /etc/resolv.conf.bak &amp;&amp;
398cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
399<literal>search <replaceable>&lt;yourdomain.com&gt;</replaceable>
400nameserver 127.0.0.1</literal>
401EOF</userinput></screen>
402
403 <para>Set permissions on the <command>chroot</command> jail with the
404 following command:</para>
405
406<screen role="root"><userinput>chown -R named:named /srv/named</userinput></screen>
407
408 </sect3>
409
410 <sect3 id="bind-init">
411 <title>Boot Script</title>
412
413 <para>To start the DNS server at boot, install the
414 <filename>/etc/rc.d/init.d/bind</filename> init script included
415 in the <xref linkend="bootscripts"/> package.</para>
416
417 <indexterm zone="bind bind-init">
418 <primary sortas="f-bind">bind</primary>
419 </indexterm>
420
421<screen role="root"><userinput>make install-bind</userinput></screen>
422
423 <para>Now start <application>BIND</application> with
424 the new boot script:</para>
425
426<screen role="root"><userinput>/etc/rc.d/init.d/bind start</userinput></screen>
427
428 </sect3>
429
430 <sect3>
431 <title>Testing BIND</title>
432
433 <para>Test out the new <application>BIND</application> 9 installation.
434 First query the local host address with <command>dig</command>:</para>
435
436<screen><userinput>dig -x 127.0.0.1</userinput></screen>
437
438 <para>Now try an external name lookup, taking note of the speed
439 difference in repeated lookups due to the caching. Run the
440 <command>dig</command> command twice on the same address:</para>
441
442<screen><userinput>dig www.&lfs-domainname; &amp;&amp;
443dig www.&lfs-domainname;</userinput></screen>
444
445 <para>You can see almost instantaneous results with the named caching
446 lookups. Consult the <application>BIND</application> Administrator
447 Reference Manual located at <filename>doc/arm/Bv9ARM.html</filename>
448 in the package source tree, for further configuration options.</para>
449
450 </sect3>
451
452 </sect2>
453
454 <sect2 role="content">
455 <title>Contents</title>
456
457 <segmentedlist>
458 <segtitle>Installed Programs</segtitle>
459 <segtitle>Installed Libraries</segtitle>
460 <segtitle>Installed Directories</segtitle>
461
462 <seglistitem>
463
464 <seg>arpaname, bind9-config, ddns-confgen, delv, dig, dnssec-checkds,
465 dnssec-coverage, dnssec-dsfromkey, dnssec-importkey,
466 dnssec-keyfromlabel, dnssec-keygen, dnssec-revoke, dnssec-settime,
467 dnssec-signzone, dnssec-verify, genrandom, host, isc-hmac-fixup,
468 lwresd, named, named-checkconf, named-checkzone, named-compilezone,
469 named-journalprint, named-rrchecker, nsec3hash, nslookup, nsupdate,
470 rndc, and rndc-confgen</seg>
471
472 <seg>libbind9.so, libdns.so, libirs.so, libisc.so, libisccc.so,
473 libisccfg.so, and liblwres.so</seg>
474
475 <seg>/srv/named, /usr/include/bind9, /usr/include/dns, /usr/include/dst,
476 /usr/include/isc, /usr/include/isccc, /usr/include/isccfg,
477 /usr/include/lwres, /usr/include/pk11, /usr/include/pkcs11,
478 and /usr/share/doc/bind-&bind-version;</seg>
479 </seglistitem>
480 </segmentedlist>
481
482 <variablelist>
483 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
484 <?dbfo list-presentation="list"?>
485 <?dbhtml list-presentation="table"?>
486
487 <varlistentry id="dig">
488 <term><command>dig</command></term>
489 <listitem>
490 <para>interrogates DNS servers.</para>
491 <indexterm zone="bind dig">
492 <primary sortas="b-dig">dig</primary>
493 </indexterm>
494 </listitem>
495 </varlistentry>
496
497 <varlistentry id="dnssec-keygen">
498 <term><command>dnssec-keygen</command></term>
499 <listitem>
500 <para>is a key generator for secure DNS.</para>
501 <indexterm zone="bind dnssec-keygen">
502 <primary sortas="b-dnssec-keygen">dnssec-keygen</primary>
503 </indexterm>
504 </listitem>
505 </varlistentry>
506
507 <varlistentry id="dnssec-signzone">
508 <term><command>dnssec-signzone</command></term>
509 <listitem>
510 <para>generates signed versions of zone files.</para>
511 <indexterm zone="bind dnssec-signzone">
512 <primary sortas="b-dnssec-signzone">dnssec-signzone</primary>
513 </indexterm>
514 </listitem>
515 </varlistentry>
516
517 <varlistentry id="host">
518 <term><command>host</command></term>
519 <listitem>
520 <para>is a utility for DNS lookups.</para>
521 <indexterm zone="bind host">
522 <primary sortas="b-host">host</primary>
523 </indexterm>
524 </listitem>
525 </varlistentry>
526
527 <varlistentry id="lwresd">
528 <term><command>lwresd</command></term>
529 <listitem>
530 <para>is a caching-only name server for local process use.</para>
531 <indexterm zone="bind lwresd">
532 <primary sortas="b-lwresd">lwresd</primary>
533 </indexterm>
534 </listitem>
535 </varlistentry>
536
537 <varlistentry id="named">
538 <term><command>named</command></term>
539 <listitem>
540 <para>is the name server daemon.</para>
541 <indexterm zone="bind named">
542 <primary sortas="b-named">named</primary>
543 </indexterm>
544 </listitem>
545 </varlistentry>
546
547 <varlistentry id="named-checkconf">
548 <term><command>named-checkconf</command></term>
549 <listitem>
550 <para>checks the syntax of <filename>named.conf</filename>
551 files.</para>
552 <indexterm zone="bind named-checkconf">
553 <primary sortas="b-named-checkconf">named-checkconf</primary>
554 </indexterm>
555 </listitem>
556 </varlistentry>
557
558 <varlistentry id="named-checkzone">
559 <term><command>named-checkzone</command></term>
560 <listitem>
561 <para>checks zone file validity.</para>
562 <indexterm zone="bind named-checkzone">
563 <primary sortas="b-named-checkzone">named-checkzone</primary>
564 </indexterm>
565 </listitem>
566 </varlistentry>
567
568 <varlistentry id="nslookup">
569 <term><command>nslookup</command></term>
570 <listitem>
571 <para>is a program used to query Internet domain nameservers.</para>
572 <indexterm zone="bind nslookup">
573 <primary sortas="b-nslookup">nslookup</primary>
574 </indexterm>
575 </listitem>
576 </varlistentry>
577
578 <varlistentry id="nsupdate">
579 <term><command>nsupdate</command></term>
580 <listitem>
581 <para>is used to submit DNS update requests.</para>
582 <indexterm zone="bind nsupdate">
583 <primary sortas="b-nsupdate">nsupdate</primary>
584 </indexterm>
585 </listitem>
586 </varlistentry>
587
588 <varlistentry id="rndc">
589 <term><command>rndc</command></term>
590 <listitem>
591 <para>controls the operation of <application>BIND</application>.</para>
592 <indexterm zone="bind rndc">
593 <primary sortas="b-rndc">rndc</primary>
594 </indexterm>
595 </listitem>
596 </varlistentry>
597
598 <varlistentry id="rndc-confgen">
599 <term><command>rndc-confgen</command></term>
600 <listitem>
601 <para>generates <filename>rndc.conf</filename> files.</para>
602 <indexterm zone="bind rndc-confgen">
603 <primary sortas="b-rndc-confgen">rndc-confgen</primary>
604 </indexterm>
605 </listitem>
606 </varlistentry>
607
608 </variablelist>
609
610 </sect2>
611
612</sect1>
Note: See TracBrowser for help on using the repository browser.