DNS Resource Record Support

February 26, 2026 · View on GitHub

This document describes every DNS resource record type known to the NetDNS2 library, organized into three sections:

  1. Supported Resource Records — fully implemented with wire-format encode/decode, zone-file text parse/format, and PHP class.
  2. Meta / Pseudo-types — types that appear in DNS packets but are not stored resource records (EDNS, zone-transfer control, transaction security, query wildcards).
  3. Unsupported Resource Records — types that appear in the IANA registry but are not implemented, with an explanation for each.

Supported Resource Records

A — IPv4 Address

FieldValue
Type1
RFCRFC 1035
Class\NetDNS2\RR\A

Maps a hostname to a 32-bit IPv4 address. The most common record type in the DNS.

Key fields: address (\NetDNS2\Data\IPv4)


NS — Name Server

FieldValue
Type2
RFCRFC 1035
Class\NetDNS2\RR\NS

Delegates a DNS zone to use the given authoritative name server.

Key fields: nsdname (\NetDNS2\Data\Domain)


CNAME — Canonical Name

FieldValue
Type5
RFCRFC 1035
Class\NetDNS2\RR\CNAME

Creates an alias from one domain name to another (the canonical name). Resolvers follow CNAME chains automatically.

Key fields: cname (\NetDNS2\Data\Domain)


SOA — Start of Authority

FieldValue
Type6
RFCRFC 1035
Class\NetDNS2\RR\SOA

Marks the beginning of a DNS zone and carries administrative parameters used for zone transfers and negative caching.

Key fields: mname (primary NS), rname (admin mailbox), serial, refresh, retry, expire, minimum


NULL — Null Record

FieldValue
Type10
RFCRFC 1035
Class\NetDNS2\RR\RR_NULL

Can hold any binary data up to 65,535 bytes. Used experimentally and for testing. The PHP class is named RR_NULL (not NULL) to avoid a conflict with the PHP reserved word.

Key fields: data (raw binary string)


WKS — Well-Known Services

FieldValue
Type11
RFCRFC 1035
Class\NetDNS2\RR\WKS

Describes the well-known IP services (TCP/UDP port numbers) that a host provides. Largely superseded by SRV records in modern deployments.

Key fields: address (IPv4), protocol (IP protocol number), bitmap (port bitmap)


PTR — Pointer

FieldValue
Type12
RFCRFC 1035
Class\NetDNS2\RR\PTR

Maps an IP address to a hostname (reverse DNS lookup). Used in in-addr.arpa (IPv4) and ip6.arpa (IPv6) zones.

Key fields: ptrdname (\NetDNS2\Data\Domain)


HINFO — Host Information

FieldValue
Type13
RFCRFC 1035
Class\NetDNS2\RR\HINFO

Describes the CPU and operating system of a host. Rarely published publicly due to security concerns; still used in some private/internal zones.

Key fields: cpu, os (character-string pairs)


MX — Mail Exchanger

FieldValue
Type15
RFCRFC 1035
Class\NetDNS2\RR\MX

Specifies the mail server responsible for accepting email for a domain. Multiple records with different preference values allow fallback.

Key fields: preference (priority, lower = preferred), exchange (\NetDNS2\Data\Domain)


TXT — Text

FieldValue
Type16
RFCRFC 1035
Class\NetDNS2\RR\TXT

Holds one or more arbitrary text strings. Widely used for domain ownership verification, SPF policies, DKIM public keys, and many other purposes.

Key fields: text (array of character strings, each up to 255 bytes)


RP — Responsible Person

FieldValue
Type17
RFCRFC 1183
Class\NetDNS2\RR\RP

Identifies the person responsible for a host, with an optional pointer to a TXT record containing contact details.

Key fields: mbox (mailbox domain), txtdname (TXT record name)


AFSDB — AFS Database Location

FieldValue
Type18
RFCRFC 1183
Class\NetDNS2\RR\AFSDB

Locates an AFS cell database server or a DCE/NCA cell directory server. Subtype 1 = AFS version 3 cell database server; subtype 2 = DCE authenticated name server.

