Need help with a STRANGE configuration

Barry Margolin barmar at bbnplanet.com
Mon Jan 10 20:16:33 UTC 2000


In article <slrn87k8fl.gan.lurker at angband.org>,
Chris A. Henesy <lurker at NO.SPAM.cc.gatech.edu> wrote:
>What I would like to do is set up BIND on my box so that it is a cacheing       
>nameserver that forwards requests for machines in mydomain.com,                 
>subdomain.mydomain.com, moresubdomains.mydomain.com, etc., to our internal      
>DNS server, and requests for all other domains to the ISP's DNS server.         
>(My machine itself will store no zonefiles)                                     

options {
  forwarders { <ISP's DNS server address>; };
  forward only;
};

zone "mydomain.com" {
  type forward;
  forwarders { <internal DNS server address>; };
};

The "type forward" zone was introduced in BIND 8.2.

-- 
Barry Margolin, barmar at bbnplanet.com
GTE Internetworking, Powered by BBN, Burlington, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.



More information about the bind-users mailing list