Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 01 Feb 2006 09:55:05 -0500
From:      Chuck Swiger <cswiger@mac.com>
To:        Brad Gilmer <bgilmer@gilmer.org>
Cc:        freebsd-questions@freebsd.org
Subject:   Re: DNS nslint error messages
Message-ID:  <43E0CBC9.3030801@mac.com>
In-Reply-To: <7.0.0.16.2.20060131122844.035b5bc8@gilmer.org>
References:  <20060131003745.GA15655@gilmer.org> <43DF6607.2090009@mac.com> <7.0.0.16.2.20060131122844.035b5bc8@gilmer.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Brad Gilmer wrote:
> Chuck and Gorgios,
> 
> Thank you very much for your suggestions.

Sure.  At least occasionally, we manage to be helpful.  :-)

[ ... ]
> Chuck, you said,
>> The second one (nslint error) recommends adding a line like:
>>  localhost       IN A 127.0.0.1
> 
>> ... to your gilmer.org zone, using no "." at the end to create a
> localhost.EXAMPLE.COM entry.
> 
> But when I make this change to the localhost entry in the
> /etc/namedb/master/gilmer.org file, nslint reports:
> 
> nslint: missing "a": localhost. -> 127.0.0.1

This is the same issue as before; you don't have a "localhost" zone.

> nslint: missing "ptr": localhost.gilmer.org. -> 127.0.0.1

This means that you don't have a reverse zone file for 127.in-addr.arpa:

;
; BIND reverse data file for local loopback interface
;

$TTL 864000

@       IN      SOA     localhost. root.localhost. (
                              1         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Default TTL
;
@       NS      localhost.
1.0.0   PTR     localhost.


> nslint: 127.0.0.1 in use by localhost.gilmer.org. and localhost.

This means nslint is being too picky, but adding a reverse zone file with a PTR
record might hush it up.

-- 
-Chuck




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?43E0CBC9.3030801>