From 63d5d07b5c47c7ee68502cd4a54b5d2300985bd7 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 6 Nov 2023 16:33:55 +0100 Subject: [PATCH] rec: move a few settings from recursor to outgoing section --- pdns/recursordist/settings/table.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pdns/recursordist/settings/table.py b/pdns/recursordist/settings/table.py index 16fa43c7d0..0c761d7b4a 100644 --- a/pdns/recursordist/settings/table.py +++ b/pdns/recursordist/settings/table.py @@ -1454,7 +1454,7 @@ Maximum number of Packet Cache entries. Sharded and shared by all threads since }, { 'name' : 'max_qperq', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '60', 'help' : 'Maximum outgoing queries per query', @@ -1467,7 +1467,7 @@ at a minimum to allow for the extra queries qname-minimization generates when th }, { 'name' : 'max_ns_address_qperq', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '10', 'help' : 'Maximum outgoing NS address queries per query', @@ -1485,7 +1485,7 @@ number lower than 5. }, { 'name' : 'max_ns_per_resolve', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '13', 'help' : 'Maximum number of NS records to consider to resolve a name, 0 is no limit', @@ -1755,7 +1755,7 @@ Number of milliseconds to wait for a remote authoritative server to respond. }, { 'name' : 'non_resolving_ns_max_fails', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '5', 'help' : 'Number of failed address resolves of a nameserver to start throttling it, 0 is disabled', @@ -1767,7 +1767,7 @@ Nameservers matching :ref:`setting-dont-throttle-names` will not be throttled. }, { 'name' : 'non_resolving_ns_throttle_time', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '60', 'help' : 'Number of seconds to throttle a nameserver with a name failing to resolve', @@ -2160,7 +2160,7 @@ See :ref:`serve-stale` for a description of the Serve Stale mechanism. }, { 'name' : 'server_down_max_fails', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '64', 'help' : 'Maximum number of consecutive timeouts (and unreachables) to mark a server as down ( 0 => disabled )', @@ -2172,7 +2172,7 @@ Even a single response packet will drop the block. }, { 'name' : 'server_down_throttle_time', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '60', 'help' : 'Number of seconds to throttle all queries to a server after being marked as down', @@ -2182,7 +2182,7 @@ Throttle a server that has failed to respond :ref:`setting-server-down-max-fails }, { 'name' : 'bypass_server_throttling_probability', - 'section' : 'recursor', + 'section' : 'outgoing', 'type' : LType.Uint64, 'default' : '25', 'help' : 'Determines the probability of a server marked down to be used anyway', -- 2.47.2