Key fields: subtype (1 or 2), hostname (\NetDNS2\Data\Domain)


X25 — X.25 PSDN Address

FieldValue
Type19
RFCRFC 1183
Class\NetDNS2\RR\X25

Stores the X.25 Public Switched Data Network (PSDN) address for a host.

Key fields: address (PSDN address string)


ISDN — ISDN Address

FieldValue
Type20
RFCRFC 1183
Class\NetDNS2\RR\ISDN

Stores an ISDN telephone number and optional subaddress for a host.

Key fields: address (ISDN number), sa (optional subaddress)


RT — Route Through

FieldValue
Type21
RFCRFC 1183
Class\NetDNS2\RR\RT

Specifies an intermediate host for routing to destinations that use non-standard addresses (e.g., X.25, ISDN). Analogous to MX but for routing.

Key fields: preference, intermediate (\NetDNS2\Data\Domain)


SIG — Cryptographic Signature (legacy)

FieldValue
Type24
RFCRFC 2535
Class\NetDNS2\RR\SIG

The original DNSSEC signature record from RFC 2535. Now superseded by RRSIG (type 46), but still used for SIG(0) transaction authentication on DNS UPDATE messages. The library uses SIG for signing dynamic updates.

Key fields: typecovered, algorithm, labels, origttl, sigexp, sigincep, keytag, signname, signature


KEY — Public Key (legacy)

FieldValue
Type25
RFCRFC 2535, RFC 2930
Class\NetDNS2\RR\KEY

The original DNSSEC public key record from RFC 2535, superseded by DNSKEY (type 48). Still used for TKEY key exchange.

Key fields: flags, protocol, algorithm, key


PX — X.400/RFC 822 Mail Mapping

FieldValue
Type26
RFCRFC 2163
Class\NetDNS2\RR\PX

Maps between RFC 822 (internet) email addresses and X.400 email addresses for gateways.

Key fields: preference, map822 (RFC 822 domain), mapx400 (X.400 OR-address domain)


GPOS — Geographical Position

FieldValue
Type27
RFCRFC 1712
Class\NetDNS2\RR\GPOS

Specifies the geographical position of a host using longitude, latitude, and altitude strings. Superseded by LOC (type 29).

Key fields: longitude, latitude, altitude


AAAA — IPv6 Address

FieldValue
Type28
RFCRFC 3596
Class\NetDNS2\RR\AAAA

Maps a hostname to a 128-bit IPv6 address. The IPv6 equivalent of the A record.

Key fields: address (\NetDNS2\Data\IPv6)


LOC — Location Information

FieldValue
Type29
RFCRFC 1876
Class\NetDNS2\RR\LOC

Stores the geographic location (latitude, longitude, altitude, size, horizontal and vertical precision) of an internet resource.

Key fields: latitude, longitude, altitude, size, horiz_pre, vert_pre


EID — Endpoint Identifier

FieldValue
Type31
RFCPatton 1995
Class\NetDNS2\RR\EID

Used in the Nimrod routing architecture to store endpoint identifiers. Rarely seen in production.

Key fields: endpoint (binary hex string)


NIMLOC — Nimrod Locator

FieldValue
Type32
RFCPatton 1995
Class\NetDNS2\RR\NIMLOC

Used in the Nimrod routing architecture to store locators. Rarely seen in production.

Key fields: locator (binary hex string)


SRV — Service Location

FieldValue
Type33
RFCRFC 2782
Class\NetDNS2\RR\SRV

Specifies the hostname and port for a service. Allows services to be discovered without hard-coding port numbers. Widely used for SIP, XMPP, and many other protocols.

Key fields: priority, weight, port, target (\NetDNS2\Data\Domain)


NAPTR — Naming Authority Pointer

FieldValue
Type35
RFCRFC 2915
Class\NetDNS2\RR\NAPTR

Provides regular-expression-based rewriting of domain names and URIs. Used in ENUM (telephone-number-to-URI mapping) and for service discovery in VoIP.

