source: server/major/bind.xml@ e14ac42

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.6 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 krejzi/svn 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 e14ac42 was e14ac42, checked in by Bruce Dubbs <bdubbs@…>, 10 years ago

Fix minor number in urandom mknod

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

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