secubox-openwrt/package/secubox/secubox-wazuh-manager/files/etc/config/wazuh-manager
CyberMind-FR 7d87bfbc92 feat(wazuh): Add Wazuh Manager LXC container package
New package secubox-wazuh-manager provides complete SIEM stack:
- Wazuh Manager: Agent management, log analysis, threat detection
- Wazuh Indexer: OpenSearch-based alert storage
- Wazuh Dashboard: Web UI for visualization (port 5601)

Features:
- Automated LXC container deployment with Debian 12
- HAProxy integration with waf_bypass for dashboard
- Agent management commands (list, info, remove)
- API access and token generation
- Log viewing for all components
- Shell access for administration

CLI: wazuh-managerctl with install/start/stop/status/configure-haproxy

Requirements: 4GB+ RAM, 20GB+ storage for production use

Complements secubox-app-wazuh agent for full SIEM deployment.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-14 13:31:31 +01:00

39 lines
866 B
Plaintext

config wazuh_manager 'main'
option enabled '0'
option container_name 'wazuh'
option lxc_path '/srv/lxc'
option data_path '/srv/wazuh'
config network 'network'
option ip_address '192.168.255.50'
option gateway '192.168.255.1'
option bridge 'br-lan'
config ports 'ports'
option manager '1514'
option manager_tcp '1515'
option api '55000'
option indexer '9200'
option dashboard '5601'
config resources 'resources'
option memory_limit '4G'
option cpu_shares '1024'
config haproxy 'haproxy'
option enabled '1'
option domain 'wazuh.gk2.secubox.in'
option dashboard_port '5601'
config indexer 'indexer'
option cluster_name 'wazuh-cluster'
option node_name 'wazuh-indexer'
option shards '1'
option replicas '0'
config manager 'manager'
option cluster_enabled '0'
option cluster_name 'wazuh'
option node_name 'master'
option node_type 'master'