Hi,
I suggest you can use DNS for Load Balancing
to achieve your goal,
To create DNS Host (A) Records for all internal pool servers
- Click Start, click All Programs, click
Administrative Tools, and then click DNS.
- In DNS Manager, click the DNS Server that manages your records to expand it.
- Click Forward Lookup Zones to expand it.
- Right-click the DNS domain that you need to add records to, and then click
New Host (A or AAAA).
- In the Name box, type the name of the host record (the domain name will be automatically appended).
- In the IP Address box, type the IP address of the individual Front End Server and then select
Create associated pointer (PTR) record or Allow any authenticated user to update DNS records with the same owner name, if applicable.
- Continue creating records for all member Front End Servers that will participate in DNS Load Balancing.
For example, if you had a pool named pool1.contoso.com and three Front End Servers, you would create the following DNS entries:
FQDN
|
Type
|
Data
|
Pool1.contoso.com
|
Host (A)
|
192.168.1.1
|
Pool1.contoso.com
|
Host (A)
|
192.168.1.2
|
Pool1.contoso.com
|
Host (A)
|
192.168.1.3
|
To enable round robin for Windows Server
- Click Start, click All Programs, click
Administrative Tools, and then click DNS.
- Expand DNS, right-click the DNS server you want to configure, and then click
Properties.
- Click the Advanced tab, select Enable round robin and
Enable netmask ordering, and then click OK.
Thanks.