Skip to content

Commit

Permalink
Merge pull request #38 from AzCiS/devicedetails-netinterface-fix
Browse files Browse the repository at this point in the history
Set enabled to true for non-data0 interfaces
  • Loading branch information
Sumanth-SK committed Apr 1, 2015
2 parents 2ae6bcc + 74e988c commit d939ea4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ private void UpdateDeviceDetailsWithNetworkConfig(DeviceDetails details, Network
{
netInterface.NicIPv6Settings.IPv6Gateway = netConfig.IPv6Gateway.ToString();
}

// Make sure that the interface gets enabled as well
netInterface.IsEnabled = true;
}

/// <summary>
Expand Down

0 comments on commit d939ea4

Please sign in to comment.