Hi there,
I'm running some bind servers. To be able to move the Bind application to a different server, we're using service IPs.
E.g.
Master server:
Server-IP: 172.16.0.1/16
Service-IP: 172.16.1.1/16 (=Secondary IP + Listen address in named.conf)
Slave server:
Server-IP: 172.16.0.2/16
Service-IP: 172.16.1.2/16 (=Secondary IP + Listen address in named.conf)
The clients use 172.16.1.1 and 172.16.1.2 in their resolv.conf.
When I update a zone file on the master zone the slave will be notified. But the notification will be send on 172.16.0.1 and not on 172.16.1.1. On the slave server the problem is similar. The zone transfer will be requested from 172.16.0.2 and not from 172.16.1.1.
So I have to specify in the zone definition of the Master: allow-transfer { 172.16.1.1; 172.16.0.1; }; and on the Slave: allow-notify { 172.16.0.1; };
How can I bind the Named server to use explicitly the secondary IP for inbound (listen) and outbound (sending) traffic?

