githubEdit

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.

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

Last updated