source: server/major/bind.xml@ 30b736a5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 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 30b736a5 was 30b736a5, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Fix md5sums

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

  • Property mode set to 100644
File size: 22.8 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 "7550a262cbd0753e49f77fb4ef721522">
10 <!ENTITY bind-size "8.1 MB">
11 <!ENTITY bind-buildsize "137 MB (additional 47 MB to run the test suite)">
12 <!ENTITY bind-time "0.9 SBU (additional 20 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 &lfs77_checked; &gcc5_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>As an unprivileged user, remove some tests that fail:</para>
140
141<screen><userinput>
142sed -e 's/ecdsa //' \
143 -e 's/masterformat //' \
144 -e 's/reclimit //' \
145 -e 's/tsiggss //' \
146 -i bin/tests/system/conf.sh</userinput></screen>
147
148 <para>Now run the test suite as an unprivileged user:</para>-->
149 <para>The test suite may indicate some failures depending on installed
150 optional dependencies and what configuration options are used.
151 To run the tests, as an unprivileged user, execute:</para>
152
153<screen><userinput>make -k check</userinput></screen>
154
155 <para>Again as <systemitem class="username">root</systemitem>, clean up the
156 test interfaces:</para>
157
158<screen role="root"><userinput>bin/tests/system/ifconfig.sh down</userinput></screen>
159
160 <para>Finally, install the package as the <systemitem
161 class="username">root</systemitem> user:</para>
162
163<screen role="root"><userinput>make install &amp;&amp;
164chmod -v 0755 /usr/lib/lib{bind9,dns,isc{,cc,cfg},lwres}.so &amp;&amp;
165
166install -v -m755 -d /usr/share/doc/bind-&bind-version;/{arm,misc} &amp;&amp;
167install -v -m644 doc/arm/*.html \
168 /usr/share/doc/bind-&bind-version;/arm &amp;&amp;
169install -v -m644 \
170 doc/misc/{dnssec,ipv6,migrat*,options,rfc-compliance,roadmap,sdb} \
171 /usr/share/doc/bind-&bind-version;/misc</userinput></screen>
172 </sect2>
173
174 <sect2 role="commands">
175 <title>Command Explanations</title>
176<!--
177 <para><command>sed ... bin/tests/system/conf.sh</command>: This command
178 removes tests that fail (some for unknown reasons).</para>-->
179
180 <para><parameter>--sysconfdir=/etc</parameter>: This parameter forces
181 <application>BIND</application> to look for configuration
182 files in <filename class='directory'>/etc</filename> instead of
183 <filename class='directory'>/usr/etc</filename>.</para>
184
185 <para><parameter>--enable-threads</parameter>: This parameter enables
186 multi-threading capability.</para>
187
188 <para><parameter>--with-libtool</parameter>: This parameter forces the
189 building of dynamic libraries and links the installed binaries to these
190 libraries.</para>
191
192 <para><parameter>--with-randomdev=/dev/urandom</parameter>: This parameter
193 specifes a non-blocking random device for use with digital signatures.</para>
194
195 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
196 href="../../xincludes/static-libraries.xml"/>
197
198 <para><command>chmod 0755
199 /usr/lib/{lib{bind9,dns,isc{,cc,cfg},lwres}.so</command>:
200 Enable the execute bit to prevent a warning when using
201 <command>ldd</command> to check library dependencies.</para>
202
203 <para><command>cd doc; install ...</command>: These commands install
204 additional package documentation. Omit any or all of these commands if
205 desired.</para>
206 </sect2>
207
208 <sect2 role="configuration">
209 <title>Configuring BIND</title>
210
211 <sect3 id="bind-config">
212 <title>Config files</title>
213
214 <para><filename>named.conf</filename>,
215 <filename>root.hints</filename>,
216 <filename>127.0.0</filename>,
217 <filename>rndc.conf</filename> and
218 <filename>resolv.conf</filename></para>
219
220 <indexterm zone="bind bind-config">
221 <primary sortas="e-etc-named.conf">/etc/named.conf</primary>
222 </indexterm>
223
224 <indexterm zone="bind bind-config">
225 <primary sortas="e-etc-rndc.conf">/etc/rndc.conf</primary>
226 </indexterm>
227
228 <indexterm zone="bind bind-config">
229 <primary sortas="e-etc-resolv.conf">/etc/resolv.conf</primary>
230 </indexterm>
231
232 <indexterm zone="bind bind-config">
233 <primary
234 sortas="e-etc-namedb-root.hints">/etc/namedb/root.hints</primary>
235 </indexterm>
236
237 <indexterm zone="bind bind-config">
238 <primary
239 sortas="e-etc-namedb-pz-127.0.0.0">/etc/namedb/pz/127.0.0.0</primary>
240 </indexterm>
241 </sect3>
242
243 <sect3>
244 <title>Configuration Information</title>
245
246 <para><application>BIND</application> will be configured to run in a
247 <command>chroot</command> jail as an unprivileged user (<systemitem
248 class="username">named</systemitem>). This configuration is more secure
249 in that a DNS compromise can only affect a few files in the <systemitem
250 class="username">named</systemitem> user's <envar>HOME</envar>
251 directory.</para>
252
253 <para>Create the unprivileged user and group <systemitem
254 class="username">named</systemitem>:</para>
255
256<screen role="root"><userinput>groupadd -g 20 named &amp;&amp;
257useradd -c "BIND Owner" -g named -s /bin/false -u 20 named &amp;&amp;
258install -d -m770 -o named -g named /srv/named</userinput></screen>
259
260 <para>Set up some files, directories and devices needed by
261 <application>BIND</application>:</para>
262
263<screen role="root"><userinput>cd /srv/named &amp;&amp;
264mkdir -p dev etc/namedb/{slave,pz} usr/lib/engines var/run/named &amp;&amp;
265mknod /srv/named/dev/null c 1 3 &amp;&amp;
266mknod /srv/named/dev/urandom c 1 9 &amp;&amp;
267chmod 666 /srv/named/dev/{null,urandom} &amp;&amp;
268cp /etc/localtime etc &amp;&amp;
269touch /srv/named/managed-keys.bind &amp;&amp;
270cp /usr/lib/engines/libgost.so usr/lib/engines &amp;&amp;
271[ $(uname -m) = x86_64 ] &amp;&amp; ln -sv lib usr/lib64</userinput></screen>
272
273 <para>The <filename>rndc.conf</filename> file contains information for
274 controlling <command>named</command> operations with the
275 <command>rndc</command> utility. Generate a key for use in the <filename>named.conf</filename> and <filename>rdnc.conf</filename> with the
276 <command>rndc-confgen</command> command:</para>
277
278<screen role="root"><userinput>rndc-confgen -r /dev/urandom -b 512 > /etc/rndc.conf &amp;&amp;
279sed '/conf/d;/^#/!d;s:^# ::' /etc/rndc.conf > /srv/named/etc/named.conf</userinput></screen>
280
281 <para>Complete the <filename>named.conf</filename> file from which
282 <command>named</command> will read the location of zone files, root
283 name servers and secure DNS keys:</para>
284
285<screen role="root"><?dbfo keep-together="auto"?><userinput>cat &gt;&gt; /srv/named/etc/named.conf &lt;&lt; "EOF"
286<literal>options {
287 directory "/etc/namedb";
288 pid-file "/var/run/named.pid";
289 statistics-file "/var/run/named.stats";
290
291};
292zone "." {
293 type hint;
294 file "root.hints";
295};
296zone "0.0.127.in-addr.arpa" {
297 type master;
298 file "pz/127.0.0";
299};
300
301// Bind 9 now logs by default through syslog (except debug).
302// These are the default logging rules.
303
304logging {
305 category default { default_syslog; default_debug; };
306 category unmatched { null; };
307
308 channel default_syslog {
309 syslog daemon; // send to syslog's daemon
310 // facility
311 severity info; // only send priority info
312 // and higher
313 };
314
315 channel default_debug {
316 file "named.run"; // write to named.run in
317 // the working directory
318 // Note: stderr is used instead
319 // of "named.run"
320 // if the server is started
321 // with the '-f' option.
322 severity dynamic; // log at the server's
323 // current debug level
324 };
325
326 channel default_stderr {
327 stderr; // writes to stderr
328 severity info; // only send priority info
329 // and higher
330 };
331
332 channel null {
333 null; // toss anything sent to
334 // this channel
335 };
336};</literal>
337EOF</userinput></screen>
338
339 <para>Create a zone file with the following contents:</para>
340
341<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF"
342<literal>$TTL 3D
343@ IN SOA ns.local.domain. hostmaster.local.domain. (
344 1 ; Serial
345 8H ; Refresh
346 2H ; Retry
347 4W ; Expire
348 1D) ; Minimum TTL
349 NS ns.local.domain.
3501 PTR localhost.</literal>
351EOF</userinput></screen>
352
353 <para>Create the <filename>root.hints</filename> file with the following
354 commands:</para>
355
356 <note>
357 <para>Caution must be used to ensure there are no leading spaces in
358 this file.</para>
359 </note>
360
361<screen role="root"><userinput>cat &gt; /srv/named/etc/namedb/root.hints &lt;&lt; "EOF"
362<literal>. 6D IN NS A.ROOT-SERVERS.NET.
363. 6D IN NS B.ROOT-SERVERS.NET.
364. 6D IN NS C.ROOT-SERVERS.NET.
365. 6D IN NS D.ROOT-SERVERS.NET.
366. 6D IN NS E.ROOT-SERVERS.NET.
367. 6D IN NS F.ROOT-SERVERS.NET.
368. 6D IN NS G.ROOT-SERVERS.NET.
369. 6D IN NS H.ROOT-SERVERS.NET.
370. 6D IN NS I.ROOT-SERVERS.NET.
371. 6D IN NS J.ROOT-SERVERS.NET.
372. 6D IN NS K.ROOT-SERVERS.NET.
373. 6D IN NS L.ROOT-SERVERS.NET.
374. 6D IN NS M.ROOT-SERVERS.NET.
375A.ROOT-SERVERS.NET. 6D IN A 198.41.0.4
376B.ROOT-SERVERS.NET. 6D IN A 192.228.79.201
377C.ROOT-SERVERS.NET. 6D IN A 192.33.4.12
378D.ROOT-SERVERS.NET. 6D IN A 199.7.91.13
379E.ROOT-SERVERS.NET. 6D IN A 192.203.230.10
380F.ROOT-SERVERS.NET. 6D IN A 192.5.5.241
381G.ROOT-SERVERS.NET. 6D IN A 192.112.36.4
382H.ROOT-SERVERS.NET. 6D IN A 128.63.2.53
383I.ROOT-SERVERS.NET. 6D IN A 192.36.148.17
384J.ROOT-SERVERS.NET. 6D IN A 192.58.128.30
385K.ROOT-SERVERS.NET. 6D IN A 193.0.14.129
386L.ROOT-SERVERS.NET. 6D IN A 199.7.83.42
387M.ROOT-SERVERS.NET. 6D IN A 202.12.27.33</literal>
388EOF</userinput></screen>
389
390 <para>The <filename>root.hints</filename> file is a list of root
391 name servers. This file must be updated periodically with the
392 <command>dig</command> utility. A current copy of root.hints can be
393 obtained from <ulink url="ftp://rs.internic.net/domain/named.root" />.
394 Consult the <ulink url="http://www.bind9.net/Bv9ARM.html">BIND 9
395 Administrator Reference Manual</ulink> for details.</para>
396
397 <para>Create or modify <filename>resolv.conf</filename> to use the new
398 name server with the following commands:</para>
399
400 <note>
401 <para>Replace <replaceable>&lt;yourdomain.com&gt;</replaceable> with
402 your own valid domain name.</para>
403 </note>
404
405<screen role="root"><userinput>cp /etc/resolv.conf /etc/resolv.conf.bak &amp;&amp;
406cat &gt; /etc/resolv.conf &lt;&lt; "EOF"
407<literal>search <replaceable>&lt;yourdomain.com&gt;</replaceable>
408nameserver 127.0.0.1</literal>
409EOF</userinput></screen>
410
411 <para>Set permissions on the <command>chroot</command> jail with the
412 following command:</para>
413
414<screen role="root"><userinput>chown -R named:named /srv/named</userinput></screen>
415
416 </sect3>
417
418 <sect3 id="bind-init">
419 <title>Boot Script</title>
420
421 <para>To start the DNS server at boot, install the
422 <filename>/etc/rc.d/init.d/bind</filename> init script included
423 in the <xref linkend="bootscripts"/> package.</para>
424
425 <indexterm zone="bind bind-init">
426 <primary sortas="f-bind">bind</primary>
427 </indexterm>
428
429<screen role="root"><userinput>make install-bind</userinput></screen>
430
431 <para>Now start <application>BIND</application> with
432 the new boot script:</para>
433
434<screen role="root"><userinput>/etc/rc.d/init.d/bind start</userinput></screen>
435
436 </sect3>
437
438 <sect3>
439 <title>Testing BIND</title>
440
441 <para>Test out the new <application>BIND</application> 9 installation.
442 First query the local host address with <command>dig</command>:</para>
443
444<screen><userinput>dig -x 127.0.0.1</userinput></screen>
445
446 <para>Now try an external name lookup, taking note of the speed
447 difference in repeated lookups due to the caching. Run the
448 <command>dig</command> command twice on the same address:</para>
449
450<screen><userinput>dig www.&lfs-domainname; &amp;&amp;
451dig www.&lfs-domainname;</userinput></screen>
452
453 <para>You can see almost instantaneous results with the named caching
454 lookups. Consult the <application>BIND</application> Administrator
455 Reference Manual located at <filename>doc/arm/Bv9ARM.html</filename>
456 in the package source tree, for further configuration options.</para>
457
458 </sect3>
459
460 </sect2>
461
462 <sect2 role="content">
463 <title>Contents</title>
464
465 <segmentedlist>
466 <segtitle>Installed Programs</segtitle>
467 <segtitle>Installed Libraries</segtitle>
468 <segtitle>Installed Directories</segtitle>
469
470 <seglistitem>
471
472 <seg>arpaname, bind9-config hardlinked to isc-config.sh, ddns-confgen,
473 delv, dig, dnssec-checkds, dnssec-coverage, dnssec-dsfromkey,
474 dnssec-importkey, dnssec-keyfromlabel, dnssec-keygen, dnssec-revoke,
475 dnssec-settime, dnssec-signzone, dnssec-verify, genrandom, host,
476 isc-hmac-fixup, lwresd hardlinked to named, named-checkconf,
477 named-checkzone, named-compilezone (symlink), named-journalprint,
478 named-rrchecker, nsec3hash, nslookup, nsupdate, rndc, rndc-confgen,
479 and tsig-keygen (symlink)</seg>
480
481 <seg>libbind9.so, libdns.so, libirs.so, libisc.so, libisccc.so,
482 libisccfg.so, and liblwres.so</seg>
483
484 <seg>/usr/include/{bind9,dns,dst,irs,isc,isccc,isccfg,lwres,pk11,pkcs11},
485 /usr/share/doc/bind-&bind-version; and /srv/named</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.