]> git.ipfire.org Git - thirdparty/bind9.git/commit
new: usr: Add a new option to configure the maximum number of outgoing queries per...
authorMatthijs Mekking <matthijs@isc.org>
Thu, 5 Dec 2024 13:50:48 +0000 (13:50 +0000)
committerMatthijs Mekking <matthijs@isc.org>
Thu, 5 Dec 2024 13:50:48 +0000 (13:50 +0000)
commit80a5745a1f84fcc9d22165c5f6be5b38dadb2ea5
treeae2f6267b3572f733c55c2042636be2ccf87900e
parent522581469cab3331de2933b813bab9892c29a4d1
parent84df920d9e1e256e5132b10db098b1abfdda301e
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

Merge branch '4980-global-limit-outgoing-queries' into 'main'

See merge request isc-projects/bind9!9737