I have a simple problem: my DNS does not answer a reverse lookup of my public ip address (e.g. 11.22.33.44) correct ... it just answers SOA and NS (taken from SOA record), but no PTR (additional extra entry for NS also not working, but who cares).
We are not talking about a private net, so I don't have the option to just setup a reverse zone for 33.22.11 and add a PTR record for 44 ... (I tried locally without notifying others and this would work fine).
But this way, I would answer authoritative for my network neighbors (1.43 and 45-254) also ... doesn't sound correct.
So I setup a single ip reverse zone 44.33.22.11 and added the SOA.
@ IN SOA mydomain.com. hostmaster.mydomain.com. (
2513; Serial
86400 ; Refresh (every 24h)
10800 ; Retry (every 3h)
3600000 ; Expire (after 42 days)
3600 ) ; TTL Negativ Cache (1h)
So far, so good, upto here, all works as expected.
To add PTR, I tried the following entries but NONE gets responded by bind when asked for it:
@ IN PTR mydomin.com.
@. IN PTR mydomin.com.
IN PTR mydomain.com.
. IN PTR mydomain.com.
It appears to ignore anything but the SOA for a single-ip-zone (the above entries do not even cause an error in bind), so how do I get the required PTR created?
thanks for any hint, even if I'm just silly and dont see the obvious :-)
^5
sven