Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 Dec 1999 05:16:35 -0800
From:      "Bret Ford" <bford@plover.org>
To:        <freebsd-isp@freebsd.org>
Subject:   Update on my in-addr.arpa troubles
Message-ID:  <002701bf3cc7$75971fa0$0a3966d8@HEATHER>

next in thread | raw e-mail | index | archive | help
Well, thanks to the friendly folks of freebsd-isp, I've gotten everything
straightened out.  PacBell Internet had typo'd their delegation to me.
With that fixed, and with a few minor edits to my named.conf and zone files,
everything now seems to be in good working order.  I'm including my configuration
as a beacon of hope to a new generation of networking newbies!  It can be done!  :-)  Here they are:

p.s. Thanks again everybody!

----------------------------------------
named.conf
----------------------------------------

options {
 directory "/var/named";
};

zone "plover.org" {
 type master;
 file "namedb/db.plover";
};

zone "8.57.102.216.in-addr.arpa" {
 type master;
 file "namedb/db.reverse";
};

zone "0.0.127.in-addr.arpa" {
 type master;
 file "namedb/db.127.0.0";
};

zone "." {
 type hint;
 file "namedb/db.cache";
};

----------------------------------------
db.plover
----------------------------------------
$ORIGIN plover.org.
plover.org. IN SOA dante.plover.org. bford.dante.plover.org. (
   2811332841 ; Serial
   3600  ; Refresh after 1 hour
   1800  ; Retry after 30 minutes
   604800  ; Expire after 1 week
   3600 )   ; Default TTL of 1 hour

plover.org. IN NS    dante.plover.org.
plover.org. IN NS           ns1.pbi.net.
plover.org. IN NS    ns2.pbi.net.

localhost.plover.org. 3600 IN A          127.0.0.1
gateway.plover.org. 3600 IN A       216.102.57.9
heather.plover.org. 3600 IN A            216.102.57.10
thorin.plover.org. 3600 IN A       216.102.57.11
advent.plover.org. 3600 IN A       216.102.57.12
dante.plover.org. 3600 IN A       216.102.57.13
plover.org.  IN MX 10  dante.plover.org.
daman.plover.org. 3600 IN A       216.102.57.14

www   IN CNAME advent.plover.org.
ftp.plover.org.  IN CNAME advent.plover.org.

----------------------------------------
db.reverse
----------------------------------------
$ORIGIN 8.57.102.216.in-addr.arpa.
@    IN SOA dante.plover.org. bford.dante.plover.org. (
    2811332841 ; Serial
    3600  ; Refresh after 1 hour
    1800  ; Retry after 30 minutes
    604800  ; Expire after 1 week
    3600 )   ; Default TTL of 1 hour

8.57.102.216.in-addr.arpa.     NS dante.plover.org.
8.57.102.216.in-addr.arpa.     NS ns1.pbi.net.
8.57.102.216.in-addr.arpa.     NS   ns2.pbi.net.

9.8.57.102.216.in-addr.arpa. 3600 IN PTR  gateway.plover.org.
10.8.57.102.216.in-addr.arpa. 3600 IN PTR heather.plover.org.
11.8.57.102.216.in-addr.arpa. 3600 IN PTR  thorin.plover.org.
12.8.57.102.216.in-addr.arpa. 3600 IN PTR advent.plover.org.
13.8.57.102.216.in-addr.arpa. 3600 IN PTR dante.plover.org.
14.8.57.102.216.in-addr.arpa. 3600 IN PTR daman.plover.org.

----------------------------------------
The End

Bret Ford




To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-isp" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?002701bf3cc7$75971fa0$0a3966d8>