On Sun, 3 Nov 2019, Sriram Nadiminti via Unbound-users wrote:
It is resolving external links like cnn.com. Using nslookup of windows
command line.
However the locally installed WAMP server
library.vadada 192.168.0.25
is not resolving.
I assume that the ".vadada" domain is some local domain of yours.
*If* there is a local domain (and probably also DHCP) server handling that
domain, then you can add the following to your unbound config:
--
server:
private-domain: "vadada."
private-address: 192.168.0.0/24
domain-insecure: "vadada."
local-zone: "168.192.in-addr.arpa." nodefault
stub-zone:
name: "vadada"
stub-addr: 192.168.0.1
stub-zone:
name: "168.192.in-addr.arpa."
stub-addr: 192.168.0.1
--
You'd need to replace 192.168.0.1 with your local DNS server, i.e.
the (DHCP) server authoritative for your "vadada" domain.
Hope that helps.