Key fields: order, preference, flags, services, regexp, replacement


KX — Key Exchanger

FieldValue
Type36
RFCRFC 2230
Class\NetDNS2\RR\KX

Identifies hosts willing to act as key exchange intermediaries for a domain, analogous to MX for mail. Used with DNSSEC in some architectures.

Key fields: preference, exchanger (\NetDNS2\Data\Domain)


CERT — Certificate

FieldValue
Type37
RFCRFC 4398
Class\NetDNS2\RR\CERT

Stores a certificate (X.509, PGP, SPKI, etc.) or a certificate revocation list (CRL) in the DNS.

Key fields: format, key_tag, algorithm, certificate (base64)


DNAME — Delegation Name

FieldValue
Type39
RFCRFC 2672
Class\NetDNS2\RR\DNAME

Redirects an entire subtree of the DNS namespace (unlike CNAME, which only redirects a single name). Often used for IPv6 reverse-lookup zones or domain mergers.

Key fields: target (\NetDNS2\Data\Domain)


OPT — EDNS Options

FieldValue
Type41
RFCRFC 2671 / RFC 6891
Class\NetDNS2\RR\OPT

A pseudo-RR (meta-type) that carries EDNS(0) options in the additional section of a DNS message. Not a real resource record — used only for protocol extension signalling. The library supports the following EDNS option sub-types:

OptionCodeRFC
NSID3RFC 5001
DAU5RFC 6975
DHU6RFC 6975
N3U7RFC 6975
ECS (Client Subnet)8RFC 7871
EXPIRE9RFC 7314
COOKIE10RFC 7873
KEEPALIVE (TCP Keepalive)11RFC 7828
PADDING12RFC 7830
CHAIN13RFC 7901
KEYTAG14RFC 8145
UMBRELLA20292Cisco-internal
ZONEVERSION19RFC 9660

APL — Address Prefix List

FieldValue
Type42
RFCRFC 3123
Class\NetDNS2\RR\APL

Stores a list of address prefixes (IPv4 and/or IPv6) with optional negation. Used for Access Control Lists (ACLs) in DNS-based configurations.

Key fields: apl_items (array of prefix entries, each with address family, prefix length, negation flag, and address)


DS — Delegation Signer

FieldValue
Type43
RFCRFC 4034
Class\NetDNS2\RR\DS

Contains a hash of a DNSKEY record in a child zone, creating the chain of trust in DNSSEC. Published in the parent zone to authenticate the child zone's key.

Key fields: keytag, algorithm, digesttype, digest


SSHFP — SSH Public Key Fingerprint

FieldValue
Type44
RFCRFC 4255
Class\NetDNS2\RR\SSHFP

Stores the fingerprint of an SSH server's public key in DNS, enabling clients to verify host keys without manual intervention (used with DNSSEC).

Key fields: algorithm (key type: RSA, DSS, ECDSA, ED25519, etc.), fingerprint_type (SHA-1 or SHA-256), fingerprint


IPSECKEY — IPsec Key

FieldValue
Type45
RFCRFC 4025
Class\NetDNS2\RR\IPSECKEY

Stores a public key for use with IPsec, allowing hosts to discover IPsec keying material via DNS.

Key fields: precedence, gateway_type, algorithm, gateway (IPv4/IPv6/domain), key (base64)


RRSIG — Resource Record Set Signature

FieldValue
Type46
RFCRFC 4034
Class\NetDNS2\RR\RRSIG

The DNSSEC cryptographic signature for an RRset. Replaces the older SIG record (type 24) for signing zone data.

Key fields: typecovered, algorithm, labels, origttl, sigexp, sigincep, keytag, signname, signature


NSEC — Next Secure

FieldValue
Type47
RFCRFC 4034
Class\NetDNS2\RR\NSEC

Used in DNSSEC to provide authenticated denial of existence. Links the signed zone's resource records in canonical order and identifies which record types exist at the owner name.

