Network settings required for LifeKeeper.

  1. Start PowerShell for administrators.
  1. Run the ipconfig command and check the network adapter names of the primary and secondary NICs from the configured IP addresses.
  1. Run the following command to check the InterfaceMetric column of each network adapter.
    PS > Get-NetIPInterface -AddressFamily IPv4 | select InterfaceAlias, AutomaticMetric, InterfaceMetric
    
  1. 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
    

Feedback

Was this helpful?

Yes No
You indicated this topic was not helpful to you ...
Could you please leave a comment telling us why? Thank you!
Thanks for your feedback.

Post your comment on this topic.

Post Comment