Personal tools

From HEXONET Wiki

Jump to: navigation, search
 
(2 intermediate revisions by one user not shown)
Line 2: Line 2:
 
== xDNS (extended DNS) - X-ALIAS-<RR> (Alias xDNS record sets) ==
 
== xDNS (extended DNS) - X-ALIAS-<RR> (Alias xDNS record sets) ==
 
=== X-ALIAS-<RR> Records ===
 
=== X-ALIAS-<RR> Records ===
The following three X-ALIAS-<RR> Records are supported:
+
The following four X-ALIAS-<RR> Records are supported:
 
* X-ALIAS-A
 
* X-ALIAS-A
 
* X-ALIAS-AAAA
 
* X-ALIAS-AAAA
 +
* X-ALIAS-MX
 
* X-ALIAS-TXT
 
* X-ALIAS-TXT
  
You can use any of them to have all respective records of the reference zone copied over to your zone. Any changes to the respective records of the reference zone will be constantly monitored and your zone will be automatically updated accordingly if there are any changes. No additional lookups are made when your zone is queried so this is the high performance solution if you want to manage only one dedicated authoritative DNS zone but utilize the respective A, AAAA or TXT records for as many other DNS zones as needed.
+
You can use any of them to have all respective records of the reference zone copied over to your zone. Any changes to the respective records of the reference zone will be constantly monitored and your zone will be automatically updated accordingly if there are any changes. No additional lookups are made when your zone is queried so this is the high performance solution if you want to manage only one dedicated authoritative DNS zone but utilize the respective A, AAAA, MX or TXT records for as many other DNS zones as needed.
 +
 
 +
PLEASE NOTE: If you set a  X-ALIAS-<RR> xDNS record for your zone then all previously existing resource records of the same type and  will be removed and then the respective RRs from the reference dns zone will be set.
  
 
X-ALIAS-<RR> Records have the following syntax:
 
X-ALIAS-<RR> Records have the following syntax:
Line 22: Line 25:
  
 
'''Result:'''
 
'''Result:'''
All A records of the DNS zone zenfolio.webapp.ispapi.net. will be copied to the DNS zone yourdomain.com. and the root domain will resolve to the same A records as zenfolio.webapp.ispapi.net. does.
+
All A records of the reference DNS zone zenfolio.webapp.ispapi.net. will be copied to your DNS zone yourdomain.com. and the '''root domain''' will resolve to the same A records as zenfolio.webapp.ispapi.net. does. Any previously existing regular A records for the root domain will be removed.
 +
 
 +
 
 +
<pre>
 +
subdomain.yourdomain.com. 3600 IN X-ALIAS-A zenfolio.webapp.ispapi.net.
 +
</pre>
 +
 
 +
'''Result:'''
 +
All A records of the reference DNS zone zenfolio.webapp.ispapi.net. will be copied to your DNS zone and the '''subdomain''' will resolve to the same A records as zenfolio.webapp.ispapi.net. does. Any previously existing regular A records for the subdomain will be removed.
 +
 
 +
 
 +
<pre>
 +
yourdomain.com. 3600 IN X-ALIAS-AAAA <REFERENCE-DNS-ZONE>
 +
</pre>
 +
 
 +
'''Result:'''
 +
All AAAA records of the reference DNS zone will be copied to your DNS zone yourdomain.com. and your root domain will resolve to the same AAAA records as the reference domain. Any previously existing regular AAAA records for the root domain will be removed.
  
  
 
<pre>
 
<pre>
subdomain.yourdomain.com. 3600 IN X-ALIAS-AAAA <REFERENCE-DNS-ZONE>
+
yourdomain.com. 3600 IN X-ALIAS-MX gsuite.webapp.ispapi.net.
 
</pre>
 
</pre>
  
 
'''Result:'''
 
'''Result:'''
All AAAA records of the reference DNS zone will be copied to your DNS zone and your subdomain will resolve to the same AAAA records as the reference domain.
+
All MX records of the reference DNS zone gsuite.webapp.ispapi.net. will be copied to your DNS zone yourdomain.com. and the same MX records will be returned for your domain as for the reference domain. Any previously existing regular MX records for your root domain will be removed.
  
  
Line 38: Line 57:
  
 
'''Result:'''
 
'''Result:'''
All TXT records of the reference DNS zone will be copied to your DNS zone and your root domain will return the respective TXT records as the reference domain does.
+
All TXT records of the reference DNS zone will be copied to your DNS zone and your root domain will return the respective TXT records as the reference domain does. Any previously existing regular TXT records for the root domain will be removed.

Latest revision as of 15:59, 26 February 2018

[edit] xDNS (extended DNS) - X-ALIAS-<RR> (Alias xDNS record sets)

[edit] X-ALIAS-<RR> Records

The following four X-ALIAS-<RR> Records are supported:

  • X-ALIAS-A
  • X-ALIAS-AAAA
  • X-ALIAS-MX
  • X-ALIAS-TXT

You can use any of them to have all respective records of the reference zone copied over to your zone. Any changes to the respective records of the reference zone will be constantly monitored and your zone will be automatically updated accordingly if there are any changes. No additional lookups are made when your zone is queried so this is the high performance solution if you want to manage only one dedicated authoritative DNS zone but utilize the respective A, AAAA, MX or TXT records for as many other DNS zones as needed.

PLEASE NOTE: If you set a X-ALIAS-<RR> xDNS record for your zone then all previously existing resource records of the same type and will be removed and then the respective RRs from the reference dns zone will be set.

X-ALIAS-<RR> Records have the following syntax:

yourdomain.com. <TTL> IN X-ALIAS-<RR> <REFERENCE-DNS-ZONE>

PLEASE NOTE: The secluding dot after the domain name (www.yourdomain.com.) is required in any case!

[edit] X-ALIAS-<RR> Examples

yourdomain.com. 3600 IN X-ALIAS-A zenfolio.webapp.ispapi.net.

Result: All A records of the reference DNS zone zenfolio.webapp.ispapi.net. will be copied to your DNS zone yourdomain.com. and the root domain will resolve to the same A records as zenfolio.webapp.ispapi.net. does. Any previously existing regular A records for the root domain will be removed.


subdomain.yourdomain.com. 3600 IN X-ALIAS-A zenfolio.webapp.ispapi.net.

Result: All A records of the reference DNS zone zenfolio.webapp.ispapi.net. will be copied to your DNS zone and the subdomain will resolve to the same A records as zenfolio.webapp.ispapi.net. does. Any previously existing regular A records for the subdomain will be removed.


yourdomain.com. 3600 IN X-ALIAS-AAAA <REFERENCE-DNS-ZONE>

Result: All AAAA records of the reference DNS zone will be copied to your DNS zone yourdomain.com. and your root domain will resolve to the same AAAA records as the reference domain. Any previously existing regular AAAA records for the root domain will be removed.


yourdomain.com. 3600 IN X-ALIAS-MX gsuite.webapp.ispapi.net.

Result: All MX records of the reference DNS zone gsuite.webapp.ispapi.net. will be copied to your DNS zone yourdomain.com. and the same MX records will be returned for your domain as for the reference domain. Any previously existing regular MX records for your root domain will be removed.


yourdomain.com. 3600 IN X-ALIAS-TXT <REFERENCE-DNS-ZONE>

Result: All TXT records of the reference DNS zone will be copied to your DNS zone and your root domain will return the respective TXT records as the reference domain does. Any previously existing regular TXT records for the root domain will be removed.