Key fields: next (next owner name), types (array of type mnemonics)


DNSKEY — DNS Public Key

FieldValue
Type48
RFCRFC 4034
Class\NetDNS2\RR\DNSKEY

Holds the public key used in DNSSEC to verify RRSIG signatures. Zone signing keys (ZSK) and key signing keys (KSK) are both stored as DNSKEY records.

Key fields: flags (Zone Key flag, SEP bit), protocol (must be 3), algorithm, key (base64)


DHCID — DHCP Identifier

FieldValue
Type49
RFCRFC 4701
Class\NetDNS2\RR\DHCID

Used in the DHCP/DNS interaction protocol to associate a DHCP client with its DNS records, preventing unauthorized updates.

Key fields: id (base64-encoded identifier)


NSEC3 — Next Secure v3

FieldValue
Type50
RFCRFC 5155
Class\NetDNS2\RR\NSEC3

An improvement over NSEC that uses hashed owner names to prevent zone enumeration while still providing authenticated denial of existence.

Key fields: algorithm, flags, iterations, salt, hnxt (hashed next owner name), types


NSEC3PARAM — NSEC3 Parameters

FieldValue
Type51
RFCRFC 5155
Class\NetDNS2\RR\NSEC3PARAM

Published at the zone apex to indicate the NSEC3 hashing parameters (algorithm, flags, iterations, salt) used in the zone.

Key fields: algorithm, flags, iterations, salt


TLSA — TLS Authentication

FieldValue
Type52
RFCRFC 6698
Class\NetDNS2\RR\TLSA

Associates a TLS server certificate with a domain name (DANE — DNS-based Authentication of Named Entities), allowing clients to verify TLS certificates via DNSSEC rather than traditional CAs.

Key fields: cert_usage, selector, matching_type, certificate (hex)


SMIMEA — S/MIME Certificate Association

FieldValue
Type53
RFCRFC 8162
Class\NetDNS2\RR\SMIMEA

Associates an S/MIME certificate with an email address via DNS (using DANE), enabling secure email clients to discover encryption certificates automatically.

Key fields: cert_usage, selector, matching_type, certificate (hex)


HIP — Host Identity Protocol

FieldValue
Type55
RFCRFC 5205
Class\NetDNS2\RR\HIP

Stores HIP parameters: a public key and optionally a list of rendezvous servers, separating the identity of a host from its location (IP address).

Key fields: hit (host identity tag), algorithm, public_key (base64), rendezvous_servers (array of domains)


FieldValue
Type58
RFC
Class\NetDNS2\RR\TALINK

Used by DNSSEC trust anchor management to link trust anchors. Part of a mechanism for automated trust anchor updates.

Key fields: previous (domain), next (domain)


CDS — Child DS

FieldValue
Type59
RFCRFC 7344
Class\NetDNS2\RR\CDS

Published in a child zone to signal the desired DS record content in the parent zone. Enables automated DNSSEC delegation trust management. Identical wire format to DS.

Key fields: keytag, algorithm, digesttype, digest


CDNSKEY — Child DNSKEY

FieldValue
Type60
RFCRFC 7344
Class\NetDNS2\RR\CDNSKEY

Published in a child zone to indicate the DNSKEY that the parent should use when constructing a DS record. Companion to CDS. Identical wire format to DNSKEY.

Key fields: flags, protocol, algorithm, key (base64)


OPENPGPKEY — OpenPGP Public Key

FieldValue
Type61
RFCRFC 7929
Class\NetDNS2\RR\OPENPGPKEY

Stores an OpenPGP public key in the DNS, allowing email clients to discover encryption keys automatically for a given email address.

Key fields: key (base64-encoded transferable public key packet)


CSYNC — Child-to-Parent Synchronization

FieldValue
Type62
RFCRFC 7477
Class\NetDNS2\RR\CSYNC

Allows a child zone to request that the parent zone synchronize specific record types (e.g., NS glue, A/AAAA records) automatically.

Key fields: serial, flags, types (array of type mnemonics)


