Description
I can't see anything obvious in unbound logs. Can see the queries like below in unbound logs but no obvious errors.
[1687321952] unbound[1:0] info: 28RDdc mod1 rep ntllaboratory.com. HTTPS IN
[1687321952] unbound[1:0] debug: close of port 4722
[1687321952] unbound[1:0] debug: close fd 11
[1687321952] unbound[1:0] debug: serviced send timer
[1687321952] unbound[1:0] debug: EDNS lookup known=0 vs=0
[1687321952] unbound[1:0] debug: serviced query UDP timeout=3008 msec
[1687321952] unbound[1:0] debug: inserted new pending reply id=44dd
[1687321952] unbound[1:0] debug: opened UDP if=0 port=26992
[1687321952] unbound[1:0] debug: comm point start listening 10 (-1 msec
docker-compose
version: "2.1"
services:
adguard:
container_name: adguard
image: adguard/adguardhome:latest
cap_add:
- NET_ADMIN
networks:
ag_network:
ipv4_address: 192.168.1.60
volumes:
- /srv/dev-disk-by-uuid-726c5e38-c8dc-4689-bd4c-dcbff76b78f9/appdata/docker/adguard/Work:/opt/adguardhome/work
- /srv/dev-disk-by-uuid-726c5e38-c8dc-4689-bd4c-dcbff76b78f9/appdata/docker/adguard:/opt/adguardhome/conf
ports:
- 53:53/udp
- 67:67/udp
- 68:68/tcp
- 68:68/udp
- 80:80/tcp
- 443:443/tcp
- 853:853/tcp
- 3009:3000/tcp
#Unbound
unbound:
image: klutchell/unbound:build-gh-renovate-product-os-flowzone-5.x
container_name: unbound
ports:
- 5053:53/tcp
- 5053:53/udp
networks:
ag_network:
ipv4_address: 192.168.1.61
volumes:
- /etc/localtime:/etc/localtime:ro
- /srv/dev-disk-by-uuid-726c5e38-c8dc-4689-bd4c-dcbff76b78f9/appdata/docker/unbound:/etc/unbound
networks:
ag_network:
name: ag_network
driver: macvlan
driver_opts:
parent: eth0
ipam:
config:
- subnet: 192.168.1.0/24
gateway: 192.168.1.1
ip_range: 192.168.1.60/30