- Mitglied seit
- 19. Feb 2018
- Beiträge
- 402
- Punkte für Reaktionen
- 36
- Punkte
- 28
Hi zusammen,
mir ist aufgefallen, dass ich im log von Unbound diverse SERVFAIL-Meldungen habe.
Weiß jemand woran das liegt und ob ich aktiv werden muss?
(Unbound läuft in Kombination mit Adguard; docker compose weiter unter)
Hatte auch zuletzt öfter den Fall, dass im Netzwerk nichts mehr ging (DNS wurde nicht gefunden) und nur durch einen Synology Neustart das Problem behoben wurde (weiß jedoch nicht ob das mit dem hier zu tun hat)
docker compose Unbound:
mir ist aufgefallen, dass ich im log von Unbound diverse SERVFAIL-Meldungen habe.
Weiß jemand woran das liegt und ob ich aktiv werden muss?
(Unbound läuft in Kombination mit Adguard; docker compose weiter unter)
Hatte auch zuletzt öfter den Fall, dass im Netzwerk nichts mehr ging (DNS wurde nicht gefunden) und nur durch einen Synology Neustart das Problem behoben wurde (weiß jedoch nicht ob das mit dem hier zu tun hat)
Code:
Sep 06 05:00:28 unbound[7:0] info: start of service (unbound 1.21.0).
Sep 06 05:57:17 unbound[7:0] error: SERVFAIL <www.paypalobjects.com. A IN>: misc failure
Sep 06 06:20:51 unbound[7:0] error: SERVFAIL <i.pinimg.com. A IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.133.65 got REFUSED
Sep 06 07:05:14 unbound[7:0] error: SERVFAIL <216.58.202.4.in-addr.arpa. PTR IN>: misc failure
Sep 06 08:03:29 unbound[7:0] error: SERVFAIL <2.europe.pool.ntp.org. A IN>: exceeded the maximum nameserver nxdomains
Sep 06 15:23:03 unbound[7:0] error: SERVFAIL <deutsches-schulportal.de. HTTPS IN>: all servers for this domain failed, at zone deutsches-schulportal.de. upstream server timeout
Sep 06 22:11:20 unbound[7:0] error: SERVFAIL <i.pinimg.com. HTTPS IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.133.65 got REFUSED
Sep 06 22:11:20 unbound[7:1] error: SERVFAIL <i.pinimg.com. A IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.133.65 got REFUSED
Sep 06 22:11:20 unbound[7:1] error: SERVFAIL <i.pinimg.com. HTTPS IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.133.65 got REFUSED
Sep 06 22:11:30 unbound[7:1] error: SERVFAIL <i.pinimg.com. A IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.133.65 got REFUSED
Sep 07 03:50:45 unbound[7:0] error: SERVFAIL <i.pinimg.com. A IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.132.65 got REFUSED
Sep 07 08:10:45 unbound[7:0] error: SERVFAIL <i.pinimg.com. HTTPS IN>: exceeded the maximum nameserver nxdomains
Sep 07 10:06:54 unbound[7:0] error: SERVFAIL <v1.pinimg.com. A IN>: all servers for this domain failed, at zone akapinimg.net. from 23.211.132.65 got REFUSED
docker compose Unbound:
Code:
version: "3"
services:
unbound:
container_name: Unbound
image: madnuttah/unbound:latest
ports:
- 5335:5335/tcp
- 5335:5335/udp
volumes:
- /volume1/docker/unbound/unbound.conf:/usr/local/unbound/unbound.conf:rw
- /volume1/docker/unbound/conf.d/:/usr/local/unbound/conf.d/:rw
- /volume1/docker/unbound/iana.d/:/usr/local/unbound/iana.d/:rw
- /volume1/docker/unbound/zones.d/:/usr/local/unbound/zones.d/:rw
network_mode: host
environment:
- UNBOUND_UID=1026
- UNBOUND_GID=100
- TZ=Europe/Berlin
restart: always
healthcheck:
test: /usr/local/unbound/sbin/healthcheck.sh
interval: 60s
retries: 5
start_period: 15s
timeout: 30s