Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Mar 2003 11:31:54 -0700
From:      James Earl <mtntrip@telus.net>
To:        freebsd-questions@freebsd.org
Subject:   Reverse DNS and single IP address space
Message-ID:  <20030327183154.GA622@comp4.ici.net>

next in thread | raw e-mail | index | archive | help
I'm in the process of setting up primary and secondary name servers.  
This is my first time setting up named so I'm kinda a newbie in this 
area.

My question is in regards to in-addr.arpa entries in named.conf and 
zone files.  In the FreeBSD Handbook and alot of other resources, I've 
noticed how the ip address is reversed, with part of the address left 
off.  For example:

zone "0.168.192.in-addr.arpa" {
	type slave;
	file "s/0.168.192.in-addr.arpa.bak";
	masters {
		192.168.1.1;
	};
};

Now, what happens when I have only been allocated a single ip address 
from my ISP (well, actually two, one for the primary/master and one for 
the secondary/slave)?  Would I set it up like this:

zone "1.0.168.192.in-addr.arpa" {
	type slave;
	file "s/1.0.168.192.in-addr.arpa.bak";
	masters {
		192.168.1.1;
	};
};

Or, do I even need to worry about reverse DNS entries since my ISP 
already has them setup?

Thanks.



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