named2.conf revision 27c1fa93a0b4cef925ddbc69e6cd2bdb78240fea
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews/*
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence * Copyright (C) 2000 Internet Software Consortium.
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews *
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * Permission to use, copy, modify, and distribute this software for any
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews * purpose with or without fee is hereby granted, provided that the above
d0be1e954bd4674fc27f2616c72adb37cf3525a2David Lawrence * copyright notice and this permission notice appear in all copies.
70e5a7403f0e0a3bd292b8287c5fed5772c15270Automatic Updater *
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer * SOFTWARE.
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer */
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer/* $Id: named2.conf,v 1.8 2000/07/10 11:39:48 tale Exp $ */
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyeroptions {
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer query-source address 10.53.0.2;
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer port 5300;
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer pid-file "named.pid";
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer listen-on { 10.53.0.2;
f4f73ec517c5389acb234bc737265f8c98ad17f9Michael Sawyer 10.53.0.4; };
listen-on-v6 {none;};
recursion no;
notify yes;
};
key rndc_key {
secret "1234abcd8765";
algorithm hmac-md5;
};
controls {
inet 10.53.0.2 port 11953 allow { 10.53.0.2; } keys { rndc_key; };
};
view "internal" {
match-clients { 10.53.0.2;
10.53.0.3; };
zone "." {
type hint;
file "root.hint";
};
zone "example" {
type master;
file "internal.db";
allow-update { any; };
};
};
view "external" {
match-clients { any; };
zone "." {
type hint;
file "root.hint";
};
zone "example" {
type master;
file "example.db";
};
};