View Single Post
  #5 (permalink)  
Old 04-08-2007, 20:37
Rock Rock is offline
System Administrator
 
Join Date: Dec 2006
Location: localhost
Posts: 682
Lightbulb

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; };

----------------------------------------------------------------------------------
__________________

Rock _a.k.a._ Jack L.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.


To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
||
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote