When LifeKeeper activates a VIP resource (with the same IP address as the NLB IP address 10.0.2.21) and the Windows OS automatically registers the VIP address/computer name pair with the DNS server, causing LifeKeeper GUI to resolve to the VIP address 10.0.2.21 when resolving the name from the computer name to the IP address. To prevent this, disable dynamic DNS updates for the NICs that activate LifeKeeper VIP resources.
- Start PowerShell for administrators.
- Run the ipconfig command and check the network adapter names of the primary and secondary NICs from the configured IP addresses. Perform the following steps for both the primary and secondary NICs.
- Execute the following command using the network adapter name identified in the previous step.
PS > Get-DnsClient -InterfaceAlias <network_adapter_name>
- Check the RegisterThisConnectionsAddress column in the results from the previous step. If it is True, run the following command to disable RegisterThisConnectionsAddress.
PS > Set-DnsClient -InterfaceAlias <network_adapter_name> -RegisterThisConnectionsAddress $false
Post your comment on this topic.