Local Unbound Not Found

local_unbound suddenly stopped working SERVFAIL then I restarted only using tsl and now it's not working again here are the configs
Code:
# This file was generated by local-unbound-setup.
# Modifications will be overwritten.
server:
        use-syslog: yes
        verbosity: 3
        interface: 127.0.0.1
        do-ip4: yes
        do-udp: yes
        do-tcp: yes
        do-ip6: no
        prefer-ip6: no
        do-not-query-localhost: no
        access-control: 127.0.0.0/8 allow
        username: unbound
        directory: /var/unbound
        chroot: /var/unbound
        pidfile: /var/run/local_unbound.pid
        auto-trust-anchor-file: /var/unbound/root.key
        log-queries: yes
        log-replies: yes
        log-tag-queryreply: yes
        log-servfail: yes
        log-local-actions: yes
        tls-upstream: no
        tls-system-cert: yes

        # Ensure privacy of local IP ranges
        private-address: 192.168.0.0/16
        private-address: 169.254.0.0/16
        private-address: 172.16.0.0/12
        private-address: 10.0.0.0/8
        private-address: fd00::/8
        private-address: fe80::/10

include: /var/unbound/forward.conf
include: /var/unbound/lan-zones.conf
include: /var/unbound/control.conf
file "/etc/unbound/unbound.conf", 38 lines

# Generated by resolvconf

forward-zone:
        name: "."
        forward-addr: 1.1.1.1@853
        forward-addr: 8.8.8.8@853
        forward-addr: 8.8.4.4@853
 
Define a logfile in your unbound.conf and an appropriate loglevel.
Then start unbound. Lookup the logfile for a reason which is usually a misconfiguration in one of the config files.
 
Back
Top