![]() |
The following steps describe how to retrieve Intel AMT configuration server information. Intel AMT uses this information to connect to a configuration server by sending a “Hello” message. This information is available even during the configuration process.
1. Retrieve the instance of CIM_RemotePort., where the “Name” key equals “Intel(r) AMT Remote Port”.
2. Examine CIM_RemotePort.InfoFormat and CIM_RemotePort.AccessInfo to see the configuration server host name and IP address.
3. Examine CIM_RemotePort.PortInfo to see the port that the configuration server listens to for “Hello” messages.
Click here for a snippet demonstrating this step
You can execute this snippet by inserting it into the execution template found here.
$remotePortRef =$wsmanConnectionObject.NewReference("SELECT * FROM CIM_RemotePort WHERE Name='Intel(r) AMT Remote Port'")
$remotePortInstance =$remotePortRef.Get()
$infoFormat =$remotePortInstance.GetProperty("InfoFormat")
$accessInfo =$remotePortInstance.GetProperty("AccessInfo")
$portInfo =$remotePortInstance.GetProperty("PortInfo")
Instance Diagram
Classes Used in This Flow
SDK Sample
If there is a sample demonstrating this flow, it is included in the SDK installation file. See SDK Installation Layout for details.
Copyright © 2006-2022, Intel Corporation. All rights reserved. |