PVE1 — Proxmox Node 1
Host IP: 192.168.1.5
Subnet: 192.168.1.0/24 (PVE1 internal)
Wazuh agent: pve (ID 003) — Active
Access from PVE2
# Direct SSH (PVE2 private key is authorized on PVE1)ssh -i /root/.ssh/id_rsa root@192.168.1.5Containers (LXC)
| CTID | Name / Hostname | IP | OS | Wazuh | Purpose |
|---|---|---|---|---|---|
| CT102 | corp.optination.net | 192.168.1.102 (static) | Debian 12 | ✅ corp (023) | Corporate web/app container |
| CT103 | Mail-Server-1-OptiNation | — | — | — | Stopped |
| CT104 | Prod-DNS-Server-2 | 192.168.1.25 | Debian 12 | ✅ Prod-DNS-Server-2 (024) | Production DNS server |
| CT105 | mx1.mail-gateway.edge.optination.net | 192.168.1.15 | Debian 13 | ✅ mx1 (015) | Primary MX / mail gateway |
| CT106 | Forum | — | — | — | Stopped |
| CT107 | mx1.primus.planettoysutah.com | — | — | — | Stopped |
| CT114 | corp-optination | 192.168.1.23 | Ubuntu 22.04 | ✅ corp-optination (016) | Corporate OptiNation services |
| CT115 | prod.core-infra-active-wv-01.optination.net | 192.168.1.111 | Debian 12 | ✅ prod (017) | Production core infra |
Virtual Machines (KVM)
| VMID | Name | IP | OS | RAM | Wazuh | Purpose |
|---|---|---|---|---|---|---|
| VM100 | Optimus-WOO-Prod-Store | — | — | 10 GB | — | Stopped |
| VM101 | Mail.planettoysutah.com | — | — | 10 GB | — | Stopped |
| VM108 | TDAI | 192.168.1.22 | Ubuntu | 80 GB | ✅ tdai (009) | AI/automation platform |
| VM109 | PacketFence | — | — | 16 GB | — | Stopped |
| VM110 | master-control | 192.168.1.21 | Ubuntu 24.04 | 10 GB | ✅ master-control (018) | Master control plane (Docker) |
| VM111 | hestia-webmail-111 | 192.168.1.20 | Debian 12 | 8 GB | ✅ mail.optination-hosting.local (019) | Hestia Control Panel + webmail |
| VM112 | optination-phase-vault | 192.168.1.32 | Debian 12 | 10 GB | ✅ optination-phase-vault (025) | Vault / secrets store (Docker) |
| VM113 | optination-panel | 192.168.1.50 | Debian 12 | 4 GB | ✅ optination-panel (020) | OptiNation management panel |
Notable Services on PVE1
TDAI (VM108 — 192.168.1.22)
- Ubuntu VM running the TDAI AI/automation platform
- 80 GB RAM, 300 GB disk
- Wazuh agent restarts occasionally — check with
systemctl status wazuh-agent
master-control (VM110 — 192.168.1.21)
- Ubuntu 24.04 with Docker installed (
172.17.0.0/16internal) - Manages control-plane automation
hestia-webmail (VM111 — 192.168.1.20)
- Hestia Control Panel for web hosting management
- Hostname:
mail.optination-hosting.local
optination-phase-vault (VM112 — 192.168.1.32)
- Debian 12 with Docker + Docker Compose (
172.17.0.0/16,172.18.0.0/16) - Secrets and phase vault for OptiNation project
pct exec Reference
# On PVE1 host — exec into a running CTpct exec 102 -- bash
# Execute a one-linerpct exec 104 -- systemctl is-active wazuh-agent
# On PVE2 — exec into PVE1 CTs via SSHssh -i /root/.ssh/id_rsa root@192.168.1.5 'pct exec 115 -- hostname'qm guest exec Reference (VMs)
# Run command in running VM via QEMU guest agentqm guest exec 108 -- systemctl is-active wazuh-agent
# Get VM IP addressesqm agent 108 network-get-interfaces
# Install software (nohup for long commands — 30s default timeout)qm guest exec 110 -- bash -c "nohup bash /tmp/install.sh > /tmp/install.log 2>&1 &"