1 1.13 kim # $NetBSD: named.conf,v 1.13 2025/08/06 02:01:22 kim Exp $ 2 1.1 tron 3 1.1 tron # boot file for secondary name server 4 1.1 tron # Note that there should be one primary entry for each SOA record. 5 1.7 christos # If you cannot get DNSSEC to work, and you see the following message: 6 1.7 christos # DNSKEY: verify failed due to bad signature (keyid=19036): \ 7 1.7 christos # RRSIG validity period has not begun 8 1.7 christos # Fix your clock. You can comment out the dnssec entries temporarily to 9 1.7 christos # get to an ntp server. 10 1.1 tron 11 1.1 tron options { 12 1.1 tron directory "/etc/namedb"; 13 1.7 christos dnssec-validation auto; 14 1.6 christos managed-keys-directory "keys"; 15 1.7 christos bindkeys-file "bind.keys"; 16 1.4 itojun allow-recursion { localhost; localnets; }; 17 1.12 kim 18 1.12 kim # https://www.dnsflagday.net/2020/ 19 1.12 kim max-udp-size 1232; 20 1.12 kim edns-udp-size 1232; 21 1.5 dholland 22 1.13 kim # RFC 8482 23 1.13 kim minimal-any yes; 24 1.13 kim minimal-responses yes; 25 1.13 kim 26 1.5 dholland # 27 1.5 dholland # This forces all queries to come from port 53; might be 28 1.5 dholland # needed for firewall traversals but should be avoided if 29 1.5 dholland # at all possible because of the risk of spoofing attacks. 30 1.5 dholland # 31 1.5 dholland #query-source address * port 53; 32 1.1 tron }; 33 1.1 tron 34 1.1 tron zone "." { 35 1.1 tron type hint; 36 1.1 tron file "root.cache"; 37 1.1 tron }; 38 1.1 tron 39 1.1 tron zone "localhost" { 40 1.1 tron type master; 41 1.1 tron file "localhost"; 42 1.1 tron }; 43 1.1 tron 44 1.1 tron zone "127.IN-ADDR.ARPA" { 45 1.1 tron type master; 46 1.1 tron file "127"; 47 1.1 tron }; 48 1.1 tron 49 1.1 tron zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" { 50 1.1 tron type master; 51 1.1 tron file "loopback.v6"; 52 1.1 tron }; 53 1.1 tron 54 1.1 tron # example secondary server config: 55 1.1 tron # 56 1.1 tron # zone "Berkeley.EDU" { 57 1.1 tron # type slave; 58 1.1 tron # file "berkeley.edu.cache"; 59 1.1 tron # masters { 60 1.1 tron # 128.32.130.11; 61 1.1 tron # 128.32.133.1; 62 1.1 tron # }; 63 1.1 tron # }; 64 1.1 tron 65 1.1 tron # zone "32.128.IN-ADDR.ARPA" { 66 1.1 tron # type slave; 67 1.1 tron # file "128.32.cache"; 68 1.1 tron # masters { 69 1.1 tron # 128.32.130.11; 70 1.1 tron # 128.32.133.1; 71 1.1 tron # }; 72 1.1 tron # }; 73 1.1 tron 74 1.1 tron # example primary server config: 75 1.1 tron # 76 1.1 tron # zone "Berkeley.EDU" { 77 1.1 tron # type master; 78 1.1 tron # file "berkeley.edu"; 79 1.1 tron # }; 80 1.1 tron 81 1.1 tron # zone "32.128.IN-ADDR.ARPA" { 82 1.1 tron # type master; 83 1.1 tron # file "128.32"; 84 1.1 tron # }; 85