ZONEMD — Zone Message Digest

FieldValue
Type63
RFCRFC 8976
Class\NetDNS2\RR\ZONEMD

Contains a cryptographic digest of the entire zone's contents, allowing recipients of zone files to verify zone integrity.

Key fields: serial, scheme, algorithm, digest (hex)


SVCB — Service Binding

FieldValue
Type64
RFCRFC 9460
Class\NetDNS2\RR\SVCB

Provides connection endpoints and associated parameters for internet services, enabling clients to connect more efficiently (e.g., via ALPN negotiation, ECH, IP hints). The HTTPS record type (65) is a variant.

Key fields: priority (0 = alias mode), target (domain), params (array of SvcParams: alpn, port, ipv4hint, ipv6hint, ech, mandatory, etc.)


HTTPS — HTTPS Service Binding

FieldValue
Type65
RFCRFC 9460
Class\NetDNS2\RR\HTTPS

An SVCB-compatible record specifically for HTTPS services. Allows browsers and clients to discover HTTPS connection parameters (ALPN, ECH keys, IP hints) via DNS before connecting. Subclasses SVCB.

Key fields: Same as SVCB


DSYNC — Generalized Notify

FieldValue
Type66
RFCdraft-ietf-dnsop-generalized-notify
Class\NetDNS2\RR\DSYNC

Provides a mechanism for generalizing DNS NOTIFY messages to support delegation management operations (CSYNC, CDS/CDNSKEY updates) beyond zone transfers.

Key fields: type (covered type), scheme, port, target (domain)


HHIT — HIP Intermediary Discovery (HIT)

FieldValue
Type67
RFCRFC 9886
Class\NetDNS2\RR\HHIT

Part of the HIP (Host Identity Protocol) Intermediary Discovery mechanism. Stores a HIT (Host Identity Tag) for a HIP intermediary.

Key fields: hit_suite_id, hit (hex)


BRID — HIP Intermediary Discovery (Rendezvous)

FieldValue
Type68
RFCRFC 9886
Class\NetDNS2\RR\BRID

Part of the HIP (Host Identity Protocol) Intermediary Discovery mechanism. Stores the rendezvous server address for a HIP relay.

Key fields: hit_suite_id, hit (hex)


SPF — Sender Policy Framework

FieldValue
Type99
RFCRFC 4408
Class\NetDNS2\RR\SPF

Originally a dedicated record type for SPF email authentication policies. Superseded by TXT records (RFC 7208 removed SPF as a record type); both types carry the same v=spf1 … string. SPF type is still encountered in older zones.

Key fields: text (same format as TXT)


NID — Node Identifier

FieldValue
Type104
RFCRFC 6742
Class\NetDNS2\RR\NID

Part of the ILNP (Identifier-Locator Network Protocol) suite. Stores a 64-bit node identifier for a network node.

Key fields: preference, node_id (64-bit identifier in colon-separated hex)


L32 — 32-bit Locator

FieldValue
Type105
RFCRFC 6742
Class\NetDNS2\RR\L32

Part of the ILNP suite. Stores a 32-bit locator (IPv4-style) identifying a network attachment point.

Key fields: preference, locator (dotted-decimal IPv4 notation)


L64 — 64-bit Locator

FieldValue
Type106
RFCRFC 6742
Class\NetDNS2\RR\L64

Part of the ILNP suite. Stores a 64-bit locator (IPv6-prefix-style) identifying a network attachment point.

Key fields: preference, locator (colon-separated hex)


LP — Locator Pointer

FieldValue
Type107
RFCRFC 6742
Class\NetDNS2\RR\LP

Part of the ILNP suite. Points to a domain name that holds L32 or L64 records, allowing indirection in ILNP locator lookups.

Key fields: preference, target (\NetDNS2\Data\Domain)


EUI48 — 48-bit EUI (MAC-48)

FieldValue
Type108
RFCRFC 7043
Class\NetDNS2\RR\EUI48

