2

I have a dozen domains configured in a set of zones in BIND and I need to add a new one with DNSSEC enabled. If I enable DNSSEC:

options {
    dnssec-enable yes;
    dnssec-validation yes;
};

Will it break the other domains? It looks like it won't, but I want to be sure.

Adriano P
  • 153
  • 5

1 Answers1

0

Yes, the DNSSEC settings are per zone. Setting the options for one zone does not affect any others.

Calle Dybedahl
  • 524
  • 3
  • 5