So my new zone looks like this:
28-29.100.168.192.in-addr.arpa
I then add the appropriate PTR record to the zone and replicate it to my
secondary DNS server.
The problem is that when I do a query for a PTR record for the host
'server.domain.com', I get the response that no PTR record exists. The
response is coming from the correct name server. I have no idea what the
problem is. I've tried variations in the zone name (28_29.100.168.192) with
no luck.
Can anyone tell me what I'm dong wrong?
Thanks,
Joe
Your zone needs to be 100.168.192.in-addr.arpa. Its not aware of the network
mask you're using and will become authoritative for the whole 192.168.100
range.
Once you've created it you'll need some records in it. Make sure you've got
one or more PTR record either created or dynamicaly registered with it and
ensure you can perform a lookup using NSLOOKUP <IP ADDRESS>. Once you're
sure its working go for the replication and re-check against the secondary
server.
Good luck.
Alan
"Joe" <J...@discussions.microsoft.com> wrote in message
news:6A066EF6-5BE0-48D9...@microsoft.com...
Thanks,
Joe
Thanks,
Joe
Regards
Alan
"Joe" <J...@discussions.microsoft.com> wrote in message
news:B5743EF2-9A74-4EE2...@microsoft.com...
Regards
ALAN
"Joe" <J...@discussions.microsoft.com> wrote in message
news:5E9544F7-53C3-40B1...@microsoft.com...
server 192.168.41.211
set type=ptr
server.domain.com
I get the following results for the domain only:
primary name server = ns1.domain.com
responsible mail addr = hostm...@domain.com
serial = 68
refresh = 900 (15 mins)
retry = 600 (10 mins)
expire = 86400 (1 day)
default TTL = 3600 (1 hour)
You're trying to look up a PTR record by giving a hostname but the PTR
record relates to an IP address because reverse lookup zones are the oposite
to forward lookup zones. Its like trying to find a phone number in a phone
book by searching the phone book alphabeticaly and failing to find a person
'name' of 009180238409.
If you query for an IP address the server will work out what you wanted e.g.
nslookup 192.168.41.111
If you realy want to be specific go for:
> server 192.168.41.211
> set type=ptr
192.168.41.111 //where this IP is the address of server.domain.com that you
want to check for a PTR record for
Hopefuly you'll find your DNS setup is already working.
Regards
Alan
"Joe" <J...@discussions.microsoft.com> wrote in message
news:CAE1383D-1F93-4391...@microsoft.com...
I understand your logic here, but if I do a CLI query with nslookup, set
type=ptr and enter an IP address, I get the response: non-existent domain.
Your example below is basically a reverse DNS lookup, which my understanding
is different than querying for a PTR record. What I thought I've been doing
is asking DNS if a PTR record exists for a specific host. I've been doing
this to confirm that my reverse lookup zone is configured correctly before my
reverse delegation authority is setup.
So I'm still confused as to what I'm missing and/or doing wrong. Your
thoughts are appreciated.