View Single Post
  #9   (View Single Post)  
Old 23rd February 2010
riotnrrd's Avatar
riotnrrd riotnrrd is offline
New User
 
Join Date: Feb 2010
Posts: 8
Default Configs reversed

Sorry, I did not realise that the order of the directives was important here. I copied the structure of your files, as you recommended, right down to your timeout values.

Forward:
Code:
; zone file for dashaus.lan

$TTL 86400
@       IN      SOA     moose.dashaus.lan. root.moose.dashaus.lan. (
                                20011195        ; serial number
                                3600            ; refresh
                                900             ; retry
                                3600000         ; expiry
                                3600            ; minimum
                                )
        IN      NS      moose.dashaus.lan.
moose   IN      A       192.168.1.1
Reverse:
Code:
; zone "1.168.192.in-addr.arpa"
$TTL 86400
@       IN      SOA     moose.dashaus.lan. root.moose.dashaus.lan. (
                        20011195        ; serial number
                        3600            ; refresh
                        900             ; retry
                        3600000         ; expiry
                        3600            ; minimum
                        )
        IN      NS      moose.dashaus.lan.
I also took the time to add a listen-on directive to my named.conf, as I noticed that it was listening on the public NIC as well as on the inside one - not desirable at all.

However I still have exactly the same messages ("Unable to add forward map from hostname.dashaus.lan to 1.2.3.4: timed out"). Any further suggestions?

Oh, and thanks for your help so far!
Reply With Quote