1 /* 2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 * 4 * SPDX-License-Identifier: MPL-2.0 5 * 6 * This Source Code Form is subject to the terms of the Mozilla Public 7 * License, v. 2.0. If a copy of the MPL was not distributed with this 8 * file, you can obtain one at https://mozilla.org/MPL/2.0/. 9 * 10 * See the COPYRIGHT file distributed with this work for additional 11 * information regarding copyright ownership. 12 */ 13 14 {% if FEATURE_FIPS_DH == "1" %} 15 include "named-tls.conf"; 16 {% endif %} 17 18 options { 19 query-source address 10.53.0.2; 20 query-source-v6 address fd92:7065:b8e:ffff::2; 21 notify-source 10.53.0.2; 22 notify-source-v6 fd92:7065:b8e:ffff::2; 23 transfer-source 10.53.0.2; 24 transfer-source-v6 fd92:7065:b8e:ffff::2; 25 port @PORT@; 26 pid-file "named.pid"; 27 listen-on { 10.53.0.2; }; 28 listen-on-v6 { fd92:7065:b8e:ffff::2; }; 29 recursion no; 30 dnssec-validation no; 31 32 {% if FEATURE_FIPS_DH == "1" %} 33 tls-port @TLSPORT@; 34 listen-on tls ephemeral { 10.53.0.2; }; 35 listen-on port @EXTRAPORT1@ tls tls-forward-secrecy { 10.53.0.2; }; 36 listen-on port @EXTRAPORT2@ tls tls-forward-secrecy-mutual-tls { 10.53.0.2; }; 37 listen-on port @EXTRAPORT3@ tls tls-expired { 10.53.0.2; }; 38 {% endif %} 39 40 }; 41 42 zone "." { 43 type hint; 44 file "root.db"; 45 }; 46 47 zone "example1." { 48 type primary; 49 file "example.db"; 50 }; 51 52 zone "example2." { 53 type primary; 54 file "example.db"; 55 }; 56 57 zone "example3." { 58 type primary; 59 file "example.db"; 60 }; 61 62 zone "example4." { 63 type primary; 64 file "example.db"; 65 }; 66 67 zone "example7." { 68 type primary; 69 file "example.db"; 70 }; 71 72 zone "example8." { 73 type primary; 74 file "example.db"; 75 }; 76 77 zone "example9." { 78 type primary; 79 file "example.db"; 80 }; 81 82 zone "grafted." { 83 type primary; 84 file "example.db"; 85 }; 86 87 zone "1.0.10.in-addr.arpa." { 88 type primary; 89 file "example.db"; 90 }; 91 92 zone "tld" { 93 type primary; 94 file "tld.db"; 95 }; 96