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