welcome: please sign in

Diff for "MemberManual/ManagingDNSRecords"

Differences between revisions 1 and 2
Revision 1 as of 2024-03-05 18:20:47
Size: 244
Editor: 24
Comment: Start guide to managing DNS records
Revision 2 as of 2024-03-05 19:06:15
Size: 892
Editor: 24
Comment: Describe the dnsDefaultText directive
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
DNS records are managed through [[MemberManual/UsingDomtool|Domtool]]. The most basic directives for adding DNS records are in the [[https://hcoop.net/domtool/bind.html|Bind]] module. DNS records are managed through [[MemberManual/UsingDomtool|Domtool]]. The most basic directives for adding DNS records are in the [[https://hcoop.net/domtool/bind.html|Bind]] module. There are also higher-level convenience directives in the [[https://hcoop.net/domtool/easy_domain.html|Easy_domain]] module.

=== TXT records ===
A TXT record consists of a domain name and a string. The `dnsDefaultText` directive sets the domain name to the name of the domain the DNS record belongs to, which is the most typical case. The equivalent in some other domain management interfaces is putting `@` in the domain name field. Let's say we're setting DNS records for `example.com`.
==== Domtool directive ====
{{{
dnsDefaultText "Wow, so text";
}}}
==== Resulting DNS record ====
{{{
example.com. IN TXT "Wow, so text"
}}}

DNS records are managed through Domtool. The most basic directives for adding DNS records are in the Bind module. There are also higher-level convenience directives in the Easy_domain module.

TXT records

A TXT record consists of a domain name and a string. The dnsDefaultText directive sets the domain name to the name of the domain the DNS record belongs to, which is the most typical case. The equivalent in some other domain management interfaces is putting @ in the domain name field. Let's say we're setting DNS records for example.com.

Domtool directive

dnsDefaultText "Wow, so text";

Resulting DNS record

example.com.   IN   TXT   "Wow, so text"


CategoryMemberManual

MemberManual/ManagingDNSRecords (last edited 2024-03-05 19:24:42 by 24)