Thursday, April 3, 2008

Forwarding queries to local (no TLD) DNS zone

How do you get one name server to talk to another one, when you're using a local domain (one with no registered TLD)?

Use the 'forward' zone type and specify the remote name server to query:

zone "jdt" {
type forward;
forward only;
forwarders { 192.168.0.200; };
};

No comments: