root@server [~]# named-checkzone /var/named/116.64.xxx.in-addr.arpa /var/named/116.64.xxx.db
dns_master_load: /var/named/116.64.xxx.db:2: ignoring out-of-zone data (116.64.xxx.in-addr.arpa)
zone /var/named/116.64.xxx.in-addr.arpa/IN: has 0 SOA records
zone /var/named/116.64.xxx.in-addr.arpa/IN: has no NS records


$TTL 86400
116.64.xxx.in-addr.arpa. IN      SOA     ns1.domain.com. noc.domain.com. (
                                2011041002      ; Serial
                                7200 ; Refresh
                                7200 ; Retry
                                1209600 ; Expire 2 weeks
                                86400 ) ; Minimum 24 hours

                IN      NS      ns1.domain.com.
                IN      NS      ns2.domain.com.

IPS directly allocated to me via ARIN.

Using BIND on a cPanel Box / Centos 5.3

link|improve this question

56% accept rate
feedback

4 Answers

up vote 0 down vote accepted

Try this..

@ IN SOA ns1.domain.com. noc.domain.com. (

Instead of

116.64.xxx.in-addr.arpa. IN SOA ns1.domain.com. noc.domain.com. (

link|improve this answer
its already like that: 116.64.xxx.in-addr.arpa. IN SOA ns1.domain.com. noc.domain.com. ( – Faith In Unseen Things Apr 10 '11 at 18:00
feedback

The first argument to named-checkzone is documented to be the zone name thus should not begin with /var/named.

link|improve this answer
feedback

Instead of:

named-checkzone /var/named/116.64.xxx.in-addr.arpa /var/named/116.64.xxx.db

Try this instead:

named-checkzone 116.64.xxx.in-addr.arpa /var/named/116.64.xxx.db
link|improve this answer
Strange 'code' root@server [/var/named]# named-checkzone 116.64.xxx.in-addr.arpa /var/named/116.64.xxx.db zone 116.64.xxx.in-addr.arpa/IN: loaded serial 2011041002 OK'code' However, the rdns is showing up as servfail when I run a check. – Faith In Unseen Things Apr 10 '11 at 17:55
What check are you running? A cut and paste (with xxx replaced and one PTR added) worked for me locally. dig +short @0 -x 99.64.116.1 returned test.domain.com. – Cakemox Apr 10 '11 at 18:27
feedback

Remember to update your serials !

link|improve this answer
I have done that for sure, each time. – Faith In Unseen Things Apr 10 '11 at 17:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.