mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Default --fast-dns-retries on when doing DNSSEC.
When doing DNSSEC validation, a single downstream query may trigger many upstream queries. On an unreliable network, there may not be enough downstream retries to ensure that all these queries complete.
This commit is contained in:
@@ -114,7 +114,8 @@ which defaults to 1000ms. If the second parameter is given this controls
|
|||||||
how long the retries will continue for
|
how long the retries will continue for
|
||||||
otherwise this defaults to 10000ms. Retries are repeated with exponential
|
otherwise this defaults to 10000ms. Retries are repeated with exponential
|
||||||
backoff. Using this option increases memory usage and
|
backoff. Using this option increases memory usage and
|
||||||
network bandwidth.
|
network bandwidth. If not otherwise configured, this option is activated
|
||||||
|
with the default parameters when \fB--dnssec\fP is set.
|
||||||
.TP
|
.TP
|
||||||
.B \-k, --keep-in-foreground
|
.B \-k, --keep-in-foreground
|
||||||
Do not go into the background at startup but otherwise run as
|
Do not go into the background at startup but otherwise run as
|
||||||
|
|||||||
@@ -6027,6 +6027,15 @@ void read_opts(int argc, char **argv, char *compile_opts)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_DNSSEC
|
||||||
|
/* Default fast retry on when doing DNSSEC */
|
||||||
|
if (option_bool(OPT_DNSSEC_VALID) && daemon->fast_retry_time == 0)
|
||||||
|
{
|
||||||
|
daemon->fast_retry_timeout = TIMEOUT;
|
||||||
|
daemon->fast_retry_time = DEFAULT_FAST_RETRY;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* port might not be known when the address is parsed - fill in here */
|
/* port might not be known when the address is parsed - fill in here */
|
||||||
if (daemon->servers)
|
if (daemon->servers)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user