1 ; Copyright (C) Internet Systems Consortium, Inc. ("ISC") 2 ; 3 ; SPDX-License-Identifier: MPL-2.0 4 ; 5 ; This Source Code Form is subject to the terms of the Mozilla Public 6 ; License, v. 2.0. If a copy of the MPL was not distributed with this 7 ; file, you can obtain one at https://mozilla.org/MPL/2.0/. 8 ; 9 ; See the COPYRIGHT file distributed with this work for additional 10 ; information regarding copyright ownership. 11 12 $TTL 300 13 $ORIGIN @fqdn@ 14 15 @fqdn@ IN SOA mname1. . ( 16 1 ; serial 17 20 ; refresh (20 seconds) 18 20 ; retry (20 seconds) 19 1814400 ; expire (3 weeks) 20 3600 ; minimum (1 hour) 21 ) 22 23 NS ns2 24 25 ns2 A 10.53.0.2 26 ns3 A 10.53.0.3 27 28 scanner A 10.53.0.2 29 30 *._dsync DSYNC CDS NOTIFY @PORT@ scanner 31 32 {% for dnskey in dnskeys %} 33 @dnskey@ 34 {% endfor %} 35 36 {% for zone in delegations %} 37 {% set ns_name = zone.ns.name + "." + zone.name %} 38 @zone.name@. NS @ns_name@. 39 @ns_name@. A @zone.ns.ip@ 40 {% endfor %} 41