* [PATCH 1/2] unbound: Only launch one process
@ 2020-03-04 21:11 Michael Tremer
2020-03-04 21:11 ` [PATCH 2/2] unbound: Disable using mixed case for DNS queries Michael Tremer
0 siblings, 1 reply; 2+ messages in thread
From: Michael Tremer @ 2020-03-04 21:11 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1588 bytes --]
When unbound is running multiple threads, we have observed
that queries where sent for each thread.
Since no user should have so much DNS traffic that more than
one processor core is being saturated, this is a safe change.
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne.fitzenreiter(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
src/initscripts/system/unbound | 19 -------------------
1 file changed, 19 deletions(-)
diff --git a/src/initscripts/system/unbound b/src/initscripts/system/unbound
index c845c436f..1cf26ec0e 100644
--- a/src/initscripts/system/unbound
+++ b/src/initscripts/system/unbound
@@ -191,15 +191,6 @@ write_forward_conf() {
write_tuning_conf() {
# https://www.unbound.net/documentation/howto_optimise.html
- # Determine number of online processors
- local processors=$(getconf _NPROCESSORS_ONLN)
-
- # Determine number of slabs
- local slabs=1
- while [ ${slabs} -lt ${processors} ]; do
- slabs=$(( ${slabs} * 2 ))
- done
-
# Determine amount of system memory
local mem=$(get_memory_amount)
@@ -234,16 +225,6 @@ write_tuning_conf() {
(
config_header
- # We run one thread per processor
- echo "num-threads: ${processors}"
- echo "so-reuseport: yes"
-
- # Adjust number of slabs
- echo "infra-cache-slabs: ${slabs}"
- echo "key-cache-slabs: ${slabs}"
- echo "msg-cache-slabs: ${slabs}"
- echo "rrset-cache-slabs: ${slabs}"
-
# Slice up the cache
echo "rrset-cache-size: $(( ${mem} / 2 ))m"
echo "msg-cache-size: $(( ${mem} / 4 ))m"
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] unbound: Disable using mixed case for DNS queries
2020-03-04 21:11 [PATCH 1/2] unbound: Only launch one process Michael Tremer
@ 2020-03-04 21:11 ` Michael Tremer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tremer @ 2020-03-04 21:11 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 631 bytes --]
This seems to cause that some resolvers do not respond
to queries any more until unbound falls back.
To ensure better DNS performance, we disabled this.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/unbound/unbound.conf | 1 -
1 file changed, 1 deletion(-)
diff --git a/config/unbound/unbound.conf b/config/unbound/unbound.conf
index c78ca1db7..3aab6ea46 100644
--- a/config/unbound/unbound.conf
+++ b/config/unbound/unbound.conf
@@ -42,7 +42,6 @@ server:
# Hardening Options
harden-large-queries: yes
harden-referral-path: yes
- use-caps-for-id: yes
aggressive-nsec: yes
# TLS
--
2.20.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-04 21:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-04 21:11 [PATCH 1/2] unbound: Only launch one process Michael Tremer
2020-03-04 21:11 ` [PATCH 2/2] unbound: Disable using mixed case for DNS queries Michael Tremer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox