server:do-not-query-localhost: noforward-zone:name: "."forward-addr: 127.0.0.1@53530
Doesn't it run when you enable it? The most important point that is different in OPNsense is that I at least would recommend to run BIND alongside Unbound. There are many intricate dependencies in the system settings, DHCP and Unbound, so I finally came to the conclusion that it is best to leave Unbound running as the local resolver.That means that for your local domain you need to go to Unbound --> Overrides for static DNS entries. No point in creating that zone in BIND because Unbound considers it "its own". The upside to this is that e.g. static DHCP entries will make it into the zone automatically.If you want to go that route, simply enable BIND and leave the default settings as they are. Specifically listen addresses and port. We need to permit Unbound to use BIND as a recursive server so we need to create an ACL. I named mine "unbound".See the two screenshots I added, please.If that is all up and BIND is running and listening on port 53530, we need to tell Unbound to forward all requests outside of its local domain to BIND. Create a file in /var/unbound/etc, I named mine X-forward-bind.conf.Code: [Select]server:do-not-query-localhost: noforward-zone:name: "."forward-addr: 127.0.0.1@53530Restart Unbound - done.Happy BINDing ...