Professional woman recording a podcast or broadcast using a microphone and laptop at a desk.

Setting Up Remote Access with Intel AMT and MeshCentral

Professional woman recording a podcast or broadcast using a microphone and laptop at a desk.
Photo by Karola G on Pexels. Source.

Update (2025-12-21 09:03 CET): Further insights were added to the troubleshooting section to enhance connectivity assurance between Intel AMT and MeshCentral as discussed in the Reddit thread.

In this guide, we’ll walk through the process of configuring remote access using Intel Active Management Technology (AMT) and MeshCentral on Ubuntu. This hands-on tutorial covers all vital steps, from prerequisites to troubleshooting.

Prerequisites

Before you begin, ensure you have the following:

  • Ubuntu server with root access
  • Node.js installed
  • Intel AMT capable machine
  • Basic understanding of terminal commands

Setup Intel AMT

Intel AMT provides out-of-band management for your system, critical for remote access.

  • Access your computer’s BIOS and navigate to the Intel AMT configuration section.
  • Enable Intel AMT. Ensure network access is configured.
  • Note the device’s AMT password for future configuration.

Install and Configure MeshCentral

MeshCentral is a versatile option for managing devices remotely. Follow these commands to set up MeshCentral on Ubuntu:

# Update and install Node.js
sudo apt update && sudo apt install nodejs

# Download and unzip MeshCentral
sudo wget https://meshcentral.com/release/meshcentral.zip
sudo unzip meshcentral.zip -d /opt/meshcentral

# Start MeshCentral
disown /opt/meshcentral/node /opt/meshcentral/meshcentral

Verify Setup

Ensure that Intel AMT and MeshCentral are properly configured as follows:

  • Check network connections on port 16992 by allowing traffic:
sudo iptables -I INPUT -p tcp --dport 16992 -j ACCEPT
  • Use MeshCommander to connect to the AMT device and verify access.

Troubleshooting and Common Issues

Remote access issues can often be resolved by checking the following:

  • Ensure the AMT device is on the same network as your MeshCentral server.
  • Re-confirm AMT configurations and passwords.
  • Consult logs for MeshCentral for error messages.

Sources

Information verified from: Reddit Discussion on Intel AMT & MeshCentral

Transparency Note: This article was crafted with the assistance of AI. Information accuracy was ensured through reliable sources, and Steps were checked against automation tools.