Stores a 48-bit IEEE EUI (Ethernet MAC address) in the DNS. Intended for specific use cases such as DHCP-DNS mapping; not for general publication.

Key fields: address (colon-separated hex, e.g., 00:11:22:33:44:55)


EUI64 — 64-bit EUI

FieldValue
Type109
RFCRFC 7043
Class\NetDNS2\RR\EUI64

Stores a 64-bit IEEE EUI address in the DNS. Same purpose as EUI48 but for 64-bit identifiers.

Key fields: address (colon-separated hex, e.g., 00:11:22:33:44:55:66:77)


URI — Uniform Resource Identifier

FieldValue
Type256
RFCRFC 7553
Class\NetDNS2\RR\URI

Maps a hostname (or _service._proto.hostname) to a target URI. Allows DNS-based discovery of services via full URIs.

Key fields: priority, weight, target (URI string)


CAA — Certification Authority Authorization

FieldValue
Type257
RFCRFC 8659
Class\NetDNS2\RR\CAA

Restricts which certificate authorities (CAs) are authorized to issue TLS certificates for a domain. CAs must check CAA records before issuance.

Key fields: flags, tag (issue, issuewild, iodef), value


AVC — Application Visibility and Control

FieldValue
Type258
RFC— (Cisco proprietary)
Class\NetDNS2\RR\AVC

A Cisco-specific record type used in Application Visibility and Control deployments. Carries text strings similar to TXT records.

Key fields: text (array of strings)


AMTRELAY — Automatic Multicast Tunneling Relay

FieldValue
Type260
RFCRFC 8777
Class\NetDNS2\RR\AMTRELAY

Discovers AMT (Automatic Multicast Tunneling) relay addresses via DNS. Clients use AMTRELAY records to find the appropriate AMT relay for a multicast source.

Key fields: precedence, discovery_optional (flag), relay_type, relay (IPv4/IPv6/domain)


RESINFO — Resolver Information

FieldValue
Type261
RFCRFC 9606
Class\NetDNS2\RR\RESINFO

Published by a DNS resolver to communicate its capabilities and configuration to clients. Uses the same key=value SvcParam format as SVCB.

Key fields: SvcParam key-value pairs (e.g., qnamemin, exterr, infourl)


TA — DNSSEC Trust Authority

FieldValue
Type32768
RFC
Class\NetDNS2\RR\TA

Used in the DNSSEC Lookaside Validation (DLV) alternative trust hierarchy. Same wire format as DS.

Key fields: keytag, algorithm, digesttype, digest


DLV — DNSSEC Lookaside Validation

FieldValue
Type32769
RFCRFC 4431
Class\NetDNS2\RR\DLV

Allows DNSSEC validation in zones whose parent zones do not publish DS records, using a separate lookaside validation tree. Now obsolete since the root zone is signed; the ISC DLV registry was shut down in 2017.

Key fields: keytag, algorithm, digesttype, digest


TYPE65534 — Private BIND Record

FieldValue
Type65534
RFC
Class\NetDNS2\RR\TYPE65534

An internal private record type used by BIND for its own purposes. Not an IANA-assigned type.

Key fields: data (raw binary)


Meta / Pseudo-types

These types appear in DNS packet headers or the additional section, but are not stored resource records — they carry protocol control information.

TypeNumberRFCDescription
SIG00RFC 2931Transaction-level signature using SIG records. The library uses SIG(0) to sign DNS UPDATE messages. Handled via \NetDNS2\RR\SIG.
OPT41RFC 6891EDNS(0) options container — carried in the additional section, not stored in zone data. See the OPT entry above for the full list of supported EDNS options.
TKEY249RFC 2930Transaction key establishment for TSIG. Used to negotiate shared secrets for subsequent TSIG-signed requests.
TSIG250RFC 2845Transaction signature. Signs individual DNS messages using a pre-shared HMAC secret. Supported algorithms: HMAC-MD5, HMAC-SHA1, HMAC-SHA224, HMAC-SHA256, HMAC-SHA384, HMAC-SHA512.
IXFR251RFC 1995Incremental zone transfer. Only full-zone (AXFR-style) responses to IXFR queries are currently supported.
AXFR252RFC 1035Full zone transfer. Fully supported; the library can initiate and receive AXFR responses, optionally authenticated with TSIG or SIG(0).
ANY255RFC 1035Wildcard query type requesting all record types for a name. Supported as a query type; handled via \NetDNS2\RR\ANY.

