-
Notifications
You must be signed in to change notification settings - Fork 0
/
dns_config.ini
42 lines (39 loc) · 1.16 KB
/
dns_config.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[Log]
; [OPTIONAL] file to log to (if omitted then stdout)
target_file = dns.log
; logs initial query sent by requesters
initial_query = TRUE
; logs formatted final response sent back to requesters
final_response = TRUE
; logs formatted sent messages
sent_query = FALSE
; logs formatted received messages
received_responses = FALSE
; logs when a query sent to a server times out
timeout_error = FALSE
; logs when an unrecognized rr is encountered
unrecognized_rr_warning = FALSE
; logs when a query is dropped due to resolution timeout
dropped_query = TRUE
; logs raw sent messages
sent_msg_as_bytes = FALSE
; logs raw received messages
received_msg_as_bytes = FALSE
; logs when no answer is found for a given question but the resolution completed
no_answer_for_query = FALSE
; logs error messages
error = TRUE
; logs cache entries every 5 seconds
cache = FALSE
; logs cache entry when it's used as response
cache_fetch = FALSE
; logs root servers sorted by last registered responsiveness
root_servers = FALSE
[ServerSettings]
use_tcp_for_truncated_responses = FALSE
ipv4_ip = localhost
ipv4_port = 53
ipv6_ip = ::1
ipv6_port = 53
udp_recv_timeout = 1
tcp_recv_timeout = 2