IGNORE
IGNORE()
makes it possible for DNSControl to share management of a domain with an external system. The parameters of IGNORE()
indicate which records are managed elsewhere and should not be modified or deleted.
Use case: Suppose a domain is managed by both DNSControl and a third-party system. This creates a problem because DNSControl will try to delete records inserted by the other system. The other system may get confused and re-insert those records. The two systems will get into an endless update cycle where each will revert changes made by the other in an endless loop.
To solve this problem simply include IGNORE()
statements that identify which records are managed elsewhere. DNSControl will not modify or delete those records.
Technically IGNORE_NAME
is a promise that DNSControl will not modify or delete existing records that match particular patterns. It is like NO_PURGE
that matches only specific records.
Including a record that is ignored is considered an error and may have undefined behavior. This safety check can be disabled using the DISABLE_IGNORE_SAFETY_CHECK
feature.
Syntax
The IGNORE()
function can be used with up to 3 parameters:
labelSpec
is a glob that matches the DNS label. For example"foo"
or"foo*"
."*"
matches all labels, as does the empty string (""
).typeSpec
is a comma-separated list of DNS types. For example"A"
matches DNS A records,"A,CNAME"
matches both A and CNAME records."*"
matches any DNS type, as does the empty string (""
).targetSpec
is a glob that matches the DNS target. For example"foo"
or"foo*"
."*"
matches all targets, as does the empty string (""
).
typeSpec
and targetSpec
default to "*"
if they are omitted.
Globs
The labelSpec
and targetSpec
parameters supports glob patterns in the style of the gobwas/glob library. All of the following patterns will work:
IGNORE("*.foo")
will ignore all records in the style ofbar.foo
, but will not ignore records using a double subdomain, such asfoo.bar.foo
.IGNORE("**.foo")
will ignore all subdomains offoo
, including double subdomains.IGNORE("?oo")
will ignore all records of three symbols ending inoo
, for examplefoo
andzoo
. It will not match.
IGNORE("[abc]oo")
will ignore recordsaoo
,boo
andcoo
.IGNORE("[a-c]oo")
is equivalent.IGNORE("[!abc]oo")
will ignore all three symbol records ending inoo
, except foraoo
,boo
,coo
.IGNORE("[!a-c]oo")
is equivalent.IGNORE("{bar,[fz]oo}")
will ignorebar
,foo
andzoo
.IGNORE("\\*.foo")
will ignore the literal record*.foo
.
Typical Usage
General examples:
Ignore Let's Encrypt (ACME) validation records:
Ignore DNS records typically inserted by Microsoft ActiveDirectory:
Detailed examples
Here are some examples that illustrate how matching works.
All the examples assume the following DNS records are the "existing" records that a third-party is maintaining. (Don't be confused by the fact that we're using DNSControl notation for the records. Pretend some other system inserted them.)
Would match:
foo.example.com. A 1.1.1.1
foo.more.example.com. A 1.1.1.1
Would match:
nothing
Would match:
foo.example.com. A 1.1.1.1
Would match:
foo.more.example.com. A 1.1.1.1
Would match:
nothing
Would match:
nothing
Would match:
none
Would match:
foo.example.com. A 1.1.1.1
foo.more.example.com. A 1.1.1.1
Would match:
none
Would match:
cfull2.example.com. CNAME www.bar.plts.org.
cfull3.example.com. CNAME bar.www.plts.org.
mfull2.more.example.com. CNAME www.bar.plts.org.
mfull3.more.example.com. CNAME bar.www.plts.org.
Would match:
cfull3.example.com. CNAME bar.www.plts.org.
mfull3.more.example.com. CNAME bar.www.plts.org.
Conflict handling
It is considered as an error for a dnsconfig.js
to both ignore and insert the same record in a domain. This is done as a safety mechanism.
This will generate an error:
To disable this safety check, add the DISABLE_IGNORE_SAFETY_CHECK
statement to the D()
.
FYI: Previously DNSControl permitted disabling this check on a per-record basis using IGNORE_NAME_DISABLE_SAFETY_CHECK
:
The IGNORE_NAME_DISABLE_SAFETY_CHECK
feature does not exist in the diff2 world and its use will result in a validation error. Use the above example instead.
Caveats
WARNING: Two systems updating the same domain is complex. Complex things are risky. Use IGNORE()
as a last resort. Even then, test extensively.
There is no locking. If the external system and DNSControl make updates at the exact same time, the results are undefined.
IGNORE
works fine with records inserted into a
D()via
D_EXTEND()`. The matching is done on the resulting FQDN of the label or target.targetSpec
does not match fields other than the primary target. For example,MX
records have a target hostname plus a priority. There is no way to match the priority.The BIND provider can not ignore records it doesn't know about. If it does not have access to an existing zonefile, it will create a zonefile from scratch. That new zonefile will not have any external records. It will seem like they were not ignored, but in reality BIND didn't have visibility to them so that they could be ignored.
Last updated