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