Comments on: How to Setup Forward Only DNS Server on Ubuntu & Debian https://tecadmin.net/setup-forward-only-dns-server-on-ubuntu-linuxmint/ How to guide for System Administrator's and Developers Fri, 30 Dec 2022 18:02:49 +0000 hourly 1 https://wordpress.org/?v=6.1.1 By: Patatties https://tecadmin.net/setup-forward-only-dns-server-on-ubuntu-linuxmint/#comment-65642 Fri, 30 Dec 2022 18:02:49 +0000 https://tecadmin.net/?p=8771#comment-65642 /etc/bind/named.conf.options needs another semicolon on the end to close. otherwise this won’t work.

Should be like this:
options{
directory “/var/cache/bind”;
recursion yes;
allow-query { 192.168.0.0/32; 127.0.0.1; };
forwarders {
8.8.8.8;
8.8.4.4;
};
forward only;

};

]]>
By: Кирилл https://tecadmin.net/setup-forward-only-dns-server-on-ubuntu-linuxmint/#comment-52683 Fri, 24 Jul 2020 17:07:17 +0000 https://tecadmin.net/?p=8771#comment-52683 I would even say, why it is not /16.

]]>
By: Jeff H Silverman https://tecadmin.net/setup-forward-only-dns-server-on-ubuntu-linuxmint/#comment-41570 Wed, 03 Jul 2019 02:25:29 +0000 https://tecadmin.net/?p=8771#comment-41570 Why did you specify a /32 netmask instead of /24 in the options stanza of the named.conf field?

]]>