Questions tagged [ptr-record]

PTR is a type of record in DNS system used for reverse DNS lookups (IP address to hostname)

IPv4 reverse resolution

Reverse DNS lookups for IPv4 addresses use a reverse IN-ADDR entry in the special domain in-addr.arpa. In this domain, an IPv4 address is represented as a concatenated sequence of four decimal numbers, separated by dots, to which is appended the second level domain suffix .in-addr.arpa. The four decimal numbers are obtained by splitting the 32-bit IPv4 address into four 8-bit portions and converting each 8-bit portion into a decimal number. These decimal numbers are then concatenated in the order: least significant 8-bit portion first (leftmost), most significant 8-bit portion last (rightmost). It is important to note that this is the reverse order to the usual dotted-decimal convention for writing IPv4 addresses in textual form. For example, an address (A) record for mail.example.com points to the IP address 192.0.2.5. In pointer records of the reverse database, this IP address is stored as the domain name 5.2.0.192.in-addr.arpa pointing back to its designated host name mail.example.com. This allows it to pass the Forward Confirmed reverse DNS process.

IPv6 reverse resolution

Reverse DNS lookups for IPv6 addresses use the special domain ip6.arpa. An IPv6 address appears as a name in this domain as a sequence of nibbles in reverse order, represented as hexadecimal digits as subdomains. For example, the pointer domain name corresponding to the IPv6 address 2001:db8::567:89ab is b.a.9.8.7.6.5.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa.

188 questions
2
votes
2 answers

Reverse DNS in bind 9 failed and VPS

My Ip address is 1.2.3.4 (single ip for mail and dns server) and my domain name is example.com, I use Centos 7 and bind 9 output of command: `host 1.2.3.4` is: `Host 4.3.2.1.in-addr.arpa. not found: 3(NXDOMAIN)` My /etc/named.zones is: zone…
Vahid
  • 43
  • 4
2
votes
1 answer

Is having the same PTR hostname valid for multiple ip addresses?

Currently I have the following setup with two hostnames and two ips: cheeze1.mydomain.com IN A 123.123.123.111 111.123.123.123.in-addr.arpa IN PTR cheeze1.mydomain.com cheeze2.mydomain.com IN A …
2
votes
1 answer

SMTP DNS Validation with multiple mail servers behind multiple Public IPs

I know when a Mail server receives an e-mail, it performs a "DNS 3 way check" (I think this is also sometimes called FCrDNS) as a simply test against spammers. The way I understand it to work is as follows: Starting with the Source IP of the…
Eddie
  • 183
  • 6
2
votes
1 answer

Is it possible to set a PTR record for Github Pages hosting?

Icelandic domains (.is) require that their domains support reverse DNS, which means configuring PTR records on the hosting server. Is it possible to set up a PTR record for GitHub Pages site hosting? Background: I have an Icelandic top-level…
2
votes
3 answers

Is the Reverse PTR record fine

I've checked my email headers at http://mxtoolbox.com which says it is ok. But I'm not sure. MY server's FQDN is host.tariffplansindia.com and for my server's IP( 23.239.30.81) the reverse PTR record resolves to tariffplansindia.com. But all my…
AgA
  • 181
  • 1
  • 10
2
votes
0 answers

RDNS_NONE from spamassassin result, when it should be positive

When trying to do a spam test on mail-tester.com, SpamAssassin is giving me RDNS_NONE result. Can't quite figure out why! The result I get: -1.274 RDNS_NONE Delivered to internal network by a host with no rDNS This may be a false-positive,…
JJ85
  • 31
  • 3
2
votes
1 answer

PTR Webserver and Appserver

I'm a little confused about the setup of a PTR record for reverse dns lookup. We are hosted at Rackspace and we have a front end webserver and behind that an appserver. Users don't access the Appserver directly, they go through the…
Marc
  • 123
  • 2
2
votes
1 answer

The correct PTR record in DNS

I'm confused with my DNS records. I own a domain (e.g. example.com).I've set A record for my SMTP server (e.g. smtp.example.com) for outgoing emails. The email address is (e.g. person1@example.com).I've set A record for my POP3 server (e.g.…
2
votes
1 answer

How to match PTR record with a different domain?

I am a bit confused about PTR records and how to set it up correctly. This is the current setup: A website: domain.com, on this website I have a mailaddress info@domain.com. On domain.com I have an iframe which shows a questionaire, this…
Gerb
  • 21
  • 2
2
votes
2 answers

which one is best for PTR record: domain or hostname

I have a VPS with the following IP: 82.197.45.124 domain: example.com hostname: server.example.com PTR record: 82.197.45.124 > server.example.com There is no an "A" record for "server" mood@desk:~$ host 82.197.45.124 124.45.197.82.in-addr.arpa…
thomas
  • 123
  • 1
  • 4
2
votes
2 answers

A and PTR records and redundant Internet connections

Want to set up PTR record(s) to handle the following: Site with mail server (Exchange 2010) has three Internet connections, with the firewall handling load balancing. I know that if the Internet connection with the IP in the MX record goes down,…
Mark
  • 23
  • 2
2
votes
1 answer

PTR record needed? Where?

I have a problem which I think can be resolved by adding a PTR record. Email isn't working for xx@example.com. I looked up the SMTP issues on mxtoolbox.com which returned the following: SMTP Reverse Banner Check Reverse DNS FAILED! This is a…
Jake Rowsell
  • 129
  • 1
2
votes
2 answers

PTR and A record must match?

RFC 1912 Section 2.1 states the following: Make sure your PTR and A records match. For every IP address, there should be a matching PTR record in the in-addr.arpa domain. If a host is multi-homed, (more than one IP address) make sure that all…
somecallmemike
  • 161
  • 1
  • 4
2
votes
1 answer

My ISP set up a PTR record for my mail server, but some places aren't seeing it

I have a VPS running Windows 2008 server with plesk 9, which I am using for email. I asked to my ISP to add a PTR record, which they did but my mails still droping into spam box. I have checked almost every DNS tool I can think of, and sometimes it…
Dali
  • 23
  • 1
  • 5
2
votes
1 answer

$GENERATE'd records competing with real PTR records

I have a zone (1.168.192.IN-ADDR.ARPA) $GENERATEing PTR records from 1-254. However, I also have some custom PTR records, within that range, that are declared aside from the generate directive. Problem is, when I query the server, I get two…
az_
  • 133
  • 1
  • 8