> For the complete documentation index, see [llms.txt](https://docs.dnscontrol.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dnscontrol.org/language-reference/record-modifiers/service-provider-specific/hurricane-electric-dns/hedns_dynamic_off.md).

# HEDNS\_DYNAMIC\_OFF

`HEDNS_DYNAMIC_OFF` explicitly disables Dynamic DNS on a record managed by the Hurricane Electric DNS provider. This will clear any DDNS key previously associated with the record.

Use this modifier when you want to ensure a record that was previously dynamic is returned to a static state.

{% code title="dnsconfig.js" %}

```javascript
D("example.com", REG_NONE, DnsProvider(DSP_HEDNS),
    A("static", "5.6.7.8", HEDNS_DYNAMIC_OFF),
);
```

{% endcode %}
