ddclient configuration template: use ssl, use specific v4/v6 hosts, add comment about ipv6 patch
This commit is contained in:
parent
95212f4baf
commit
e05b1f4583
@ -122,12 +122,29 @@
|
|||||||
ddclient is a popular dyndns update daemon on Linux.
|
ddclient is a popular dyndns update daemon on Linux.
|
||||||
</p>
|
</p>
|
||||||
<pre># /etc/ddclient.conf
|
<pre># /etc/ddclient.conf
|
||||||
|
|
||||||
|
# this will update your ipv4 address to the address
|
||||||
|
# the web service sees requests coming from:
|
||||||
protocol=dyndns2
|
protocol=dyndns2
|
||||||
use=web, web=http://{{ WWW_HOST }}/myip
|
use=web, web=http://{{ WWW_IPV4_HOST }}/myip
|
||||||
server={{ WWW_HOST }}
|
ssl=yes # yes = use https for updates
|
||||||
|
server={{ WWW_IPV4_HOST }}
|
||||||
login={{ host.get_fqdn|default:"<your hostname>" }}
|
login={{ host.get_fqdn|default:"<your hostname>" }}
|
||||||
password='{{ update_secret|default:"<your secret>" }}'
|
password='{{ update_secret|default:"<your secret>" }}'
|
||||||
{{ host.get_fqdn|default:"<your hostname>" }}
|
{{ host.get_fqdn|default:"<your hostname>" }}
|
||||||
|
|
||||||
|
# ddclient releases <= 3.8.1 do not support ipv6,
|
||||||
|
# but there is a patch for ipv6 from Eduardo Trapani.
|
||||||
|
# using such a patched ddclient, the following should work:
|
||||||
|
#
|
||||||
|
# this will update your ipv6 address to the interface address:
|
||||||
|
#protocol=dyndns2
|
||||||
|
#usev6=if, if=eth0
|
||||||
|
#ssl=yes # yes = use https for updates
|
||||||
|
#server={{ WWW_IPV6_HOST }}
|
||||||
|
#login={{ host.get_fqdn|default:"<your hostname>" }}
|
||||||
|
#password='{{ update_secret|default:"<your secret>" }}'
|
||||||
|
#{{ host.get_fqdn|default:"<your hostname>" }}
|
||||||
</pre>
|
</pre>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-pane" id="browser">
|
<div class="tab-pane" id="browser">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user