dch
Developer
In certain ISP crappy routers, the locally provided DNS resolver cannot handle DNSSEC and _srv queries, which breaks pkg(8) at bootstrap, along with many other things. As these resolvers are handed out via DHCP from the router, I need to hard-code a specific forwarder and not have DHCP overwrite it.
I'd hoped that this would suffice, but it doesn't survive the DHCP induced breakage
reboot, & no luck.
I then updated resolvconf.conf to include that same forwarder, without luck:
now we reboot:
Any ideas?
I'd hoped that this would suffice, but it doesn't survive the DHCP induced breakage
Code:
# /etc/rc.conf.d/local_unbound
local_unbound_enable="YES"
local_unbound_forwarders="8.8.8.8"
reboot, & no luck.
I then updated resolvconf.conf to include that same forwarder, without luck:
Code:
# /etc/resolvconf.conf
# This file was generated by local-unbound-setup.
# Modifications will be overwritten.
resolv_conf="/dev/null" # prevent updating /etc/resolv.conf
unbound_conf="/var/unbound/forward.conf"
unbound_pid="/var/run/local_unbound.pid"
unbound_service="local_unbound"
unbound_restart="service local_unbound reload"
# add this nameserver please
append_nameservers="8.8.8.8"
now we reboot:
Code:
# /etc/unbound/forward.conf
# Generated by resolvconf
forward-zone:
name: "."
forward-addr: 192.168.64.1
Any ideas?
Last edited by a moderator: