![]() |
The following steps describe how to retrieve the IPv6 settings. See also Enabling/Disabling IPv6.
1. Retrieve the instances of IPS_IPv6PortSettings, where the “InstanceID” key equals either “Intel(r) IPS IPv6 Settings 0” (wired interface) or “Intel(r) IPS IPv6 Settings 1” (wireless interface).
2. Examine IPS_IPv6PortSettings.IPv6Address, IPS_IPv6PortSettings.CurrentAddressInfo, and IPS_IPv6PortSettings.PrimaryDNS to see the IPv6 settings.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$ipv6PortSettingsRef =$wsmanConnectionObject.NewReference("SELECT * FROM IPS_IPv6PortSettings WHERE InstanceID='Intel(r) IPS IPv6 Settings 0'")
$ipv6PortSettingsInstance =$ipv6PortSettingsRef.Get()
$ipv6Address =$ipv6PortSettingsInstance.GetProperty("IPv6Address")
$currentAddressInfo =$ipv6PortSettingsInstance.GetProperty("CurrentAddressInfo")
$primaryDNS =$ipv6PortSettingsInstance.GetProperty("PrimaryDNS")
Instance Diagram
Classes Used in This Flow
SDK Sample
Not applicable
Copyright © 2006-2022, Intel Corporation. All rights reserved. |