forked from ISTI-ansible-roles/ansible-roles
Merge branch 'master' of adellam/ansible-roles into master
This commit is contained in:
commit
edcfb458f3
|
@ -18,3 +18,14 @@ unbound_threads: '{{ ansible_processor_count }}'
|
||||||
|
|
||||||
unbound_remote_control: 'yes'
|
unbound_remote_control: 'yes'
|
||||||
unbound_remote_IP: '127.0.0.1'
|
unbound_remote_IP: '127.0.0.1'
|
||||||
|
|
||||||
|
unbound_rrset_cache_size: 100m
|
||||||
|
unbound_rrset_msg_cache_size: 50m
|
||||||
|
# Larger socket buffer. OS may need config.
|
||||||
|
unbound_so_rcvbuf: 4m
|
||||||
|
unbound_so_sndbuf: 4m
|
||||||
|
# Faster UDP with multithreading (only on Linux).
|
||||||
|
unbound_so_reuseport: 'yes'
|
||||||
|
# with libevent
|
||||||
|
unbound_outgoing_range: 8192
|
||||||
|
unbound_num_queries_per_thread: 4096
|
||||||
|
|
|
@ -21,22 +21,22 @@ server:
|
||||||
key-cache-slabs: {{ unbound_threads }}
|
key-cache-slabs: {{ unbound_threads }}
|
||||||
|
|
||||||
# more cache memory, rrset=msg*2
|
# more cache memory, rrset=msg*2
|
||||||
rrset-cache-size: 100m
|
rrset-cache-size: {{ unbound_rrset_cache_size }}
|
||||||
msg-cache-size: 50m
|
msg-cache-size: {{ unbound_rrset_msg_cache_size }}
|
||||||
|
|
||||||
# more outgoing connections
|
# more outgoing connections
|
||||||
# depends on number of cores: 1024/cores - 50
|
# depends on number of cores: 1024/cores - 50
|
||||||
outgoing-range: {{ 1024 / unbound_threads - 50 }}
|
outgoing-range: {{ 1024 // unbound_threads - 50 }}
|
||||||
|
|
||||||
# Larger socket buffer. OS may need config.
|
# Larger socket buffer. OS may need config.
|
||||||
so-rcvbuf: 4m
|
so-rcvbuf: {{ unbound_so_rcvbuf }}
|
||||||
so-sndbuf: 4m
|
so-sndbuf: {{ unbound_so_sndbuf }}
|
||||||
|
|
||||||
# Faster UDP with multithreading (only on Linux).
|
# Faster UDP with multithreading (only on Linux).
|
||||||
so-reuseport: yes
|
so-reuseport: {{ unbound_so_reuseport }}
|
||||||
# with libevent
|
# with libevent
|
||||||
outgoing-range: 8192
|
outgoing-range: {{ unbound_outgoing_range }}
|
||||||
num-queries-per-thread: 4096
|
num-queries-per-thread: {{ unbound_num_queries_per_thread }}
|
||||||
{% if ansible_service_mgr == 'systemd' %}
|
{% if ansible_service_mgr == 'systemd' %}
|
||||||
use-systemd: yes
|
use-systemd: yes
|
||||||
do-daemonize: no
|
do-daemonize: no
|
||||||
|
|
Loading…
Reference in New Issue