You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ACM (Admin Control Mode) activation requires a provisioning certificate issued by a trusted Certificate Authority (CA).
295
+
This certificate must be rooted in one of the trusted CAs embedded in the Intel AMT firmware (e.g., Comodo, DigiCert, GoDaddy, or VeriSign).
296
+
297
+
To obtain and prepare the certificate:
298
+
299
+
**Purchase a provisioning certificate** from a CA whose root certificate hash is listed in Intel AMT's trusted root store.
300
+
The certificate must match the domain suffix configured in the AMT BIOS (MEBx) settings.
301
+
302
+
**Export the certificate** in PFX/PKCS#12 format, including the full certificate chain and private key.
303
+
304
+
**Note the certificate password** — it will be required when creating the AMT domain profile via ``orch-cli``.
305
+
306
+
.. note::
307
+
308
+
The domain suffix in the certificate's Common Name (CN) or Subject Alternative Name (SAN) must match the
309
+
PKI DNS suffix configured in the edge node's MEBx settings.
310
+
311
+
- BIOS configuration for ACM mode
312
+
313
+
Ensure the edge node's BIOS is configured for ACM mode with Domain suffix in Remote configuration settings.
314
+
315
+
Advanced > MEBx > {Enter MEBx Password- default is "admin"} > Intel AMT Configuration > Network Access State > Full Unprovision
316
+
Advanced > MEBx > {Enter MEBx Password- default is "admin"} > Intel AMT Configuration > Remote Setup and Configuration > PKI DNS Suffix > Set to your domain suffix (e.g., "example.com")
317
+
318
+
.. figure:: images/Vpro-BIOS-settings.png
319
+
:alt:BIOS ACM configuration settings
320
+
292
321
- Domain creation
293
322
294
323
.. code-block:: bash
@@ -311,6 +340,19 @@ Activate vPro In ACM mode
311
340
--amt-state provisioned \
312
341
--control-mode admin
313
342
343
+
- ACM mode Deactivation - Once the operation is complete, you can deactivate ACM mode using the following command:
344
+
345
+
.. code-block:: bash
346
+
347
+
orch-cli set host ${HOST_ID} \
348
+
--project ${PROJECT_NAME} \
349
+
--api-endpoint https://api.${CLUSTER_FQDN} \
350
+
--amt-state unprovisioned
351
+
352
+
.. note::
353
+
Ensure that deactivation completes successfully. If it does not, the host may enter a limbo state and cannot be reactivated.
354
+
In that case, you must clear the system CMOS to reset the Intel® vPro® state before activating again.
ACM (Admin Control Mode) activation requires a provisioning certificate issued by a trusted Certificate Authority (CA).
49
+
This certificate must be rooted in one of the trusted CAs embedded in the Intel AMT firmware (e.g., Comodo, DigiCert, GoDaddy, or VeriSign).
50
+
51
+
To obtain and prepare the certificate:
52
+
53
+
**Purchase a provisioning certificate** from a CA whose root certificate hash is listed in Intel AMT's trusted root store.
54
+
The certificate must match the domain suffix configured in the AMT BIOS (MEBx) settings.
55
+
56
+
**Export the certificate** in PFX/PKCS#12 format, including the full certificate chain and private key.
57
+
58
+
**Note the certificate password** — it will be required when creating the AMT domain profile via ``orch-cli``.
59
+
60
+
.. note::
61
+
62
+
The domain suffix in the certificate's Common Name (CN) or Subject Alternative Name (SAN) must match the
63
+
PKI DNS suffix configured in the edge node's MEBx settings.
64
+
65
+
- BIOS configuration for ACM mode
66
+
67
+
Ensure the edge node's BIOS is configured for ACM mode with Domain suffix in Remote configuration settings.
68
+
69
+
Advanced > MEBx > {Enter MEBx Password- default is "admin"} > Intel AMT Configuration > Network Access State > Full Unprovision
70
+
Advanced > MEBx > {Enter MEBx Password- default is "admin"} > Intel AMT Configuration > Remote Setup and Configuration > PKI DNS Suffix > Set to your domain suffix (e.g., "example.com")
71
+
72
+
.. figure:: images/Vpro-BIOS-settings.png
73
+
:alt:BIOS ACM configuration settings
74
+
75
+
- Domain creation
76
+
77
+
.. code-block:: bash
78
+
79
+
orch-cli create amtprofile <domain_name> \
80
+
--project ${PROJECT_NAME} \
81
+
--cert 'Domain-certificate.pfx' \
82
+
--cert-pass cert-password \
83
+
--cert-format string \
84
+
--domain-suffix <Domain-suffix> \
85
+
--api-endpoint https://api.${CLUSTER_FQDN}
86
+
87
+
- ACM Activation command
88
+
89
+
.. code-block:: bash
90
+
91
+
orch-cli set host ${HOST_ID} \
92
+
--project ${PROJECT_NAME} \
93
+
--api-endpoint https://api.${CLUSTER_FQDN} \
94
+
--amt-state provisioned \
95
+
--control-mode admin
96
+
97
+
- ACM mode Deactivation - Once the operation is complete, you can deactivate ACM mode using the following command
98
+
99
+
.. code-block:: bash
100
+
101
+
orch-cli set host ${HOST_ID} \
102
+
--project ${PROJECT_NAME} \
103
+
--api-endpoint https://api.${CLUSTER_FQDN} \
104
+
--amt-state unprovisioned
105
+
106
+
.. note::
107
+
Ensure that deactivation completes successfully. If it does not, the host may enter a limbo state and cannot be reactivated.
108
+
In that case, you must clear the system CMOS to reset the Intel® vPro® state before activating again.
0 commit comments