]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Increase the default of max-global-quota to 200 from 128 after
authorYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 6 Nov 2024 15:28:37 +0000 (16:28 +0100)
committerYorgos Thessalonikefs <yorgos@nlnetlabs.nl>
Wed, 6 Nov 2024 15:28:37 +0000 (16:28 +0100)
  operational feedback. Still keeping the possible amplification
  factor (CAMP related issues) in the hundreds.

doc/Changelog
doc/example.conf.in
doc/unbound.conf.5.in
util/config_file.c

index aeabd527edb472aa2d4ec907bcd0946d50dfb1cb..5372bcc9b08ec762b0532d87a7707449036d55eb 100644 (file)
@@ -1,3 +1,8 @@
+6 November 2024: Yorgos
+       - Increase the default of max-global-quota to 200 from 128 after
+         operational feedback. Still keeping the possible amplification
+         factor (CAMP related issues) in the hundreds.
+
 5 November 2024: Wouter
        - Fix for the serve expired DNSSEC information fix, it would not allow
          current delegation information be updated in cache. The fix allows
index 06e2b4ba8326685e7890b90496d426566f8fce8e..207fa33c6f9c317c67c57b56ac242a553a36eb08 100644 (file)
@@ -194,7 +194,7 @@ server:
        # iter-scrub-cname: 11
 
        # Limit on upstream queries for an incoming query and its recursion.
-       # max-global-quota: 128
+       # max-global-quota: 200
 
        # msec for waiting for an unknown server to reply.  Increase if you
        # are behind a slow satellite link, to eg. 1128.
index 780077b7911b82a3f4d66b31955187f6b6c5cca5..944a57c5bf620118cfbcdb1fcc051e059ef43274 100644 (file)
@@ -1997,7 +1997,7 @@ Default is 11.
 Limit on the number of upstream queries sent out for an incoming query and
 its subqueries from recursion. It is not reset during the resolution. When
 it is exceeded the query is failed and the lookup process stops.
-Default is 128.
+Default is 200.
 .TP 5
 .B fast\-server\-permil: \fI<number>
 Specify how many times out of 1000 to pick from the set of fastest servers.
index aca0039d487ad6364d8cbfa11123514055e74b41..247d7c9f46c9a6cb4979594bdbbc15a6b35ad803 100644 (file)
@@ -416,7 +416,7 @@ config_create(void)
        cfg->ede = 0;
        cfg->iter_scrub_ns = 20;
        cfg->iter_scrub_cname = 11;
-       cfg->max_global_quota = 128;
+       cfg->max_global_quota = 200;
        return cfg;
 error_exit:
        config_delete(cfg);