|
Home > Archive > 70-216 > May 2002 > Dns Round-Robin
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| jp_d55 2002-05-31, 9:22 am |
| if anyone has lots and lots of practice questions on the subject please hand them over....
thanks to all.
Percy | |
| Slinky 2002-05-31, 11:23 am |
| Round robin is actually a simple concept. Let's say you have 3 IP address for the same host name. This is a load balancing technique. For example you have
192.168.59.1
192.168.59.2
192.168.59.3
When a resolver requests an IP for that FQDN, the DNS server will give a list of IPs
hostnameIN A 192.168.59.1
hostnameIN A 192.168.59.2
hostnameIN A 192.168.59.3
When another client requests another resolution for the same FQDN, the DNS server will rotate through the list until they are all used. For example the second request would yield the following:
hostnameIN A 192.168.59.2
hostnameIN A 192.168.59.3
hostnameIN A 192.168.59.1
I know these aren't questions like you asked for. But if you understand what it is then you shouldn't have a problem with the questions as it is a really simple concept. | |
| Chrini71 2002-05-31, 3:55 pm |
| quote: Originally posted by Slinky
Round robin is actually a simple concept. Let's say you have 3 IP address for the same host. This is a load balancing technique. For example you have
192.168.59.1
192.168.59.2
192.168.59.3
When a resolver requests an IP for that FQDN, the DNS server will give a list of IPs
hostnameIN A 192.168.59.1
hostnameIN A 192.168.59.2
hostnameIN A 192.168.59.3
When another client requests another resolution for the same FQNN, the DNS server will rotate through the list until they are all used. For example the second request would yield the following:
hostnameIN A 192.168.59.2
hostnameIN A 192.168.59.3
hostnameIN A 192.168.59.1
I know these aren't questions like you asked for. But if you understand what it is then you shouldn't have a problem with the questions as it is a really simple concept.
Nice explanation Slinky
Thanks I need that :-)) |
|
|
|
|