BIND Issue

Lazereth

Registered
Dear All,

after following a very good guide on setting up DNS/BIND on MacOSX (Tiger), i have run into the following issue - would appreciate any feedback that anyone might provide.

I have a public domain (Im-At-Home.Com) and has two name servers running, one private (a windows 2003ES system) and the other a Mac OSX10.4.4 (public) - the mac is giving a little grief. The following zone is in place (BIND is running as dig @127.0.0.1 returns the ca list).

;
; /var/named/im-at-home.com. - Zone file for im-at-home.com domain
;
$TTL 86400 ; 1 day
im-at-home.com. IN SOA gateway.im-at-home.com. postmaster.im-at-home.com. (
2006032702 ; Serial
10800 ; Refresh after 3 hours
3600 ; Retry after 1 hour
604800 ; Expire after 1 week
86400 ) ; Minimum TTL of 1 day

; name servers

im-at-home.com. IN NS gateway.im-at-home.com.

; host to address mappings

gateway.im-at-home.com. IN A 81.171.29.229
www.im-at-home.com. IN CNAME gateway.im-at-home.com.
orion.im-at-home.com. IN CNAME gateway.im-at-home.com.
www.im-at-home.com. IN MX 50 gateway.im-at-home.com.
im-at-home.com. IN MX 50 gateway.im-at-home.com.

However attempting to nslookup the zone, i receive the error "SERVER FAILURE" (code is 57588).

Inside my named.conf, the following is configured...

zone "im-at-home.com" IN {
type master;
file "im-at-home.com.zone";
};

The System Log for Named returns...

Mar 27 14:26:25.194 zone 0.0.127.in-addr.arpa/IN: loaded serial 1997022700
Mar 27 14:26:25.194 dns_master_load: im-at-home.com.zone:22: www.im-at-home.com: CNAME and other data
Mar 27 14:26:25.195 zone im-at-home.com/IN: loading master file im-at-home.com.zone: CNAME and other data
Mar 27 14:26:25.196 zone localhost/IN: loaded serial 42
Mar 27 14:26:25.196 running

Could anyone please assist? At the moment the Windows Server is publically and privately serving the zone. I wish to split this.

Many Thanks - Lazereth
 
Back
Top