Here is the output for dig
Code:
# dig whitehorse12.com
;; ANSWER SECTION:
whitehorse12.com. 6679 IN A 216.98.141.250
whitehorse12.com. 6679 IN A 69.72.142.98
;; AUTHORITY SECTION:
whitehorse12.com. 6679 IN NS host.whitehorse12.com.
whitehorse12.com. 6679 IN NS ns15.zoneedit.com.
whitehorse12.com. 6679 IN NS ns13.zoneedit.com.
You should only have one IP address entry for whitehorse12.com. This should be your web server IP address only.
You have host.whitehorse12.com listed as a DNS server, but this server isn't listening on DNS port 53 as seen by the telnet test. Proof also comes from the fact that this host isn't responding to DNS queries at all for whitehorse12.com. If it is not a DNS server, it needs to be removed form the NS server list.
The other listed NS servers don't have listings for www.whitehorse12.com.
Code:
# host www.whitehorse12.com ns15.zoneedit.com
Using domain server:
Name: ns15.zoneedit.com
Address: 69.10.134.195#53
Aliases:
#
There are entries for whitehorse12.com on the zoneedit servers. But it is returning two IP addresses. The first, 216.98.141.250, is the IP address of a zone edit DNS server, not your webserver IP address. There shold be only one entry listed. I suspect the correct entry should be 69.72.142.98.
Code:
# host whitehorse12.com ns15.zoneedit.com
Using domain server:
Name: ns15.zoneedit.com
Address: 69.10.134.195#53
Aliases:
whitehorse12.com has address 216.98.141.250
whitehorse12.com has address 69.72.142.98
whitehorse12.com mail is handled by 0 mail7.zoneedit.com.
whitehorse12.com mail is handled by 0 mail6.zoneedit.com.
#
IP address 69.72.142.98 is listening on port 80 and has Apache running. This is probably your web server. I get a 200 OK message when doing a curl head command.
Code:
# curl -I 69.72.142.98
HTTP/1.0 200 OK
Server: Apache
Status: 200 OK
Expires: Wed, 22 Oct 2008 06:02:44 GMT
Date: Tue, 21 Oct 2008 06:02:44 GMT
Content-Type: text/html; charset=ISO-8859-1
#
Using curl to get the entire contents of the page gives a blank. So it looks like the website isn't running as a virtual host using just the IP address.
Code:
# curl 69.72.142.98
#
Curl specifying the URL whitehorse12.com gets a proxy prompt, which is probably the correct website you have running.
Code:
# curl -U whitehorse12.com 69.72.142.98
Enter proxy password for user 'whitehorse12.com':
#
If you fix the name server issues listed, then you should be able to get it all to work.
Bookmarks