1# this is the upstream server that has pipelining and responds to queries. 2server: 3 verbosity: 1 4 # num-threads: 1 5 interface: 127.0.0.1@@PORT@ 6 port: @PORT@ 7 use-syslog: no 8 directory: . 9 pidfile: "unbound2.pid" 10 chroot: "" 11 username: "" 12 do-not-query-localhost: no 13 tls-port: @PORT@ 14 tls-service-key: "unbound_server.key" 15 tls-service-pem: "unbound_server.pem" 16 tcp-idle-timeout: 10000 17 log-queries: yes 18 log-replies: yes 19 log-identity: "upstream" 20 21remote-control: 22 control-enable: yes 23 control-interface: 127.0.0.1 24 # control-interface: ::1 25 control-port: @CONTROL_PORT2@ 26 server-key-file: "unbound_server.key" 27 server-cert-file: "unbound_server.pem" 28 control-key-file: "unbound_control.key" 29 control-cert-file: "unbound_control.pem" 30 31forward-zone: 32 name: "." 33 forward-addr: "127.0.0.1@@TOPORT@" 34 35dnstap: 36 dnstap-enable: yes 37 dnstap-socket-path: "dnstap.socket" 38 dnstap-send-identity: yes 39 dnstap-send-version: yes 40 #dnstap-identity 41 #dnstap-version 42 dnstap-log-resolver-query-messages: no 43 dnstap-log-resolver-response-messages: no 44 dnstap-log-client-query-messages: yes 45 dnstap-log-client-response-messages: yes 46 dnstap-log-forwarder-query-messages: no 47 dnstap-log-forwarder-response-messages: no 48