]> git.ipfire.org Git - thirdparty/bind9.git/commit
[9.18] new: usr: Add a new option to configure the maximum number of outgoing queries...
authorMatthijs Mekking <matthijs@isc.org>
Fri, 6 Dec 2024 15:17:58 +0000 (15:17 +0000)
committerMatthijs Mekking <matthijs@isc.org>
Fri, 6 Dec 2024 15:17:58 +0000 (15:17 +0000)
commit64b2b6edffa830ba22f54481192ea302240f5d54
treed4b35795c8a24d1ddbac5872e53541685e5145c2
parent185503def1ebaae6990b28688b6c5971274e2044
parent84519c106ccadec10de28da31d8d0bbc939b0804
[9.18] new: usr: Add a new option to configure the maximum number of outgoing queries per client request

The configuration option 'max-query-count' sets how many outgoing queries per client request is allowed. The existing 'max-recursion-queries' is the number of permissible queries for a single name and is reset on every CNAME redirection. This new option is a global limit on the client request. The default is 200.

This allows us to send a bit more queries while looking up a single name. The default for 'max-recursion-queries' is changed from 32 to 50.

Closes #4980 Closes #4921

Backport of MR !9737

Merge branch 'backport-4980-global-limit-outgoing-queries-9.18' into 'bind-9.18'

See merge request isc-projects/bind9!9847