/*
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
 *
 * SPDX-License-Identifier: MPL-2.0
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0.  If a copy of the MPL was not distributed with this
 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * See the COPYRIGHT file distributed with this work for additional
 * information regarding copyright ownership.
 */

options {
	query-source address 10.53.0.9;
	notify-source 10.53.0.9;
	transfer-source 10.53.0.9;
	port @PORT@;
	pid-file "named.pid";
	listen-on { 10.53.0.9; };
	listen-on-v6 { none; };
	dnssec-validation no;
	edns-udp-size 1232;
};

{% include "_common/controls.conf.j2" %}

server 10.53.0.10 {
	edns no;
};

server 10.53.0.11 {
	edns no;
};

zone "." {
	type hint;
	file "root.db";
};

zone "attacksecuredomain.net." {
	type forward;
	forwarders { 10.53.0.10; };
};

zone "attacksecuredomain.net2." {
	type forward;
	forwarders { 10.53.0.10; };
};

zone "attacksecuredomain.net3." {
	type forward;
	forwarders { 10.53.0.11; };
};

zone "local.net." {
	type primary;
	file "local.net.db";
	forwarders {};
};
