The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 09-08-2008
BOFH BOFH is offline Forum Advisor  
Registered User
  
 

Join Date: Feb 2005
Location: Broomfield, CO
Posts: 406
I used another arpa file as a template and it apparently didn't have it, but I'll check my Cricket book just to be sure.

And they're just going to give me the two addresses. That was where I had the question. Is it really just a file and I can call it whatever I want or does it actually affect the entire range. I wasn't sure if I should have two arpa files:

Code:
# cat 167.172.111.65.in-addr.arpa
$ORIGIN .
$TTL 86400      ; 1 day
167.172.111.65.IN-ADDR.ARPA IN      SOA ns1.youreadumbass.org. hostmaster.schelin.org. (
                                1               ; serial
                                10800           ; refresh (3 hours)
                                3600            ; retry (1 hour)
                                604800          ; expire (1 week)
                                3600            ; minimum (1 hour)
                                )
                IN      NS      ns1.youreadumbass.org.

$ORIGIN 167.172.111.65.IN-ADDR.ARPA.
167             IN      PTR     youreadumbass.org.
Code:
# cat 168.172.111.65.in-addr.arpa
$ORIGIN .
$TTL 86400      ; 1 day
168.172.111.65.IN-ADDR.ARPA IN      SOA ns1.youreadumbass.org. hostmaster.schelin.org. (
                                1               ; serial
                                10800           ; refresh (3 hours)
                                3600            ; retry (1 hour)
                                604800          ; expire (1 week)
                                3600            ; minimum (1 hour)
                                )
                IN      NS      ns1.youreadumbass.org.

$ORIGIN 168.172.111.65.IN-ADDR.ARPA.
168             IN      PTR     youreadumbass.org.
I think that's really where the question comes in.

Carl