So, I'm trying to set up simple caching resolver at home inside jail. More to try to fiddle with jails than DNS, but everything looks pretty straightforward until I try to test it from remote LAN machine. The crucial part in config file is setup:
But tcpdump shows things like
Basically, resolving from DNS machine itself works but it won't pass request.
What am I doing wrong here?
Code:
forward only;
...
forwarders {
8.8.8.8;
};
But tcpdump shows things like
Code:
...
192.168.1.103.53 > 192.168.1.106.45092: 37880 Refused- 0/0/0 (32)
Basically, resolving from DNS machine itself works but it won't pass request.
What am I doing wrong here?