ddns-scripts: update to version 2.6.2-1
- renamed (lower case) filenames and servicenames for no-ip.com, cloudflare.com and bind_nsupdate including modifing existing configurations #2375 - updated tld_names.dat Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
This commit is contained in:
parent
dbe4135422
commit
42ff9a7d5f
5 changed files with 146 additions and 127 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
PKG_NAME:=ddns-scripts
|
||||
# Version == major.minor.patch
|
||||
# increase on new functionality (minor) or patches (patch)
|
||||
PKG_VERSION:=2.6.1
|
||||
PKG_VERSION:=2.6.2
|
||||
# Release == build
|
||||
# increase on changes of services files or tld_names.dat
|
||||
PKG_RELEASE:=1
|
||||
|
@ -50,21 +50,19 @@ define Package/$(PKG_NAME)/config
|
|||
- Proxy server support
|
||||
- log file support
|
||||
- support to run once
|
||||
.
|
||||
Version: $(PKG_VERSION)-$(PKG_RELEASE)
|
||||
Info : http://wiki.openwrt.org/doc/howto/ddns.client
|
||||
.
|
||||
$(PKG_MAINTAINER)
|
||||
endef
|
||||
|
||||
##### **********************************
|
||||
define Package/$(PKG_NAME)_cloudflare
|
||||
$(call Package/$(PKG_NAME)/Default)
|
||||
TITLE:=DDNS extension for CloudFlare
|
||||
TITLE:=DDNS extension for CloudFlare.com
|
||||
DEPENDS:=$(PKG_NAME)
|
||||
endef
|
||||
define Package/$(PKG_NAME)_cloudflare/description
|
||||
Dynamic DNS Client scripts extension for CloudFlare
|
||||
Dynamic DNS Client scripts extension for CloudFlare.com
|
||||
endef
|
||||
|
||||
##### **********************************
|
||||
|
@ -164,33 +162,35 @@ endef
|
|||
##### **********************************
|
||||
define Package/$(PKG_NAME)_cloudflare/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_CloudFlare.sh $(1)/usr/lib/ddns
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_cloudflare_com.sh $(1)/usr/lib/ddns
|
||||
$(INSTALL_DATA) $(PKG_BUILD_DIR)/files/tld_names.dat.gz $(1)/usr/lib/ddns
|
||||
endef
|
||||
define Package/$(PKG_NAME)_cloudflare/postinst
|
||||
#!/bin/sh
|
||||
echo -e '"CloudFlare"\t"update_CloudFlare.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"CloudFlare"\t"update_CloudFlare.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
echo -e '"cloudflare.com"\t"update_cloudflare_com.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"cloudflare.com"\t"update_cloudflare_com.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
/bin/sed -i '/service_name/s/CloudFlare/cloudflare\.com/g' $${IPKG_INSTROOT}/etc/config/ddns
|
||||
endef
|
||||
define Package/$(PKG_NAME)_cloudflare/prerm
|
||||
#!/bin/sh
|
||||
/bin/sed -i '/update_CloudFlare\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
/bin/sed -i '/update_CloudFlare\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
/bin/sed -i '/update_cloudflare_com\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
/bin/sed -i '/update_cloudflare_com\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
endef
|
||||
|
||||
##### **********************************
|
||||
define Package/$(PKG_NAME)_no-ip_com/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/ddns
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_No-IP.com.sh $(1)/usr/lib/ddns
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/files/update_no-ip_com.sh $(1)/usr/lib/ddns
|
||||
endef
|
||||
define Package/$(PKG_NAME)_no-ip_com/postinst
|
||||
#!/bin/sh
|
||||
echo -e '"No-IP.com"\t"update_No-IP.com.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"NoIP.com"\t"update_No-IP.com.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"no-ip.com"\t"update_no-ip_com.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
/bin/sed -i '/service_name/s/NoIP\.com/no-ip\.com/g' $${IPKG_INSTROOT}/etc/config/ddns
|
||||
/bin/sed -i '/service_name/s/No-IP\.com/no-ip\.com/g' $${IPKG_INSTROOT}/etc/config/ddns
|
||||
endef
|
||||
define Package/$(PKG_NAME)_no-ip_com/prerm
|
||||
#!/bin/sh
|
||||
/bin/sed -i '/update_No-IP\.com\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
/bin/sed -i '/update_no-ip_com\.sh/ d' $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
endef
|
||||
|
||||
##### **********************************
|
||||
|
@ -200,8 +200,9 @@ define Package/$(PKG_NAME)_nsupdate/install
|
|||
endef
|
||||
define Package/$(PKG_NAME)_nsupdate/postinst
|
||||
#!/bin/sh
|
||||
echo -e '"Bind-nsupdate"\t"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"Bind-nsupdate"\t"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
echo -e '"bind-nsupdate"\t"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services
|
||||
echo -e '"bind-nsupdate"\t"update_nsupdate.sh"' >> $${IPKG_INSTROOT}/usr/lib/ddns/services_ipv6
|
||||
/bin/sed -i '/service_name/s/Bind-nsupdate/bind-nsupdate/g' $${IPKG_INSTROOT}/etc/config/ddns
|
||||
endef
|
||||
define Package/$(PKG_NAME)_nsupdate/prerm
|
||||
#!/bin/sh
|
||||
|
|
|
@ -108,7 +108,7 @@
|
|||
# Variomedia AG
|
||||
"variomedia.de" "http://[USERNAME]:[PASSWORD]@dyndns.variomedia.de/nic/update?hostname=[DOMAIN]&myip=[IP]" "good|nochg"
|
||||
|
||||
#DtDNS
|
||||
# DtDNS
|
||||
"dtdns.com" "http://www.dtdns.com/api/autodns.cfm?id=[DOMAIN]&pw=[PASSWORD]&ip=[IP]"
|
||||
|
||||
# dy.fi Dynamic DNS for finnish users (IP autodetected by provider)
|
||||
|
|
|
@ -395,7 +395,7 @@ mil.bo
|
|||
tv.bo
|
||||
|
||||
// br : http://registro.br/dominio/categoria.html
|
||||
// Submitted by registry <fneves@registro.br> 2014-08-11
|
||||
// Submitted by registry <fneves@registro.br>
|
||||
br
|
||||
adm.br
|
||||
adv.br
|
||||
|
@ -485,7 +485,7 @@ net.bt
|
|||
org.bt
|
||||
|
||||
// bv : No registrations at this time.
|
||||
// Submitted by registry <jarle@uninett.no> 2006-06-16
|
||||
// Submitted by registry <jarle@uninett.no>
|
||||
bv
|
||||
|
||||
// bw : http://en.wikipedia.org/wiki/.bw
|
||||
|
@ -598,7 +598,7 @@ gov.cm
|
|||
net.cm
|
||||
|
||||
// cn : http://en.wikipedia.org/wiki/.cn
|
||||
// Submitted by registry <tanyaling@cnnic.cn> 2008-06-11
|
||||
// Submitted by registry <tanyaling@cnnic.cn>
|
||||
cn
|
||||
ac.cn
|
||||
com.cn
|
||||
|
@ -650,7 +650,7 @@ mo.cn
|
|||
tw.cn
|
||||
|
||||
// co : http://en.wikipedia.org/wiki/.co
|
||||
// Submitted by registry <tecnico@uniandes.edu.co> 2008-06-11
|
||||
// Submitted by registry <tecnico@uniandes.edu.co>
|
||||
co
|
||||
arts.co
|
||||
com.co
|
||||
|
@ -770,7 +770,7 @@ pol.dz
|
|||
art.dz
|
||||
|
||||
// ec : http://www.nic.ec/reg/paso1.asp
|
||||
// Submitted by registry <vabboud@nic.ec> 2008-07-04
|
||||
// Submitted by registry <vabboud@nic.ec>
|
||||
ec
|
||||
com.ec
|
||||
info.ec
|
||||
|
@ -891,7 +891,7 @@ veterinaire.fr
|
|||
ga
|
||||
|
||||
// gb : This registry is effectively dormant
|
||||
// Submitted by registry <Damien.Shaw@ja.net> 2008-06-12
|
||||
// Submitted by registry <Damien.Shaw@ja.net>
|
||||
gb
|
||||
|
||||
// gd : http://en.wikipedia.org/wiki/.gd
|
||||
|
@ -950,7 +950,7 @@ org.gl
|
|||
gm
|
||||
|
||||
// gn : http://psg.com/dns/gn/gn.txt
|
||||
// Submitted by registry <randy@psg.com> 2008-06-17
|
||||
// Submitted by registry <randy@psg.com>
|
||||
gn
|
||||
ac.gn
|
||||
com.gn
|
||||
|
@ -975,7 +975,7 @@ asso.gp
|
|||
gq
|
||||
|
||||
// gr : https://grweb.ics.forth.gr/english/1617-B-2005.html
|
||||
// Submitted by registry <segred@ics.forth.gr> 2008-06-09
|
||||
// Submitted by registry <segred@ics.forth.gr>
|
||||
gr
|
||||
com.gr
|
||||
edu.gr
|
||||
|
@ -1013,7 +1013,7 @@ net.gy
|
|||
org.gy
|
||||
|
||||
// hk : https://www.hkdnr.hk
|
||||
// Submitted by registry <hk.tech@hkirc.hk> 2008-06-11
|
||||
// Submitted by registry <hk.tech@hkirc.hk>
|
||||
hk
|
||||
com.hk
|
||||
edu.hk
|
||||
|
@ -1156,7 +1156,7 @@ net.il
|
|||
org.il
|
||||
|
||||
// im : https://www.nic.im/
|
||||
// Submitted by registry <info@nic.im> 2013-11-15
|
||||
// Submitted by registry <info@nic.im>
|
||||
im
|
||||
ac.im
|
||||
co.im
|
||||
|
@ -1639,7 +1639,7 @@ jobs
|
|||
|
||||
// jp : http://en.wikipedia.org/wiki/.jp
|
||||
// http://jprs.co.jp/en/jpdomain.html
|
||||
// Submitted by registry <info@jprs.jp> 2014-10-30
|
||||
// Submitted by registry <info@jprs.jp>
|
||||
jp
|
||||
// jp organizational type names
|
||||
ac.jp
|
||||
|
@ -3610,7 +3610,7 @@ mil.kz
|
|||
com.kz
|
||||
|
||||
// la : http://en.wikipedia.org/wiki/.la
|
||||
// Submitted by registry <gavin.brown@nic.la> 2008-06-10
|
||||
// Submitted by registry <gavin.brown@nic.la>
|
||||
la
|
||||
int.la
|
||||
net.la
|
||||
|
@ -3622,7 +3622,7 @@ com.la
|
|||
org.la
|
||||
|
||||
// lb : http://en.wikipedia.org/wiki/.lb
|
||||
// Submitted by registry <randy@psg.com> 2008-06-17
|
||||
// Submitted by registry <randy@psg.com>
|
||||
lb
|
||||
com.lb
|
||||
edu.lb
|
||||
|
@ -3662,7 +3662,7 @@ hotel.lk
|
|||
ac.lk
|
||||
|
||||
// lr : http://psg.com/dns/lr/lr.txt
|
||||
// Submitted by registry <randy@psg.com> 2008-06-17
|
||||
// Submitted by registry <randy@psg.com>
|
||||
lr
|
||||
com.lr
|
||||
edu.lr
|
||||
|
@ -3816,7 +3816,7 @@ net.ms
|
|||
org.ms
|
||||
|
||||
// mt : https://www.nic.org.mt/go/policy
|
||||
// Submitted by registry <help@nic.org.mt> 2013-11-19
|
||||
// Submitted by registry <help@nic.org.mt>
|
||||
mt
|
||||
com.mt
|
||||
edu.mt
|
||||
|
@ -4423,7 +4423,7 @@ net.mw
|
|||
org.mw
|
||||
|
||||
// mx : http://www.nic.mx/
|
||||
// Submitted by registry <farias@nic.mx> 2008-06-19
|
||||
// Submitted by registry <farias@nic.mx>
|
||||
mx
|
||||
com.mx
|
||||
org.mx
|
||||
|
@ -4492,17 +4492,18 @@ info.nf
|
|||
other.nf
|
||||
store.nf
|
||||
|
||||
// ng : http://psg.com/dns/ng/
|
||||
// ng : http://www.nira.org.ng/index.php/join-us/register-ng-domain/189-nira-slds
|
||||
ng
|
||||
com.ng
|
||||
edu.ng
|
||||
gov.ng
|
||||
i.ng
|
||||
mil.ng
|
||||
mobi.ng
|
||||
name.ng
|
||||
net.ng
|
||||
org.ng
|
||||
sch.ng
|
||||
gov.ng
|
||||
mil.ng
|
||||
mobi.ng
|
||||
|
||||
// ni : http://www.nic.ni/
|
||||
com.ni
|
||||
|
@ -5472,7 +5473,7 @@ xn--vler-qoa.hedmark.no
|
|||
*.np
|
||||
|
||||
// nr : http://cenpac.net.nr/dns/index.html
|
||||
// Confirmed by registry <technician@cenpac.net.nr> 2008-06-17
|
||||
// Submitted by registry <technician@cenpac.net.nr>
|
||||
nr
|
||||
biz.nr
|
||||
info.nr
|
||||
|
@ -5486,7 +5487,7 @@ com.nr
|
|||
nu
|
||||
|
||||
// nz : http://en.wikipedia.org/wiki/.nz
|
||||
// Confirmed by registry <jay@nzrs.net.nz> 2014-05-19
|
||||
// Submitted by registry <jay@nzrs.net.nz>
|
||||
nz
|
||||
ac.nz
|
||||
co.nz
|
||||
|
@ -5557,7 +5558,7 @@ edu.pf
|
|||
*.pg
|
||||
|
||||
// ph : http://www.domains.ph/FAQ2.asp
|
||||
// Submitted by registry <jed@email.com.ph> 2008-06-13
|
||||
// Submitted by registry <jed@email.com.ph>
|
||||
ph
|
||||
com.ph
|
||||
net.ph
|
||||
|
@ -5586,7 +5587,7 @@ gos.pk
|
|||
info.pk
|
||||
|
||||
// pl http://www.dns.pl/english/index.html
|
||||
// updated by .PL registry on 2015-04-28
|
||||
// Submitted by registry
|
||||
pl
|
||||
com.pl
|
||||
net.pl
|
||||
|
@ -5823,15 +5824,19 @@ est.pr
|
|||
prof.pr
|
||||
ac.pr
|
||||
|
||||
// pro : http://www.nic.pro/support_faq.htm
|
||||
// pro : http://registry.pro/get-pro
|
||||
pro
|
||||
aaa.pro
|
||||
aca.pro
|
||||
acct.pro
|
||||
avocat.pro
|
||||
bar.pro
|
||||
cpa.pro
|
||||
eng.pro
|
||||
jur.pro
|
||||
law.pro
|
||||
med.pro
|
||||
eng.pro
|
||||
recht.pro
|
||||
|
||||
// ps : http://en.wikipedia.org/wiki/.ps
|
||||
// http://www.nic.ps/registration/policy.html#reg
|
||||
|
@ -5865,7 +5870,7 @@ go.pw
|
|||
belau.pw
|
||||
|
||||
// py : http://www.nic.py/pautas.html#seccion_9
|
||||
// Confirmed by registry 2012-10-03
|
||||
// Submitted by registry
|
||||
py
|
||||
com.py
|
||||
coop.py
|
||||
|
@ -5888,32 +5893,32 @@ sch.qa
|
|||
|
||||
// re : http://www.afnic.re/obtenir/chartes/nommage-re/annexe-descriptifs
|
||||
re
|
||||
com.re
|
||||
asso.re
|
||||
com.re
|
||||
nom.re
|
||||
|
||||
// ro : http://www.rotld.ro/
|
||||
ro
|
||||
com.ro
|
||||
org.ro
|
||||
tm.ro
|
||||
nt.ro
|
||||
nom.ro
|
||||
info.ro
|
||||
rec.ro
|
||||
arts.ro
|
||||
com.ro
|
||||
firm.ro
|
||||
info.ro
|
||||
nom.ro
|
||||
nt.ro
|
||||
org.ro
|
||||
rec.ro
|
||||
store.ro
|
||||
tm.ro
|
||||
www.ro
|
||||
|
||||
// rs : http://en.wikipedia.org/wiki/.rs
|
||||
// rs : https://www.rnids.rs/en/domains/national-domains
|
||||
rs
|
||||
co.rs
|
||||
org.rs
|
||||
edu.rs
|
||||
ac.rs
|
||||
co.rs
|
||||
edu.rs
|
||||
gov.rs
|
||||
in.rs
|
||||
org.rs
|
||||
|
||||
// ru : http://www.cctld.ru/ru/docs/aktiv_8.php
|
||||
// Industry domains
|
||||
|
@ -6078,7 +6083,7 @@ edu.sa
|
|||
sch.sa
|
||||
|
||||
// sb : http://www.sbnic.net.sb/
|
||||
// Submitted by registry <lee.humphries@telekom.com.sb> 2008-06-08
|
||||
// Submitted by registry <lee.humphries@telekom.com.sb>
|
||||
sb
|
||||
com.sb
|
||||
edu.sb
|
||||
|
@ -6095,7 +6100,7 @@ org.sc
|
|||
edu.sc
|
||||
|
||||
// sd : http://www.isoc.sd/sudanic.isoc.sd/billing_pricing.htm
|
||||
// Submitted by registry <admin@isoc.sd> 2008-06-17
|
||||
// Submitted by registry <admin@isoc.sd>
|
||||
sd
|
||||
com.sd
|
||||
net.sd
|
||||
|
@ -6107,7 +6112,7 @@ gov.sd
|
|||
info.sd
|
||||
|
||||
// se : http://en.wikipedia.org/wiki/.se
|
||||
// Submitted by registry <patrik.wallstrom@iis.se> 2014-03-18
|
||||
// Submitted by registry <patrik.wallstrom@iis.se>
|
||||
se
|
||||
a.se
|
||||
ac.se
|
||||
|
@ -6170,7 +6175,7 @@ mil.sh
|
|||
si
|
||||
|
||||
// sj : No registrations at this time.
|
||||
// Submitted by registry <jarle@uninett.no> 2008-06-16
|
||||
// Submitted by registry <jarle@uninett.no>
|
||||
sj
|
||||
|
||||
// sk : http://en.wikipedia.org/wiki/.sk
|
||||
|
@ -6178,7 +6183,7 @@ sj
|
|||
sk
|
||||
|
||||
// sl : http://www.nic.sl
|
||||
// Submitted by registry <adam@neoip.com> 2008-06-12
|
||||
// Submitted by registry <adam@neoip.com>
|
||||
sl
|
||||
com.sl
|
||||
net.sl
|
||||
|
@ -6267,7 +6272,7 @@ org.sv
|
|||
red.sv
|
||||
|
||||
// sx : http://en.wikipedia.org/wiki/.sx
|
||||
// Confirmed by registry <jcvignes@openregistry.com> 2012-05-31
|
||||
// Submitted by registry <jcvignes@openregistry.com>
|
||||
sx
|
||||
gov.sx
|
||||
|
||||
|
@ -6306,7 +6311,7 @@ tf
|
|||
tg
|
||||
|
||||
// th : http://en.wikipedia.org/wiki/.th
|
||||
// Submitted by registry <krit@thains.co.th> 2008-06-17
|
||||
// Submitted by registry <krit@thains.co.th>
|
||||
th
|
||||
ac.th
|
||||
co.th
|
||||
|
@ -6377,7 +6382,7 @@ defense.tn
|
|||
turen.tn
|
||||
|
||||
// to : http://en.wikipedia.org/wiki/.to
|
||||
// Submitted by registry <egullich@colo.to> 2008-06-17
|
||||
// Submitted by registry <egullich@colo.to>
|
||||
to
|
||||
com.to
|
||||
gov.to
|
||||
|
@ -6388,7 +6393,7 @@ mil.to
|
|||
|
||||
// subTLDs: https://www.nic.tr/forms/eng/policies.pdf
|
||||
// and: https://www.nic.tr/forms/politikalar.pdf
|
||||
// Submitted by <mehmetgurevin@gmail.com> 2014-07-19
|
||||
// Submitted by <mehmetgurevin@gmail.com>
|
||||
tr
|
||||
com.tr
|
||||
info.tr
|
||||
|
@ -6465,7 +6470,7 @@ xn--uc0atv.tw
|
|||
xn--czrw28b.tw
|
||||
|
||||
// tz : http://www.tznic.or.tz/index.php/domains
|
||||
// Confirmed by registry <manager@tznic.or.tz> 2013-01-22
|
||||
// Submitted by registry <manager@tznic.or.tz>
|
||||
tz
|
||||
ac.tz
|
||||
co.tz
|
||||
|
@ -6481,7 +6486,7 @@ sc.tz
|
|||
tv.tz
|
||||
|
||||
// ua : https://hostmaster.ua/policy/?ua
|
||||
// Submitted by registry <dk@cctld.ua> 2012-04-27
|
||||
// Submitted by registry <dk@cctld.ua>
|
||||
ua
|
||||
// ua 2LD
|
||||
com.ua
|
||||
|
@ -6851,7 +6856,7 @@ org.uz
|
|||
va
|
||||
|
||||
// vc : http://en.wikipedia.org/wiki/.vc
|
||||
// Submitted by registry <kshah@ca.afilias.info> 2008-06-13
|
||||
// Submitted by registry <kshah@ca.afilias.info>
|
||||
vc
|
||||
com.vc
|
||||
net.vc
|
||||
|
@ -6861,8 +6866,7 @@ mil.vc
|
|||
edu.vc
|
||||
|
||||
// ve : https://registro.nic.ve/
|
||||
// Confirmed by registry 2012-10-04
|
||||
// Updated 2014-05-20 - Bug 940478
|
||||
// Submitted by registry
|
||||
ve
|
||||
arts.ve
|
||||
co.ve
|
||||
|
@ -7112,7 +7116,7 @@ xn--mgbai9a5eva00b
|
|||
xn--ygbi2ammx
|
||||
|
||||
// xn--90a3ac ("srb", Cyrillic) : RS
|
||||
// http://www.rnids.rs/en/the-.срб-domain
|
||||
// https://www.rnids.rs/en/domains/national-domains
|
||||
срб
|
||||
xn--90a3ac
|
||||
пр.срб
|
||||
|
@ -10997,20 +11001,21 @@ zuerich
|
|||
// (Note: these are in alphabetical order by company name)
|
||||
|
||||
// Amazon CloudFront : https://aws.amazon.com/cloudfront/
|
||||
// Submitted by Donavan Miller <donavanm@amazon.com> 2013-03-22
|
||||
// Submitted by Donavan Miller <donavanm@amazon.com>
|
||||
cloudfront.net
|
||||
|
||||
// Amazon Elastic Compute Cloud: https://aws.amazon.com/ec2/
|
||||
// Submitted by Osman Surkatty <osmans@amazon.com> 2014-12-16
|
||||
// Submitted by Luke Wells <lawells@amazon.com>
|
||||
ap-northeast-1.compute.amazonaws.com
|
||||
ap-northeast-2.compute.amazonaws.com
|
||||
ap-southeast-1.compute.amazonaws.com
|
||||
ap-southeast-2.compute.amazonaws.com
|
||||
cn-north-1.compute.amazonaws.cn
|
||||
compute-1.amazonaws.com
|
||||
compute.amazonaws.cn
|
||||
compute.amazonaws.com
|
||||
compute-1.amazonaws.com
|
||||
eu-west-1.compute.amazonaws.com
|
||||
eu-central-1.compute.amazonaws.com
|
||||
eu-west-1.compute.amazonaws.com
|
||||
sa-east-1.compute.amazonaws.com
|
||||
us-east-1.amazonaws.com
|
||||
us-gov-west-1.compute.amazonaws.com
|
||||
|
@ -11020,37 +11025,39 @@ z-1.compute-1.amazonaws.com
|
|||
z-2.compute-1.amazonaws.com
|
||||
|
||||
// Amazon Elastic Beanstalk : https://aws.amazon.com/elasticbeanstalk/
|
||||
// Submitted by Adam Stein <astein@amazon.com> 2013-04-02
|
||||
// Submitted by Adam Stein <astein@amazon.com>
|
||||
elasticbeanstalk.com
|
||||
|
||||
// Amazon Elastic Load Balancing : https://aws.amazon.com/elasticloadbalancing/
|
||||
// Submitted by Scott Vidmar <svidmar@amazon.com> 2013-03-27
|
||||
// Submitted by Scott Vidmar <svidmar@amazon.com>
|
||||
elb.amazonaws.com
|
||||
|
||||
// Amazon S3 : https://aws.amazon.com/s3/
|
||||
// Submitted by Eric Kinolik <kilo@amazon.com> 2015-04-08
|
||||
// Submitted by Luke Wells <lawells@amazon.com>
|
||||
s3.amazonaws.com
|
||||
s3-ap-northeast-1.amazonaws.com
|
||||
s3-ap-northeast-2.amazonaws.com
|
||||
s3-ap-southeast-1.amazonaws.com
|
||||
s3-ap-southeast-2.amazonaws.com
|
||||
s3-eu-central-1.amazonaws.com
|
||||
s3-eu-west-1.amazonaws.com
|
||||
s3-external-1.amazonaws.com
|
||||
s3-external-2.amazonaws.com
|
||||
s3-fips-us-gov-west-1.amazonaws.com
|
||||
s3-eu-central-1.amazonaws.com
|
||||
s3-eu-west-1.amazonaws.com
|
||||
s3-sa-east-1.amazonaws.com
|
||||
s3-us-gov-west-1.amazonaws.com
|
||||
s3-us-west-1.amazonaws.com
|
||||
s3-us-west-2.amazonaws.com
|
||||
s3.ap-northeast-2.amazonaws.com
|
||||
s3.cn-north-1.amazonaws.com.cn
|
||||
s3.eu-central-1.amazonaws.com
|
||||
|
||||
// BetaInABox
|
||||
// Submitted by adrian@betainabox.com 2012-09-13
|
||||
// Submitted by Adrian <adrian@betainabox.com>
|
||||
betainabox.com
|
||||
|
||||
// CentralNic : http://www.centralnic.com/names/domains
|
||||
// Submitted by registry <gavin.brown@centralnic.com> 2012-09-27
|
||||
// Submitted by registry <gavin.brown@centralnic.com>
|
||||
ae.org
|
||||
ar.com
|
||||
br.com
|
||||
|
@ -11081,38 +11088,46 @@ za.bz
|
|||
za.com
|
||||
|
||||
// Africa.com Web Solutions Ltd : https://registry.africa.com
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
||||
africa.com
|
||||
|
||||
// Citrix : https://citrix.com
|
||||
// Submitted by Alex Stoddard <alex.stoddard@citrix.com>
|
||||
xenapponazure.com
|
||||
|
||||
// iDOT Services Limited : http://www.domain.gr.com
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
||||
gr.com
|
||||
|
||||
// Radix FZC : http://domains.in.net
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
||||
in.net
|
||||
|
||||
// US REGISTRY LLC : http://us.org
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
||||
us.org
|
||||
|
||||
// co.com Registry, LLC : https://registry.co.com
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com> 2014-02-04
|
||||
// Submitted by Gavin Brown <gavin.brown@centralnic.com>
|
||||
co.com
|
||||
|
||||
// c.la : http://www.c.la/
|
||||
c.la
|
||||
|
||||
// cloudControl : https://www.cloudcontrol.com/
|
||||
// Submitted by Tobias Wilken <tw@cloudcontrol.com> 2013-07-23
|
||||
// Submitted by Tobias Wilken <tw@cloudcontrol.com>
|
||||
cloudcontrolled.com
|
||||
cloudcontrolapp.com
|
||||
|
||||
// co.ca : http://registry.co.ca/
|
||||
co.ca
|
||||
|
||||
// i-registry s.r.o. : http://www.i-registry.cz/
|
||||
// Submitted by Martin Semrad <semrad@i-registry.cz>
|
||||
co.cz
|
||||
|
||||
// CDN77.com : http://www.cdn77.com
|
||||
// Submitted by Jan Krpes <jan.krpes@cdn77.com> 2015-07-13
|
||||
// Submitted by Jan Krpes <jan.krpes@cdn77.com>
|
||||
c.cdn77.org
|
||||
cdn77-ssl.net
|
||||
r.cdn77.net
|
||||
|
@ -11124,23 +11139,23 @@ co.nl
|
|||
co.no
|
||||
|
||||
// Commerce Guys, SAS
|
||||
// Submitted by Damien Tournoud <damien@commerceguys.com> 2015-01-22
|
||||
// Submitted by Damien Tournoud <damien@commerceguys.com>
|
||||
*.platform.sh
|
||||
|
||||
// Cupcake : https://cupcake.io/
|
||||
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io> 2013-10-08
|
||||
// Submitted by Jonathan Rudenberg <jonathan@cupcake.io>
|
||||
cupcake.is
|
||||
|
||||
// DreamHost : http://www.dreamhost.com/
|
||||
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com> 2012-10-02
|
||||
// Submitted by Andrew Farmer <andrew.farmer@dreamhost.com>
|
||||
dreamhosters.com
|
||||
|
||||
// Drobo : http://www.drobo.com/
|
||||
// Submitted by Ricardo Padilha <rpadilha@drobo.com> 2015-12-17
|
||||
// Submitted by Ricardo Padilha <rpadilha@drobo.com>
|
||||
mydrobo.com
|
||||
|
||||
// DuckDNS : http://www.duckdns.org/
|
||||
// Submitted by Richard Harper <richard@duckdns.org> 2015-05-17
|
||||
// Submitted by Richard Harper <richard@duckdns.org>
|
||||
duckdns.org
|
||||
|
||||
// DynDNS.com : http://www.dyndns.com/services/dns/dyndns/
|
||||
|
@ -11425,8 +11440,7 @@ worse-than.tv
|
|||
writesthisblog.com
|
||||
|
||||
// EU.org https://eu.org/
|
||||
// Submitted by Pierre Beyssac <hostmaster@eu.org> 2015-04-17
|
||||
|
||||
// Submitted by Pierre Beyssac <hostmaster@eu.org>
|
||||
eu.org
|
||||
al.eu.org
|
||||
asso.eu.org
|
||||
|
@ -11485,7 +11499,7 @@ uk.eu.org
|
|||
us.eu.org
|
||||
|
||||
// Fastly Inc. http://www.fastly.com/
|
||||
// Submitted by Vladimir Vuksan <vladimir@fastly.com> 2013-05-31
|
||||
// Submitted by Vladimir Vuksan <vladimir@fastly.com>
|
||||
a.ssl.fastly.net
|
||||
b.ssl.fastly.net
|
||||
global.ssl.fastly.net
|
||||
|
@ -11493,28 +11507,28 @@ a.prod.fastly.net
|
|||
global.prod.fastly.net
|
||||
|
||||
// Firebase, Inc.
|
||||
// Submitted by Chris Raynor <chris@firebase.com> 2014-01-21
|
||||
// Submitted by Chris Raynor <chris@firebase.com>
|
||||
firebaseapp.com
|
||||
|
||||
// Flynn : https://flynn.io
|
||||
// Submitted by Jonathan Rudenberg <jonathan@flynn.io> 2014-07-12
|
||||
// Submitted by Jonathan Rudenberg <jonathan@flynn.io>
|
||||
flynnhub.com
|
||||
|
||||
// GDS : https://www.gov.uk/service-manual/operations/operating-servicegovuk-subdomains
|
||||
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk> 2014-08-28
|
||||
// Submitted by David Illsley <david.illsley@digital.cabinet-office.gov.uk>
|
||||
service.gov.uk
|
||||
|
||||
// GitHub, Inc.
|
||||
// Submitted by Ben Toews <btoews@github.com> 2014-02-06
|
||||
// Submitted by Ben Toews <btoews@github.com>
|
||||
github.io
|
||||
githubusercontent.com
|
||||
|
||||
// GlobeHosting, Inc.
|
||||
// Submitted by Zoltan Egresi <egresi@globehosting.com> 2013-07-12
|
||||
// Submitted by Zoltan Egresi <egresi@globehosting.com>
|
||||
ro.com
|
||||
|
||||
// Google, Inc.
|
||||
// Submitted by Eduardo Vela <evn@google.com> 2014-12-19
|
||||
// Submitted by Eduardo Vela <evn@google.com>
|
||||
appspot.com
|
||||
blogspot.ae
|
||||
blogspot.al
|
||||
|
@ -11602,12 +11616,12 @@ withyoutube.com
|
|||
hashbang.sh
|
||||
|
||||
// Heroku : https://www.heroku.com/
|
||||
// Submitted by Tom Maher <tmaher@heroku.com> 2013-05-02
|
||||
// Submitted by Tom Maher <tmaher@heroku.com>
|
||||
herokuapp.com
|
||||
herokussl.com
|
||||
|
||||
// iki.fi
|
||||
// Submitted by Hannu Aronsson <haa@iki.fi> 2009-11-05
|
||||
// Submitted by Hannu Aronsson <haa@iki.fi>
|
||||
iki.fi
|
||||
|
||||
// info.at : http://www.info.at/
|
||||
|
@ -11618,45 +11632,45 @@ info.at
|
|||
co.pl
|
||||
|
||||
// Microsoft : http://microsoft.com
|
||||
// Submitted by Barry Dorrans <bdorrans@microsoft.com> 2014-01-24
|
||||
// Submitted by Barry Dorrans <bdorrans@microsoft.com>
|
||||
azurewebsites.net
|
||||
azure-mobile.net
|
||||
cloudapp.net
|
||||
|
||||
// Mozilla Foundation : https://mozilla.org/
|
||||
// Submited by glob <glob@mozilla.com> 2015-07-06
|
||||
// Submitted by glob <glob@mozilla.com>
|
||||
bmoattachments.org
|
||||
|
||||
// Neustar Inc.
|
||||
// Submitted by Trung Tran <Trung.Tran@neustar.biz> 2015-04-23
|
||||
// Submitted by Trung Tran <Trung.Tran@neustar.biz>
|
||||
4u.com
|
||||
|
||||
// ngrok : https://ngrok.com/
|
||||
// Submitted by Alan Shreve <alan@ngrok.com> 2015-11-10
|
||||
// Submitted by Alan Shreve <alan@ngrok.com>
|
||||
ngrok.io
|
||||
|
||||
// NFSN, Inc. : https://www.NearlyFreeSpeech.NET/
|
||||
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net> 2014-02-02
|
||||
// Submitted by Jeff Wheelhouse <support@nearlyfreespeech.net>
|
||||
nfshost.com
|
||||
|
||||
// NYC.mn : http://www.information.nyc.mn
|
||||
// Submitted by Matthew Brown <mattbrown@nyc.mn> 2013-03-11
|
||||
// Submitted by Matthew Brown <mattbrown@nyc.mn>
|
||||
nyc.mn
|
||||
|
||||
// One Fold Media : http://www.onefoldmedia.com/
|
||||
// Submitted by Eddie Jones <eddie@onefoldmedia.com> 2014-06-10
|
||||
// Submitted by Eddie Jones <eddie@onefoldmedia.com>
|
||||
nid.io
|
||||
|
||||
// Opera Software, A.S.A.
|
||||
// Submitted by Yngve Pettersen <yngve@opera.com> 2009-11-26
|
||||
// Submitted by Yngve Pettersen <yngve@opera.com>
|
||||
operaunite.com
|
||||
|
||||
// OutSystems
|
||||
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com> 2014-03-11
|
||||
// Submitted by Duarte Santos <domain-admin@outsystemscloud.com>
|
||||
outsystemscloud.com
|
||||
|
||||
// Pagefront : https://www.pagefronthq.com/
|
||||
// Submitted by Jason Kriss <jason@pagefronthq.com> 2015-12-02
|
||||
// Submitted by Jason Kriss <jason@pagefronthq.com>
|
||||
pagefrontapp.com
|
||||
|
||||
// .pl domains (grandfathered)
|
||||
|
@ -11668,45 +11682,49 @@ wroc.pl
|
|||
zakopane.pl
|
||||
|
||||
// Pantheon Systems, Inc. : https://pantheon.io/
|
||||
// Submitted by Gary Dylina <gary@pantheon.io> 2015-09-14
|
||||
// Submitted by Gary Dylina <gary@pantheon.io>
|
||||
pantheon.io
|
||||
gotpantheon.com
|
||||
|
||||
// prgmr.com : https://prgmr.com/
|
||||
// Submitted by Sarah Newman <owner@prgmr.com>
|
||||
xen.prgmr.com
|
||||
|
||||
// priv.at : http://www.nic.priv.at/
|
||||
// Submitted by registry <lendl@nic.at> 2008-06-09
|
||||
// Submitted by registry <lendl@nic.at>
|
||||
priv.at
|
||||
|
||||
// QA2
|
||||
// Submitted by Daniel Dent (https://www.danieldent.com/) 2015-07-16
|
||||
// Submitted by Daniel Dent (https://www.danieldent.com/)
|
||||
qa2.com
|
||||
|
||||
// Rackmaze LLC : https://www.rackmaze.com
|
||||
// Submitted by Kirill Pertsev <kika@rackmaze.com> 2015-12-02
|
||||
// Submitted by Kirill Pertsev <kika@rackmaze.com>
|
||||
rackmaze.com
|
||||
rackmaze.net
|
||||
|
||||
// Red Hat, Inc. OpenShift : https://openshift.redhat.com/
|
||||
// Submitted by Tim Kramer <tkramer@rhcloud.com> 2012-10-24
|
||||
// Submitted by Tim Kramer <tkramer@rhcloud.com>
|
||||
rhcloud.com
|
||||
|
||||
// Sandstorm Development Group, Inc. : https://sandcats.io/
|
||||
// Submitted by Asheesh Laroia <asheesh@sandstorm.io> 2015-07-21
|
||||
// Submitted by Asheesh Laroia <asheesh@sandstorm.io>
|
||||
sandcats.io
|
||||
|
||||
// Service Online LLC : http://drs.ua/
|
||||
// Submitted by Serhii Bulakh <support@drs.ua> 2015-07-30
|
||||
// Submitted by Serhii Bulakh <support@drs.ua>
|
||||
biz.ua
|
||||
co.ua
|
||||
pp.ua
|
||||
|
||||
// SinaAppEngine : http://sae.sina.com.cn/
|
||||
// Submitted by SinaAppEngine <saesupport@sinacloud.com> 2015-02-02
|
||||
// Submitted by SinaAppEngine <saesupport@sinacloud.com>
|
||||
sinaapp.com
|
||||
vipsinaapp.com
|
||||
1kapp.com
|
||||
|
||||
// Synology, Inc. : https://www.synology.com/
|
||||
// Submitted by Rony Weng <ronyweng@synology.com> 2015-12-02
|
||||
// Submitted by Rony Weng <ronyweng@synology.com>
|
||||
diskstation.me
|
||||
dscloud.biz
|
||||
dscloud.me
|
||||
|
@ -11729,18 +11747,18 @@ med.pl
|
|||
sopot.pl
|
||||
|
||||
// UDR Limited : http://www.udr.hk.com
|
||||
// Submitted by registry <hostmaster@udr.hk.com> 2014-11-07
|
||||
// Submitted by registry <hostmaster@udr.hk.com>
|
||||
hk.com
|
||||
hk.org
|
||||
ltd.hk
|
||||
inc.hk
|
||||
|
||||
// Yola : https://www.yola.com/
|
||||
// Submitted by Stefano Rivera <stefano@yola.com> 2014-07-09
|
||||
// Submitted by Stefano Rivera <stefano@yola.com>
|
||||
yolasite.com
|
||||
|
||||
// ZaNiC : http://www.za.net/
|
||||
// Submitted by registry <hostmaster@nic.za.net> 2009-10-03
|
||||
// Submitted by registry <hostmaster@nic.za.net>
|
||||
za.net
|
||||
za.org
|
||||
|
||||
|
|
0
net/ddns-scripts/files/update_CloudFlare.sh → net/ddns-scripts/files/update_cloudflare_com.sh
Normal file → Executable file
0
net/ddns-scripts/files/update_CloudFlare.sh → net/ddns-scripts/files/update_cloudflare_com.sh
Normal file → Executable file
0
net/ddns-scripts/files/update_No-IP.com.sh → net/ddns-scripts/files/update_no-ip_com.sh
Normal file → Executable file
0
net/ddns-scripts/files/update_No-IP.com.sh → net/ddns-scripts/files/update_no-ip_com.sh
Normal file → Executable file
Loading…
Reference in a new issue