I'd like to configure bind9 as DNS slave server doing axfr from a DNS master server (PowerDNS) which is behind a dynamic IP.
The usual configuartion is:
zone "example.com" {
type slave;
masters { 198.199.120.1; };
file "/var/lib/bind/db.example.com";
};
I can't simply change the IPv4 (198.199.120.1) into a FQDN (mydynaddr.home.net).
How can I do this?