source: server/other/bind.xml@ b8214dc6

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 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 b8214dc6 was b8214dc6, checked in by DJ Lucas <dj@…>, 20 years ago

bind-9.3.0 and fsfs for svnserver

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

  • Property mode set to 100644
File size: 12.5 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY bind-download-http "http://gd.tuwien.ac.at/infosys/servers/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
8<!ENTITY bind-download-ftp "ftp://ftp.isc.org/isc/bind9/&bind-version;/bind-&bind-version;.tar.gz">
9<!ENTITY bind-size "4.6 MB">
10<!ENTITY bind-buildsize "138 MB">
11<!ENTITY bind-time "0.67 SBU">
12
13]>
14
15<sect1 id="bind" xreflabel="BIND-&bind-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="bind.html"?>
21<title><acronym>BIND</acronym>-&bind-version;</title>
22
23<sect2>
24<title>Introduction to <application><acronym>BIND</acronym></application></title>
25
26<para>The <application><acronym>BIND</acronym></application> package
27provides a <acronym>DNS</acronym> server and client utilities. If you
28are only interested in the utilities, refer to the <xref linkend="bind-utils"/>.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink url="&bind-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink url="&bind-download-ftp;"/></para></listitem>
34<listitem><para>Download size: &bind-size;</para></listitem>
35<listitem><para>Estimated Disk space required: &bind-buildsize;</para></listitem>
36<listitem><para>Estimated build time: &bind-time;</para></listitem></itemizedlist>
37</sect3>
38
39<sect3><title><application><acronym>BIND</acronym></application> dependencies</title>
40<sect4><title>Optional</title>
41<para>
42<xref linkend="openssl"/>,
43<xref linkend="db"/>,
44<xref linkend="openjade"/> and
45<xref linkend="jadetex"/>
46</para></sect4>
47</sect3>
48
49</sect2>
50
51<sect2>
52<title>Installation of <application><acronym>BIND</acronym></application></title>
53
54<para>Install <application><acronym>BIND</acronym></application> by
55running the following commands:</para>
56
57<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
58make &amp;&amp;
59make install</command></userinput></screen>
60
61</sect2>
62
63<sect2>
64<title>Configuring
65<application><acronym>BIND</acronym></application></title>
66
67<sect3><title>Config files</title>
68<para><filename>named.conf</filename>, <filename>root.hints</filename>,
69<filename>127.0.0</filename>, <filename>rndc.conf</filename></para>
70</sect3>
71
72<sect3><title>Configuration Information</title>
73
74<para><application><acronym>BIND</acronym></application> will configured
75to run in a chroot jail as an unprivileged user (named). This configuration
76is more secure in that a <acronym>DNS</acronym> compromise can only affect
77a few files in the named user's <envar>HOME</envar> directory.</para>
78
79<para>Create the unprivileged user and group named:</para>
80
81<screen><userinput><command>groupadd named &amp;&amp;
82useradd -m -g named -s /bin/false named</command></userinput></screen>
83
84<para>Set up some files, directories and devices needed by
85<application><acronym>BIND</acronym></application>:</para>
86
87<screen><userinput><command>cd /home/named &amp;&amp;
88mkdir -p dev etc/namedb/slave var/run &amp;&amp;
89mknod /home/named/dev/null c 1 3 &amp;&amp;
90mknod /home/named/dev/random c 1 8 &amp;&amp;
91chmod 666 /home/named/dev/{null,random} &amp;&amp;
92mkdir /home/named/etc/namedb/pz &amp;&amp;
93cp /etc/localtime /home/named/etc</command></userinput></screen>
94
95<para>Then, generate a key for use in the <filename>named.conf</filename>
96and <filename>rdnc.conf</filename> files using the
97<command>rndc-confgen</command> command:</para>
98
99<screen><userinput><command>rndc-confgen -b 512 | grep -m 1 "secret" | cut -d '"' -f 2</command></userinput></screen>
100
101<para>Create the <filename>named.conf</filename> file from which named
102will read the location of zone files, root name servers and secure
103<acronym>DNS</acronym> keys:</para>
104
105<screen><userinput><command>cat &gt; /home/named/etc/named.conf &lt;&lt; "EOF"</command>
106 options {
107 directory "/etc/namedb";
108 pid-file "/var/run/named.pid";
109 statistics-file "/var/run/named.stats";
110
111 };
112 controls {
113 inet 127.0.0.1 allow { localhost; } keys { rndc_key; };
114 };
115 key "rndc_key" {
116 algorithm hmac-md5;
117 secret "<replaceable>[Insert secret from rndc-confgen's output here]</replaceable>";
118 };
119 zone "." {
120 type hint;
121 file "root.hints";
122 };
123 zone "0.0.127.in-addr.arpa" {
124 type master;
125 file "pz/127.0.0";
126 };
127<command>EOF</command></userinput></screen>
128
129<para>Create the <filename>rndc.conf</filename> with the following commands:</para>
130
131<screen><userinput><command>cat &gt; /etc/rndc.conf &lt;&lt; "EOF"</command>
132key rndc_key {
133algorithm "hmac-md5";
134 secret
135 "<replaceable>[Insert secret from rndc-confgen's output here]</replaceable>";
136 };
137options {
138 default-server localhost;
139 default-key rndc_key;
140};
141<command>EOF</command></userinput></screen>
142
143<para>The <filename>rndc.conf</filename> file contains information for
144controlling named operations with the <command>rndc</command>
145utility.</para>
146
147<para>Create a zone file with the following contents:</para>
148
149<screen><userinput><command>cat &gt; /home/named/etc/namedb/pz/127.0.0 &lt;&lt; "EOF"</command>
150$TTL 3D
151@ IN SOA ns.local.domain. hostmaster.local.domain. (
152 1 ; Serial
153 8H ; Refresh
154 2H ; Retry
155 4W ; Expire
156 1D) ; Minimum TTL
157 NS ns.local.domain.
1581 PTR localhost.
159<command>EOF</command></userinput></screen>
160
161<para>Create the <filename>root.hints</filename> file with the following
162commands:</para>
163
164<note><para>Caution must be used to ensure no leading spaces in this
165file.</para></note>
166
167<screen><userinput><command>cat &gt; /home/named/etc/namedb/root.hints &lt;&lt; "EOF"</command>
168. 6D IN NS A.ROOT-SERVERS.NET.
169. 6D IN NS B.ROOT-SERVERS.NET.
170. 6D IN NS C.ROOT-SERVERS.NET.
171. 6D IN NS D.ROOT-SERVERS.NET.
172. 6D IN NS E.ROOT-SERVERS.NET.
173. 6D IN NS F.ROOT-SERVERS.NET.
174. 6D IN NS G.ROOT-SERVERS.NET.
175. 6D IN NS H.ROOT-SERVERS.NET.
176. 6D IN NS I.ROOT-SERVERS.NET.
177. 6D IN NS J.ROOT-SERVERS.NET.
178. 6D IN NS K.ROOT-SERVERS.NET.
179. 6D IN NS L.ROOT-SERVERS.NET.
180. 6D IN NS M.ROOT-SERVERS.NET.
181A.ROOT-SERVERS.NET. 6D IN A 198.41.0.4
182B.ROOT-SERVERS.NET. 6D IN A 128.9.0.107
183C.ROOT-SERVERS.NET. 6D IN A 192.33.4.12
184D.ROOT-SERVERS.NET. 6D IN A 128.8.10.90
185E.ROOT-SERVERS.NET. 6D IN A 192.203.230.10
186F.ROOT-SERVERS.NET. 6D IN A 192.5.5.241
187G.ROOT-SERVERS.NET. 6D IN A 192.112.36.4
188H.ROOT-SERVERS.NET. 6D IN A 128.63.2.53
189I.ROOT-SERVERS.NET. 6D IN A 192.36.148.17
190J.ROOT-SERVERS.NET. 6D IN A 192.58.128.30
191K.ROOT-SERVERS.NET. 6D IN A 193.0.14.129
192L.ROOT-SERVERS.NET. 6D IN A 198.32.64.12
193M.ROOT-SERVERS.NET. 6D IN A 202.12.27.33
194<command>EOF</command></userinput></screen>
195
196<para>The <filename>root.hints</filename> file is a list of root name
197servers. This file must be updated periodically with the
198<command>dig</command> utility.
199Consult the <ulink url="http://www.bind9.net/Bv9ARM.html"><application><acronym>BIND</acronym></application> 9 Administrator Reference Manual</ulink> for
200details.</para>
201
202<para>Create or modify <filename>resolv.conf</filename> to use the new
203name server with the following commands:</para>
204
205<note><para>Replace yourdomain.com with your own valid domain
206name.</para></note>
207
208<screen><userinput><command>cp /etc/resolv.conf /etc/resolv.conf.bak &amp;&amp;
209cat &gt; /etc/resolv.conf &lt;&lt; "EOF"</command>
210search <replaceable>[yourdomain.com]</replaceable>
211nameserver 127.0.0.1
212<command>EOF</command></userinput></screen>
213
214<para>Set permissions on the chroot jail with the following
215command:</para>
216
217<screen><userinput><command>chown -R named.named /home/named</command></userinput></screen>
218
219<para>To start the DNS server at boot, install the <filename>/etc/rc.d/init.d/bind</filename>
220init script included in the <xref linkend="intro-important-bootscripts"/> package.</para>
221
222<screen><userinput><command>make install-bind</command></userinput></screen>
223
224<para>Now start <application><acronym>BIND</acronym></application> with
225the new boot script:</para>
226
227<screen><userinput><command>/etc/rc.d/init.d/bind start</command></userinput></screen>
228
229</sect3>
230
231<sect3><title>Testing <application><acronym>BIND</acronym></application></title>
232
233<para>Test out the new
234<application><acronym>BIND</acronym></application> 9 installation. First
235query the local host address with <command>dig</command>:</para>
236
237<screen><userinput><command>dig -x 127.0.0.1</command></userinput></screen>
238
239<para>Now try an external name lookup, taking note of the speed
240difference in repeated lookups due to the caching. Run the dig command
241twice on the same address:</para>
242
243<para><screen><userinput><command>dig www.linuxfromscratch.org &amp;&amp;
244dig www.linuxfromscratch.org</command></userinput></screen>
245You can see almost instantaneous results with the named caching lookups.
246Consult <filename>bind-&bind-version;/doc/arm/Bv9ARM.html</filename>,
247the <application><acronym>BIND</acronym></application> Administrator
248Reference Manual for further configuration options.</para>
249
250</sect3>
251
252</sect2>
253
254<sect2>
255<title>Contents</title>
256
257<para>The <application><acronym>BIND</acronym></application> package contains
258<command>dig</command>,
259<command>host</command>,
260<command>isc-config.sh</command>,
261<command>nslookup</command>,
262<command>rndc</command>,
263<command>rndc-confgen</command>,
264<command>named-checkconf</command>,
265<command>named-checkzone</command>,
266<command>lwresd</command>,
267<command>named</command>,
268<command>dnssec-signzone</command>,
269<command>dnssec-signkey</command>,
270<command>dnssec-keygen</command>,
271<command>dnssec-makekeyset</command> and
272<command>nsupdate</command>.</para>
273</sect2>
274
275<sect2><title>Description</title>
276
277<sect3><title>dig</title>
278<para><command>dig</command> interrogates <acronym>DNS</acronym>
279servers.</para></sect3>
280
281<sect3><title>host</title>
282<para><command>host</command> is a utility for <acronym>DNS</acronym>
283lookups.</para></sect3>
284
285<sect3><title>nslookup</title>
286<para><command>nslookup</command> is a program used to query Internet
287domain nameservers.</para></sect3>
288
289<sect3><title>rndc</title>
290<para><command>rndc</command> controls the operation of
291<application><acronym>BIND</acronym></application>.</para></sect3>
292
293<sect3><title>rndc-confgen</title>
294<para><command>rndc-confgen</command> generates
295<filename>rndc.conf</filename> files.</para></sect3>
296
297<sect3><title>named-checkconf</title>
298<para><command>named-checkconf</command> checks the syntax of
299<filename>named.conf</filename> files.</para></sect3>
300
301<sect3><title>named-checkzone</title>
302<para><command>named-checkzone</command> checks zone file
303validity.</para></sect3>
304
305<sect3><title>lwresd</title>
306<para><command>lwresd</command> is a caching-only name server for local
307process use.</para></sect3>
308
309<sect3><title>named</title>
310<para><command>named</command> is the name server daemon.</para></sect3>
311
312<sect3><title>dnssec-signzone</title>
313<para><command>dnssec-signzone</command> generates signed versions of
314zone files.</para></sect3>
315
316<sect3><title>dnssec-signkey</title>
317<para><command>dnssec-signkey</command> signs zone file key
318sets.</para></sect3>
319
320<sect3><title>dnssec-keygen</title>
321<para><command>dnssec-keygen</command> is a key generator for secure
322<acronym>DNS</acronym>.</para></sect3>
323
324<sect3><title>dnssec-makekeyset</title>
325<para><command>dnssec-makekeyset</command> generates a key set from one
326or more keys created by dnssec-keygen.</para></sect3>
327
328<sect3><title>nsupdate</title>
329<para><command>nsupdate</command> is used to submit
330<acronym>DNS</acronym> update requests.</para></sect3>
331
332</sect2>
333
334</sect1>
335
Note: See TracBrowser for help on using the repository browser.