named.conf revision 2c089bf6d24936de631a57b4958ba6b8b5e3b23d
63737247d167ffa7151bc3d228ca5c0875751818Tinderbox User/*
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Copyright (C) 2011-2013 Internet Systems Consortium, Inc. ("ISC")
63737247d167ffa7151bc3d228ca5c0875751818Tinderbox User *
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Permission to use, copy, modify, and/or distribute this software for any
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * purpose with or without fee is hereby granted, provided that the above
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * copyright notice and this permission notice appear in all copies.
63737247d167ffa7151bc3d228ca5c0875751818Tinderbox User *
63737247d167ffa7151bc3d228ca5c0875751818Tinderbox User * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
b5f4cc132e91afb1217f4aa79424793c0e11c09aMark Andrews * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
2c089bf6d24936de631a57b4958ba6b8b5e3b23dMark Andrews * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
2c089bf6d24936de631a57b4958ba6b8b5e3b23dMark Andrews * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
b5f4cc132e91afb1217f4aa79424793c0e11c09aMark Andrews * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
b5f4cc132e91afb1217f4aa79424793c0e11c09aMark Andrews * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
2c089bf6d24936de631a57b4958ba6b8b5e3b23dMark Andrews * PERFORMANCE OF THIS SOFTWARE.
b5f4cc132e91afb1217f4aa79424793c0e11c09aMark Andrews */
/* $Id: named.conf,v 1.4 2011/06/10 01:32:37 each Exp $ */
controls { /* empty */ };
options {
port 5300;
pid-file "named.pid";
session-keyfile "session.key";
listen-on { 10.53.0.2; };
listen-on-v6 { none; };
recursion no;
};
key rndc_key {
secret "1234abcd8765";
algorithm hmac-sha256;
};
key secondkey {
secret "abcd1234abcd8765";
algorithm hmac-sha256;
};
controls {
inet 10.53.0.2 port 9953 allow { any; } keys { rndc_key; secondkey; };
};
zone "." {
type hint;
file "../../common/root.hint";
};
zone "nil" {
type master;
update-policy local;
file "nil.db";
ixfr-from-differences yes;
};
zone "other" {
type master;
update-policy local;
file "other.db";
};
zone "static" {
type master;
file "static.db";
};
zone "incl" {
type master;
file "incl.db";
};