Sometimes doth test could intermittently fail shortly after start due
to inability to complete a zone transfer in time. As it turned out, it
could happen due to transfers-in/out limits. Initially the defaults
were fine, but over time, especially when adding Strict/Mutual TLS, we
added more than 10 zones so it became possible to hit the limits.
This commit takes care of that by bumping the limits.
statistics-file "named.stats";
dnssec-validation yes;
tcp-initial-timeout 1200;
+ transfers-in 100;
+ transfers-out 100;
};
zone "." {
ixfr-from-differences yes;
check-integrity no;
dnssec-validation yes;
+ transfers-in 100;
+ transfers-out 100;
};
zone "." {