Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Oct 2002 08:40:42 -0400
From:      Brian McCann <bjm1287@ritvax.isc.rit.edu>
To:        'Nelis Lamprecht' <nelis@brabys.co.za>, freebsd-questions@freebsd.org
Subject:   RE: Bind9 - reverse dns ?
Message-ID:  <004901c27511$41574f50$1500a8c0@dogbert>
In-Reply-To: <5.1.0.14.2.20021016103130.013e6328@192.96.48.11>

next in thread | previous in thread | raw e-mail | index | archive | help
Here's an example I found.  This would be for the 1.2.3.0 subnet.  Host
one.example.com is 1.2.3.1.  :

In your named.conf file:

zone  "3.2.1.in-addr.arpa" { 
	type master; 
	file  "3.2.1.in-addr.arpa.zone"; 
};

And the zone file:

$TTL 86400
@	IN	SOA	@	root.localhost (
			2 ; serial
			28800 ; refresh
			7200 ; retry
			604800 ; expire	
			86400 ; ttk
			)


@	IN	NS	ns.example.com.

1	IN	PTR	one.example.com.
2	IN	PTR	two.example.com.

Hope that helps.

--Brian

-----Original Message-----
From: owner-freebsd-questions@FreeBSD.ORG
[mailto:owner-freebsd-questions@FreeBSD.ORG] On Behalf Of Nelis
Lamprecht
Sent: Wednesday, October 16, 2002 4:37 AM
To: freebsd-questions@freebsd.org
Subject: Bind9 - reverse dns ?



Hi People,

I've been Googling around trying to find an example to setup reverse DNS
on 
my server but have had no luck. I've read through the administrators
guide 
also but there doesn't seem to be any clear info on setting this up.
Hence 
I have resorted once again to the faithful FreeBSD mail list. Please
could 
someone point me in the right direction. I'm using 4.6Stable with Bind9.

Many Thanks,
Nelis


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


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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?004901c27511$41574f50$1500a8c0>