1/* 2 * Copyright (C) Internet Systems Consortium, Inc. ("ISC") 3 * 4 * This Source Code Form is subject to the terms of the Mozilla Public 5 * License, v. 2.0. If a copy of the MPL was not distributed with this 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. 7 * 8 * See the COPYRIGHT file distributed with this work for additional 9 * information regarding copyright ownership. 10 */ 11 12options { 13 query-source address 10.53.0.2; 14 notify-source 10.53.0.2; 15 transfer-source 10.53.0.2; 16 port @PORT@; 17 pid-file "named.pid"; 18 session-keyfile "session.key"; 19 listen-on { 10.53.0.2; }; 20 listen-on-v6 { none; }; 21 notify no; 22 minimal-responses no; 23 recursion yes; 24 dnssec-validation yes; 25}; 26 27key rndc_key { 28 secret "1234abcd8765"; 29 algorithm hmac-sha256; 30}; 31controls { 32 inet 10.53.0.2 port @CONTROLPORT@ allow { any; } keys { rndc_key; }; 33}; 34 35include "../trusted.conf"; 36zone "." { type hint; file "hints"; }; 37 38zone "tld2." {type master; file "tld2.db";}; 39zone "sub1.tld2." {type master; file "tld2.db";}; 40zone "subsub.sub1.tld2." {type master; file "tld2.db";}; 41zone "sub2.tld2." {type master; file "tld2.db";}; 42zone "subsub.sub2.tld2." {type master; file "tld2.db";}; 43zone "sub3.tld2." {type master; file "tld2.db";}; 44zone "subsub.sub3.tld2." {type master; file "tld2.db";}; 45 46zone "tld2s." {type master; file "tld2s.db";}; 47 48zone "bl.tld2." {type master; file "bl.tld2.db"; 49 notify yes; notify-delay 0;}; 50