Unsupported Resource Records

The following types are registered in the IANA DNS Parameters registry but are not implemented in NetDNS2. The reason for each omission is given below.

Obsolete types — retired in RFC 1035 itself or replaced early

TypeNumberRFCReason
MD3RFC 1035Obsolete. "Mail Destination" — superseded by MX before DNS was widely deployed. RFC 1035 itself marks it obsolete.
MF4RFC 1035Obsolete. "Mail Forwarder" — superseded by MX at the same time as MD. RFC 1035 marks it obsolete.
MB7RFC 1035Obsolete. Experimental mailbox record that was never standardized or deployed in practice.
MG8RFC 1035Obsolete. Experimental mail group record; same story as MB.
MR9RFC 1035Obsolete. Experimental mail rename record; same story as MB.
MINFO14RFC 1035Obsolete. Mailbox/mail list information; never widely deployed and officially obsolete.

Deprecated types — superseded by better alternatives

TypeNumberRFCReason
NSAP22RFC 1706Deprecated. OSI NSAP (Network Service Access Point) addresses; OSI networking never achieved widespread internet adoption.
NSAP-PTR23RFC 1348Deprecated. Reverse-mapping for NSAP addresses; superseded along with NSAP.
NXT30RFC 2065Obsolete. The original DNSSEC "Next" record for authenticated denial of existence, replaced by NSEC (type 47) in RFC 3755.
ATMA34Removed from the IANA registry. ATM (Asynchronous Transfer Mode) networking was never widely integrated with DNS.
A638RFC 2874Experimental. An alternative IPv6 address record with complex chain-following semantics; downgraded to experimental status by RFC 3363 and superseded entirely by AAAA (type 28).
GPOS27RFC 1712Superseded by LOC (type 29). GPOS is still implemented in this library for completeness but LOC is preferred.
SPF99RFC 4408Functionally replaced by TXT. RFC 7208 removed SPF as a distinct record type; all SPF policies are now published in TXT records. The SPF type is still implemented in this library to handle legacy zones.
MAILB253RFC 883Obsolete. A meta-query for MB, MG, and MR records — none of which are deployed.
MAILA254RFC 973Obsolete. A meta-query for MD and MF records — none of which are deployed.

Types without a published RFC or stable specification

TypeNumberReferenceReason
SINK40Internet-DraftAn Internet-Draft to store arbitrary "kitchen sink" data was proposed but never published as an RFC.
NINFO56Internet-DraftA proposed record for zone status information; the draft expired and was never standardized.
RKEY57Internet-DraftA proposed resource record for additional DNSSEC keying material; the draft was abandoned.
UINFO100No RFC. An internal BIND extension for storing user information; not an IANA standard.
UID101No RFC. An internal BIND extension for user IDs; not an IANA standard.
GID102No RFC. An internal BIND extension for group IDs; not an IANA standard.
UNSPEC103No RFC. An internal BIND extension for unspecified data; not an IANA standard.
DOA259Internet-Draft"DNS-based Objects and Attributes" — the draft (draft-durand-doa-over-dns) has not been standardized.
WALLET262Internet-DraftA proposed record for cryptocurrency wallet addresses; not yet standardized.
CLA263Internet-DraftNot yet standardized.
IPN264Internet-DraftNot yet standardized.

Partially supported / planned

TypeNumberRFCStatus
IXFR251RFC 1995Only full-zone (AXFR-style) responses are supported. True incremental transfer parsing (delta sections) is not yet implemented.
NXNAME128Internet-DraftReserved for a new authenticated NXDOMAIN response type; not yet standardized or implemented.