Date: Wed, 09 Jun 1999 13:20:36 -0400 From: McHugh <mchugh@actv.com> To: freebsd-questions@freebsd.org Subject: [Fwd: dns] Message-ID: <375EA264.CF1E755A@actv.com>
next in thread | raw e-mail | index | archive | help
Get O'Reilly's DNS and BIND - ISBN 1 56592 512 2 - has a load of
examples covering both BIND 4.x and BIND 8.x files and their
differences.
That being said - it's pretty easy:
Throw these lines in /etc/rc.conf
named_enable="YES"
named_program="/usr/sbin/named"
By default, named looks in /etc/namedb for configuration files. The
biggest changes happen in yer named.conf file.
// BIND configuration file - names & numbers changed to protect the
innocent
options {
directory "/etc/namedb";
forwarders { 172.16.50.254; 172.16.60.254; };
};
zone "yernamehere.com" in {
type slave;
file "db.yernamehere";
masters { 172.16.70.254; };
allow-transfer { 172.16.80.254; };
};
zone "30.16.172.in-addr.arpa" in {
type master;
file "db.172.16.30";
allow-transfer { none; };
};
etc...
Hope this helps..
Michael McHugh
"My friends, no matter how rough the road may be, we can and we will
never, never surrender to what is right." - Dan Quayle, Former U.S. Vice
President (1947-)
-------- Original Message --------
Subject: dns
Date: Wed, 9 Jun 1999 12:03:15 -0400
From: "CO DND" <aef3@attcanada.net>
To: <freebsd-questions@FreeBSD.ORG>
Hello there.My pkg of Freebsd came with the newer edition of Bind
version 8.2 . I am familiarwith Bind 4.3 but not this newer style. Is
there any documentation on how tosetup the newer DNS server.I have been
to the Internet Consortium for information and what there is the
samethat comes with the package. Is there any light you can shed on my
situation. I learn a great deal by example. Thanks M.Jennings
(jennings@kos.net)
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?375EA264.CF1E755A>
