DNS Help - NS1 & NS2

WHT,
I have registered ns.mydomain, ns1.mydomain, and ns2.mydomain with my registrar.

I am having quite a bit of trouble trying to get my name servers working. By doing a check on www.paulipresents.com you will see that I have listed the following name servers:

Name Server: NS1.PAULIPRESENTS.COM
Name Server: NS2.PAULIPRESENTS.COM
Name Server: NS.PAULIPRESENTS.COM

My name servers are setup with the following IPs at my registrar:

NS1.PAULIPRESENTS.COM 66.111.53.191
NS2.PAULIPRESENTS.COM 66.111.53.192
NS.PAULIPRESENTS.COM 66.111.53.190


I have in my /etc/named.conf the following:

options {
directory "/var/named";
/*
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
allow-update { none; };
};

zone "paulipresents.com" IN {
type master;
notify no;
file "named.paulipresents.com";
allow-update { none; };
};

include "/etc/rndc.key";





I have the following in my paulipresents.com zone file.
[root@paulipresents named]# cat /var/named/named.paulipresents.com
$TTL 86400

paulipresents.com. IN SOA ns.paulipresents.com. admin.paulipresents.com. (
1040338723; serial
10800; refesh
3600; retry
604800; expiry
86400 ); minimum TTL

paulipresents.com. IN NS ns.paulipresents.com.
paulipresents.com. IN NS ns1.paulipresents.com.
paulipresents.com. IN NS ns2.paulipresents.com.
ns.paulipresents.com. IN A 66.111.53.190
webmail.paulipresents.com. IN A 66.111.53.190
ns1.paulipresents.com. IN A 66.111.53.191
ns2.paulipresents.com. IN A 66.111.53.192
paulipresents.com. IN A 66.111.53.190
technics.fuelhosting.com. IN A 66.111.53.190
mail.paulipresents.com. IN CNAME paulipresents.com.
ftp.paulipresents.com. IN CNAME paulipresents.com.
www.paulipresents.com. IN CNAME paulipresents.com.
paulipresents.com. IN MX 10 mail.paulipresents.com.
technics.paulipresents.com. IN A 66.111.53.191

Can anyone assist me further? I am stuck as to why my name servers are not resolving to the IP. If I have apache setup incorrectly it still would go to the IP correct. At this point I want the DNS to resolve first before I setup the domain in apache. Please help if you can.

 

 

 

 

Top