secubox-openwrt/package/secubox/luci-app-vm/root/usr/share/rpcd/acl.d/luci-app-vm.json
CyberMind-FR 9887b3555d feat(vm): Add LuCI VM Manager and Vortex Firewall stats improvements
- Add luci-app-vm for LXC container management dashboard
  - Status bar with total/running/stopped containers, disk usage
  - Container cards with Start/Stop/Restart, Snapshot, Export
  - RPCD handler with 10 methods

- Fix Vortex Firewall statistics tracking
  - Replace x47 multiplier with unique_ips metric
  - Read blocks from BIND RPZ log via stats file
  - RPCD now returns unique_ips count

- Add c3box-vm-builder.sh for portable VM creation
  - Downloads OpenWrt x86-64 image
  - Injects SecuBox configuration
  - Converts to VMDK/VDI/OVA formats

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-20 12:57:09 +01:00

30 lines
363 B
JSON

{
"luci-app-vm": {
"description": "Grant access to LuCI app vm",
"read": {
"ubus": {
"luci.vm": [
"status",
"list",
"info",
"logs"
]
}
},
"write": {
"ubus": {
"luci.vm": [
"start",
"stop",
"restart",
"create",
"destroy",
"snapshot",
"restore",
"export"
]
}
}
}
}