source: server/major/bind.xml@ 74fe55c

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 74fe55c was 74fe55c, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • Update to bind9.10.2-P3 and BIND Utilities-9.10.2-P3.
  • gcc5 tags: AbiWord-3.0.1 and wv.

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

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