NAPTR record

A Name Authority Pointer (NAPTR) is a type of resource record in the Domain Name System of the Internet.[1][2]

NAPTR records are most commonly used for applications in Internet telephony, for example, 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 DNS type code for the NAPTR record is 35.[1]

Rationale

Uniform Resource Names (URNs) are a subset of Uniform Resource Identifiers (URIs) used for abstract identifiers, such as a person's name or their telephone number. For URNs to be meaningful, they must be mapped to a concrete resource of some sort. Uniform Resource Locators (URLs) are often used to describe such resources, such as a computer hostname, or a local file.

The NAPTR record aids in the standardization of URNs. NAPTR records map between sets of URNs, URLs and plain domain names and suggest to clients the protocols available for communication with the mapped resource.[3] Each NAPTR record contains a service name, a set of flags, a regular expression rule, an order value, a preference and a replacement pattern. Multiple records can be chained together in a cascade to rewrite URIs in deterministic ways. These cascading rules have been standardized in RFC2915 and RFC3403.

Example

A common use for NAPTR records is in Session Initiation Protocol, where it is used to route telephony sessions over the IP networks. For example, the SIP URN for the US telephone number 1-800-555-1234 might be tel:+1-800-555-1234 and its domain name 4.3.2.1.5.5.5.0.0.8.1.e164.arpa. A SIP client querying that name might receive:

$ORIGIN 4.3.2.1.5.5.5.0.0.8.1.e164.arpa.
IN NAPTR 100 10 "U" "E2U+sip" "!^.*$!sip:[email protected]!" .
IN NAPTR 102 10 "U" "E2U+email" "!^.*$!mailto:[email protected]!" .

The first record has an order value of 100, which is lower than 102 and therefore has precedence. Its preference of 10 is unimportant as there are no other rules with order 100. The service name E2U+sip is an ENUM string indicating that the record can be used in telephone number-to-SIP-URI queries.[4] The client applies the regular expression !^.*$!sip:[email protected]!, which replaces its entire URN tel:+1-800-555-1234 with sip:[email protected]. The flag U indicates that the replacement string is a SIP URN, and that no further rules should be applied.

To resolve SIP URN, the client performs a second NAPTR lookupon example.com, yielding:

$ORIGIN example.com.
IN NAPTR 100 10 "S" "SIP+D2U" "!^.*$!sip:[email protected]!" _sip._udp.example.com.
IN NAPTR 102 10 "S" "SIP+D2T" "!^.*$!sip:[email protected]!" _sip._tcp.example.com.

As in the first example, the client picks the first record because it has the lowest order value. The regular expression rule replaces the query URN, this time with the domain name _sip._udp.example.com. The flag S indicates that the resulting domain name points to a SRV record. The client thus finishes with _sip._udp.example.com, for which it can then fetch a SRV record to initiate a telephony call.

Support

Vendor Product NAPTR support?
ISC BIND Yes
Cisco Systems CNR Yes
Daniel J. Bernstein djbdns No (requires patch)
Microsoft Windows Server 2003 DNS Server No
Microsoft Windows Server 2008 R2 DNS Server Yes
Secure64 Secure64 DNS Authority DNS Server Yes
PowerDNS/Open-Xchange PowerDNS Yes
NLnet Labs NSD Yes
Amazon Web Services Amazon Route 53 Yes
Sam Trenholme MaraDNS version 1.4 on[5]
Unixservice, LLC. unxsBind Yes
Simon Kelley Dnsmasq Yes
F5 Networks Global Traffic Manager (GTM) Yes
Google Google Cloud DNS Yes
DNS.com 51DNS DNS No

NAPTR implementations generally also implement EDNS as responses returning multiple NAPTR records are usually larger than the normal 512 byte packet size limit and would otherwise require a less efficient fallback to TCP rather than UDP.

References

This article is issued from Wikipedia - version of the 9/6/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.