mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-09 08:56:23 -04:00
dns/ddclient - Add Hurricane Electric provider (#2805)
HE is using the dyndns2 protocol for both dynamic DNS and IPv6 TunnelBroker services. Add both services to the service.
This commit is contained in:
parent
f64f795329
commit
03e60fa604
2 changed files with 10 additions and 0 deletions
|
|
@ -61,6 +61,8 @@
|
|||
<duckdns>DuckDNS</duckdns>
|
||||
<easydns>EasyDNS</easydns>
|
||||
<googledomains>Google</googledomains>
|
||||
<he-net>HE.net</he-net>
|
||||
<he-net-tunnel>HE.net TunnelBroker</he-net-tunnel>
|
||||
<namecheap>NameCheap</namecheap>
|
||||
<noip>Noip</noip>
|
||||
<nsupdatev4>nsupdate.info (IPv4)</nsupdatev4>
|
||||
|
|
|
|||
|
|
@ -49,6 +49,14 @@ use=web, web=http://dynamic.zoneedit.com/checkip.html
|
|||
{% if account.service == 'cloudflare' %}
|
||||
protocol=cloudflare
|
||||
zone={{account.zone}}
|
||||
{% elif account.service == 'he-net' %}
|
||||
protocol=dyndns2
|
||||
ssl=yes
|
||||
server=dyn.dns.he.net
|
||||
{% elif account.service == 'he-net-tunnel' %}
|
||||
protocol=dyndns2
|
||||
ssl=yes
|
||||
server=ipv4.tunnelbroker.net
|
||||
{% elif account.service == 'nsupdatev4' %}
|
||||
protocol=dyndns2
|
||||
ssl=yes
|
||||
|
|
|
|||
Loading…
Reference in a new issue