From b6779adf92ed8f27e9aee9266cae51d1eaf276eb Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Sat, 14 Aug 2021 15:33:50 -0400 Subject: [PATCH] Document how to ignore the NS records of a domain (#1234) * Update docs --- docs/nameservers.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/nameservers.md b/docs/nameservers.md index cb5389b3c..fd165f217 100644 --- a/docs/nameservers.md +++ b/docs/nameservers.md @@ -54,6 +54,15 @@ D("example1.com", REG_NAMECOM, A("@", "10.2.3.4") ); +// Let someone else manage the NS records for a dommain. +// Why? Because you don't have access to the registrar, or the registrar is not +// supported by DNSControl. However you do have API access for +// updating the zone's records (most likely at a different provider). +D("example1.com", REG_THIRDPARTY, + DnsProvider(DNS_NAMECOM), + A("@", "10.2.3.4") +); + // "Registrar only": Direct the registrar to point to some other DNS provider. // Why? In this example we're pointing the domain to the nsone.net DNS // service, which someone else is controlling.