2020-09-28 04:37:42 +08:00
|
|
|
---
|
|
|
|
name: AUTODNSSEC_ON
|
|
|
|
---
|
|
|
|
|
|
|
|
AUTODNSSEC_ON tells the provider to enable AutoDNSSEC.
|
|
|
|
|
|
|
|
AUTODNSSEC_OFF tells the provider to disable AutoDNSSEC.
|
|
|
|
|
|
|
|
AutoDNSSEC is a feature where a DNS provider can automatically manage
|
|
|
|
DNSSEC for a domain. Not all providers support this.
|
|
|
|
|
|
|
|
At this time, AUTODNSSEC_ON takes no parameters. There is no ability
|
|
|
|
to tune what the DNS provider sets, no algorithm choice. We simply
|
|
|
|
ask that they follow their defaults when enabling a no-fuss DNSSEC
|
|
|
|
data model.
|
|
|
|
|
|
|
|
NOTE: No parenthesis should follow these keywords. That is, the
|
|
|
|
correct syntax is `AUTODNSSEC_ON` not `AUTODNSSEC_ON()`
|
|
|
|
|
2022-03-04 20:49:03 +08:00
|
|
|
{% capture example %}
|
2022-02-18 01:22:31 +08:00
|
|
|
```js
|
2020-09-28 04:37:42 +08:00
|
|
|
D("example.com", .... ,
|
|
|
|
AUTODNSSEC_ON, // Enable AutoDNSSEC.
|
|
|
|
A("@", "10.1.1.1")
|
|
|
|
);
|
|
|
|
|
|
|
|
D("insecure.com", .... ,
|
|
|
|
AUTODNSSEC_OFF, // Disable AutoDNSSEC.
|
|
|
|
A("@", "10.2.2.2")
|
|
|
|
);
|
2022-02-18 01:22:31 +08:00
|
|
|
```
|
2022-03-04 20:49:03 +08:00
|
|
|
{% endcapture %}
|
2022-02-18 01:22:31 +08:00
|
|
|
|
2022-03-04 20:49:03 +08:00
|
|
|
{% include example.html content=example %}
|
2020-09-28 04:37:42 +08:00
|
|
|
|
|
|
|
If neither `AUTODNSSEC_ON` or `AUTODNSSEC_OFF` is specified for a
|
|
|
|
domain no changes will be requested.
|