Wired DNS Problem
One of the site hosted on my server stoped working with "www"I have checked it with nslookup within the server. It fails for "www"
   PHP Code:
  
 
   [root@server10 named]# nslookup 
> server localhost 
Default server: localhost 
Address: 127.0.0.1#53 
> www.infodon.com 
Server:         localhost 
Address:        127.0.0.1#53 
 
** server can't find www.infodon.com: SERVFAIL 
> anyname.infodon.com 
Server:         localhost 
Address:        127.0.0.1#53 
 
Name:   anyname.infodon.com 
Address: 65.98.61.140 
> sdbd.infodon.com 
Server:         localhost 
Address:        127.0.0.1#53 
 
Name:   sdbd.infodon.com 
Address: 65.98.61.140 
>  
  I restarted named few times, removed www and added * and pointed to server shared IP, still "www" do not work, wildcard DNS is working for other sub domains as shown in above.
Now the DNS Zone is
   PHP Code:
  
 
   # cat /var/named/infodon.com.db 
; Modified by Web Host Manager 
; Zone File for infodon.com 
$TTL 14400 
@       14440   IN      SOA     dns10.hosthat.com.      flashweb.asianetonline.net.     ( 
                                        2005092014 
                                        14400 
                                        7200 
                                        3600000 
                                        86400 
                                        ) 
 
infodon.com.    14400   IN      NS      dns10.hosthat.com. 
infodon.com.    14400   IN      NS      dns11.hosthat.com. 
 
infodon.com.    14400   IN      A       65.98.61.140 
 
localhost.infodon.com.  14400   IN      A       127.0.0.1 
 
infodon.com.    14400   IN      MX      0       infodon.com. 
 
mail    14400   IN      CNAME   infodon.com. 
ftp     14400   IN      A       65.98.61.140 
billing 14400   IN      A       65.98.61.140 
www.billing     14400   IN      A       65.98.61.140 
flash   14400   IN      A       65.98.61.140 
www.flash       14400   IN      A       65.98.61.140 
free    14400   IN      A       65.98.61.140 
www.free        14400   IN      A       65.98.61.140 
helpdesk        14400   IN      A       65.98.61.140 
www.helpdesk    14400   IN      A       65.98.61.140 
templates       14400   IN      A       65.98.61.140 
www.templates   14400   IN      A       65.98.61.140 
domain  1440    IN      CNAME   66917.myorderbox.com. 
*       14400   IN      A       65.98.61.140 
www     14400   IN      A       65.98.61.140 
[root@server10 named]#  
  Anyone know how to Fix ?
Regards,
Yujin

