Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Nov 2002 21:54:14 +0100 (CET)
From:      Michal Mertl <mime@traveller.cz>
To:        questions@FreeBSD.ORG
Cc:        Mark <admin@asarian-host.net>
Subject:   Re: BIND
Message-ID:  <Pine.BSF.4.41.0211102149500.60719-100000@prg.traveller.cz>

next in thread | raw e-mail | index | archive | help
Configuration of bind 8.x to stop outside world using your nameserver
looks like this (only relevant part shown):

options {
        allow-query { localnets; localhost; internal_net;};
        allow-transfer { localnets; localhost; internal_net;};
        allow-recursion { localhost; localnets; internal_net;};
};

zone "." {
        type hint;
        file "named.root";
};

zone "example.com" {
	type master;
	file "example.com";
        allow-transfer { important_servers; localhost; };
        allow-query { any; };
};



-- 
Michal Mertl
mime@traveller.cz



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.41.0211102149500.60719-100000>