LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   DNS Configuration (https://www.linuxquestions.org/questions/linux-general-1/dns-configuration-14304/)

doulos 02-15-2002 03:37 AM

DNS Configuration
 
Hi,

just like to check, how should I go about configurating my reverse DNS for a certain range of ip given by my ISP, e.g. 202.116.19.96/28? Thanks.

Regards,
Caleb

notsoevil 02-15-2002 02:46 PM

Quick copy/paste/change but something like this should be okay:
Code:

$TTL 1w
@  IN    SOA  19.116.202.in-addr.arpa.  hostmaster.yourdomain.com.    (
;                            Changed By      :  you
                              2002021500      ;  Serial
                              3h              ;  Refresh
                              30M            ;  Retry
                              2w              ;  Expire
                              1W              ;  Minimum
                              )
          IN    NS            ns1.yourdomain.com.
          IN    NS            ns2.yourdomain.com.
xx        IN    PTR          ns.thatdomain.com.
yy        IN    PTR          blah.thatdomain.com.

Where xx and yy (and zz and aa and ...) are your range numbers.


All times are GMT -5. The time now is 10:10 AM.