modified source directory structure - files for production files - samples for sample files (not installed in final build) modified Makefile - separate options for additional provider scripts - remove comments and empty lines from final build add IPv4 100.64/10 (RFC 6598) and 169.254/16 (RFC 5735) to the range of default blocked IP's. new option "bind_network" to force GNU Wget or cURL to use specific network/interface for communication new "domains.google.com" as IPv4 DDNS provider #822 Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
31 lines
834 B
Text
31 lines
834 B
Text
#
|
|
# Please read ddns.sample
|
|
# or http://wiki.openwrt.org/doc/uci/ddns
|
|
#
|
|
config ddns "global"
|
|
option date_format "%F %R"
|
|
# option run_dir "/var/run/ddns"
|
|
# option log_dir "/var/log/ddns"
|
|
option log_lines "250"
|
|
option allow_local_ip "0"
|
|
|
|
|
|
config service "myddns_ipv4"
|
|
option service_name "example.org"
|
|
option domain "yourhost.example.com"
|
|
option username "your_username"
|
|
option password "your_password"
|
|
option interface "wan"
|
|
option ip_source "network"
|
|
option ip_network "wan"
|
|
|
|
config service "myddns_ipv6"
|
|
option update_url "http://[USERNAME]:[PASSWORD]@your.provider.net/nic/update?hostname=[DOMAIN]&myip=[IP]"
|
|
option domain "yourhost.example.com"
|
|
option username "your_username"
|
|
option password "your_password"
|
|
option use_ipv6 "1"
|
|
option interface "wan6"
|
|
option ip_source "network"
|
|
option ip_network "wan6"
|
|
|