From 6dbba5937fe2c69da5cbebd62ff566ac689f72ef Mon Sep 17 00:00:00 2001 From: jessikitty Date: Wed, 27 May 2026 11:19:01 +1000 Subject: [PATCH] Update setup-guacamole-lxc.sh More resources, and Corrected IP --- setup-guacamole-lxc.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup-guacamole-lxc.sh b/setup-guacamole-lxc.sh index 112cfc1..6a873eb 100644 --- a/setup-guacamole-lxc.sh +++ b/setup-guacamole-lxc.sh @@ -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"