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.
- Run the following command to check the InterfaceMetric column of each network adapter.
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.