On Ubuntu 14.04, when I'm performing a
dig google.de
on my machine, I get a REFUSED status (reducing to relevant lines):
me@machine:~# dig google.de
;; ->>HEADER<<- opcode: QUERY, status: REFUSED, id: 26926
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
;; WARNING: recursion requested but not available
My /etc/resolv.conf knows three nameservers:
nameserver 1.2.3.4
nameserver 1.2.3.5
nameserver 8.8.8.8
where the first two are corporate owned nameservers. But at least the last one (8.8.8.8) shouldn't return a refused status. So how can I enable recursion so that the last nameserver is considered?
named.confconfigurations?allow-query { any; };in thatnamed.confon that machine;find / -name "named.conf"returns nothing...