This is a discussion on Re: Configuration confusion within the Bind Users forums, part of the DNS and Related Forums category; In article <bveeqc$ou5$1@sf1.isc.org>, dhogan@richland.k12.la.us (Daniel Hogan) wrote: > ISP ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
In article <bveeqc$ou5$1@sf1.isc.org>,
dhogan@richland.k12.la.us (Daniel Hogan) wrote: > ISP has the following names set up on their server: > > someserver1.ispdomain.com > someserver2.ispdomain.com > someserver3.ispdomain.com > > We have the following names: > > myserver4.ispdomain.com > myserver5.ispdomain.com > myserver6.ispdomain.com > > > I want to be able to keep myserver4, myserver5, and myserver6 > configuration only on our server, but be able to have our server ask > the ISP's server if anything else for ispdomain.com is asked. Configure them as three separate zones: zone "myserver4.ispdomain.com" { type master; ... }; zone "myserver5.ispdomain.com" { type master; ... }; zone "myserver6.ispdomain.com" { type master; ... }; -- Barry Margolin, barmar@alum.mit.edu Arlington, MA |