Release Notes
Security Announcement
Announcements

example.com and the domain name you want to connect is www.example.com , www will be input as the host record.Record Type | Description | Example |
A | It is used to resolve a domain name to an IPv4 address. The record value only allows the input of an address in the IPv4 format and does not permit the use of a private IP address. | For example, you have a domain name example.com , and its A record is 1.1.1.1 . When users visit example.com , the DNS will resolve it to the IP address. |
AAAA | It is used to resolve a domain name to an IPv6 address. The record value only allows the input of an address in the IPv6 format and does not permit the use of a private IP address. | For example, you have a domain name example.com , and its AAAA record is 2001:0db8:85a3:0000:0000:8a2e:0370:7334 . When users visit example.com , the DNS will resolve it to the IP address, allowing users to access the website via IPv6. |
CNAME | It is used to point a domain name alias to another domain name. The record value only allows the input of a domain name. | For example, you have a subdomain name www.example.com , and its CNAME record points to example.com . When users visit www.example.com , they will be redirected to example.com to obtain the corresponding resolution record result. |
MX | It is used to specify a mail server for handling emails. The MX record must include the priority and the server address, where: Priority: The input range allowed is 0-50; Mail server address: Only a domain name is allowed. | If you want to forward emails sent to example.com to a mail server, you can set an MX record, such as 10 mail.example.com , where 10 is the priority number, with a lower number indicating a higher priority. |
TXT | It is used to store any text information, often for verification and security purposes. The record value must not exceed 256 bytes. | Common uses include sender policy framework (SPF) recording and domain name validation. For example, you can configure a TXT record v=spf1 include:_spf.example.com ~all to specify which servers are allowed to send emails on behalf of your domain name. |
NS | It is used to specify the DNS server responsible for managing the domain name. The record value must be in the domain name format. | For example, you have a domain name example.com , and its NS record may be ns1.example.com and ns2.example.com , indicating that these DNS servers are responsible for authoritative DNS queries for the domain name. |
SRV | It is used to define the hostname and port number of a specific service. The record value should include the corresponding host domain name and port number. | If you have a service (such as VoIP or instant messaging), you can use an SRV record to specify the service's hostname and port. For example: _sip._tcp.example.com may point to port 5060 of sipserver.example.com . |
CAA | It is used to specify which certificate authorities (CAs) are authorized to issue SSL/TLS certificates for domain names. The record value format needs to include three pieces of information: flag, tag, and value, separated by spaces: Flag: It must be set to 0, indicating that CAs are allowed to issue certificates for domain names even if they cannot recognize the CAA record attribute. Tag: It is usually "issue", "issuewild", or "iodef": issue: The specified CA is allowed to issue certificates for all subdomain names. issuewild: The specified CA is allowed to issue wildcard certificates for all subdomain names. iodef: A URL is provided, so that the CA can send a report to it when encountering a request that violates the CAA policy. Value: string type. It is usually the domain name of the CA allowed to issue certificates, and needs to be enclosed in double quotes. | You can set a CAA record so that only specific CAs can issue certificates for your domain name. For example: 0 issue "letsencrypt.org" , indicating that only Let's Encrypt can issue certificates for the domain name. |
www.example.com is set, an MX record for www.example.com can also be set.www.example.com is set, a CNAME record for www.example.com cannot be set.Record Type | A | AAAA | CNAME | MX | NS | TXT | SRV | CAA |
A | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
AAAA | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
CNAME | × | × | × | × | × | × | × | × |
MX | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
NS | × | × | × | × | ✓ | × | × | × |
TXT | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
SRV | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
CAA | ✓ | ✓ | × | ✓ | × | ✓ | ✓ | ✓ |
www.example.com , if the A record for the Chinese mainland region route is configured to resolution to 1.1.1.1 and the A record for the default route is configured to resolution to 2.2.2.2 , then users from the Chinese mainland will have the domain name www.example.com resolved to 1.1.1.1 , whereas users from other regions will have it resolved to 2.2.2.2 .Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback