<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Intel vPro Expert Center Blog</title>
    <link>http://communities.intel.com/openport/blogs/proexpert</link>
    <description>Intel vPro Expert Center Blog</description>
    <pubDate>Mon, 01 Sep 2008 22:24:21 GMT</pubDate>
    <generator>Clearspace 1.7.0 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2008-09-01T22:24:21Z</dc:date>
    <item>
      <title>Real world experiences with provisioning using a hybrid Activator Utility and Scripts approach</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/09/03/real-world-experiences-with-provisioning-using-a-hybrid-activator-utility-and-scripts-approach</link>
      <description>As many of you might know or have experienced, relying fully on the default provisioning window where the Management Engine sends 'Hello Packets' to the SCS server is problematic. Problems start arising in the following instances:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;The network has multiple domain suffices being allocated as connection specific DNS suffices depending on location and this could potentially lead to a mismatch between the SCS domain suffix and the client domain suffix.&lt;/li&gt;
&lt;li&gt;DHCP option 15 upon which the default process relies on might need be in use for one reason or another&lt;/li&gt;
&lt;li&gt;The provisioning window (24 hours for RCFG and 6 hours for PID/PPS by default) has closed before the infrastructure has been put in place to do something useful with these hello messages.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
In the past there was a solution based on sample vbscripts provided by Intel- either Server side only or a combination of client and server side scripts that would be used in conjunction with SCS. This has now evolved to the Activator Utility which is considered the best known method, however there are some subtleties where using the Activator isn't as straight forward, such as:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;The Activator utility will typically run under the context of the Local System Account - to allow each Local System Account to write information to the SCS DB requires delegating control all the Computer Objects. This is seen as a significant security risk by some organisations.&lt;/li&gt;
&lt;li&gt;The syntax for running the Activator utility necessitates the specification of a profile ID. The number of the profile ID can't be pre-determined with absolute certainty and the SCS API only accept the profile ID and not the profile name. A situation can ensue that the wrong profile ID has been hardcoded on the clients.&lt;/li&gt;
&lt;li&gt;Some operations like /a cannot work under the Local System Account context to begin with&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Together with the hetrogeneous states of vPro machines (some provisioned, some not, some needing to be re-provisioned) some further logic needs to be put in place to provide a robust end to end solution. This has lead to the implementation (in a nutshell) of the following solution at a large scale enterprise customer (it assumes knowledge of the activator utility and it's switches):&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;A scriptable interface needs to be able to determine whether a system is provisioned or not - this is achieved by running MEInfo and parsing the contents of the output and writing some information into registry keys.&lt;/li&gt;
&lt;li&gt;A script always checks the registry keys to know whether to run the Activator utility&lt;/li&gt;
&lt;li&gt;The script is run at every boot-up of the system to make sure any previous failed attempts or if the system has been unprovisioned since the last boot is covered&lt;/li&gt;
&lt;li&gt;Once a script (which runs under the context of the Local System Account) determines it needs to execute - i.e. the machine is unprovisioned but has PID/PPS loaded it runs the Activator Utility with the //s h /d PID but not /o and /p&lt;/li&gt;
&lt;li&gt;&lt;b&gt;At this point you might ask yourself, if I am using the client side vbscript, why should I use the Activator tool as well? The answer is that the Activator tool provides you the ability to send an in-band 'hello message' to kick-off the provisioning process. That is why we make use of the /h and /d PID parameters&lt;/b&gt;. If you wouldn't use the Activator tool, the out of band 'hello messages' would have easily timed-out a long time ago and you wouldn't be able to commence their resending unless you pulled the power cable out and back in - i.e. restart the Management Engine.&lt;/li&gt;
&lt;li&gt;The PID is predetermined per machine type and can be inserted into XML file that sits in client - if the PID was unique per each machine this would have broken the whole solution - hence a clear recommendation to have the same PID/PPS across all machines or at least across all machines of the same model&lt;/li&gt;
&lt;li&gt;At this point the information is written into an Interim DB using SQL account permissions&lt;/li&gt;
&lt;li&gt;Note that no permissions need to have been delegated for all Local System Accounts&lt;/li&gt;
&lt;li&gt;On the server side the script uses the same or different SQL account permissions to access to the interim DB&lt;/li&gt;
&lt;li&gt;On the server side the script contains the /p and /o parameters - this is crucial as this is a single point where the /p and /o parameters can be changed thus providing flexibility&lt;/li&gt;
&lt;li&gt;In addition since the customer has opted to not use certificates and because there is a difference between the connection specific and Active Directory domain suffices, provisioning is take place with hostname only - typically this would have involved using the /a switch, however there is a known issue that won't work under the context of the Local System Account. Therefore the FQDN is stripped of it's domain the server script and the hostname is derived.&lt;/li&gt;
&lt;li&gt;The server script creates an XML file with the appropriate content to plug into the Configuration Parameters table in the main SCS DB, as the SCS service can parse the contents of this XML file and check that it is valid content.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
The overall benefit of this solution is you avoid the security risk of delegating access rights for all Local System accounts, cover the different scenarios when the Activator Utility should be run, avoid the problems of mismatching domain suffices and maintain the flexibility of a single point of changing parameters for the variable Activator Utility syntax.&lt;br /&gt;
&lt;br /&gt;
The same logic will apply if you are using RCFG - simply ignore point #6 above regarding PID. &lt;br /&gt;
&lt;br /&gt;
Hope some of you find this useful.&lt;br /&gt;
&lt;br /&gt;
Thanks, Tal</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provisioning</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">scripting</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">pid</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">pps</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">activation</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">activator_utility</category>
      <pubDate>Wed, 03 Sep 2008 12:45:47 GMT</pubDate>
      <author>Tal_Elgar</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/09/03/real-world-experiences-with-provisioning-using-a-hybrid-activator-utility-and-scripts-approach</guid>
      <dc:date>2008-09-03T12:45:47Z</dc:date>
      <clearspace:dateToText>1 month, 5 days ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/real-world-experiences-with-provisioning-using-a-hybrid-activator-utility-and-scripts-approach</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=11484</wfw:commentRss>
    </item>
    <item>
      <title>SCS 5.0 - Setup and Configuration version 5.0 - the latest and greatest</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/09/01/scs-50-setup-and-configuration-version-50-the-latest-and-greatest</link>
      <description>SCS 5.0 is the latest version of the Intel Setup and Configuration Service. This new version boasts a number of fundamental and exciting additions to the world of vPro:&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;You can enjoy the benefits of Active Directory Integration without the need to extend the Active Directory Schema!&lt;/li&gt;
&lt;li&gt;You can use Windows Authentication to communicate with the SCS Database&lt;/li&gt;
&lt;li&gt;The SCS Console version 5.0 has a much nicer and professional looking user interface&lt;/li&gt;
&lt;li&gt;The performance, stability and logging capabilities of the application have notably improved&lt;/li&gt;
&lt;li&gt;You have the ability to dynamically create collectoins of AMT Systems based on different filter conditions&lt;/li&gt;
&lt;li&gt;This is still early days for AMT Firmware versions 4 and 5 and the use of CIRA (Client Initiated Remote Access) and MPS (Management Presence Server) but it supports them&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
Note: If you are using SMS as your Management Software you will need to use the Intel (R) Client Manageability Addon version 5.0 which is available for download from the following url: &lt;a class="jive-link-external" href="http://downloadcenter.intel.com/Filter_Results.aspx?strOSs=All&amp;strTypes=All&amp;ProductID=2609&amp;lang=eng&amp;OSFullName=All%20Operating%20Systems"&gt;http://downloadcenter.intel.com/Filter_Results.aspx?strOSs=All&amp;strTypes=All&amp;ProductID=2609&amp;lang=eng&amp;OSFullName=All%20Operating%20Systems&lt;/a&gt; &lt;br /&gt;
&lt;br /&gt;
To emphasize the point - you will not be able to use SMS Addon version 3.3 with SCS 5.0. SCS version 5.0 will be bundled already for you with the Addon version 5.0. &lt;br /&gt;
&lt;br /&gt;
Some potentially useful technical insights that I have gathered through my experience of being an early adopter of SCS 5.0 through trying to deploy it at a large-scale enterprise customer: &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;If you opt for having windows authentication (as opposed to the dummy SQL account which was part of the design up until SCS 3.3) you will need to opt for the custom installation path. In there you will be prompted to specify twice the user for running the AMTSCS and AMTSCS_RCFG virtual directories in IIS. You will need to specify the same username and password of the accounts that are running your IIS services where your SCS is being installed. Pay attention to this step - if you specify any user other than the user that is running the IIS services: this could a local account for example and not a domain account, then you will not be able to log into SCS via the SCS console.&lt;/li&gt;
&lt;li&gt;When you opt for the windows authentication to DB you wil not be able to use the default website on IIS. If you are creating a new website and you are going to opt for https connection, make sure your new website is setup with the server ssl certificate. You will also need to remember to stop the default website and have your new website running.&lt;/li&gt;
&lt;li&gt;You will need to remember to delegate permissions to the account that is running the SCS service on the AD OU for AMT objects, but this time it will be for objects of type 'Computer Objects'. There will not be a conflict with the Host OS level computer objects as these AMT Computer Objects are seen as user objects.&lt;/li&gt;
&lt;li&gt;You have the option to create the DB separately using an SQL Standalone DB script (i.e. not as part of the install wizard) however even if you are opting for windows authentication to your SCS DB, you can achieve this by only running the wizard (the custom install path). If you have created the DB prior to SCS install, you can point the SCS service to this DB instance during the install wizard.&lt;/li&gt;
&lt;li&gt;A general point to note that would apply to any provisioning with SCS (not just SCS 5.0) - when you are creating a profile&lt;/li&gt;
&lt;li&gt;Another point to mention is that the profile ID number is not fully deterministic if you don't run through the config of a new profile without pressing cancel at any point. For example, if you have the default profile as profile ID #1 then when you try and create an additional profile and at some point click cancel and then try and create a new profile it can eventually have a profile ID of #5 for example. This can start becoming a problem if you rely on the profile ID number as part of your provisioning process using the Activator Utility for example, as you can only pass the profile ID as far as the SCS API is concerned, yet if you've hardcoded the profile ID in some file on the vPro client where your Activator Utility will run then you cannot know for sure until your profile has been created in SCS what its profile ID will be. If you are editing an existing profile, its ID number won't change. You also cannot go into the DB and change that value manually as it is a primary key and is auto generated as part of an indexing mechanism in the SCS code. - this one might be a bit tricky, so contact me if you need me to clarify.&lt;/li&gt;
&lt;li&gt;I don't know whether you've noticed any sluggishness in the past when trying to install 3.x versions of SCS - for example with one of my large customers it would take 1.5 hours to install SCS because of looking up users in a rather large Active Directory; whereas with SCS 5.0 it takes 5 minutes at most.&lt;/li&gt;
&lt;li&gt;Whilst I haven't taken advantage of the capability to create collectoins of AMT systems I wanted to point out one of the main benefits of this feature. I have been faced in the past with situations where I need to perform an operation through SCS on many machines, but not all machines. Therefore the global operations in SCS 3.x versions only gave me the possibility of running the command on a single or all machines. Now I can tailor which machines I want to perform operations on.&lt;/li&gt;
&lt;/ol&gt;
&lt;br /&gt;
My overall recommendation to you is to give SCS 5.0 a go. It is easily the best SCS version that has been released. I have blogged about it as part of my first hand experiences - I have had nothing to do with its development and I am speaking out of the objective view of a user. Hope you find this useful.&lt;br /&gt;
&lt;br /&gt;
Tal &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">scs_5.0</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">scs</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">scs</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">tal_elgar</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">schema_extension</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">windows_authentication</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">activation</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provisioning</category>
      <pubDate>Mon, 01 Sep 2008 22:14:35 GMT</pubDate>
      <author>Tal_Elgar</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/09/01/scs-50-setup-and-configuration-version-50-the-latest-and-greatest</guid>
      <dc:date>2008-09-01T22:14:35Z</dc:date>
      <clearspace:dateToText>1 month, 2 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/scs-50-setup-and-configuration-version-50-the-latest-and-greatest</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=11445</wfw:commentRss>
    </item>
    <item>
      <title>Got 10 min? Provision Intel AMT in Basic Mode!</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/06/10/got-10-min-provision-intel-amt-in-basic-mode</link>
      <description>Here's a video I created to show step by step how to provisioning Intel Active Management Technology in basic mode. Check it out!&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;**Please Note:&lt;/b&gt; Basic was previously called SMB mode. Standard and Advanced were referred to as Enterprise mode. See Michele's &lt;a href="http://communities.intel.com/openport/docs/DOC-1684" class="jive-link-wiki"&gt;Understanding Provisioning Models - Basic, Standard, &amp; Advanced&lt;/a&gt; for explanation.&lt;br /&gt;
&lt;br /&gt;
&lt;br&gt;
&lt;embed src="http://www.youtube.com/v/MsIu0VZi7i0" type="application/x-shockwave-flash" width="425" height="350"&gt;&lt;/embed&gt;</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">video</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">intel_amt</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">smb</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <pubDate>Tue, 10 Jun 2008 22:21:57 GMT</pubDate>
      <author>Kelsey_Witherow</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/06/10/got-10-min-provision-intel-amt-in-basic-mode</guid>
      <dc:date>2008-06-10T22:21:57Z</dc:date>
      <clearspace:dateToText>1 year, 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/got-10-min-provision-intel-amt-in-basic-mode</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=10608</wfw:commentRss>
    </item>
    <item>
      <title>Useful links for everything vPro - Compiled into one page!</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/05/13/useful-links-for-everything-vpro-compiled-into-one-page</link>
      <description>Be sure to view this brand new resource created in the activation subzone. It details out nearly 40 links to documents, tools, and websites that aide in activation of Intel vPro Technology.&lt;br /&gt;
&lt;b&gt;&lt;h4&gt;CHECK IT OUT:&lt;/H4&gt;&lt;/B&gt;
&lt;a href="http://communities.intel.com/openport/docs/DOC-1561" class="jive-link-wiki"&gt;vPro Useful Links&lt;/a&gt;</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">vpro</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">activation</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">deployment</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">case</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">_studies</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">skus</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">installation</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">links</category>
      <pubDate>Tue, 13 May 2008 22:15:36 GMT</pubDate>
      <author>Kelsey_Witherow</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/05/13/useful-links-for-everything-vpro-compiled-into-one-page</guid>
      <dc:date>2008-05-13T22:15:36Z</dc:date>
      <clearspace:dateToText>4 months, 3 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/useful-links-for-everything-vpro-compiled-into-one-page</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=11157</wfw:commentRss>
    </item>
    <item>
      <title>Provisioning: Hopefully more answers than questions</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/05/06/provisioning-hopefully-more-answers-than-questions</link>
      <description>I've been getting quite a few questions recenly regarding provisioning. Many folks are confused when it comes to what type of provisioning works with which versions of AMT and I'm hoping that this post will help to clear up some of that confusion.&lt;br /&gt;
&lt;br /&gt;
Currently, there are two types of provisioning, PKI (Protected Key Infrastructure) and PSK (Pre Shared Key). For those who are not familiar with what is involved with these two types of provisioning, PKI involves using a formatted provisioning certificate in order to establish a trust relationship between the AMT client and provisioning server where PSK uses a PID/PPS key pair to establish the trust for provisioning. There is quite a bit of documentation regarding how to setup PKI and PSK provisioning in the deployment documents for AMT, so I won't go into that detail here. What I'd like to cover here is what are the differences between these types of provisioning and which versions of AMT use which types of provisioning. &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
First, lets cover the different types of provisioning and a brief overview how each of them work. &lt;br /&gt;
&lt;p /&gt;
PSK provisioning uses a Pre Shared Key to encrypt the provisioning process. In order for an AMT client to use a Pre Shared Key, however, the MEBx must first be programed with the correct key. This can be done in either one of two ways, manual entry or via a setup.bin file located on a USB thumb drive. &lt;br /&gt;
&lt;p /&gt;
Manual entry is just that, a user must access the MEBx and manually type in the characters for the PID and PPS and any other settings that are required in order to get provisioning to work (system name, password change, etc). Once the user saves the changes to the MEBx, AMT starts sending out 'hello' packets to the provisioning server to start the provisioning process. This method is the most straight forward but is also the most time consuming, especially when attempting to deploy many systems at the same time. &lt;br /&gt;
&lt;p /&gt;
USB thumb drive provisioning shortens the PSK entry process by using a formatted setup.bin file located on a USB thumb drive that can hold many PID/PPS pairs as well as password change information for MEBx. This key is then used on each system as it boots up to load the PSK information into MEBx. When the system boots, ME detects that a setup.bin file is located on the USB key and, if AMT isn't provisioned already, will prompt the user if they would like to load the provisioning information from the USB key. If the user confirms the request, then ME loads the first available PID/PPS entry into the PSK settings as well as changes the password for MEBx to the password set in the file. ME then marks that entry in the setup.bin file as used and reboots the system. Once rebooted, AMT starts sending out 'hello' packets using the PID/PPS pair. This method is better than manual entry, but only barely. This still requires a user to be at the system and to interact with the process. &lt;br /&gt;
&lt;p /&gt;
PKI provisioning is split into two different types of provisioning as well, Bare Metal and Agent Based/Delayed provisioning. &lt;br /&gt;
&lt;p /&gt;
Bare metal provisioning is where the factory settings in AMT are set at the OEM/System Integrator so that as soon as power and a network connection are applied to the system, then AMT will send out 'hello' packets and provisioning starts. If provisioning doesn't happen right away the provisioning period will continue for 24 hours, sending out 'hello' packets at a decreasing rate, after which AMT goes into delayed provisioning mode. This method of provisioning greatly improves the time savings from a deployment aspect by enabling many systems to be provisioned with minimal interaction from deployment personnel. This method works well when using a 3rd party trusted certificate that is natively supported in AMT (Verisign, GoDaddy, etc). &lt;br /&gt;
&lt;p /&gt;
Agent based/delayed provisoining is where either the 24 hour provisioning period has expired without a successful provisioning transaction or, due to the AMT version, AMT requires an in-band agent or tool to start the PKI provisioning process. In order to start agent based/delayed provisioning the agent or tool sends a command down through the HECI driver in the host OS and tells AMT to start sending out 'hello' packets to the provisioning server. In addition, some basic configuration settings can also be sent to AMT in order to get it ready for provisioning (enable AMT, set PKI provisoining, etc). This method of provisioning tends to be the most reliable. Again this works best when using a 3rd party trusted certificate that is natively supported in AMT but in addition you gain the benefits of having an in-band agent that is able to assist the provisioning process by providing the provision server in-band information that helps keep the out of band aspects of AMT synced with the in-band host OS. Configured correctly, provisioning AMT with the assistance of an in-band agent can make the entire provisioning process hands free for deployment personnel. &lt;br /&gt;
&lt;p /&gt;
Lastly, I want to touch on how each of these provisioning processes relates to the different AMT versions. Different versions of AMT support different types of provisioning. AMT 2.0, 2.1, 2.5 only support PSK provisioning. AMT 2.2 and 2.6 support PKI provisioning (as well as PSK) but only agent based PKI provisioning.  AMT 3.0 and higher versions of AMT support bare metal PKI provisioning (as well as agent based/delayed PKI and PSK provisioning).  A common utility used to accomplish agent based provisioning is the RCT (Remote Configuration Tool).&lt;br /&gt;
&lt;p /&gt;
Provisioning is a very complex topic and what I've touched on here is really just the tip of the iceburg when it comes to understanding the intricacies involved. I hope I've provided more answers than questions, but if there is something you still don't understand, feel free to comment and I'll try to clear it up! &lt;br /&gt;
&lt;p /&gt;
Thanks,&lt;br /&gt;
Matt Primrose</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">amt</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">pki</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">psk</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">pid</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">pps</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">certificates</category>
      <pubDate>Tue, 06 May 2008 07:16:30 GMT</pubDate>
      <author>mprimros</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/05/06/provisioning-hopefully-more-answers-than-questions</guid>
      <dc:date>2008-05-06T07:16:30Z</dc:date>
      <clearspace:dateToText>5 months, 4 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/provisioning-hopefully-more-answers-than-questions</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=11137</wfw:commentRss>
    </item>
    <item>
      <title>Two ISV's managing the same client? Sure!</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/03/10/two-isvs-managing-the-same-client-sure</link>
      <description>The Brand Promise Validation team here at Intel came across an issue in the lab which many customers may also run into when they are trying to deploy AMT. The question was, how do I use two different ISVs to manage different aspects of my Enterprise configured AMT client fleet? Theoretically this isn't neccessarily a tough question. Based on how AMT was designed, so long as you have the same authentication and credentials setup between the different managment software, you should be able to access the AMT features. In practice, however, many management applications attempt to configure AMT in such a way that they have sole access by customizing the provisioning settings and then hide those settings away. &lt;br /&gt;
&lt;br /&gt;
However, as I'm about to describe, with a little tweaking, you can force these applications to play nice together.&lt;br /&gt;
&lt;p /&gt;
The main thing to remember anytime you are setting up AMT in enterprise mode is that the key to accessing AMT is having the correct certificates in place. For access that means having a Web Server based certificate template that will be used for TLS communication between the console and AMT. If you are also using PKI provisioning, you'll have to have a properly configured or purchased provisioning certificate in place (I won't be covering the details of PKI provisioning in this blog, but maybe in a future update). Lastly, for SMS and Altiris you'll also need a .pem certificate. Details on how to create a .pem certificate is included in both the Altiris help and Intel AMT Add-on for SMS documentation. A quick summary of a .PEM file certificate is taking each certificate in the chain starting at the top and concatinating those certificates into a single file. This file is used for secure TLS communication during SOL sessions.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
The two management applicaitons we targetted for implementation was Altiris and SMS using the Intel AMT Add-on for SMS. The reason we targetted these apps is that we have inimate knowledge using these applications since they are used in our validation efforts and they both utilize the Intel SCS for provisioning. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Both Altiris and SMS systems should be in the same domain using the same certificate authority and have the same root certificate installed. While it is definately feasible that you could have the the two management applications in different child domains using wildcard certificates for authentication, this article doesn't cover that specific configuration.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I'm not going to go into the details of setting up Altiris and SMS or how to configure SCS for provisioning since it is assumed that if you are attempting to merge these ISVs so that they can manage AMT clients, then you should already know how to get the individual applications to work with AMT.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I started off by getting Altiris setup and configured using the built in SCS included in the OOB Management solution for Altiris. At this point I didn't have to do anything special in order to make sure that the SMS Add-on would work, I just setup Altiris as normal to manage AMT clients. Once setup, I verified that I could provision and manage my AMT clients.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Next step, on a different machine, I setup and configured SMS with the Intel AMT Add-on for SMS. I configured SMS to use it's own SQL server, however, there is no reason that you couldn't have it use the Altiris SQL server (setting up a separate instance) or a stand alone SQL server (again with a separate instance). For ease of configuration, however, I just used a separate SQL install on the same machine as SMS. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Once you have the SMSAMTUser_&amp;lt;sitecode&amp;gt; account created in active directory and have that account as well as whatever user accounts you want to use AMT via SMS added to the Intel(R) AMT groups (there are 3-5 of them depending on the version of the AMT Add-on you are using), you need to add the SMSAMTUser_&amp;lt;sidecode&amp;gt; to the Altiris SCS users list. On the Altiris system go to: View -&amp;gt; Configuration -&amp;gt; Solution Settings -&amp;gt; Platform Administration -&amp;gt; Out of Band Managment -&amp;gt; Provisioning -&amp;gt; Configuration Service Setings -&amp;gt; Users. Click the blue + to add a new user. Click the ... button. Select domain and type in the name query field SMSAMTUser and click Find. Select the SMSAMTUser_&amp;lt;sitecode&amp;gt; that is found in the results field and click OK. Under Role make sure Enterprise Administrator is selected. Click OK. This gives the service account for the Intel(r) AMT Add-on for SMS rights to view and modify the Altiris SCS. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
On the SMS system, open up the Intel Add-on Settings dialogue box and configure it to use the Altiris Setup and Configuration Server. In order to find the URL that Altiris uses to connect to the SCS, On the Altiris machine, go to: &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
View -&amp;gt; Configuration -&amp;gt; Solution Settings -&amp;gt; Platform Administration -&amp;gt; Out of Band Managment -&amp;gt; Provisioning -&amp;gt; Configuration Service Setings -&amp;gt; Service Location. &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
If you have the Default URL set, you should have something like [/]&amp;lt;fqdn/AMTSCS. If you are using an alternative URL, copy that down. On the SMS machine, open up the Intel Add-on Settings and go to the Setup and Configuration tab. Select the Integrated Setup and Configuration radio button and type in the URL you copied down into the SCS Service URL box. Click the Set Profiles box and the AMT profiles that are setup in Altiris should pop up in a new window. Select the profiles you want to use in SMS (select all of them if you want all profiles to be able to be managed in SMS) and click OK. The list of supported profiles should now be populated with the profiles that are setup in Altiris. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Next step is to setup the .PEM certificate file that was used in Altiris for the Intel AMT Add-on for SMS. Copy the .PEM file used in Altiris to the SMS system. If you don't know where you .PEM file is located in Altiris, go to:&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
View -&amp;gt; Configuration -&amp;gt; Solution Settings -&amp;gt; Real-Time Console Infrastructure -&amp;gt; Configuration. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Click on the Intel(r) AMT Connection Settings tab. Under Redirection Security you should see a box next to the Trusted CA certifcate location. That box should have the path to the .PEM file. Once you have copied that file to your SMS system (doesn't matter where you put the .PEM file on your SMS box, so long as you remember where you put it) open up the Intel Add-on Settings dialogue and click on the Security tab. Check the Enable Intel(r) AMT secure Connection (TLS) box. In the CA Certificate Path put in the path to the location of the .PEM file that was copied onto the SMS system. Click Apply.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
That is the basicis of what needs to be done. Once you have discovered the AMT clients in SMS and they are populated in the collection, right click on All Systems and go to All Tasks -&amp;gt; Intel(r) AMT Tasks -&amp;gt; Discover Systems. Now when you right click on an AMT system and go to All Tasks -&amp;gt; Intel(r) AMT Tasks you should see the list of AMT functions you can perform such as Asset Identification Information, Power Control Operations, etc.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
In order to get SOL/IDE-R to work and System Defense to work, you'll need to go into the Intel(r) Add-on Settings in SMS again and setup the location of the ISO images that will be used for IDE-R and the System Defense file that will be used to filter packets using Circuit Breaker. Creating the System Defense file is covered in the Intel(r) AMT Add-on for SMS documentation and will not be explained in detail here. The repository for the ISO images needs to be a network share and can either reside locally on the SMS system (still mapped to the network share location) or can reside in a central repository. If you want both Altiris and SMS to use the same set of images just use the same network path to the ISO images for both applications.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
That's it. In my environment I'm able to manage AMT machines with either management application. The only slight gotcha (and this is more a security feature of AMT) is that if one management application is currently managing a client (ex. using SoL) then the other is unable to break in and use the client. The gotcha part of this is that neither management application gives a clear indication that the system is currently in use by another management application, the attempt to manage just fails with an authentication error.</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">amt</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">sms</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">altiris</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">scs</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">vpro</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">add-on</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <pubDate>Mon, 10 Mar 2008 21:18:41 GMT</pubDate>
      <author>mprimros</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/03/10/two-isvs-managing-the-same-client-sure</guid>
      <dc:date>2008-03-10T21:18:41Z</dc:date>
      <clearspace:dateToText>7 months, 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/two-isvs-managing-the-same-client-sure</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=10971</wfw:commentRss>
    </item>
    <item>
      <title>Simplified Provisioning whitepaper posted</title>
      <link>http://communities.intel.com/openport/blogs/proexpert/2008/01/16/simplified-provisioning-whitepaper-posted</link>
      <description>A number of requests through 2007 on the Intel vPro provisioning process.&lt;br /&gt;
&lt;br /&gt;
The document posted (&lt;a class="jive-link-external" href="http://communities.intel.com/docs/DOC-1323"&gt;http://communities.intel.com/docs/DOC-1323&lt;/a&gt;) provides a summary of the process.  Take a look.</description>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">amt</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">provision</category>
      <category domain="http://communities.intel.com/openport/blogs/proexpert/tags">vpro</category>
      <pubDate>Wed, 16 Jan 2008 19:48:55 GMT</pubDate>
      <author>Terry Cutler</author>
      <guid>http://communities.intel.com/openport/blogs/proexpert/2008/01/16/simplified-provisioning-whitepaper-posted</guid>
      <dc:date>2008-01-16T19:48:55Z</dc:date>
      <clearspace:dateToText>8 months, 3 weeks ago</clearspace:dateToText>
      <wfw:comment>http://communities.intel.com/openport/blogs/proexpert/comment/simplified-provisioning-whitepaper-posted</wfw:comment>
      <wfw:commentRss>http://communities.intel.com/openport/blogs/proexpert/feeds/comments?blogPostID=10842</wfw:commentRss>
    </item>
  </channel>
</rss>

