Skip to content

Commit

Permalink
- Increase the default of max-global-quota to 200 from 128 after
Browse files Browse the repository at this point in the history
  operational feedback. Still keeping the possible amplification
  factor (CAMP related issues) in the hundreds.
  • Loading branch information
gthess committed Nov 6, 2024
1 parent 3c4b876 commit fd1a1d5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/example.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion doc/unbound.conf.5.in
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion util/config_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit fd1a1d5

Please sign in to comment.