Hey everyone,<br>im struggeling to get unbound to forward to my local nsd and to external hosts , it works when i have only one forward zone for my internal .testing records but when i put a forward-zone: name: "." , it ignores my other forward-zone<br><br>I got the base conf from here:<br><br><a href="https://jonwillia.ms/2018/09/23/anycast-dns-openbsd">https://jonwillia.ms/2018/09/23/anycast-dns-openbsd</a> (github.com/bongozone/kibble)<br><br>I am running in it On openbsd 6.5 with unbound 1.9.1<br><br>Does anyone know how this could be done ? I have nsd running the zone records for .testing and it works when i only have the .testing forward-zone in the unbound.conf , does anyone know what im doing wrong ? <br><br>ns0# cat /var/unbound/etc/unbound.conf<br><br># $OpenBSD: unbound.conf,v 1.7 2016/03/30 01:41:25 sthen Exp $<br><br>server:<br>    interface: 127.0.0.1<br>    #interface: ::1<br>    do-ip6: no<br><br>    access-control: 0.0.0.0/0 refuse<br>    access-control: 127.0.0.0/8 allow<br>    access-control: 192.168.0.0/16 allow<br><br>    access-control: ::0/0 refuse<br>    access-control: ::1 allow<br><br>    hide-identity: yes<br>    hide-version: yes<br><br><br>remote-control:<br>    control-enable: yes<br>    control-use-cert: no<br>    control-interface: /var/run/unbound.sock<br><br># Use an upstream forwarder (recursive resolver) for specific zones.<br>#<br><br>forward-zone:<br>    name: "testing."<br>        forward-addr: 127.0.0.1@5353 # to nsd daemon<br><br>forward-zone:<br>    name: "."                # use for ALL queries<br>    forward-addr: 1.1.1.1<br>    forward-addr: 74.82.42.42<br>    forward-addr: 2001:470:20::2<br>    forward-addr: 208.67.222.222<br>    forward-first: yes<br><br>-- <br>Sincerely flipchan