source: server/major/bind.xml@ bb8004d

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.7 7.8 7.9 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 bb8004d was a3e2a06d, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Update to bind-9.10.1.
Update to ghostscript-9.15.

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

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