Skip to main content

Posts

Showing posts with the label DNS

DNS Round Robin

DNS Round Robin and NLB are two configurations that can be used to ensure application availability in scenarios where there are no shared storages in use. They are usedful for applications which handle one time requests and need not be handled by a singler server throughout the session. This article aims at explaining the basics of DNS Round Robin technique DNS Round Robin: Here the load-balancing act happens at the Name resolution stage. There will be multiple entries in the DNS server for a host name , pointing to application server IPs across which the load should be balanced. For eg: there will be n number of IP addresses associated with a host name . When the first client request a name resolution, the first IP from the list is returned.When a second client request a name resolution, the next IP is returned. Thus we can ensure that the incoming requests for a particular application is equally distributed among the available application servers. An additional option named ne...

How to change DNS server in a remote machine

Download regfind.exe from here  .Extract the zip file .Browse to the extracted location from command prompt and run the utility using the following syntax regfind   -m \\computer1 -p HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\parameters "Old DNS IP" -r "New DNS IP" Where Cumputer1 can be the name or Ip of the remote machine whos DNs is to be changed Once the command completes successfully, the old dns IP in the server will be replaced by the new one