named.conf revision 2c089bf6d24936de631a57b4958ba6b8b5e3b23d
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews/*
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * Copyright (C) 2010-2013 Internet Systems Consortium, Inc. ("ISC")
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews *
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * Permission to use, copy, modify, and/or distribute this software for any
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * purpose with or without fee is hereby granted, provided that the above
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * copyright notice and this permission notice appear in all copies.
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews *
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews * PERFORMANCE OF THIS SOFTWARE.
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews */
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews/* $Id: named.conf,v 1.6 2012/02/09 23:47:18 tbox Exp $ */
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews// NS4
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrewscontrols { /* empty */ };
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrewsoptions {
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews query-source address 10.53.0.4 dscp 4;
c1ced49662181d2fb2343ed7bde71d170f0d1119Mark Andrews notify-source 10.53.0.4 dscp 5;
transfer-source 10.53.0.4 dscp 6;
port 5300;
pid-file "named.pid";
listen-on { 10.53.0.4; };
listen-on-v6 { none; };
recursion no;
// minimal-responses yes;
};
zone "." {
type master;
file "root.db";
};
zone "moves" {
type master;
file "moves.db";
};
zone "child.server" {
type master;
file "child.server.db";
};
zone "tld" {
type master;
file "tld.db";
};
zone "broken" {
type master;
file "broken.db";
};
key rndc_key {
secret "1234abcd8765";
algorithm hmac-sha256;
};
controls {
inet 10.53.0.4 port 9953 allow { any; } keys { rndc_key; };
};