diff --git a/dns/dyndns/Makefile b/dns/dyndns/Makefile index 9bd3a2dba..d3defe5fc 100644 --- a/dns/dyndns/Makefile +++ b/dns/dyndns/Makefile @@ -1,5 +1,5 @@ PLUGIN_NAME= dyndns -PLUGIN_VERSION= 1.7 +PLUGIN_VERSION= 1.8 PLUGIN_COMMENT= Dynamic DNS Support PLUGIN_MAINTAINER= franco@opnsense.org diff --git a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc index e4839f8a5..4c6278e5f 100644 --- a/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc +++ b/dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc @@ -76,7 +76,7 @@ * Amazon Route53 - Last Tested: 01 April 2012 * DNS-O-Matic - Last Tested: 9 September 2010 * CloudFlare - Last Tested: 30 May 2013 - * Eurodns - Last Tested: 27 June 2013 + * Eurodns - Last Tested: 25 July 2018 * GratisDNS - Last Tested: 15 August 2012 * OVH DynHOST - Last Tested: NEVER * City Network - Last Tested: 13 November 2013 @@ -746,7 +746,7 @@ class updatedns case 'eurodns': curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_USERPWD, $this->_dnsUser.':'.$this->_dnsPass); - $server = "https://eurodyndns.org/update/"; + $server = "https://update.eurodyndns.org/update/"; $port = ""; if ($this->_dnsPort) { $port = ":" . $this->_dnsPort;