On 17/06/10 14:36, Torsten wrote:

The important part seems to be "on a secondary IP" and afaik listen-on
statements don't work inside of view statements.

That leaves you with running two seperate instances of Bind on the same
server.

Eh?. You simply do:

options {
  listen-on { ip-primary; ip-secondary; };
}

view authoritative {
  match-destinations { ip-primary; };
  recursion no;
  zone ...
}

view recursive {
  match-destinations { ip-secondary; };
  recursion yes;
}

You most certainly don't need a 2nd process to run an authoritative and recursive server on different IPs.

Or am I misunderstanding you?
_______________________________________________
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users

Reply via email to