1 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
2 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" []>
4 - Copyright (C) 2004-2010, 2013, 2014 Internet Systems Consortium, Inc. ("ISC")
5 - Copyright (C) 2000-2003 Internet Software Consortium.
7 - Permission to use, copy, modify, and/or distribute this software for any
8 - purpose with or without fee is hereby granted, provided that the above
9 - copyright notice and this permission notice appear in all copies.
11 - THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
12 - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 - AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
14 - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 - OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 - PERFORMANCE OF THIS SOFTWARE.
20 <!-- Id: FAQ.xml,v 1.54 2010/01/19 23:48:55 tbox Exp -->
23 <title>Frequently Asked Questions about BIND 9</title>
35 <holder>Internet Systems Consortium, Inc. ("ISC")</holder>
42 <holder>Internet Software Consortium.</holder>
45 <qandaset defaultlabel='qanda'>
47 <qandadiv><title>Compilation and Installation Questions</title>
52 I'm trying to compile BIND 9, and "make" is failing due to
53 files not being found. Why?
58 Using a parallel or distributed "make" to build BIND 9 is
59 not supported, and doesn't work. If you are using one of
60 these, use normal make or gmake instead.
68 Isn't "make install" supposed to generate a default named.conf?
76 Long Answer: There really isn't a default configuration which fits
77 any site perfectly. There are lots of decisions that need to
78 be made and there is no consensus on what the defaults should be.
79 For example FreeBSD uses /etc/namedb as the location where the
80 configuration files for named are stored. Others use /var/named.
83 What addresses to listen on? For a laptop on the move a lot
84 you may only want to listen on the loop back interfaces.
87 To whom do you offer recursive service? Is there a firewall
88 to consider? If so, is it stateless or stateful? Are you
89 directly on the Internet? Are you on a private network? Are
90 you on a NAT'd network? The answers
91 to all these questions change how you configure even a
97 </qandadiv> <!-- Compilation and Installation Questions -->
99 <qandadiv><title>Configuration and Setup Questions</title>
102 <!-- configuration, log -->
105 Why does named log the warning message <quote>no TTL specified -
106 using SOA MINTTL instead</quote>?
111 Your zone file is illegal according to RFC1035. It must either
116 $TTL 86400</programlisting>
119 at the beginning, or the first record in it must have a TTL field,
120 like the "84600" in this example:
124 example.com. 86400 IN SOA ns hostmaster ( 1 3600 1800 1814400 3600 )</programlisting>
130 <!-- configuration -->
133 Why do I get errors like <quote>dns_zone_load: zone foo/IN: loading
134 master file bar: ran out of space</quote>?
139 This is often caused by TXT records with missing close
140 quotes. Check that all TXT records containing quoted strings
141 have both open and close quotes.
150 How do I restrict people from looking up the server version?
155 Put a "version" option containing something other than the
156 real version in the "options" section of named.conf. Note
157 doing this will not prevent attacks and may impede people
158 trying to diagnose problems with your server. Also it is
159 possible to "fingerprint" nameservers to determine their
169 How do I restrict only remote users from looking up the
175 The following view statement will intercept lookups as the
176 internal view that holds the version information will be
177 matched last. The caveats of the previous answer still
183 match-clients { <those to be refused>; };
184 allow-query { none; };
187 file "/dev/null"; // or any empty file
195 <!-- configuration -->
198 What do <quote>no source of entropy found</quote> or <quote>could not
199 open entropy source foo</quote> mean?
204 The server requires a source of entropy to perform certain
205 operations, mostly DNSSEC related. These messages indicate
206 that you have no source of entropy. On systems with
207 /dev/random or an equivalent, it is used by default. A
208 source of entropy can also be defined using the random-device
209 option in named.conf.
215 <!-- configuration -->
218 I'm trying to use TSIG to authenticate dynamic updates or
219 zone transfers. I'm sure I have the keys set up correctly,
220 but the server is rejecting the TSIG. Why?
225 This may be a clock skew problem. Check that the the clocks
226 on the client and server are properly synchronised (e.g.,
235 I see a log message like the following. Why?
238 couldn't open pid file '/var/run/named.pid': Permission denied
243 You are most likely running named as a non-root user, and
244 that user does not have permission to write in /var/run.
245 The common ways of fixing this are to create a /var/run/named
246 directory owned by the named user and set pid-file to
247 "/var/run/named/named.pid", or set pid-file to "named.pid",
248 which will put the file in the directory specified by the
249 directory option (which, in this case, must be writable by
250 the user named is running as).
258 I can query the nameserver from the nameserver but not from other
264 This is usually the result of the firewall configuration stopping
265 the queries and / or the replies.
273 How can I make a server a slave for both an internal and
274 an external view at the same time? When I tried, both views
275 on the slave were transferred from the same view on the master.
280 You will need to give the master and slave multiple IP
281 addresses and use those to make sure you reach the correct
282 view on the other machine.
286 Master: 10.0.1.1 (internal), 10.0.1.2 (external, IP alias)
288 match-clients { !10.0.1.2; !10.0.1.4; 10.0.1/24; };
289 notify-source 10.0.1.1;
290 transfer-source 10.0.1.1;
291 query-source address 10.0.1.1;
293 match-clients { any; };
294 recursion no; // don't offer recursion to the world
295 notify-source 10.0.1.2;
296 transfer-source 10.0.1.2;
297 query-source address 10.0.1.2;
299 Slave: 10.0.1.3 (internal), 10.0.1.4 (external, IP alias)
301 match-clients { !10.0.1.2; !10.0.1.4; 10.0.1/24; };
302 notify-source 10.0.1.3;
303 transfer-source 10.0.1.3;
304 query-source address 10.0.1.3;
306 match-clients { any; };
307 recursion no; // don't offer recursion to the world
308 notify-source 10.0.1.4;
309 transfer-source 10.0.1.4;
310 query-source address 10.0.1.4;</programlisting>
313 You put the external address on the alias so that all the other
314 dns clients on these boxes see the internal view by default.
319 BIND 9.3 and later: Use TSIG to select the appropriate view.
325 algorithm hmac-sha256;
326 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
329 match-clients { !key external; // reject message ment for the
331 10.0.1/24; }; // accept from these addresses.
335 match-clients { key external; any; };
336 server 10.0.1.2 { keys external; }; // tag messages from the
337 // external view to the
338 // other servers for the
346 algorithm hmac-sha256;
347 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
350 match-clients { !key external; 10.0.1/24; };
354 match-clients { key external; any; };
355 server 10.0.1.1 { keys external; };
366 I get error messages like <quote>multiple RRs of singleton type</quote>
367 and <quote>CNAME and other data</quote> when transferring a zone. What
373 These indicate a malformed master zone. You can identify
374 the exact records involved by transferring the zone using
375 dig then running named-checkzone on it.
379 dig axfr example.com @master-server > tmp
380 named-checkzone example.com tmp</programlisting>
383 A CNAME record cannot exist with the same name as another record
384 except for the DNSSEC records which prove its existence (NSEC).
387 RFC 1034, Section 3.6.2: <quote>If a CNAME RR is present at a node,
388 no other data should be present; this ensures that the data for a
389 canonical name and its aliases cannot be different. This rule also
390 insures that a cached CNAME can be used without checking with an
391 authoritative server for other RR types.</quote>
399 I get error messages like <quote>named.conf:99: unexpected end
400 of input</quote> where 99 is the last line of named.conf.
405 There are unbalanced quotes in named.conf.
410 Some text editors (notepad and wordpad) fail to put a line
411 title indication (e.g. CR/LF) on the last line of a
412 text file. This can be fixed by "adding" a blank line to
413 the end of the file. Named expects to see EOF immediately
414 after EOL and treats text files where this is not met as
423 How do I share a dynamic zone between multiple views?
428 You choose one view to be master and the second a slave and
429 transfer the zone between views.
435 algorithm hmac-sha256;
436 secret "xxxxxxxxxxxxxxxxxxxxxxxx";
440 algorithm hmac-sha256;
441 secret "yyyyyyyyyyyyyyyyyyyyyyyy";
445 match-clients { !key external; 10.0.1/24; };
447 /* Deliver notify messages to external view. */
452 file "internal/example.db";
453 allow-update { key mykey; };
454 also-notify { 10.0.1.1; };
459 match-clients { key external; any; };
462 file "external/example.db";
463 masters { 10.0.1.1; };
464 transfer-source 10.0.1.1;
465 // allow-update-forwarding { any; };
466 // allow-notify { ... };
476 I get a error message like <quote>zone wireless.ietf56.ietf.org/IN:
477 loading master file primaries/wireless.ietf56.ietf.org: no
483 This error is produced when a line in the master file
484 contains leading white space (tab/space) but there is no
485 current record owner name to inherit the name from. Usually
486 this is the result of putting white space before a comment,
487 forgetting the "@" for the SOA record, or indenting the master
496 Why are my logs in GMT (UTC).
501 You are running chrooted (-t) and have not supplied local timezone
502 information in the chroot area.
505 <member>FreeBSD: /etc/localtime</member>
506 <member>Solaris: /etc/TIMEZONE and /usr/share/lib/zoneinfo</member>
507 <member>OSF: /etc/zoneinfo/localtime</member>
510 See also tzset(3) and zic(8).
518 I get <quote>rndc: connect failed: connection refused</quote> when
524 This is usually a configuration error.
527 First ensure that named is running and no errors are being
528 reported at startup (/var/log/messages or equivalent).
529 Running "named -g <usual arguments>" from a title
530 can help at this point.
533 Secondly ensure that named is configured to use rndc either
534 by "rndc-confgen -a", rndc-confgen or manually. The
535 Administrators Reference manual has details on how to do
539 Old versions of rndc-confgen used localhost rather than
540 127.0.0.1 in /etc/rndc.conf for the default server. Update
541 /etc/rndc.conf if necessary so that the default server
542 listed in /etc/rndc.conf matches the addresses used in
543 named.conf. "localhost" has two address (127.0.0.1 and
547 If you use "rndc-confgen -a" and named is running with -t or -u
548 ensure that /etc/rndc.conf has the correct ownership and that
549 a copy is in the chroot area. You can do this by re-running
550 "rndc-confgen -a" with appropriate -t and -u arguments.
558 I get <quote>transfer of 'example.net/IN' from 192.168.4.12#53:
559 failed while receiving responses: permission denied</quote> error
565 These indicate a filesystem permission error preventing
566 named creating / renaming the temporary file. These will
567 usually also have other associated error messages like
571 "dumping master file: sl/tmp-XXXX5il3sQ: open: permission denied"</programlisting>
574 Named needs write permission on the directory containing
575 the file. Named writes the new cache file to a temporary
576 file then renames it to the name specified in named.conf
577 to ensure that the contents are always complete. This is
578 to prevent named loading a partial zone in the event of
579 power failure or similar interrupting the write of the
583 Note file names are relative to the directory specified in
584 options and any chroot directory ([<chroot
585 dir>/][<options dir>]).
589 If named is invoked as "named -t /chroot/DNS" with
590 the following named.conf then "/chroot/DNS/var/named/sl"
591 needs to be writable by the user named is running as.
595 directory "/var/named";
600 file "sl/example.net";
601 masters { 192.168.4.12; };
610 I want to forward all DNS queries from my caching nameserver to
611 another server. But there are some domains which have to be
612 served locally, via rbldnsd.
615 How do I achieve this ?
622 forwarders { <ip.of.primary.nameserver>; };
625 zone "sbl-xbl.spamhaus.org" {
626 type forward; forward only;
627 forwarders { <ip.of.rbldns.server> port 530; };
630 zone "list.dsbl.org" {
631 type forward; forward only;
632 forwarders { <ip.of.rbldns.server> port 530; };
641 Can you help me understand how BIND 9 uses memory to store
645 Some times it seems to take several times the amount of
646 memory it needs to store the zone.
651 When reloading a zone named my have multiple copies of
652 the zone in memory at one time. The zone it is serving
653 and the one it is loading. If reloads are ultra fast it
657 e.g. Ones that are transferring out, the one that it is
658 serving and the one that is loading.
661 BIND 8 destroyed the zone before loading and also killed
662 off outgoing transfers of the zone.
665 The new strategy allows slaves to get copies of the new
666 zone regardless of how often the master is loaded compared
667 to the transfer time. The slave might skip some intermediate
668 versions but the transfers will complete and it will keep
669 reasonably in sync with the master.
672 The new strategy also allows the master to recover from
673 syntax and other errors in the master file as it still
674 has an in-core copy of the old contents.
682 I want to use IPv6 locally but I don't have a external IPv6
683 connection. External lookups are slow.
688 You can use server clauses to stop named making external lookups
692 server fd81:ec6c:bd62::/48 { bogus no; }; // site ULA prefix
693 server ::/0 { bogus yes; };
698 </qandadiv> <!-- Configuration and Setup Questions -->
700 <qandadiv><title>Operations Questions</title>
705 How to change the nameservers for a zone?
710 Step 1: Ensure all nameservers, new and old, are serving the
714 Step 2: Work out the maximum TTL of the NS RRset in the parent and child
715 zones. This is the time it will take caches to be clear of a
716 particular version of the NS RRset.
717 If you are just removing nameservers you can skip to Step 6.
720 Step 3: Add new nameservers to the NS RRset for the zone and
721 wait until all the servers for the zone are answering with this
725 Step 4: Inform the parent zone of the new NS RRset then wait for all the
726 parent servers to be answering with the new NS RRset.
729 Step 5: Wait for cache to be clear of the old NS RRset.
730 See Step 2 for how long.
731 If you are just adding nameservers you are done.
734 Step 6: Remove any old nameservers from the zones NS RRset and
735 wait for all the servers for the zone to be serving the new NS RRset.
738 Step 7: Inform the parent zone of the new NS RRset then wait for all the
739 parent servers to be answering with the new NS RRset.
742 Step 8: Wait for cache to be clear of the old NS RRset.
743 See Step 2 for how long.
746 Step 9: Turn off the old nameservers or remove the zone entry from
747 the configuration of the old nameservers.
750 Step 10: Increment the serial number and wait for the change to
751 be visible in all nameservers for the zone. This ensures that
752 zone transfers are still working after the old servers are
756 Note: the above procedure is designed to be transparent
757 to dns clients. Decommissioning the old servers too early
758 will result in some clients not being able to look up
762 Note: while it is possible to run the addition and removal
763 stages together it is not recommended.
768 </qandadiv> <!-- Operations Questions -->
770 <qandadiv><title>General Questions</title>
775 I keep getting log messages like the following. Why?
778 Dec 4 23:47:59 client 10.0.0.1#1355: updating zone
779 'example.com/IN': update failed: 'RRset exists (value
780 dependent)' prerequisite not satisfied (NXRRSET)
785 DNS updates allow the update request to test to see if
786 certain conditions are met prior to proceeding with the
787 update. The message above is saying that conditions were
788 not met and the update is not proceeding. See doc/rfc/rfc2136.txt
789 for more details on prerequisites.
797 I keep getting log messages like the following. Why?
800 Jun 21 12:00:00.000 client 10.0.0.1#1234: update denied
805 Someone is trying to update your DNS data using the RFC2136
806 Dynamic Update protocol. Windows 2000 machines have a habit
807 of sending dynamic update requests to DNS servers without
808 being specifically configured to do so. If the update
809 requests are coming from a Windows 2000 machine, see
811 url="http://support.microsoft.com/support/kb/articles/q246/8/04.asp">
812 <http://support.microsoft.com/support/kb/articles/q246/8/04.asp></ulink>
813 for information about how to turn them off.
821 When I do a "dig . ns", many of the A records for the root
822 servers are missing. Why?
827 This is normal and harmless. It is a somewhat confusing
828 side effect of the way BIND 9 does RFC2181 trust ranking
829 and of the efforts BIND 9 makes to avoid promoting glue
833 When BIND 9 first starts up and primes its cache, it receives
834 the root server addresses as additional data in an authoritative
835 response from a root server, and these records are eligible
836 for inclusion as additional data in responses. Subsequently
837 it receives a subset of the root server addresses as
838 additional data in a non-authoritative (referral) response
839 from a root server. This causes the addresses to now be
840 considered non-authoritative (glue) data, which is not
841 eligible for inclusion in responses.
844 The server does have a complete set of root server addresses
845 cached at all times, it just may not include all of them
846 as additional data, depending on whether they were last
847 received as answers or as glue. You can always look up the
848 addresses with explicit queries like "dig a.root-servers.net A".
856 Why don't my zones reload when I do an "rndc reload" or SIGHUP?
861 A zone can be updated either by editing zone files and
862 reloading the server or by dynamic update, but not both.
863 If you have enabled dynamic update for a zone using the
864 "allow-update" option, you are not supposed to edit the
865 zone file by hand, and the server will not attempt to reload
874 Why is named listening on UDP port other than 53?
879 Named uses a system selected port to make queries of other
880 nameservers. This behaviour can be overridden by using
881 query-source to lock down the port and/or address. See
882 also notify-source and transfer-source.
890 I get warning messages like <quote>zone example.com/IN: refresh:
891 failure trying master 1.2.3.4#53: timed out</quote>.
896 Check that you can make UDP queries from the slave to the master
900 dig +norec example.com soa @1.2.3.4</programlisting>
903 You could be generating queries faster than the slave can
904 cope with. Lower the serial query rate.
908 serial-query-rate 5; // default 20</programlisting>
916 I don't get RRSIG's returned when I use "dig +dnssec".
921 You need to ensure DNSSEC is enabled (dnssec-enable yes;).
929 Can a NS record refer to a CNAME.
934 No. The rules for glue (copies of the *address* records
935 in the parent zones) and additional section processing do
936 not allow it to work.
939 You would have to add both the CNAME and address records
940 (A/AAAA) as glue to the parent zone and have CNAMEs be
941 followed when doing additional section processing to make
942 it work. No nameserver implementation supports either of
951 What does <quote>RFC 1918 response from Internet for
952 0.0.0.10.IN-ADDR.ARPA</quote> mean?
957 If the IN-ADDR.ARPA name covered refers to a internal address
958 space you are using then you have failed to follow RFC 1918
959 usage rules and are leaking queries to the Internet. You
960 should establish your own zones for these addresses to prevent
961 you querying the Internet's name servers for these addresses.
962 Please see <ulink url="http://as112.net/"><http://as112.net/></ulink>
963 for details of the problems you are causing and the counter
964 measures that have had to be deployed.
967 If you are not using these private addresses then a client
968 has queried for them. You can just ignore the messages,
969 get the offending client to stop sending you these messages
970 as they are most probably leaking them or setup your own zones
971 empty zones to serve answers to these queries.
975 zone "10.IN-ADDR.ARPA" {
980 zone "16.172.IN-ADDR.ARPA" {
987 zone "31.172.IN-ADDR.ARPA" {
992 zone "168.192.IN-ADDR.ARPA" {
998 @ 10800 IN SOA <name-of-server>. <contact-email>. (
999 1 3600 1200 604800 10800 )
1000 @ 10800 IN NS <name-of-server>.</programlisting>
1004 Future versions of named are likely to do this automatically.
1013 Will named be affected by the 2007 changes to daylight savings
1019 No, so long as the machines internal clock (as reported
1020 by "date -u") remains at UTC. The only visible change
1021 if you fail to upgrade your OS, if you are in a affected
1022 area, will be that log messages will be a hour out during
1023 the period where the old rules do not match the new rules.
1026 For most OS's this change just means that you need to
1027 update the conversion rules from UTC to local time.
1028 Normally this involves updating a file in /etc (which
1029 sets the default timezone for the machine) and possibly
1030 a directory which has all the conversion rules for the
1031 world (e.g. /usr/share/zoneinfo). When updating the OS
1032 do not forget to update any chroot areas as well.
1033 See your OS's documentation for more details.
1036 The local timezone conversion rules can also be done on
1037 a individual basis by setting the TZ environment variable
1038 appropriately. See your OS's documentation for more
1047 Is there a bugzilla (or other tool) database that mere
1048 mortals can have (read-only) access to for bind?
1053 No. The BIND 9 bug database is kept closed for a number
1054 of reasons. These include, but are not limited to, that
1055 the database contains proprietory information from people
1056 reporting bugs. The database has in the past and may in
1057 future contain unfixed bugs which are capable of bringing
1058 down most of the Internet's DNS infrastructure.
1061 The release pages for each version contain up to date
1062 lists of bugs that have been fixed post release. That
1063 is as close as we can get to providing a bug database.
1071 Why do queries for NSEC3 records fail to return the NSEC3 record?
1076 NSEC3 records are strictly meta data and can only be
1077 returned in the authority section. This is done so that
1078 signing the zone using NSEC3 records does not bring names
1079 into existence that do not exist in the unsigned version
1085 </qandadiv> <!-- General Questions -->
1087 <qandadiv><title>Operating-System Specific Questions</title>
1089 <qandadiv><title>HPUX</title>
1093 <para>I get the following error trying to configure BIND:
1094 <programlisting>checking if unistd.h or sys/types.h defines fd_set... no
1095 configure: error: need either working unistd.h or sys/select.h</programlisting>
1100 You have attempted to configure BIND with the bundled C compiler.
1101 This compiler does not meet the minimum compiler requirements to
1102 for building BIND. You need to install a ANSI C compiler and / or
1103 teach configure how to find the ANSI C compiler. The later can
1104 be done by adjusting the PATH environment variable and / or
1105 specifying the compiler via CC.
1108 <programlisting>./configure CC=<compiler> ...</programlisting>
1113 </qandadiv> <!-- HPUX -->
1115 <qandadiv><title>Linux</title>
1120 Why do I get the following errors:
1121 <programlisting>general: errno2result.c:109: unexpected error:
1122 general: unable to convert errno to isc_result: 14: Bad address
1123 client: UDP client handler shutting down due to fatal receive error: unexpected error</programlisting>
1128 This is the result of a Linux kernel bug.
1132 <ulink url="http://marc.theaimsgroup.com/?l=linux-netdev&m=113081708031466&w=2"><http://marc.theaimsgroup.com/?l=linux-netdev&m=113081708031466&w=2></ulink>
1140 Why does named lock up when it attempts to connect over IPSEC tunnels?
1145 This is due to a kernel bug where the fact that a socket is marked
1146 non-blocking is ignored. It is reported that setting
1147 xfrm_larval_drop to 1 helps but this may have negative side effects.
1149 <ulink url="https://bugzilla.redhat.com/show_bug.cgi?id=427629"><https://bugzilla.redhat.com/show_bug.cgi?id=427629></ulink>
1151 <ulink url="http://lkml.org/lkml/2007/12/4/260"><http://lkml.org/lkml/2007/12/4/260></ulink>.
1154 xfrm_larval_drop can be set to 1 by the following procedure:
1156 echo "1" > proc/sys/net/core/xfrm_larval_drop</programlisting>
1164 Why do I see 5 (or more) copies of named on Linux?
1169 Linux threads each show up as a process under ps. The
1170 approximate number of threads running is n+4, where n is
1171 the number of CPUs. Note that the amount of memory used
1172 is not cumulative; if each process is using 10M of memory,
1173 only a total of 10M is used.
1176 Newer versions of Linux's ps command hide the individual threads
1177 and require -L to display them.
1185 Why does BIND 9 log <quote>permission denied</quote> errors accessing
1186 its configuration files or zones on my Linux system even
1187 though it is running as root?
1192 On Linux, BIND 9 drops most of its root privileges on
1193 startup. This including the privilege to open files owned
1194 by other users. Therefore, if the server is running as
1195 root, the configuration files and zone files should also
1204 I get the error message <quote>named: capset failed: Operation
1205 not permitted</quote> when starting named.
1210 The capability module, part of "Linux Security Modules/LSM",
1211 has not been loaded into the kernel. See insmod(8), modprobe(8).
1214 The relevant modules can be loaded by running:
1217 modprobe capability</programlisting>
1225 I'm running BIND on Red Hat Enterprise Linux or Fedora Core -
1228 Why can't named update slave zone database files?
1231 Why can't named create DDNS journal files or update
1232 the master zones from journals?
1235 Why can't named create custom log files?
1241 Red Hat Security Enhanced Linux (SELinux) policy security
1246 Red Hat have adopted the National Security Agency's
1247 SELinux security policy (see <ulink
1248 url="http://www.nsa.gov/selinux"><http://www.nsa.gov/selinux></ulink>)
1249 and recommendations for BIND security , which are more
1250 secure than running named in a chroot and make use of
1251 the bind-chroot environment unnecessary .
1255 By default, named is not allowed by the SELinux policy
1256 to write, create or delete any files EXCEPT in these
1260 $ROOTDIR/var/named/slaves
1261 $ROOTDIR/var/named/data
1265 where $ROOTDIR may be set in /etc/sysconfig/named if
1266 bind-chroot is installed.
1270 The SELinux policy particularly does NOT allow named to modify
1271 the $ROOTDIR/var/named directory, the default location for master
1272 zone database files.
1276 SELinux policy overrules file access permissions - so
1277 even if all the files under /var/named have ownership
1278 named:named and mode rw-rw-r--, named will still not be
1279 able to write or create files except in the directories
1280 above, with SELinux in Enforcing mode.
1284 So, to allow named to update slave or DDNS zone files,
1285 it is best to locate them in $ROOTDIR/var/named/slaves,
1286 with named.conf zone statements such as:
1289 zone "slave.zone." IN {
1291 file "slaves/slave.zone.db";
1294 zone "ddns.zone." IN {
1296 allow-updates {...};
1297 file "slaves/ddns.zone.db";
1304 To allow named to create its cache dump and statistics
1305 files, for example, you could use named.conf options
1311 dump-file "/var/named/data/cache_dump.db";
1312 statistics-file "/var/named/data/named_stats.txt";
1320 You can also tell SELinux to allow named to update any
1321 zone database files, by setting the SELinux tunable boolean
1322 parameter 'named_write_master_zones=1', using the
1323 system-config-securitylevel GUI, using the 'setsebool'
1324 command, or in /etc/selinux/targeted/booleans.
1328 You can disable SELinux protection for named entirely by
1329 setting the 'named_disable_trans=1' SELinux tunable boolean
1334 The SELinux named policy defines these SELinux contexts for named:
1337 named_zone_t : for zone database files - $ROOTDIR/var/named/*
1338 named_conf_t : for named configuration files - $ROOTDIR/etc/{named,rndc}.*
1339 named_cache_t: for files modifiable by named - $ROOTDIR/var/{tmp,named/{slaves,data}}
1345 If you want to retain use of the SELinux policy for named,
1346 and put named files in different locations, you can do
1347 so by changing the context of the custom file locations
1352 To create a custom configuration file location, e.g.
1353 '/root/named.conf', to use with the 'named -c' option,
1357 # chcon system_u:object_r:named_conf_t /root/named.conf
1363 To create a custom modifiable named data location, e.g.
1364 '/var/log/named' for a log file, do:
1367 # chcon system_u:object_r:named_cache_t /var/log/named
1373 To create a custom zone file location, e.g. /root/zones/, do:
1376 # chcon system_u:object_r:named_zone_t /root/zones/{.,*}
1382 See these man-pages for more information : selinux(8),
1383 named_selinux(8), chcon(1), setsebool(8)
1391 I'm running BIND on Ubuntu -
1394 Why can't named update slave zone database files?
1397 Why can't named create DDNS journal files or update
1398 the master zones from journals?
1401 Why can't named create custom log files?
1406 Ubuntu uses AppArmor <ulink url="http://en.wikipedia.org/wiki/AppArmor">
1407 <http://en.wikipedia.org/wiki/AppArmor></ulink> in
1408 addition to normal file system permissions to protect the system.
1411 Adjust the paths to use those specified in /etc/apparmor.d/usr.sbin.named
1412 or adjust /etc/apparmor.d/usr.sbin.named to allow named to write at the
1413 location specified in named.conf.
1421 Listening on individual IPv6 interfaces does not work.
1426 This is usually due to "/proc/net/if_inet6" not being available
1427 in the chroot file system. Mount another instance of "proc"
1428 in the chroot file system.
1431 This can be be made permanent by adding a second instance to
1435 proc /proc proc defaults 0 0
1436 proc /var/named/proc proc defaults 0 0</programlisting>
1442 </qandadiv> <!-- Linux -->
1444 <qandadiv><title>Windows</title>
1449 Zone transfers from my BIND 9 master to my Windows 2000
1455 This may be caused by a bug in the Windows 2000 DNS server
1456 where DNS messages larger than 16K are not handled properly.
1457 This can be worked around by setting the option "transfer-format
1458 one-answer;". Also check whether your zone contains domain
1459 names with embedded spaces or other special characters,
1460 like "John\032Doe\213s\032Computer", since such names have
1461 been known to cause Windows 2000 slaves to incorrectly
1470 I get <quote>Error 1067</quote> when starting named under Windows.
1475 This is the service manager saying that named exited. You
1476 need to examine the Application log in the EventViewer to
1480 Common causes are that you failed to create "named.conf"
1481 (usually "C:\windows\dns\etc\named.conf") or failed to
1482 specify the directory in named.conf.
1487 Directory "C:\windows\dns\etc";
1493 </qandadiv> <!-- Windows -->
1495 <qandadiv><title>FreeBSD</title>
1500 I have FreeBSD 4.x and "rndc-confgen -a" just sits there.
1505 /dev/random is not configured. Use rndcontrol(8) to tell
1506 the kernel to use certain interrupts as a source of random
1507 events. You can make this permanent by setting rand_irqs
1512 rand_irqs="3 14 15"</programlisting>
1516 <ulink url="http://people.freebsd.org/~dougb/randomness.html">
1517 <http://people.freebsd.org/~dougb/randomness.html></ulink>.
1522 </qandadiv> <!-- FreeBSD -->
1524 <qandadiv><title>Solaris</title>
1529 How do I integrate BIND 9 and Solaris SMF
1534 Sun has a blog entry describing how to do this.
1538 url="http://blogs.sun.com/roller/page/anay/Weblog?catname=%2FSolaris">
1539 <http://blogs.sun.com/roller/page/anay/Weblog?catname=%2FSolaris>
1547 <qandadiv><title>Apple Mac OS X</title>
1552 How do I run BIND 9 on Apple Mac OS X?
1557 If you run Tiger(Mac OS 10.4) or later then this is all you need to do:
1561 % sudo rndc-confgen > /etc/rndc.conf</programlisting>
1564 Copy the key statement from /etc/rndc.conf into /etc/rndc.key, e.g.:
1569 algorithm hmac-sha256;
1570 secret "uvceheVuqf17ZwIcTydddw==";
1574 Then start the relevant service:
1578 % sudo service org.isc.named start</programlisting>
1581 This is persistent upon a reboot, so you will have to do it only once.
1587 Alternatively you can just generate /etc/rndc.key by running:
1591 % sudo rndc-confgen -a</programlisting>
1594 Then start the relevant service:
1598 % sudo service org.isc.named start</programlisting>
1601 Named will look for /etc/rndc.key when it starts if it
1602 doesn't have a controls section or the existing controls are
1603 missing keys sub-clauses. This is persistent upon a
1604 reboot, so you will have to do it only once.
1611 </qandadiv> <!-- Operating-System Specific Questions -->