From d19251311450e0de3bd86368dac53b5896894f14 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Fri, 27 Jul 2018 11:03:45 +0200 Subject: [PATCH] dns/dnydns: switch url PR: https://forum.opnsense.org/index.php?topic=9243.0 (cherry picked from commit 00f7b872d39dcfba536b25d456e3c00c8e8f73df) --- dns/dyndns/Makefile | 2 +- dns/dyndns/src/etc/inc/plugins.inc.d/dyndns/phpDynDNS.inc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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;