NAPTR records are most commonly used for applications in Internet telephony - in the mapping of servers and user addresses in the Session Initiation Protocol (SIP).
The combination of NAPTR records with Service Records (SRV) allows the chaining of multiple records to form complex rewrite rules which produce new domain labels or uniform resource identifiers (URIs).
The NAPTR record has the following look in your ClouDNS Control Panel:
Host | Type: | Points to: | TTL: |
hostname.com | NAPTR | 1 1 "" "123" "regular" . | 3600 |
NAPTR records are commonly used with SIP in conjunction with SRV records to discover what types of services are available for a name. We can say that NAPTR record is an extension of the classic records. When someone performs a NAPTR lookup of your domain, he will find out what protocols or ports are implemented, does your domain supports SIP or some other VoIP service, and so on.
In order to create a new NAPTR record, go to your DNS zone management page, click on the Add new record link and choose NAPTR. Here are example DNS record settings:
Type: NAPTR
TTL: 1 Hour
Host: example
Order: (from 0 to 65535)
Preference: (from 0 to 65535)
Flag: (empty or U, S, A,P)
Protocol Resolution Service: from 0 to 32 symbols
Regular Expression: someregex
Replacement: somerep
Note: The Regular Expression and the Replacement cannot be used both or left empty.
Question: Does NAPTR work in the same manner as the PTR record?
Answer: No, they are not the same. PTR records are used for Reverse DNS Resolution. And NAPTR records are mostly used for SIP communication.