cPanel released it latest update which created many issues related to
named.conf, where domains hosted on
cpanel servers won't resolve.
Make the below given changes in the named.conf to get named & your
website hostings running properly:
----------------------------------------------------------------------------------
view "external"
{
/* This view will contain zones you want to serve only to "external" clients
* that have addresses that are not on your directly attached LAN interface subnets:
*/
match-clients { !localnets; !localhost; };
match-destinations { !localnets; !localhost; };
----------------------------------------------------------------------------------
change it to:
----------------------------------------------------------------------------------
view "external"
{
/* This view will contain zones you want to serve only to "external" clients
* that have addresses that are not on your directly attached LAN interface subnets:
*/
match-clients { any; };
match-destinations { any; };
----------------------------------------------------------------------------------