-
Notifications
You must be signed in to change notification settings - Fork 0
Common Commands
Andrew Mello edited this page May 27, 2026
·
1 revision
rpc operates against the local Intel ME via /dev/mei0 (use sudo) or against a remote AMT host over the network.
sudo rpc amtinfoKey fields:
-
Version— AMT version (e.g.16.1.27) -
Features—AMT Pro Corporate(vPro Enterprise) orIntel Standard Manageability(ISM, limited) -
Control Mode—pre-provisioning state,activated in client control mode, oractivated in admin control mode -
Operational State—enabledordisabled -
AMT IP Address—0.0.0.0until AMT NIC requests DHCP
sudo rpc activate -local -ccm -password "<strong-password>"AMT password requirements: ≥8 chars, upper + lower + digit + special.
For the full guided flow with password generation, see amt-activate-linux.
sudo rpc deactivate -localReturns AMT to pre-provisioning state. Wipes the MEBx password.
sudo rpc activate -local -acm \
-password "<strong-password>" \
-url https://your-mps.example.com/activate \
-profile <profile-id>For full headless mode (no KVM consent prompt). Requires PKI infrastructure — see CCM vs ACM in amt-activate-linux wiki.
rpc amtinfo -u admin -p "<password>" -h 192.168.1.106Add -tls for TLS (port 16993) if AMT 16.1+.
# Set TLS
sudo rpc configure -tls -password "$PW"
# Set WiFi
sudo rpc configure -wifi -password "$PW" -ssid "..." -wifipassword "..."
# Set 802.1x
sudo rpc configure -8021x -password "$PW" -cert <cert> -key <key>See rpc --help for the full list.
rpc --help
rpc activate --help
rpc configure --help- Full activation guide: https://github.com/88plug/amt-activate-linux
- Upstream docs: https://device-management-toolkit.github.io/docs/
- Known issues: Troubleshooting in amt-activate-linux