- Change default value for 'rrset-roundrobin' to yes.

This commit is contained in:
George Thessalonikefs 2020-04-21 12:58:48 +02:00
parent cee3098e87
commit 226d66ca92
5 changed files with 8 additions and 5 deletions

View file

@ -1,3 +1,6 @@
21 April 2020: George
- Change default value for 'rrset-roundrobin' to yes.
20 April 2020: Wouter 20 April 2020: Wouter
- Fix #222: --enable-rpath, fails to rpath python lib. - Fix #222: --enable-rpath, fails to rpath python lib.
- Fix for count of reply states in the mesh. - Fix for count of reply states in the mesh.

View file

@ -473,7 +473,7 @@ server:
# deny-any: no # deny-any: no
# if yes, Unbound rotates RRSet order in response. # if yes, Unbound rotates RRSet order in response.
# rrset-roundrobin: no # rrset-roundrobin: yes
# if yes, Unbound doesn't insert authority/additional sections # if yes, Unbound doesn't insert authority/additional sections
# into response messages when those sections are not required. # into response messages when those sections are not required.

View file

@ -932,7 +932,7 @@ are none.
.TP .TP
.B rrset\-roundrobin: \fI<yes or no> .B rrset\-roundrobin: \fI<yes or no>
If yes, Unbound rotates RRSet order in response (the random number is taken If yes, Unbound rotates RRSet order in response (the random number is taken
from the query ID, for speed and thread safety). Default is no. from the query ID, for speed and thread safety). Default is yes.
.TP .TP
.B minimal-responses: \fI<yes or no> .B minimal-responses: \fI<yes or no>
If yes, Unbound doesn't insert authority/additional sections into response If yes, Unbound doesn't insert authority/additional sections into response

View file

@ -274,7 +274,7 @@ config_create(void)
cfg->control_port = UNBOUND_CONTROL_PORT; cfg->control_port = UNBOUND_CONTROL_PORT;
cfg->control_use_cert = 1; cfg->control_use_cert = 1;
cfg->minimal_responses = 1; cfg->minimal_responses = 1;
cfg->rrset_roundrobin = 0; cfg->rrset_roundrobin = 1;
cfg->unknown_server_time_limit = 376; cfg->unknown_server_time_limit = 376;
cfg->max_udp_size = 4096; cfg->max_udp_size = 4096;
if(!(cfg->server_key_file = strdup(RUN_DIR"/unbound_server.key"))) if(!(cfg->server_key_file = strdup(RUN_DIR"/unbound_server.key")))

View file

@ -67,8 +67,8 @@ uint16_t EDNS_ADVERTISED_SIZE = 4096;
/** minimal responses when positive answer: default is no */ /** minimal responses when positive answer: default is no */
int MINIMAL_RESPONSES = 0; int MINIMAL_RESPONSES = 0;
/** rrset order roundrobin: default is no */ /** rrset order roundrobin: default is yes */
int RRSET_ROUNDROBIN = 0; int RRSET_ROUNDROBIN = 1;
/** log tag queries with name instead of 'info' for filtering */ /** log tag queries with name instead of 'info' for filtering */
int LOG_TAG_QUERYREPLY = 0; int LOG_TAG_QUERYREPLY = 0;