[SunHELP] Cache only DNS server
Steve Wingate
sunhelp at sunhelp.org
Mon Nov 19 12:28:41 CST 2001
On Mon, 19 Nov 2001 12:04:03 +0800
"Beng Yen Lee" <lby_time at time.net.my> wrote:
> Hi,
> I have try to configure cache-only DNS server but I failed. So could you
> please help/teach me how to configure this Cache-only DNS server.
>
> cache-only DNS server ip address : 192.168.6.99
> Cache-only DNS server will point to other DNS server (e.g. TMnet DNS
> server) : 202.188.1.5 and 202.188.0.133
>
# for a BIND8.x forwarding server
options {
forwarders {202.188.1.5; 202.188.0.133;
202.188.1.5; 202.188.0.133};
forward only;
};
---------------------
# To create a BIND8.x caching server
options {
directory "/usr/local/named";
// or your own data directory
};
zone "0.0.127.in-addr.arpa" {
type master;
file "db.127.0.0";
};
zone "." {
type hint;
file "db.cache";
};
More information about the SunHELP
mailing list