Disable access-control for unbound DNS server

ubuntu-14.04unbound

I have a public DNS server that obviously needs to respond to everyone and anyone. Setting up the access-control directive allowing access from every IP results in a "netblock too large" error.

Does anyone know how I can disable access control for the unbound DNS server?

Best Answer

I just set mine up with:

access-control: 0.0.0.0/0 allow

and it seems to allow anyone access.

Related Topic