High Availability uses a combination of redundancy and fault tolerance in order to provide a level of operational continuity.Redundancy means that there is more than one instance of resources available. Fault Tolerance means that resources will be available even if there is a hardware failure.
Configuring round robin
Round robin is a local balancing mechanism used by DNS servers to share and distribute network resource loads. You can use it to rotate all resource record (RR) types contained in a query answer if multiple RRs are found.
By default, DNS uses round robin to rotate the order of RR data returned in query answers where multiple RRs of the same type exist for a queried DNS domain name. This feature provides a simple method for load balancing client use of Web servers and other frequently queried multihomed computers.
If round robin is disabled for a DNS server, the order of the response for these queries is based on a static ordering of RRs in the answer list as they are stored in the zone (either its zone file or Active Directory).
Example: Round-robin rotation
A forward lookup-type query (for all A RRs that match a DNS domain name) is made for a multihomed computer (multihomed.example.offsitenoc.com) that has three IP addresses. Separate A RRs are used to map the host’s name to each of these IP addresses in the zone. In the stored example.offsitenoc.com zone, the RRs appear in this fixed order:
multihomed IN A 192.168.1.1
multihomed IN A 192.168.1.2
multihomed IN A 192.168.1.3
The first DNS client that queries the server to resolve this host’s name receives the list in default order. When a second client sends a subsequent query to resolve this name, the list is rotated as follows:
multihomed IN A 192.168.1.2
multihomed IN A 192.168.1.3
multihomed IN A 192.168.1.1











Please click here to download the plugin required to make recent comments work!