named.conf revision 4f37905cc38162128a507e619e38ae535720686b
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman/*
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * Copyright (C) 2000 Internet Software Consortium.
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman *
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * Permission to use, copy, modify, and distribute this software for any
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * purpose with or without fee is hereby granted, provided that the above
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * copyright notice and this permission notice appear in all copies.
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman *
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
3b38e4b8344cb3bb28f2b116d2e39f8371ef8e34Mukund Sivaraman * INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: named.conf,v 1.8 2000/11/22 01:34:08 gson Exp $ */
options {
query-source address 10.53.0.3;
transfer-source 10.53.0.3;
port 5300;
pid-file "named.pid";
listen-on { 10.53.0.3; };
listen-on-v6 { none; };
recursion yes;
notify yes;
};
zone "." {
type hint;
file "root.hint";
};
zone "example" {
type master;
file "example.db";
};
zone "child.example" {
type stub;
file "child.example.st";
masters { 10.53.0.2; };
};