Bind forwarding
One of the problems with DNS cat is that the sefver may be already running a DNS server. Multiple servers cannot share a single port 53.
The workaround is “DNS forwarding”.
Add the following line in your BIND config file:
zone “foo.com” in {
type forward;
forward only;
forwarders { <ip_address> [<port>] ; };
};