Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Oct 1997 23:18:13 -0500
From:      "Mark Segal" <mark@club-web.com>
To:        <marcin@v-m.com>
Cc:        <freebsd-isp@freebsd.org>
Subject:   Re: Secondary Setup/.....
Message-ID:  <199710280420.XAA09016@bert.club-web.com>

next in thread | raw e-mail | index | archive | help
>We are also trying to setup secondary ....but is there a trick or some
>kind a config that will allow the NAMED  to "update"  automaticly in few
>seconds....? Is there some kind of refresh setup. update?

 yes.. you just make the secondary server a slave to the primary..
just put this in your named.boot or named.conf (DNS startup file)

For BIND 8.*:
-----
zone "yourname.com" {
    type slave;
    file "db.yourname.com"
    masters {
        10.1.1.1  #replace with your primary server ip
     };
};
----

and in bind 4.*  (i think)
---
secondary    yourname.com    db.yourname.com    10.1.1.1
---

mark
 -- 
Mark Segal
mark@club-web.com
System Administrator - Club-Web Inc.






Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199710280420.XAA09016>