diff options
author | NOYB <Al_Stu@Frontier.com> | 2016-07-02 02:13:04 -0700 |
---|---|---|
committer | NOYB <Al_Stu@Frontier.com> | 2016-07-02 02:13:04 -0700 |
commit | 39d2f39d57e4eefbfd0630758464fab7568b6877 (patch) | |
tree | fa704038d6fb81a653a7bfd6582f700381b40a64 /src/etc/inc/globals.inc | |
parent | 9c40391966dbd9c69d2bfbfbf042d3277adb145d (diff) | |
download | pfsense-39d2f39d57e4eefbfd0630758464fab7568b6877.zip pfsense-39d2f39d57e4eefbfd0630758464fab7568b6877.tar.gz |
Check IP Services
Configurable check IP services.
Used by Dynamic DNS services to check IP addresses.
Configure as many check IP services as desired. The first (highest in the list) that is enabled will be used as the default.
A future possibility could be to add an option to the Dynamic DNS entires to use a specific check IP service.
Addresses bug #6493 by allowing additional check IP service to be added and selected as the default.
Diffstat (limited to 'src/etc/inc/globals.inc')
-rw-r--r-- | src/etc/inc/globals.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/etc/inc/globals.inc b/src/etc/inc/globals.inc index 221df9e..294fda7 100644 --- a/src/etc/inc/globals.inc +++ b/src/etc/inc/globals.inc @@ -238,4 +238,15 @@ if (file_exists("{$g['cf_conf_path']}/enableserial_force")) { $config_parsed = false; +/* Factory default check IP service. */ +$factory_default_checkipservice = array( + "enable" => true, + "name" => 'Default', + "url" => 'http://checkip.dyndns.org', +// "username" => '', +// "password" => '', +// "verifysslpeer" => true, + "descr" => 'Default Check IP Service' +); + ?> |