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 14options { 15 query-source address 10.53.0.10; 16 notify-source 10.53.0.10; 17 transfer-source 10.53.0.10; 18 port @PORT@; 19 pid-file "named.pid"; 20 listen-on { 10.53.0.10; }; 21 listen-on-v6 { none; }; 22 minimal-responses no; 23 dnssec-validation no; 24}; 25 26zone "net." { 27 type master; 28 file "fakenet.zone"; 29}; 30 31zone "spoofed.net." { 32 type master; 33 file "spoofednet.zone"; 34}; 35 36zone "sub.local.net." { 37 type master; 38 file "fakesublocalnet.zone"; 39}; 40 41zone "net2" { 42 type master; 43 file "fakenet2.zone"; 44}; 45 46zone "net.example.lll" { 47 type master; 48 file "net.example.lll"; 49}; 50 51zone "sub.local.tld." { 52 type master; 53 file "fakesublocaltld.zone"; 54}; 55