# 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 %}
