From 8f6f43eeb14f145563c9de18739e49b48a74fcce Mon Sep 17 00:00:00 2001 From: dtoro Date: Mon, 29 Jun 2026 08:52:34 +0200 Subject: [PATCH] =?UTF-8?q?docs(grimmory):=20fix=20IP=20assignment=20?= =?UTF-8?q?=E2=80=94=20PVE=20static=20config,=20not=20DHCP=20reservation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All LXCs use ip=/24 in pve net0 config directly. No Fritz!Box lease needed. Updated container doc and migration runbook accordingly. Co-Authored-By: Claude Sonnet 4.6 --- containers/130-grimmory.md | 2 +- plans/2026-06-29-grimmory-migration.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/containers/130-grimmory.md b/containers/130-grimmory.md index 0f5cd7f..ff27789 100644 --- a/containers/130-grimmory.md +++ b/containers/130-grimmory.md @@ -5,7 +5,7 @@ Self-hosted digital library (eBooks, comics, audiobooks). Community fork/success ## At a glance - **Hostname:** `grimmory` -- **IP:** `192.168.8.213` (static DHCP reservation) +- **IP:** `192.168.8.213` (static, set in PVE `net0` config — same pattern as all other LXCs) - **Privilege:** privileged (UID = host UID for `/mnt/library` media GID) - **Resources:** 1 core / 2 GiB RAM / 16 GiB rootfs (Debian 13) - **Mounts:** `/mnt/library` diff --git a/plans/2026-06-29-grimmory-migration.md b/plans/2026-06-29-grimmory-migration.md index 70cb83d..2f89f23 100644 --- a/plans/2026-06-29-grimmory-migration.md +++ b/plans/2026-06-29-grimmory-migration.md @@ -51,11 +51,11 @@ pct start 130 pct exec 130 -- apt-get update -qq ``` -Get the MAC address for the DHCP reservation: +Set the static IP directly in PVE (same pattern as all other LXCs — no Fritz!Box reservation needed): ```bash -pct config 130 | grep hwaddr +pct set 130 --net0 name=eth0,bridge=vmbr0,ip=192.168.8.213/24,gw=192.168.8.1 +pct reboot 130 ``` -→ Add static DHCP lease `192.168.8.213` for this MAC on the Fritz!Box. ---