🧩 Machine Centralization
Connect your systems to Wazuh for centralized monitoring.
Step 1: Install the Wazuh Agent
On the machine you want to monitor:
curl -sO https://packages.wazuh.com/4.x/wazuh-agent-4.x.x.sh
sudo bash wazuh-agent-4.x.x.sh
Step 2: Configure the agent to point to the Wazuh Manager
Edit the agent config:
sudo nano /var/ossec/etc/ossec.conf
Set the manager IP address:
<client>
<address>YOUR_WAZUH_MANAGER_IP</address>
</client>
Step 3: Start the agent
sudo systemctl enable wazuh-agent
sudo systemctl start wazuh-agent
Step 4: Verify connection
On the manager, run:
/var/ossec/bin/agent_control -l
You should see your new agent listed.
Your agent is now centralized and monitored by Wazuh!