For making sure a resolver is also able to resolve when not connected to the internet (which is usually not the case), I have configured a forward zone:
zone "example.com" {
type forward;
forward only;
forwarders { 1.2.3.4; 5.6.7.8; };
}
The forwarders listed there are the authoritative nameservers. This works great except the zone given there is dnssec-enabled. Validation fails because the request is made no recursively and thus not signed correctly (which I expect).
I don't want to turn off the dnssec validation for that zone, but instead, trust the key.
How can I achieve that? Is it possible to configure that per zone?
Related to: bind9 configure forward zone for local domain without DNSSEC for this zone only