
October 13th, 2003, 03:20 PM
|
|
Junior Member
|
|
Join Date: Oct 2003
Location: Ottawa,Canada
Posts: 28
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
I have seen batch cmd tools like nsbatch and others. That will essentially map 1-254 of each subnet. Reverse zones work similar to forward zones, and are delegated and or hosted to each isp or ip/ip block space holder. In some cases it's not even used. When it is used it's often outdated or may not match the A record. Having fake ptr records is a growing trend now-a-days. Most ISP's infact are using the ip in - dash format as the reverse so it's not to informative. host-192-168-1-12.isp.co.uk. At least it will tell you where the client is coming from. Uk.
You can also try to manually find the answer using dig.
This way you can figure out who the authorative name server is for the reverse zone from the soa.
Code:
int-cache# dig -x 139.134.4.x
; <<>> DiG 8.3 <<>> -x
;; res options: init recurs defnam dnsrch
;; got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 2
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUERY SECTION:
;; x.4.134.139.in-addr.arpa, type = ANY, class = IN
;; AUTHORITY SECTION:
134.139.in-addr.arpa. 1D IN SOA sy-dns01.tmns.net.au. dvm.onaustralia.com.au. (
2002020502 ; serial
1H ; refresh
30M ; retry
4w2d ; expiry
1D ) ; minimum
;; Total query time: 383 msec
;; FROM: int-cache.mhweb.internal to SERVER: default -- 192.168.1.8;; WHEN: Mon Oct 13 04:20:23 2003
;; MSG SIZE sent: 42 rcvd: 118
Hope that helps
Cheers
|