/* * Copyright (C) 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC") * * 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 http://mozilla.org/MPL/2.0/. */ /* $Id: named.conf,v 1.1.4.3 2012/02/07 23:53:43 each Exp $ */ // NS3 controls { /* empty */ }; options { pid-file "named.pid"; listen-on port 5300 { 10.53.0.3; }; port 5300; listen-on-v6 { none; }; recursion no; notify no; dnssec-enable yes; }; key rndc_key { secret "1234abcd8765"; algorithm hmac-sha256; }; controls { inet 10.53.0.3 port 9953 allow { any; } keys { rndc_key; }; }; zone "example" { type master; masterfile-format map; file "example.db.map"; }; zone "dynamic" { type master; masterfile-format map; file "dynamic.db.map"; allow-update { any; }; };