Network settings required for LifeKeeper.
- 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 on both the primary NIC and the secondary NIC.
- Run the following command using the network adapter name identified in the previous section to check the InterfaceMetric column.
PS > Get-NetIPInterface -AddressFamily IPv4 | select InterfaceAlias, AutomaticMetric, InterfaceMetric
- Use the appropriate Interface Metric values (1 for primary, 2 for secondary) and run the following command.
PS > Set-NetIPInterface -InterfaceAlias <primary_network_adapter_name> -InterfaceMetric 1 PS > Set-NetIPInterface -InterfaceAlias <secondary_network_adapter_name> -InterfaceMetric 2
Post your comment on this topic.