1 1.12 kim # $NetBSD: named.conf,v 1.12 2025/08/06 01:56:18 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.5 dholland # 23 1.5 dholland # This forces all queries to come from port 53; might be 24 1.5 dholland # needed for firewall traversals but should be avoided if 25 1.5 dholland # at all possible because of the risk of spoofing attacks. 26 1.5 dholland # 27 1.5 dholland #query-source address * port 53; 28 1.1 tron }; 29 1.1 tron 30 1.1 tron zone "." { 31 1.1 tron type hint; 32 1.1 tron file "root.cache"; 33 1.1 tron }; 34 1.1 tron 35 1.1 tron zone "localhost" { 36 1.1 tron type master; 37 1.1 tron file "localhost"; 38 1.1 tron }; 39 1.1 tron 40 1.1 tron zone "127.IN-ADDR.ARPA" { 41 1.1 tron type master; 42 1.1 tron file "127"; 43 1.1 tron }; 44 1.1 tron 45 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" { 46 1.1 tron type master; 47 1.1 tron file "loopback.v6"; 48 1.1 tron }; 49 1.1 tron 50 1.1 tron # example secondary server config: 51 1.1 tron # 52 1.1 tron # zone "Berkeley.EDU" { 53 1.1 tron # type slave; 54 1.1 tron # file "berkeley.edu.cache"; 55 1.1 tron # masters { 56 1.1 tron # 128.32.130.11; 57 1.1 tron # 128.32.133.1; 58 1.1 tron # }; 59 1.1 tron # }; 60 1.1 tron 61 1.1 tron # zone "32.128.IN-ADDR.ARPA" { 62 1.1 tron # type slave; 63 1.1 tron # file "128.32.cache"; 64 1.1 tron # masters { 65 1.1 tron # 128.32.130.11; 66 1.1 tron # 128.32.133.1; 67 1.1 tron # }; 68 1.1 tron # }; 69 1.1 tron 70 1.1 tron # example primary server config: 71 1.1 tron # 72 1.1 tron # zone "Berkeley.EDU" { 73 1.1 tron # type master; 74 1.1 tron # file "berkeley.edu"; 75 1.1 tron # }; 76 1.1 tron 77 1.1 tron # zone "32.128.IN-ADDR.ARPA" { 78 1.1 tron # type master; 79 1.1 tron # file "128.32"; 80 1.1 tron # }; 81