Editar el archivo /etc/named.conf
Editar el bloque:
view localhost_resolver {
match-clients { any; };
match-destinations { any; };
recursion yes;
include "/etc/named.rfc1912.zones";
};
Por lo siguiente:
view lan {
match-clients { 127.0.0.1; 192.168.100.0/24; };
match-destinations { any; };
recursion yes;
include "/etc/named.rfc1912.zones";
};
Se agrega el siguiente bloque
view wan {
match-clients { any; };
match-destinations { any; };
recursion no;
include "/etc/named.wan.zones";
};