DNS

Managing DNS zones and records in Futrou v1.

DNS zones

A DNS zone is a set of records that defines how a given domain and its subdomains behave. The zone contains various record types that determine where requests for the domain are routed.

DNS zone in Futrou v1

DNS zone management for a domain is in the administration on the DNS card of the Serverlet.

DNS zone overview in the administration

DNS records

DNS records are the individual entries in a DNS zone that define the specific behaviour of a domain. Every record has a type, a name, a value, and a TTL (Time To Live). You can manage DNS records in the administration on the DNS card of the Serverlet, where you can add and delete them.

DNS record management in the administration

Supported record types

A

Maps a domain name to an IPv4 address.

text
mydomain.com.      IN      A      159.69.119.71

AAAA

Maps a domain name to an IPv6 address.

text
mydomain.com.      IN      AAAA   2a01:4f8:c010:d03::1

CNAME

Creates an alias from one domain name to another. It cannot be used for the main record of the domain (the apex), only for subdomains.

text
www.mydomain.com.  IN      CNAME  mydomain.com.

MX

Specifies the mail servers that receive mail for the domain. A lower priority number means a higher priority.

text
mydomain.com.      IN      MX      10 mail.mydomain.com.

TXT

Stores textual information, most often for domain ownership verification, SPF, or DKIM.

text
mydomain.com.      IN      TXT     "v=spf1 include:_spf.google.com ~all"

TTL (Time To Live)

The TTL determines how long DNS servers may keep a record in their cache before requesting the current value. A lower TTL means faster changes but more queries; the default TTL is usually 3,600 seconds, that is one hour.

Last updated