-
-
Notifications
You must be signed in to change notification settings - Fork 51
Closed
Labels
Description
Hi,
I just updated to use the 0.16 docker image from 0.15, but was getting errors like this on any dns forwarded queries;
bind9 | 10-Jun-2019 11:36:29.603 client @0x7fe3d817f860 192.168.1.10#54157 (www.reddit.com): query: www.reddit.com IN A +E(0) (172.19.0.2)
bind9 | 10-Jun-2019 11:36:29.604 client @0x7fe3d817f860 192.168.1.10#54157 (www.reddit.com): query (cache) 'www.reddit.com/A/IN' denied
bind9 | 10-Jun-2019 11:36:29.604 client @0x7fe3d817f860 192.168.1.10#54157 (www.reddit.com): query failed (REFUSED) for www.reddit.com/IN/A at ../../../bin/named/query.c:7145
The extra hosts and wildcard queries works fine, but all forwarded queries gets that error.
I had to rollback to 0.15, where everything works fine.
My config looks like this;
version: '2.1'
services:
bind:
image: cytopia/bind:0.15
container_name: bind9
restart: unless-stopped
environment:
- TZ=Europe/Oslo
- WILDCARD_DNS=anon.xyz=192.168.1.5
- EXTRA_HOSTS=sheets.anon.xyz=anon.github.io
- DNS_FORWARDER=208.67.222.222,208.67.220.220,192.168.1.1,8.8.8.8
- DOCKER_LOGS=1
- TTL_TIME=300
ports:
- "53:53"
- "53:53/udp"