Update setup-guacamole-lxc.sh

More resources, and Corrected IP
This commit is contained in:
2026-05-27 11:19:01 +10:00
parent ff6747ec74
commit 6dbba5937f
+5 -5
View File
@@ -14,9 +14,9 @@
# Run this script on the Proxmox host (HAL-HOST) as root.
#
# Network assumptions:
# - Guacamole LXC: 10.0.0.52 (new - adjust if taken)
# - Guacamole LXC: 10.0.0.225 (new - adjust if taken)
# - Gateway: 10.0.0.254
# - NPM: 10.0.0.54 (for reverse proxy)
# - NPM: 10.0.0.226 (for reverse proxy)
# =====================================================================
set -euo pipefail
@@ -24,12 +24,12 @@ set -euo pipefail
# --- Configuration ---
CT_ID="${1:-121}"
CT_NAME="guacamole"
CT_IP="10.0.0.52/24"
CT_IP="10.0.0.225/24"
CT_GW="10.0.0.254"
CT_STORAGE="local-lvm"
CT_TEMPLATE="local:vztmpl/debian-12-standard_12.7-1_amd64.tar.zst"
CT_MEMORY=1024
CT_SWAP=256
CT_MEMORY=2048
CT_SWAP=512
CT_CORES=2
CT_DISK="8"
BRIDGE="vmbr0"