Use own build
if you want to run with Docker, build and launch.
docker build -t pydnsproxy .
docker run -it --rm \
-p 53:53/udp -p 443:443 -p 80:80 \
-v `pwd`/dns.conf:/opt/dns.conf \
-e "AUTH_LIST=10.2.3.4,10.9.8.7" \
-e "AUTH_BLOCK=10.3.4.0/24,192.4.5.0/24" \
-e "PASSPHASE=open.sesami" \
-e "EXT_IP=1.2.3.4" -e "SELF_IP=5.6.7.8" \
pydnsproxy
#Volume mount and Port Binding.
# you can set upstream DNS server on specific docker, use "--dns=" option.
Configuration
on source code, there's 3 kind of configuration.
Authentication is on source code as IP list. if IP is in list or block, DNS and SNI proxy working. else, ith doesn't reply.
auth_list = ["10.2.3.4", "10.3.4.5"] # per IP Auth.
auth_block = ["10.1.0.0/16", "10.98.76.0/24"] # Block by
or Passphase for SNIProxy Open. dns query of this Record, the gate will be open!
passphase = "open.the.gate.sesami"
Check the domain is really exist.
filter_exist_dns = True
if you want to allow any IP, set environment parameter "ALLOW_ANY"
if you want to run only DNS server (no sniproxy), set environment parameter "ONLY_DNS_SERVER"