1

We are a small ISP, using linux DNS servers. Recently a client has asked us to create a rDNS zone for a specific IP address, which is used for a mail server. They keep getting message failures for some emails due to lack of PTR records and valid rDNS.

We created the rDNS zone the same way as all of the other rDNS zones are created. The only difference is that, outside of our network the PTR record is not found, but only for that specific IP address.

Does anyone know what could be the cause of this?

masegaloeh
  • 17,978
  • 9
  • 56
  • 104

1 Answers1

2

Use the trace option in dig to debug delegation path from the root nameservers. A couple of re-runs is usually needed to follow different referals.

For example ip-address of serverfault.com:

dig +trace -x 198.252.206.140
HBruijn
  • 72,524
  • 21
  • 127
  • 192
  • I did the trace option and it got my primary ns server as an answer. – user3271583 Apr 02 '14 at 12:35
  • And your primary DNS server did or did not respond with the correct PTR record? – HBruijn Apr 02 '14 at 13:06
  • I think it did not respond with the correct PTR record. Not sure what to do next. – user3271583 Apr 02 '14 at 13:22
  • To test if your DNS is set up correctly test with `dig -x @` ; if that doesn't return the equivalent of `140.206.252.198.in-addr.arpa. 3063 IN PTR stackoverflow.com.` your name server setup is incorrect. Maybe a missing trailing dot if it's bind? (or an extra dot)? – HBruijn Apr 02 '14 at 13:52
  • It returned the correct equivalent... – user3271583 Apr 02 '14 at 14:16