To set up RDNS you need to have your IP’s Delegated to you from FDC then you need to add it to named.conf and you will need to also create a new PTR for each IP range
Lets say you have a Class C address and you have 66.90.111.50-75 you will need to add a line like this to named.conf
Then you will need to create a new zone file something like thiszone "111.90.66.in-addr.arpa" IN {
type master;
file "/var/named/66.90.111.db";
allow-update { none; };
};
And so on…..$TTL 86400
@ IN SOA ns1.yourhost.com. yourcontact.emailaddress.com. (
2005021601 ; serial
28800 ; refresh
14400 ; retry
3600000 ; expire
86400 ; ttl
)
IN NS ns.yourhost.com.
50 IN PTR WhatEverYouWant.Com.
51 IN PTR WhatEverYouWant.Com.
52 IN PTR WhatEverYouWant.Com.
53 IN PTR WhatEverYouWant.Com.
54 IN PTR WhatEverYouWant.Com.
55 IN PTR WhatEverYouWant.Com.
Any questions just ask!
Zach


Reply With Quote
