prevent unbound from attempting to contact root servers?

Daisuke HIGASHI daisuke.higashi at gmail.com
Thu Nov 17 17:21:08 UTC 2016


2016-11-18 1:40 GMT+09:00 Daisuke HIGASHI <daisuke.higashi at gmail.com>:

> -- dnsdist.conf
> newServer({address="8.8.8.8", pool="dns"})
> pc = newPacketCache(100000)
> getPool("dns"):setCache(pc)
> addAction(AllRule(), PoolAction("dns"))

Oops. For this use case, periodical health checking for downstream server
(enabled by default) should be disabled:

-- dnsdist.conf
newServer({address="8.8.8.8", pool="dns"})
getServer(0):setUp() -- disable health check for 8.8.8.8
pc = newPacketCache(100000)
getPool("dns"):setCache(pc)
addAction(AllRule(), PoolAction("dns"))



More information about the Unbound-users mailing list