/etc/dnsproxy.conf is in dnsproxy 1.16-0.1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #
# dnsproxy 1.15 configuration file example
#
# $Id: dnsproxy.conf,v 1.7 2005/05/16 17:31:30 armin Exp $
#
# Authoritative server
#
authoritative 127.0.0.1
authoritative-port 53001 # It's port. Defaults to 53.
authoritative-timeout 10 # Seconds to wait for answers.
#
# Recursive resolver
#
recursive 127.0.0.1
recursive-port 53002 # It's port. Defaults to 53.
recursive-timeout 90 # Seconds to wait for answers.
#
# Local address and port of dnsproxy
#
listen 192.168.168.1
port 53000
#
# Security features
#
chroot /var/spool/dnsproxy
user dnsproxy
#
# Internal networks (allowed to do recursive queries)
#
internal 192.168.168.0/24 # Our internal network
internal 192.168.169.0/24 # Friendly neighbours
internal 127.0.0.1
|