From 852896120ab50e935e669a358ebcc00646da101e Mon Sep 17 00:00:00 2001 From: Vuong Hoang Date: Mon, 20 Apr 2026 22:14:57 -0700 Subject: [PATCH] scripts: proxmox_inspect.sh for VM/LXC/storage/backup discovery Read-only companion to server_inspect.sh. Runs over ssh via stdin the same way: ssh root@pfi-pve 'bash -s' < scripts/proxmox_inspect.sh \\ > servers/pfi-pve/proxmox-details.txt Captures what the generic inspect misses on PVE nodes: - Cluster + node resources (pvesh get /cluster/resources) - VM list + per-vmid config highlights (qm list, qm config) - LXC list + per-ctid config highlights (pct list, pct config) - Storage pools (pvesm status, zpool, storage.cfg, NFS mounts) - Backup jobs table parsed from /etc/pve/jobs.cfg (no jq needed) - Per-guest backup coverage verdict: YES/NO with reason - Most-recent actual backup per VMID on each local dump storage - PBS targets, replication jobs, listening ports, subscription status Coverage analysis surfaces the real gap: on pfi-pve, VMIDs 106, 107, 109, 112, 113 have no scheduled backup; VMID 106 (PFI-Tailscale) has not been backed up since 2024-05-31. nh3-pve uses "all" job and covers everything. esh-pve + esh-pve-nas share the tank-vmbu dump storage via NFS; coverage splits cleanly across the two nodes. First snapshots committed for each PVE host. --- scripts/proxmox_inspect.sh | 348 ++++++++++++++++++ servers/esh-pve-nas/proxmox-details.txt | 457 ++++++++++++++++++++++++ servers/esh-pve/proxmox-details.txt | 363 +++++++++++++++++++ servers/nh3-pve/proxmox-details.txt | 273 ++++++++++++++ servers/pfi-pve/proxmox-details.txt | 452 +++++++++++++++++++++++ 5 files changed, 1893 insertions(+) create mode 100755 scripts/proxmox_inspect.sh create mode 100644 servers/esh-pve-nas/proxmox-details.txt create mode 100644 servers/esh-pve/proxmox-details.txt create mode 100644 servers/nh3-pve/proxmox-details.txt create mode 100644 servers/pfi-pve/proxmox-details.txt diff --git a/scripts/proxmox_inspect.sh b/scripts/proxmox_inspect.sh new file mode 100755 index 0000000..3b51fd1 --- /dev/null +++ b/scripts/proxmox_inspect.sh @@ -0,0 +1,348 @@ +#!/usr/bin/env bash +# proxmox_inspect.sh — read-only discovery probe for Proxmox VE hosts. +# +# Companion to server_inspect.sh. Where that script focuses on OS / docker +# detail, this one enumerates VMs, LXC containers, storage pools, and +# backup job coverage — the Proxmox-specific surface that the generic +# inspect misses. +# +# Run remotely via stdin the same way server_inspect.sh does: +# +# ssh pfi-pve 'bash -s' < scripts/proxmox_inspect.sh > servers/pfi-pve/proxmox-details.txt +# +# Output format: sectioned plain text, easy to `grep` / diff. +# +# Expects to run as root on a Proxmox node (that's the default SSH user +# on the fleet's PVE hosts). Safe to run repeatedly — no writes, no +# mutations. Missing tools just emit a note and continue. + +set -u # fail on unset vars; keep going on command errors + +have() { command -v "$1" >/dev/null 2>&1; } +hdr() { printf '\n===== %s =====\n\n' "$1"; } +sub() { printf '\n----- %s -----\n' "$1"; } +note() { printf '(%s)\n' "$*"; } + +# ------------------------------------------------------------ +# 0. sanity check — is this actually Proxmox? +# ------------------------------------------------------------ +if ! have pveversion; then + echo "error: pveversion not found. This doesn't look like a Proxmox host." >&2 + echo " Use scripts/server_inspect.sh for plain Linux hosts instead." >&2 + exit 2 +fi + +# ------------------------------------------------------------ +# 1. Host summary (mirrors server_inspect.sh top section) +# ------------------------------------------------------------ +hdr "HOST" +printf 'Hostname: %s\n' "$(hostname -f 2>/dev/null || hostname)" +printf 'Date: %s\n' "$(date -Iseconds)" +printf 'Uptime: %s\n' "$(uptime -p 2>/dev/null || uptime)" +printf 'PVE: %s\n' "$(pveversion 2>/dev/null | head -1)" +printf 'Kernel: %s\n' "$(uname -r)" +printf 'Arch: %s\n' "$(uname -m)" + +hdr "HARDWARE" +printf 'CPU model: %s\n' "$(awk -F': ' '/^model name/ {print $2; exit}' /proc/cpuinfo)" +printf 'CPU cores: %s\n' "$(nproc)" +printf 'MemTotal: %s\n' "$(awk '/^MemTotal/ {printf "%.1f GB", $2/1024/1024}' /proc/meminfo)" +printf 'MemAvail: %s\n' "$(awk '/^MemAvailable/ {printf "%.1f GB", $2/1024/1024}' /proc/meminfo)" + +# ------------------------------------------------------------ +# 2. Cluster status (single-node hosts print a polite note) +# ------------------------------------------------------------ +hdr "CLUSTER" +if have pvecm; then + out=$(pvecm status 2>&1) + if grep -qi "cluster information" <<<"$out"; then + printf '%s\n' "$out" + else + note "single-node host (or pvecm returned no cluster info)" + fi +else + note "pvecm not available" +fi + +# ------------------------------------------------------------ +# 3. Node resources (one line per VM / LXC / node / storage) +# ------------------------------------------------------------ +hdr "CLUSTER RESOURCES (pvesh)" +if have pvesh; then + # Plain text form is human-readable; JSON form is machine-parseable. + # We emit plain here and a JSON dump in the BACKUP COVERAGE section. + pvesh get /cluster/resources --output-format text 2>/dev/null || \ + note "pvesh /cluster/resources failed" +else + note "pvesh not available" +fi + +# ------------------------------------------------------------ +# 4. VMs (KVM) — per-VM summary + config highlights +# ------------------------------------------------------------ +hdr "VMs (qm list)" +if have qm; then + qm list 2>/dev/null || note "qm list failed" + + hdr "VM CONFIGS (qm config per id)" + vmids=$(qm list 2>/dev/null | awk 'NR>1 {print $1}') + if [ -n "$vmids" ]; then + for id in $vmids; do + sub "VMID $id" + qm config "$id" 2>/dev/null | awk ' + /^(name|cores|memory|balloon|net[0-9]+|scsi[0-9]+|virtio[0-9]+|ide[0-9]+|sata[0-9]+|ostype|onboot|agent|tags|boot|bootdisk|description):/ + ' + done + else + note "no VMs found" + fi +else + note "qm not available (not a Proxmox VE node?)" +fi + +# ------------------------------------------------------------ +# 5. LXC containers +# ------------------------------------------------------------ +hdr "LXC CONTAINERS (pct list)" +if have pct; then + pct list 2>/dev/null || note "pct list failed" + + hdr "LXC CONFIGS (pct config per id)" + ctids=$(pct list 2>/dev/null | awk 'NR>1 {print $1}') + if [ -n "$ctids" ]; then + for id in $ctids; do + sub "CTID $id" + pct config "$id" 2>/dev/null | awk ' + /^(hostname|cores|memory|swap|net[0-9]+|rootfs|mp[0-9]+|onboot|ostype|unprivileged|features|tags|description):/ + ' + done + else + note "no LXC containers found" + fi +else + note "pct not available" +fi + +# ------------------------------------------------------------ +# 6. Storage — pools, usage, ZFS if present +# ------------------------------------------------------------ +hdr "STORAGE (pvesm status)" +if have pvesm; then + pvesm status 2>/dev/null || note "pvesm status failed" +else + note "pvesm not available" +fi + +hdr "DATASTORE CONFIG (/etc/pve/storage.cfg)" +if [ -r /etc/pve/storage.cfg ]; then + cat /etc/pve/storage.cfg +else + note "/etc/pve/storage.cfg not readable" +fi + +hdr "ZFS POOLS (zpool list -v)" +if have zpool; then + zpool list -v 2>/dev/null || note "zpool list returned no pools" +else + note "no zpool on this host (not ZFS)" +fi + +hdr "FILESYSTEMS (df -h, local fs only)" +df -hT -x tmpfs -x devtmpfs -x overlay -x squashfs 2>/dev/null | head -40 + +hdr "MOUNTED NFS / CIFS" +awk '$3 ~ /^(nfs|nfs4|cifs|smb)/ {print}' /proc/mounts || note "no network mounts" + +# ------------------------------------------------------------ +# 7. Backup jobs + coverage analysis +# ------------------------------------------------------------ +hdr "BACKUP JOBS (/etc/pve/jobs.cfg + /etc/vzdump.conf)" +if [ -r /etc/pve/jobs.cfg ]; then + cat /etc/pve/jobs.cfg +else + note "/etc/pve/jobs.cfg not readable (no scheduled backups?)" +fi + +sub "vzdump defaults" +if [ -r /etc/vzdump.conf ]; then + awk '!/^#/ && NF' /etc/vzdump.conf || note "vzdump.conf has no non-comment lines" +else + note "/etc/vzdump.conf not present" +fi + +hdr "BACKUP COVERAGE ANALYSIS" +# Parse /etc/pve/jobs.cfg directly — it's always present on PVE nodes and +# doesn't need jq. Format is stanzas separated by blank lines; each stanza +# starts with `vzdump: ` and is followed by indented `key value` pairs. +covered_all=0 +covered_ids="" +pool_jobs="" +excluded_ids="" + +parse_jobs_cfg() { + # $1 = jobs.cfg path; $2 = "table" for human-readable, "data" for TSV. + awk -v mode="${2:-data}" ' + BEGIN { RS=""; FS="\n" } + /^vzdump:/ { + jid="-"; sched="-"; all="0"; enabled="1" + vmids=""; excl=""; pool=""; storage="-" + for (i=1; i<=NF; i++) { + line=$i + if (line ~ /^vzdump:/) { split(line, a, " "); jid=a[2]; continue } + sub(/^[[:space:]]+/, "", line) + if (line == "") continue + key=line; val="" + sp=index(line, " ") + if (sp > 0) { key=substr(line,1,sp-1); val=substr(line,sp+1); sub(/^[[:space:]]+/, "", val) } + if (key=="schedule") sched=val + else if (key=="all") all=val + else if (key=="enabled") enabled=val + else if (key=="vmid") vmids=val + else if (key=="exclude") excl=val + else if (key=="pool") pool=val + else if (key=="storage") storage=val + } + if (mode == "table") { + printf "%-24s %-14s %-4s %-8s %-40s %-20s %s\n", jid, sched, all, enabled, (vmids==""?"-":vmids), (excl==""?"-":excl), storage + } else { + printf "%s\t%s\t%s\t%s\t%s\n", all, vmids, excl, pool, enabled + } + } + ' "$1" +} + +if [ -r /etc/pve/jobs.cfg ]; then + printf '%-24s %-14s %-4s %-8s %-40s %-20s %s\n' \ + "JOB-ID" "SCHEDULE" "ALL" "ENABLED" "VMID-LIST" "EXCLUDE" "STORAGE" + parse_jobs_cfg /etc/pve/jobs.cfg table + + while IFS=$'\t' read -r all vmids excl pool enabled; do + [ -z "${all:-}" ] && continue + [ "$enabled" = "0" ] && continue + [ "$all" = "1" ] && covered_all=1 + [ -n "$vmids" ] && covered_ids="$covered_ids $(echo "$vmids" | tr ',' ' ')" + [ -n "$excl" ] && excluded_ids="$excluded_ids $(echo "$excl" | tr ',' ' ')" + [ -n "$pool" ] && pool_jobs="$pool_jobs $pool" + done < <(parse_jobs_cfg /etc/pve/jobs.cfg data) +else + note "/etc/pve/jobs.cfg not readable — no coverage data" +fi + +# Per-guest coverage verdict +sub "per-guest coverage" +all_guest_ids="" +if have qm; then all_guest_ids="$all_guest_ids $(qm list 2>/dev/null | awk 'NR>1 {print $1}')"; fi +if have pct; then all_guest_ids="$all_guest_ids $(pct list 2>/dev/null | awk 'NR>1 {print $1}')"; fi + +if [ -n "$all_guest_ids" ]; then + printf '%-6s %-10s %s\n' "ID" "VERDICT" "REASON" + for id in $all_guest_ids; do + verdict="NO"; reason="no job targets this id" + if [ "$covered_all" = "1" ]; then + verdict="YES"; reason="covered by 'all' job" + fi + for c in $covered_ids; do + if [ "$c" = "$id" ]; then verdict="YES"; reason="explicit vmid match"; break; fi + done + for x in $excluded_ids; do + if [ "$x" = "$id" ]; then verdict="NO"; reason="explicitly excluded"; break; fi + done + if [ -n "$pool_jobs" ] && [ "$verdict" = "NO" ]; then + reason="$reason (pool job exists: $pool_jobs — manual audit)" + fi + printf '%-6s %-10s %s\n' "$id" "$verdict" "$reason" + done +else + note "no guests on this node" +fi + +# ------------------------------------------------------------ +# 8. Most-recent dump files per guest (local dump storages) +# ------------------------------------------------------------ +hdr "RECENT BACKUPS ON LOCAL DUMP STORAGES" +if [ -r /etc/pve/storage.cfg ]; then + # Find all storages flagged as dump-capable (content includes 'backup'). + dump_paths=$(awk ' + /^[a-z0-9_-]+: / { stname=$2; path=""; content="" } + /^[[:space:]]+path / { path=$2 } + /^[[:space:]]+content / { content=$0 } + /^$/ { if (path != "" && content ~ /backup/) print path; path=""; content="" } + END { if (path != "" && content ~ /backup/) print path } + ' /etc/pve/storage.cfg) + if [ -z "$dump_paths" ]; then + note "no local dump storages configured (backups may target remote/PBS)" + else + for p in $dump_paths; do + sub "$p/dump/" + if [ -d "$p/dump" ]; then + # Latest actual backup (not .notes sidecar) per VMID. + # Filename pattern: vzdump-{qemu,lxc}---.{vma,tar}.{zst,gz,lzo} + find "$p/dump" -maxdepth 1 -type f \( \ + -name '*.vma.zst' -o -name '*.vma.gz' -o -name '*.vma.lzo' \ + -o -name '*.tar.zst' -o -name '*.tar.gz' -o -name '*.tar.lzo' \ + \) -printf '%T@ %p\n' 2>/dev/null | sort -nr | awk ' + { + path=$2 + # extract vmid from filename (3rd hyphen-delimited field after vzdump-) + fname=path; sub(/.*\//, "", fname) + n=split(fname, a, "-") + id=a[3] + if (!(id in seen)) { + seen[id]=1 + # human date: extract date+time from filename + cmd="date -d @" $1 " +%Y-%m-%d\\ %H:%M" + cmd | getline when + close(cmd) + printf " VMID %-6s %s %s\n", id, when, fname + } + } + ' | sort -k2 + else + note "$p/dump does not exist" + fi + done + fi +fi + +# ------------------------------------------------------------ +# 9. Proxmox Backup Server targets +# ------------------------------------------------------------ +hdr "PBS TARGETS" +if [ -r /etc/pve/storage.cfg ]; then + awk '/^pbs:/ {show=1; print; next} /^[a-z]/ {show=0} show {print}' /etc/pve/storage.cfg +fi +if [ -z "$(awk '/^pbs:/ {print}' /etc/pve/storage.cfg 2>/dev/null)" ]; then + note "no PBS storage configured on this node" +fi + +# ------------------------------------------------------------ +# 10. Replication (cluster-only) +# ------------------------------------------------------------ +hdr "REPLICATION JOBS (pvesr status)" +if have pvesr; then + pvesr status 2>/dev/null | head -40 || note "pvesr status failed (single-node?)" +else + note "pvesr not available" +fi + +# ------------------------------------------------------------ +# 11. Listening ports (quick attack surface glance) +# ------------------------------------------------------------ +hdr "LISTENING PORTS" +if have ss; then + ss -ltn 2>/dev/null | awk 'NR>1 {print $4}' | sort -u +fi + +# ------------------------------------------------------------ +# 12. Subscription + updates +# ------------------------------------------------------------ +hdr "SUBSCRIPTION / UPDATES" +if have pvesubscription; then + pvesubscription get 2>/dev/null | grep -E '^(status|productname|key):' || note "pvesubscription returned nothing" +fi +sub "apt upgradable (top 20)" +apt list --upgradable 2>/dev/null | grep -v '^Listing' | head -20 || note "apt not available" + +hdr "DONE" +echo "Review this output for backup gaps (VERDICT=NO in coverage section)" +echo "and anomalies in storage / PBS / replication sections." diff --git a/servers/esh-pve-nas/proxmox-details.txt b/servers/esh-pve-nas/proxmox-details.txt new file mode 100644 index 0000000..a5631fd --- /dev/null +++ b/servers/esh-pve-nas/proxmox-details.txt @@ -0,0 +1,457 @@ + +===== HOST ===== + +Hostname: esh-nas-pve.esteban.net +Date: 2026-04-20T22:12:59-07:00 +Uptime: up 3 weeks, 6 hours, 4 minutes +PVE: pve-manager/8.4.11/14a32011146091ed (running kernel: 6.8.12-13-pve) +Kernel: 6.8.12-13-pve +Arch: x86_64 + +===== HARDWARE ===== + +CPU model: Intel(R) Xeon(R) W-1250 CPU @ 3.30GHz +CPU cores: 12 +MemTotal: 125.6 GB +MemAvail: 56.4 GB + +===== CLUSTER ===== + +Cluster information +------------------- +Name: esh-pve-cluster +Config Version: 3 +Transport: knet +Secure auth: on + +Quorum information +------------------ +Date: Mon Apr 20 22:13:01 2026 +Quorum provider: corosync_votequorum +Nodes: 2 +Node ID: 0x00000002 +Ring ID: 1.646 +Quorate: Yes + +Votequorum information +---------------------- +Expected votes: 2 +Highest expected: 2 +Total votes: 2 +Quorum: 2 +Flags: Quorate + +Membership information +---------------------- + Nodeid Votes Name +0x00000001 1 10.0.250.35 +0x00000002 1 10.0.50.55 (local) + +===== CLUSTER RESOURCES (pvesh) ===== + +┌───────────────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬───────┬────────────┬────────────┬────────────┬─────────┬───────┬────────┬────────┬────────────┬────────────┬────────────┬────────────────────┬────────────┬────────────┬─────────────┬────────────┬──────┬───────────┬───────────────┬──────┬──────────┬────────────┬──────┐ +│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ +╞═══════════════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪═══════╪════════════╪════════════╪════════════╪═════════╪═══════╪════════╪════════╪════════════╪════════════╪════════════╪════════════════════╪════════════╪════════════╪═════════════╪════════════╪══════╪═══════════╪═══════════════╪══════╪══════════╪════════════╪══════╡ +│ lxc/103 │ lxc │ │ │ 0.00% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.48 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 103 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.41 MiB │ vm-plex │ 7.11 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 105 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/106 │ lxc │ │ │ 0.00% │ 1.07 GiB │ 42.88 GiB │ 16.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 20.52 MiB │ esh-filebot │ 841.20 GiB │ 16.81 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 106 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/107 │ lxc │ │ │ 0.00% │ 7.94 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 236.97 MiB │ vm-jellyfin │ 6.18 GiB │ 23.32 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 107 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ node/esh-nas-pve │ node │ 2 │ │ 0.44% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.22 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ node/pve │ node │ 2 │ │ 3.52% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.52 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 5h │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/100 │ qemu │ │ │ 0.37% │ 0.00 B │ 44.07 GiB │ 186.60 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.10 GiB │ esh-vm-docker │ 33.91 GiB │ 53.17 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 5h │ 100 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/101 │ qemu │ │ │ 0.06% │ 0.00 B │ 384.36 MiB │ 20.09 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.85 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 2w 6d 23h │ 101 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/102 │ qemu │ │ │ 0.01% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 19h 51m │ 102 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/104 │ qemu │ │ │ 0.42% │ 0.00 B │ 864.28 MiB │ 2.30 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.74 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 104 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/108 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 4 │ 32.00 GiB │ 4.00 GiB │ 0.00 B │ pve-backup │ 0.00 B │ 0.00 B │ pve │ │ │ stopped │ │ │ 0 │ 0s │ 108 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ sdn/esh-nas-pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ esh-nas-pve │ │ │ ok │ │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/iso │ storage │ │ iso,vztmpl │ │ 4.53 GiB │ │ │ │ │ │ │ 1.43 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ iso │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/local │ storage │ │ vztmpl,backup,iso │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/nas-tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ nas-tank-vmbu │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/nvme │ storage │ │ images,rootdir │ │ 29.64 GiB │ │ │ │ │ │ │ 899.25 GiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ nvme │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/ssd │ storage │ │ images,rootdir │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/tank │ storage │ │ images,rootdir │ │ 24.58 TiB │ │ │ │ │ │ │ 116.18 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ tank │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/esh-nas │ storage │ │ images,rootdir,snippets,iso,backup,vztmpl │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local │ storage │ │ vztmpl,backup,iso │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 299.45 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ +└───────────────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴───────┴────────────┴────────────┴────────────┴─────────┴───────┴────────┴────────┴────────────┴────────────┴────────────┴────────────────────┴────────────┴────────────┴─────────────┴────────────┴──────┴───────────┴───────────────┴──────┴──────────┴────────────┴──────┘ + +===== VMs (qm list) ===== + + VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID + 104 vm-esh-nas running 4096 128.00 5572 + +===== VM CONFIGS (qm config per id) ===== + + +----- VMID 104 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 2 +description: ## Docker%0AFilezilla +ide2: none,media=cdrom +memory: 4096 +name: vm-esh-nas +net0: virtio=BC:24:11:0A:62:75,bridge=vmbr0,firewall=1 +onboot: 1 +ostype: l26 +scsi0: nvme:vm-104-disk-0,iothread=1,size=128G + +===== LXC CONTAINERS (pct list) ===== + +VMID Status Lock Name +103 running esh-nas +105 running vm-plex +106 running esh-filebot +107 running vm-jellyfin + +===== LXC CONFIGS (pct config per id) ===== + + +----- CTID 103 ----- +cores: 2 +description: # SMB/NFS Shares%0A%0AWe do bind point mounts to the PVE ZFS datasets and share them here.%0A%0AService runs on port 9090, login as root.%0A +features: nesting=1 +hostname: esh-nas +memory: 2048 +mp0: /tank/media,mp=/mnt/media +mp1: /ssd/compose,mp=/mnt/compose +mp10: /nvme/nvme-pvestore,mp=/mnt/nvme-pvestore +mp11: /tank/vmbu,mp=/mnt/tank-vmbu +mp2: /ssd/iso,mp=/mnt/iso +mp3: /tank/backup,mp=/mnt/backup +mp4: /tank/books,mp=/mnt/books +mp5: /tank/documents,mp=/mnt/documents +mp6: /tank/music,mp=/mnt/music +mp7: /tank/share,mp=/mnt/share +mp8: /tank/pvestore,mp=/mnt/pvestore +mp9: /ssd/ssd-pvestore,mp=/mnt/ssd-pvestore +net0: name=eth0,bridge=vmbr0,hwaddr=BC:24:11:F2:31:6D,ip=dhcp,type=veth +onboot: 1 +ostype: debian +rootfs: nvme:subvol-103-disk-0,size=128G +swap: 2048 + +----- CTID 105 ----- +cores: 4 +description:
%0A%0APLEX%0A +features: nesting=1 +hostname: vm-plex +memory: 2048 +mp0: /tank/media,mp=/mnt/media +net0: name=eth0,bridge=vmbr0,hwaddr=BC:24:11:3E:85:6C,ip=dhcp,type=veth +onboot: 1 +ostype: ubuntu +rootfs: nvme:subvol-105-disk-0,size=128G +swap: 512 +tags: + +----- CTID 106 ----- +cores: 4 +features: nesting=1 +hostname: esh-filebot +memory: 2048 +mp0: /tank/media,mp=/mnt/media +mp1: /ssd/compose,mp=/mnt/compose +mp10: /nvme/nvme-pvestore,mp=/mnt/nvme-pvestore +mp2: /ssd/iso,mp=/mnt/iso +mp3: /tank/backup,mp=/mnt/backup +mp4: /tank/books,mp=/mnt/books +mp5: /tank/documents,mp=/mnt/documents +mp6: /tank/music,mp=/mnt/music +mp7: /tank/share,mp=/mnt/share +mp8: /tank/pvestore,mp=/mnt/pvestore +mp9: /ssd/ssd-pvestore,mp=/mnt/ssd-pvestore +net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=BC:24:11:61:C5:5D,ip=dhcp,type=veth +onboot: 1 +ostype: debian +rootfs: nvme:subvol-106-disk-0,size=80G +swap: 2048 + +----- CTID 107 ----- +cores: 4 +description:
%0A%0A # Jellyfin LXC%0A%0APort 8096%0A +features: nesting=1 +hostname: vm-jellyfin +memory: 4096 +mp0: /tank/media,mp=/mnt/media +net0: name=eth0,bridge=vmbr0,hwaddr=BC:24:11:ED:8D:C9,ip=dhcp,type=veth +onboot: 1 +ostype: ubuntu +rootfs: nvme:subvol-107-disk-0,size=40G +swap: 512 +tags: + +===== STORAGE (pvesm status) ===== + +Name Type Status Total Used Available % +esh-nas nfs disabled 0 0 0 N/A +iso dir active 1534048896 4750208 1529298688 0.31% +local dir active 6146608 5039228 774172 81.98% +local-lvm lvmthin disabled 0 0 0 N/A +nas-tank-vmbu dir active 99835018624 1485193984 98349824640 1.49% +nvme zfspool active 942931968 31079804 911852164 3.30% +ssd zfspool active 1804599296 275300532 1529298764 15.26% +tank zfspool active 124745154560 26395329801 98349824758 21.16% +tank-vmbu nfs active 99835019264 1485194240 98349825024 1.49% + +===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== + +dir: local + path /var/lib/vz + content backup,vztmpl,iso + +lvmthin: local-lvm + thinpool data + vgname pve + content rootdir,images + nodes pve + +dir: nas-tank-vmbu + path /tank/vmbu + content backup + nodes esh-nas-pve + prune-backups keep-all=1 + shared 0 + +zfspool: nvme + pool nvme + content rootdir,images + mountpoint /nvme + nodes esh-nas-pve + sparse 1 + +zfspool: ssd + pool ssd + content rootdir,images + mountpoint /ssd + nodes esh-nas-pve + sparse 1 + +zfspool: tank + pool tank + content rootdir,images + mountpoint /tank + nodes esh-nas-pve + sparse 1 + +dir: iso + path /ssd/iso + content vztmpl,iso + nodes esh-nas-pve + prune-backups keep-all=1 + shared 0 + +nfs: esh-nas + export /mnt/pvestore + path /mnt/pve/esh-nas + server 10.0.50.50 + content snippets,iso,images,backup,rootdir,vztmpl + nodes pve + prune-backups keep-all=1 + +nfs: tank-vmbu + export /mnt/tank-vmbu + path /mnt/pve/tank-vmbu + server 10.0.50.50 + content backup + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + + +===== ZFS POOLS (zpool list -v) ===== + +NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT +nvme 928G 29.6G 898G - - 2% 3% 1.00x ONLINE - + mirror-0 928G 29.6G 898G - - 2% 3.19% - ONLINE + nvme-KINGSTON_SNV2S1000G_50026B7686A3DAEA_1 932G - - - - - - - ONLINE + nvme-KINGSTON_SNV2S1000G_50026B7686A3DB27 932G - - - - - - - ONLINE +ssd 1.73T 8.64G 1.73T - - 0% 0% 1.00x ONLINE - + mirror-0 888G 4.33G 884G - - 0% 0.48% - ONLINE + wwn-0x55cd2e4150cd16ab-part1 894G - - - - - - - ONLINE + wwn-0x55cd2e4150d47141-part1 894G - - - - - - - ONLINE + mirror-1 888G 4.31G 884G - - 0% 0.48% - ONLINE + wwn-0x55cd2e4150cd3188-part1 894G - - - - - - - ONLINE + wwn-0x55cd2e4150cd4815-part1 894G - - - - - - - ONLINE +tank 175T 36.9T 138T - - 0% 21% 1.00x ONLINE - + raidz2-0 87.3T 18.2T 69.1T - - 0% 20.9% - ONLINE + wwn-0x5000c500e561ae2b-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500e4dba6d6-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500e4d5a81a-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c90ccf35-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c920ad58-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500e4d6d760-part1 14.6T - - - - - - - ONLINE + raidz2-1 87.3T 18.7T 68.6T - - 0% 21.4% - ONLINE + wwn-0x5000c500c91f6d2b-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c93efefc-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c9014745-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c91e0b1c-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500c9311464-part1 14.6T - - - - - - - ONLINE + wwn-0x5000c500e4d44beb-part1 14.6T - - - - - - - ONLINE + +===== FILESYSTEMS (df -h, local fs only) ===== + +Filesystem Type Size Used Avail Use% Mounted on +/dev/mapper/pve-root ext4 5.9G 4.9G 757M 87% / +efivarfs efivarfs 192K 30K 158K 16% /sys/firmware/efi/efivars +/dev/sdq2 vfat 511M 12M 500M 3% /boot/efi +ssd zfs 1.5T 128K 1.5T 1% /ssd +nvme zfs 870G 128K 870G 1% /nvme +ssd/iso zfs 1.5T 4.6G 1.5T 1% /ssd/iso +ssd/vm zfs 1.5T 128K 1.5T 1% /ssd/vm +ssd/ssd-pvestore zfs 1.5T 128K 1.5T 1% /ssd/ssd-pvestore +nvme/subvol-107-disk-0 zfs 40G 8.0G 33G 20% /nvme/subvol-107-disk-0 +ssd/compose zfs 1.5T 4.1G 1.5T 1% /ssd/compose +nvme/subvol-105-disk-0 zfs 128G 7.9G 121G 7% /nvme/subvol-105-disk-0 +nvme/subvol-106-disk-0 zfs 80G 1.1G 79G 2% /nvme/subvol-106-disk-0 +nvme/subvol-103-disk-0 zfs 128G 808M 128G 1% /nvme/subvol-103-disk-0 +nvme/nvme-pvestore zfs 870G 28M 870G 1% /nvme/nvme-pvestore +nvme/tmp zfs 872G 1.6G 870G 1% /nvme/tmp +nvme/qnap-apps zfs 870G 32M 870G 1% /nvme/qnap-apps +tank zfs 92T 384K 92T 1% /tank +tank/music zfs 92T 256K 92T 1% /tank/music +tank/share zfs 96T 4.0T 92T 5% /tank/share +tank/books zfs 92T 96G 92T 1% /tank/books +tank/media zfs 111T 20T 92T 18% /tank/media +tank/documents zfs 92T 256K 92T 1% /tank/documents +tank/backup zfs 92T 26G 92T 1% /tank/backup +tank/vmbu zfs 93T 1.4T 92T 2% /tank/vmbu +tank/pvestore zfs 92T 2.7G 92T 1% /tank/pvestore +/dev/fuse fuse 128M 32K 128M 1% /etc/pve +10.0.50.50:/mnt/tank-vmbu nfs4 93T 1.4T 92T 2% /mnt/pve/tank-vmbu + +===== MOUNTED NFS / CIFS ===== + +10.0.50.50:/mnt/tank-vmbu /mnt/pve/tank-vmbu nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.0.50.55,local_lock=none,addr=10.0.50.50 0 0 + +===== BACKUP JOBS (/etc/pve/jobs.cfg + /etc/vzdump.conf) ===== + +vzdump: backup-82f43b66-828a + schedule 02:15 + compress zstd + enabled 1 + fleecing 0 + mode snapshot + notes-template {{guestname}} + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + storage tank-vmbu + vmid 100,101,102,103,104,105,106,107 + + +----- vzdump defaults ----- + +===== BACKUP COVERAGE ANALYSIS ===== + +JOB-ID SCHEDULE ALL ENABLED VMID-LIST EXCLUDE STORAGE +backup-82f43b66-828a 02:15 0 1 100,101,102,103,104,105,106,107 - tank-vmbu + +----- per-guest coverage ----- +ID VERDICT REASON +104 YES explicit vmid match +103 YES explicit vmid match +105 YES explicit vmid match +106 YES explicit vmid match +107 YES explicit vmid match + +===== RECENT BACKUPS ON LOCAL DUMP STORAGES ===== + + +----- /var/lib/vz/dump/ ----- + +----- /tank/vmbu/dump/ ----- + VMID 100 2026-04-14 02:20 vzdump-qemu-100-2026_04_14-02_15_00.vma.zst + VMID 101 2026-04-14 02:21 vzdump-qemu-101-2026_04_14-02_20_10.vma.zst + VMID 102 2026-04-12 03:44 vzdump-qemu-102-2026_04_12-03_36_09.vma.zst + VMID 103 2026-04-20 02:15 vzdump-lxc-103-2026_04_20-02_15_00.tar.zst + VMID 104 2026-04-20 02:16 vzdump-qemu-104-2026_04_20-02_15_16.vma.zst + VMID 105 2026-04-20 02:17 vzdump-lxc-105-2026_04_20-02_16_39.tar.zst + VMID 106 2026-04-20 02:18 vzdump-lxc-106-2026_04_20-02_17_55.tar.zst + VMID 107 2026-04-20 02:19 vzdump-lxc-107-2026_04_20-02_18_16.tar.zst + +----- /mnt/pve/esh-nas/dump/ ----- +(/mnt/pve/esh-nas/dump does not exist) + +----- /mnt/pve/tank-vmbu/dump/ ----- + VMID 100 2026-04-14 02:20 vzdump-qemu-100-2026_04_14-02_15_00.vma.zst + VMID 101 2026-04-14 02:21 vzdump-qemu-101-2026_04_14-02_20_10.vma.zst + VMID 102 2026-04-12 03:44 vzdump-qemu-102-2026_04_12-03_36_09.vma.zst + VMID 103 2026-04-20 02:15 vzdump-lxc-103-2026_04_20-02_15_00.tar.zst + VMID 104 2026-04-20 02:16 vzdump-qemu-104-2026_04_20-02_15_16.vma.zst + VMID 105 2026-04-20 02:17 vzdump-lxc-105-2026_04_20-02_16_39.tar.zst + VMID 106 2026-04-20 02:18 vzdump-lxc-106-2026_04_20-02_17_55.tar.zst + VMID 107 2026-04-20 02:19 vzdump-lxc-107-2026_04_20-02_18_16.tar.zst + +===== PBS TARGETS ===== + +(no PBS storage configured on this node) + +===== REPLICATION JOBS (pvesr status) ===== + +JobID Enabled Target LastSync NextSync Duration FailCount State + +===== LISTENING PORTS ===== + +0.0.0.0:111 +0.0.0.0:22 +[::]:111 +[::1]:25 +127.0.0.1:25 +127.0.0.1:85 +[::]:22 +*:3128 +*:8006 + +===== SUBSCRIPTION / UPDATES ===== + +status: notfound + +----- apt upgradable (top 20) ----- +base-files/oldstable 12.4+deb12u13 amd64 [upgradable from: 12.4+deb12u11] +bash/oldstable 5.2.15-2+b10 amd64 [upgradable from: 5.2.15-2+b8] +bind9-dnsutils/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-host/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-libs/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +btrfs-progs/oldstable 6.2-1+deb12u2 amd64 [upgradable from: 6.2-1+deb12u1] +busybox/oldstable 1:1.35.0-4+b7 amd64 [upgradable from: 1:1.35.0-4+b4] +corosync/stable 3.1.10-pve2~bpo12+1 amd64 [upgradable from: 3.1.9-pve1] +criu/oldstable 3.17.1-2+deb12u2 amd64 [upgradable from: 3.17.1-2+deb12u1] +curl/oldstable 7.88.1-10+deb12u14 amd64 [upgradable from: 7.88.1-10+deb12u12] +dirmngr/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +distro-info-data/oldstable 0.58+deb12u6 all [upgradable from: 0.58+deb12u4] +e2fsprogs/oldstable 1.47.0-2+b2 amd64 [upgradable from: 1.47.0-2] +git-man/oldstable 1:2.39.5-0+deb12u3 all [upgradable from: 1:2.39.5-0+deb12u2] +git/oldstable 1:2.39.5-0+deb12u3 amd64 [upgradable from: 1:2.39.5-0+deb12u2] +gnupg-l10n/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] +gnupg-utils/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +gnupg/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] +gnutls-bin/oldstable-security 3.7.9-2+deb12u6 amd64 [upgradable from: 3.7.9-2+deb12u5] +gpg-agent/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] + +===== DONE ===== + +Review this output for backup gaps (VERDICT=NO in coverage section) +and anomalies in storage / PBS / replication sections. diff --git a/servers/esh-pve/proxmox-details.txt b/servers/esh-pve/proxmox-details.txt new file mode 100644 index 0000000..4045c6e --- /dev/null +++ b/servers/esh-pve/proxmox-details.txt @@ -0,0 +1,363 @@ + +===== HOST ===== + +Hostname: pve.esteban.net +Date: 2026-04-20T22:12:52-07:00 +Uptime: up 3 weeks, 5 hours, 57 minutes +PVE: pve-manager/8.4.14/b502d23c55afcba1 (running kernel: 6.8.12-16-pve) +Kernel: 6.8.12-16-pve +Arch: x86_64 + +===== HARDWARE ===== + +CPU model: 13th Gen Intel(R) Core(TM) i9-13900H +CPU cores: 20 +MemTotal: 62.5 GB +MemAvail: 30.2 GB + +===== CLUSTER ===== + +Cluster information +------------------- +Name: esh-pve-cluster +Config Version: 3 +Transport: knet +Secure auth: on + +Quorum information +------------------ +Date: Mon Apr 20 22:12:52 2026 +Quorum provider: corosync_votequorum +Nodes: 2 +Node ID: 0x00000001 +Ring ID: 1.646 +Quorate: Yes + +Votequorum information +---------------------- +Expected votes: 2 +Highest expected: 2 +Total votes: 2 +Quorum: 2 +Flags: Quorate + +Membership information +---------------------- + Nodeid Votes Name +0x00000001 1 10.0.250.35 (local) +0x00000002 1 10.0.50.55 + +===== CLUSTER RESOURCES (pvesh) ===== + +┌───────────────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬───────┬────────────┬────────────┬────────────┬─────────┬───────┬────────┬────────┬────────────┬────────────┬────────────┬────────────────────┬────────────┬────────────┬─────────────┬────────────┬──────┬───────────┬───────────────┬──────┬──────────┬────────────┬──────┐ +│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ +╞═══════════════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪═══════╪════════════╪════════════╪════════════╪═════════╪═══════╪════════╪════════╪════════════╪════════════╪════════════╪════════════════════╪════════════╪════════════╪═════════════╪════════════╪══════╪═══════════╪═══════════════╪══════╪══════════╪════════════╪══════╡ +│ lxc/103 │ lxc │ │ │ 0.00% │ 807.25 MiB │ 541.36 MiB │ 20.00 KiB │ │ │ │ 2 │ 128.00 GiB │ 2.00 GiB │ 40.48 MiB │ esh-nas │ 2.25 TiB │ 103.24 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 103 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/105 │ lxc │ │ │ 0.01% │ 7.83 GiB │ 596.34 GiB │ 8.00 KiB │ │ │ │ 4 │ 128.00 GiB │ 2.00 GiB │ 305.41 MiB │ vm-plex │ 7.11 GiB │ 256.77 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 105 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/106 │ lxc │ │ │ 0.00% │ 1.07 GiB │ 42.88 GiB │ 16.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 20.52 MiB │ esh-filebot │ 841.20 GiB │ 16.81 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 106 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ lxc/107 │ lxc │ │ │ 0.00% │ 7.94 GiB │ 5.88 GiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 4.00 GiB │ 236.97 MiB │ vm-jellyfin │ 6.18 GiB │ 23.32 MiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 107 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ node/esh-nas-pve │ node │ 2 │ │ 0.44% │ 4.81 GiB │ │ │ │ │ │ 12 │ 5.86 GiB │ 125.65 GiB │ 69.22 GiB │ │ │ │ esh-nas-pve │ │ │ online │ │ │ │ 3w 6h │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ node/pve │ node │ 2 │ │ 0.44% │ 17.86 GiB │ │ │ │ p │ │ 20 │ 93.93 GiB │ 62.53 GiB │ 32.29 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 3w 5h │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/100 │ qemu │ │ │ 0.37% │ 0.00 B │ 44.07 GiB │ 186.60 GiB │ │ │ │ 16 │ 256.00 GiB │ 16.00 GiB │ 9.09 GiB │ esh-vm-docker │ 33.91 GiB │ 53.17 GiB │ pve │ │ │ running │ │ │ 0 │ 3w 5h │ 100 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/101 │ qemu │ │ │ 0.06% │ 0.00 B │ 384.36 MiB │ 20.09 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 1.85 GiB │ esh-vm-db │ 1.53 GiB │ 4.81 GiB │ pve │ │ │ running │ │ │ 0 │ 2w 6d 23h │ 101 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/102 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ backup │ 16 │ 256.00 GiB │ 16.00 GiB │ 14.48 GiB │ esh-vm-workstation │ 327.00 B │ 0.00 B │ pve │ │ │ prelaunch │ │ │ 0 │ 6d 19h 50m │ 102 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/104 │ qemu │ │ │ 0.42% │ 0.00 B │ 864.28 MiB │ 2.30 GiB │ │ │ │ 4 │ 128.00 GiB │ 4.00 GiB │ 1.74 GiB │ vm-esh-nas │ 6.45 GiB │ 1.40 GiB │ esh-nas-pve │ │ │ running │ │ │ 0 │ 3w 5h │ 104 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ qemu/108 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 4 │ 32.00 GiB │ 4.00 GiB │ 0.00 B │ pve-backup │ 0.00 B │ 0.00 B │ pve │ │ │ stopped │ │ │ 0 │ 0s │ 108 │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ sdn/esh-nas-pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ esh-nas-pve │ │ │ ok │ │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/iso │ storage │ │ vztmpl,iso │ │ 4.53 GiB │ │ │ │ │ │ │ 1.43 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ iso │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/local │ storage │ │ vztmpl,backup,iso │ │ 4.81 GiB │ │ │ │ │ │ │ 5.86 GiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ local │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/nas-tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ dir │ │ available │ nas-tank-vmbu │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/nvme │ storage │ │ rootdir,images │ │ 29.64 GiB │ │ │ │ │ │ │ 899.25 GiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ nvme │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/ssd │ storage │ │ rootdir,images │ │ 262.55 GiB │ │ │ │ │ │ │ 1.68 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ ssd │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/tank │ storage │ │ rootdir,images │ │ 24.58 TiB │ │ │ │ │ │ │ 116.18 TiB │ │ │ │ │ │ esh-nas-pve │ zfspool │ │ available │ tank │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/esh-nas-pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ esh-nas-pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/esh-nas │ storage │ │ vztmpl,rootdir,snippets,iso,images,backup │ │ 2.70 GiB │ │ │ │ │ │ │ 91.60 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ esh-nas │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local │ storage │ │ vztmpl,backup,iso │ │ 17.86 GiB │ │ │ │ │ │ │ 93.93 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/local-lvm │ storage │ │ images,rootdir │ │ 299.45 GiB │ │ │ │ │ │ │ 794.30 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +├───────────────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼───────┼────────────┼────────────┼────────────┼─────────┼───────┼────────┼────────┼────────────┼────────────┼────────────┼────────────────────┼────────────┼────────────┼─────────────┼────────────┼──────┼───────────┼───────────────┼──────┼──────────┼────────────┼──────┤ +│ storage/pve/tank-vmbu │ storage │ │ backup │ │ 1.38 TiB │ │ │ │ │ │ │ 92.98 TiB │ │ │ │ │ │ pve │ nfs │ │ available │ tank-vmbu │ │ │ │ │ +└───────────────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴───────┴────────────┴────────────┴────────────┴─────────┴───────┴────────┴────────┴────────────┴────────────┴────────────┴────────────────────┴────────────┴────────────┴─────────────┴────────────┴──────┴───────────┴───────────────┴──────┴──────────┴────────────┴──────┘ + +===== VMs (qm list) ===== + + VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID + 100 esh-vm-docker running 16384 256.00 1434 + 101 esh-vm-db running 8192 256.00 76222 + 102 esh-vm-workstation running 16384 256.00 62586 + 108 pve-backup stopped 4096 32.00 0 + +===== VM CONFIGS (qm config per id) ===== + + +----- VMID 100 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +description: After startup, might have to SSH in and restart dockge and traefik in /opt/docker/compose +ide2: none,media=cdrom +memory: 16384 +name: esh-vm-docker +net0: virtio=BC:24:11:13:03:A8,bridge=vmbr0,tag=50 +onboot: 1 +ostype: l26 +scsi0: local-lvm:vm-100-disk-0,discard=on,iothread=1,size=256G + +----- VMID 101 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: none,media=cdrom +memory: 8192 +name: esh-vm-db +net0: virtio=BC:24:11:F3:25:BB,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: esh-nas:101/vm-101-disk-1.qcow2,discard=on,iothread=1,size=256G + +----- VMID 102 ----- +agent: 1 +boot: order=ide0;ide2;net0 +cores: 4 +description: RDP in to start Parsec%0AUsername%3A "Anony FU"%0ANo Password +ide0: local-lvm:vm-102-disk-1,cache=writethrough,discard=on,size=256G +ide2: local:iso/virtio-win-0.1.240.iso,media=cdrom,size=612812K +memory: 16384 +name: esh-vm-workstation +net0: virtio=BC:24:11:FD:B4:8E,bridge=vmbr0,firewall=1,tag=10 +ostype: win11 + +----- VMID 108 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 2 +ide2: local:iso/proxmox-backup-server_4.1-1.iso,media=cdrom,size=1479332K +memory: 4096 +name: pve-backup +net0: virtio=BC:24:11:A6:75:32,bridge=vmbr0,firewall=1 +ostype: l26 +scsi0: local-lvm:vm-108-disk-0,iothread=1,size=32G + +===== LXC CONTAINERS (pct list) ===== + + +===== LXC CONFIGS (pct config per id) ===== + +(no LXC containers found) + +===== STORAGE (pvesm status) ===== + +Name Type Status Total Used Available % +esh-nas nfs active 98352653312 2828288 98349825024 0.00% +iso dir disabled 0 0 0 N/A +local dir active 98497780 18725096 74723136 19.01% +local-lvm lvmthin active 832888832 313999089 518889742 37.70% +nas-tank-vmbu dir disabled 0 0 0 N/A +nvme zfspool disabled 0 0 0 N/A +ssd zfspool disabled 0 0 0 N/A +tank zfspool disabled 0 0 0 N/A +tank-vmbu nfs active 99835019264 1485194240 98349825024 1.49% + +===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== + +dir: local + path /var/lib/vz + content backup,vztmpl,iso + +lvmthin: local-lvm + thinpool data + vgname pve + content rootdir,images + nodes pve + +dir: nas-tank-vmbu + path /tank/vmbu + content backup + nodes esh-nas-pve + prune-backups keep-all=1 + shared 0 + +zfspool: nvme + pool nvme + content rootdir,images + mountpoint /nvme + nodes esh-nas-pve + sparse 1 + +zfspool: ssd + pool ssd + content rootdir,images + mountpoint /ssd + nodes esh-nas-pve + sparse 1 + +zfspool: tank + pool tank + content rootdir,images + mountpoint /tank + nodes esh-nas-pve + sparse 1 + +dir: iso + path /ssd/iso + content vztmpl,iso + nodes esh-nas-pve + prune-backups keep-all=1 + shared 0 + +nfs: esh-nas + export /mnt/pvestore + path /mnt/pve/esh-nas + server 10.0.50.50 + content snippets,iso,images,backup,rootdir,vztmpl + nodes pve + prune-backups keep-all=1 + +nfs: tank-vmbu + export /mnt/tank-vmbu + path /mnt/pve/tank-vmbu + server 10.0.50.50 + content backup + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + + +===== ZFS POOLS (zpool list -v) ===== + +no pools available + +===== FILESYSTEMS (df -h, local fs only) ===== + +Filesystem Type Size Used Avail Use% Mounted on +/dev/mapper/pve-root ext4 94G 18G 72G 21% / +efivarfs efivarfs 192K 131K 57K 70% /sys/firmware/efi/efivars +/dev/nvme0n1p2 vfat 1022M 12M 1011M 2% /boot/efi +/dev/fuse fuse 128M 32K 128M 1% /etc/pve +10.0.50.50:/mnt/pvestore nfs4 92T 2.7G 92T 1% /mnt/pve/esh-nas +10.0.50.50:/mnt/tank-vmbu nfs4 93T 1.4T 92T 2% /mnt/pve/tank-vmbu + +===== MOUNTED NFS / CIFS ===== + +10.0.50.50:/mnt/pvestore /mnt/pve/esh-nas nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.0.250.35,local_lock=none,addr=10.0.50.50 0 0 +10.0.50.50:/mnt/tank-vmbu /mnt/pve/tank-vmbu nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.0.250.35,local_lock=none,addr=10.0.50.50 0 0 + +===== BACKUP JOBS (/etc/pve/jobs.cfg + /etc/vzdump.conf) ===== + +vzdump: backup-82f43b66-828a + schedule 02:15 + compress zstd + enabled 1 + fleecing 0 + mode snapshot + notes-template {{guestname}} + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + storage tank-vmbu + vmid 100,101,102,103,104,105,106,107 + + +----- vzdump defaults ----- + +===== BACKUP COVERAGE ANALYSIS ===== + +JOB-ID SCHEDULE ALL ENABLED VMID-LIST EXCLUDE STORAGE +backup-82f43b66-828a 02:15 0 1 100,101,102,103,104,105,106,107 - tank-vmbu + +----- per-guest coverage ----- +ID VERDICT REASON +100 YES explicit vmid match +101 YES explicit vmid match +102 YES explicit vmid match +108 NO no job targets this id + +===== RECENT BACKUPS ON LOCAL DUMP STORAGES ===== + + +----- /var/lib/vz/dump/ ----- + +----- /tank/vmbu/dump/ ----- + +----- /mnt/pve/esh-nas/dump/ ----- + +----- /mnt/pve/tank-vmbu/dump/ ----- + VMID 100 2026-04-14 02:20 vzdump-qemu-100-2026_04_14-02_15_00.vma.zst + VMID 101 2026-04-14 02:21 vzdump-qemu-101-2026_04_14-02_20_10.vma.zst + VMID 102 2026-04-12 03:44 vzdump-qemu-102-2026_04_12-03_36_09.vma.zst + VMID 103 2026-04-20 02:15 vzdump-lxc-103-2026_04_20-02_15_00.tar.zst + VMID 104 2026-04-20 02:16 vzdump-qemu-104-2026_04_20-02_15_16.vma.zst + VMID 105 2026-04-20 02:17 vzdump-lxc-105-2026_04_20-02_16_39.tar.zst + VMID 106 2026-04-20 02:18 vzdump-lxc-106-2026_04_20-02_17_55.tar.zst + VMID 107 2026-04-20 02:19 vzdump-lxc-107-2026_04_20-02_18_16.tar.zst + +===== PBS TARGETS ===== + +(no PBS storage configured on this node) + +===== REPLICATION JOBS (pvesr status) ===== + +JobID Enabled Target LastSync NextSync Duration FailCount State + +===== LISTENING PORTS ===== + +0.0.0.0:111 +0.0.0.0:22 +[::]:111 +[::1]:25 +127.0.0.1:25 +127.0.0.1:85 +[::]:22 +*:3128 +*:8006 + +===== SUBSCRIPTION / UPDATES ===== + +key: pve8p-1145141919 +productname: YajuuSenpai +status: active + +----- apt upgradable (top 20) ----- +base-files/oldstable 12.4+deb12u13 amd64 [upgradable from: 12.4+deb12u12] +bash/oldstable 5.2.15-2+b10 amd64 [upgradable from: 5.2.15-2+b9] +bind9-dnsutils/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.41-1~deb12u1] +bind9-host/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.41-1~deb12u1] +bind9-libs/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.41-1~deb12u1] +btrfs-progs/oldstable 6.2-1+deb12u2 amd64 [upgradable from: 6.2-1+deb12u1] +busybox/oldstable 1:1.35.0-4+b7 amd64 [upgradable from: 1:1.35.0-4+b5] +corosync/stable 3.1.10-pve2~bpo12+1 amd64 [upgradable from: 3.1.9-pve1] +dirmngr/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] +distro-info-data/oldstable 0.58+deb12u6 all [upgradable from: 0.58+deb12u5] +git-man/oldstable 1:2.39.5-0+deb12u3 all [upgradable from: 1:2.39.5-0+deb12u2] +git/oldstable 1:2.39.5-0+deb12u3 amd64 [upgradable from: 1:2.39.5-0+deb12u2] +gnupg-l10n/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1+deb12u1] +gnupg-utils/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] +gnupg/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1+deb12u1] +gnutls-bin/oldstable-security 3.7.9-2+deb12u6 amd64 [upgradable from: 3.7.9-2+deb12u5] +gpg-agent/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] +gpg-wks-client/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] +gpg-wks-server/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] +gpg/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1+deb12u1] + +===== DONE ===== + +Review this output for backup gaps (VERDICT=NO in coverage section) +and anomalies in storage / PBS / replication sections. diff --git a/servers/nh3-pve/proxmox-details.txt b/servers/nh3-pve/proxmox-details.txt new file mode 100644 index 0000000..e503bca --- /dev/null +++ b/servers/nh3-pve/proxmox-details.txt @@ -0,0 +1,273 @@ + +===== HOST ===== + +Hostname: nh3-vmhost.phasefinal.com +Date: 2026-04-20T22:12:44-07:00 +Uptime: up 5 weeks, 5 days, 15 hours, 1 minute +PVE: pve-manager/8.4.1/2a5fa54a8503f96d (running kernel: 6.8.12-11-pve) +Kernel: 6.8.12-11-pve +Arch: x86_64 + +===== HARDWARE ===== + +CPU model: 13th Gen Intel(R) Core(TM) i9-13900H +CPU cores: 20 +MemTotal: 62.5 GB +MemAvail: 39.7 GB + +===== CLUSTER ===== + +(single-node host (or pvecm returned no cluster info)) + +===== CLUSTER RESOURCES (pvesh) ===== + +┌────────────────────────────────┬─────────┬─────────────┬──────────────────────────────────┬────────┬────────────┬────────────┬────────────┬─────────┬───────┬──────┬────────┬────────────┬───────────┬────────────┬─────────────┬───────────┬───────────┬────────────┬────────────┬──────┬───────────┬─────────────┬──────┬──────────┬───────────┬──────┐ +│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ +╞════════════════════════════════╪═════════╪═════════════╪══════════════════════════════════╪════════╪════════════╪════════════╪════════════╪═════════╪═══════╪══════╪════════╪════════════╪═══════════╪════════════╪═════════════╪═══════════╪═══════════╪════════════╪════════════╪══════╪═══════════╪═════════════╪══════╪══════════╪═══════════╪══════╡ +│ lxc/103 │ lxc │ │ │ 0.00% │ 830.62 MiB │ 464.69 MiB │ 0.00 B │ │ │ │ 4 │ 40.00 GiB │ 2.00 GiB │ 56.72 MiB │ nh3-wg │ 1.58 GiB │ 5.93 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 103 │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ node/nh3-vmhost │ node │ 2 │ │ 9.16% │ 6.16 GiB │ │ │ │ p │ │ 20 │ 855.73 GiB │ 62.53 GiB │ 22.82 GiB │ │ │ │ nh3-vmhost │ │ │ online │ │ │ │ 5w 5d 15h │ │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/100 │ qemu │ │ │ 0.56% │ 0.00 B │ 961.29 MiB │ 15.22 GiB │ │ │ │ 8 │ 128.00 GiB │ 8.00 GiB │ 3.98 GiB │ nh3-docker1 │ 3.46 GiB │ 4.95 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 100 │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/101 │ qemu │ │ │ 0.02% │ 0.00 B │ 180.83 MiB │ 1.31 GiB │ │ │ │ 8 │ 256.00 GiB │ 2.00 GiB │ 750.68 MiB │ nh3-ansible │ 1.18 GiB │ 3.45 MiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 5w 5d 15h │ 101 │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/102 │ qemu │ │ │ 22.25% │ 0.00 B │ 41.57 GiB │ 169.22 GiB │ │ │ │ 8 │ 250.00 GiB │ 8.00 GiB │ 4.79 GiB │ nh3-dev │ 20.55 GiB │ 29.55 GiB │ nh3-vmhost │ │ │ running │ │ │ 0 │ 2w 3d 11h │ 102 │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/104 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 8 │ 120.00 GiB │ 8.00 GiB │ 0.00 B │ nh3-laser │ 0.00 B │ 0.00 B │ nh3-vmhost │ │ │ stopped │ │ │ 0 │ 0s │ 104 │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ sdn/nh3-vmhost/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ nh3-vmhost │ │ │ ok │ │ │ │ │ │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/nh3-vmhost/local │ storage │ │ backup,iso,vztmpl │ │ 863.62 MiB │ │ │ │ │ │ │ 850.41 GiB │ │ │ │ │ │ nh3-vmhost │ dir │ │ available │ local │ │ │ │ │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/nh3-vmhost/local-zfs │ storage │ │ images,rootdir │ │ 65.85 GiB │ │ │ │ │ │ │ 915.42 GiB │ │ │ │ │ │ nh3-vmhost │ zfspool │ │ available │ local-zfs │ │ │ │ │ +├────────────────────────────────┼─────────┼─────────────┼──────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼───────────┼────────────┼─────────────┼───────────┼───────────┼────────────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/nh3-vmhost/pfi-nh3-nas │ storage │ │ images,vztmpl,rootdir,backup,iso │ │ 26.44 TiB │ │ │ │ │ │ │ 41.87 TiB │ │ │ │ │ │ nh3-vmhost │ nfs │ │ available │ pfi-nh3-nas │ │ │ │ │ +└────────────────────────────────┴─────────┴─────────────┴──────────────────────────────────┴────────┴────────────┴────────────┴────────────┴─────────┴───────┴──────┴────────┴────────────┴───────────┴────────────┴─────────────┴───────────┴───────────┴────────────┴────────────┴──────┴───────────┴─────────────┴──────┴──────────┴───────────┴──────┘ + +===== VMs (qm list) ===== + + VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID + 100 nh3-docker1 running 8192 128.00 1512 + 101 nh3-ansible running 2048 256.00 1741 + 102 nh3-dev running 8192 250.00 3912921 + 104 nh3-laser stopped 8192 120.00 0 + +===== VM CONFIGS (qm config per id) ===== + + +----- VMID 100 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: none,media=cdrom +memory: 8192 +name: nh3-docker1 +net0: virtio=BC:24:11:86:C7:F3,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: local-zfs:vm-100-disk-0,iothread=1,size=128G + +----- VMID 101 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-12.5.0-amd64-netinst.iso,media=cdrom,size=629M +memory: 2048 +name: nh3-ansible +net0: virtio=BC:24:11:27:A1:73,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: local-zfs:vm-101-disk-0,iothread=1,size=256G + +----- VMID 102 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-12.5.0-amd64-netinst.iso,media=cdrom,size=629M +memory: 8192 +name: nh3-dev +net0: virtio=BC:24:11:59:87:13,bridge=vmbr0,firewall=1,tag=10 +onboot: 1 +ostype: l26 +scsi0: local-zfs:vm-102-disk-0,iothread=1,size=250G + +----- VMID 104 ----- +agent: 1,fstrim_cloned_disks=1 +boot: order=ide0;ide2;net0 +cores: 4 +ide0: local-zfs:vm-104-disk-1,size=120G +ide2: pfi-nh3-nas:iso/virtio-win-0.1.285.iso,media=cdrom,size=771138K +memory: 8192 +name: nh3-laser +net0: virtio=BC:24:11:A0:14:DF,bridge=vmbr0,tag=50 +ostype: win11 + +===== LXC CONTAINERS (pct list) ===== + +VMID Status Lock Name +103 running nh3-wg + +===== LXC CONFIGS (pct config per id) ===== + + +----- CTID 103 ----- +cores: 4 +features: nesting=1 +hostname: nh3-wg +memory: 2048 +net0: name=eth0,bridge=vmbr0,hwaddr=BC:24:11:F5:90:F2,ip=dhcp,tag=50,type=veth +onboot: 1 +ostype: ubuntu +rootfs: local-zfs:subvol-103-disk-0,size=40G +swap: 2048 +unprivileged: 1 + +===== STORAGE (pvesm status) ===== + +Name Type Status Total Used Available % +local dir active 891722496 884352 890838144 0.10% +local-zfs zfspool active 959889604 69051432 890838172 7.19% +pfi-nh3-nas nfs active 44962267904 28385127296 16577140608 63.13% + +===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== + +dir: local + path /var/lib/vz + content iso,backup,vztmpl + +zfspool: local-zfs + pool rpool/data + content images,rootdir + sparse 1 + +nfs: pfi-nh3-nas + export /volume1/VMStorage + path /mnt/pve/pfi-nh3-nas + server 10.100.50.50 + content backup,vztmpl,rootdir,images,iso + options vers=3 + prune-backups keep-all=1 + + +===== ZFS POOLS (zpool list -v) ===== + +NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT +rpool 952G 72.9G 879G - - 6% 7% 1.00x ONLINE - + nvme-eui.00000000000000000026b7382d4a82a5-part3 953G 72.9G 879G - - 6% 7.66% - ONLINE + +===== FILESYSTEMS (df -h, local fs only) ===== + +Filesystem Type Size Used Avail Use% Mounted on +rpool/ROOT/pve-1 zfs 856G 6.2G 850G 1% / +efivarfs efivarfs 192K 127K 61K 68% /sys/firmware/efi/efivars +rpool/var-lib-vz zfs 851G 864M 850G 1% /var/lib/vz +rpool zfs 850G 128K 850G 1% /rpool +rpool/ROOT zfs 850G 128K 850G 1% /rpool/ROOT +rpool/data zfs 850G 128K 850G 1% /rpool/data +rpool/data/subvol-103-disk-0 zfs 40G 831M 40G 3% /rpool/data/subvol-103-disk-0 +/dev/fuse fuse 128M 20K 128M 1% /etc/pve +10.100.50.50:/volume1/VMStorage nfs 42T 27T 16T 64% /mnt/pve/pfi-nh3-nas + +===== MOUNTED NFS / CIFS ===== + +10.100.50.50:/volume1/VMStorage /mnt/pve/pfi-nh3-nas nfs rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=10.100.50.50,mountvers=3,mountport=892,mountproto=udp,local_lock=none,addr=10.100.50.50 0 0 + +===== BACKUP JOBS (/etc/pve/jobs.cfg + /etc/vzdump.conf) ===== + +vzdump: backup-5d8f1221-8f71 + schedule 21:00 + all 1 + compress zstd + enabled 1 + fleecing 0 + mailnotification always + mode snapshot + notes-template {{guestname}} + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + storage pfi-nh3-nas + + +----- vzdump defaults ----- + +===== BACKUP COVERAGE ANALYSIS ===== + +JOB-ID SCHEDULE ALL ENABLED VMID-LIST EXCLUDE STORAGE +backup-5d8f1221-8f71 21:00 1 1 - - pfi-nh3-nas + +----- per-guest coverage ----- +ID VERDICT REASON +100 YES covered by 'all' job +101 YES covered by 'all' job +102 YES covered by 'all' job +104 YES covered by 'all' job +103 YES covered by 'all' job + +===== RECENT BACKUPS ON LOCAL DUMP STORAGES ===== + + +----- /var/lib/vz/dump/ ----- + +----- /mnt/pve/pfi-nh3-nas/dump/ ----- + VMID 100 2026-04-20 21:01 vzdump-qemu-100-2026_04_20-21_00_02.vma.zst + VMID 101 2026-04-20 21:02 vzdump-qemu-101-2026_04_20-21_01_07.vma.zst + VMID 102 2026-04-20 21:09 vzdump-qemu-102-2026_04_20-21_02_29.vma.zst + VMID 103 2026-04-20 21:09 vzdump-lxc-103-2026_04_20-21_09_23.tar.zst + VMID 104 2026-04-20 21:16 vzdump-qemu-104-2026_04_20-21_09_40.vma.zst + +===== PBS TARGETS ===== + +(no PBS storage configured on this node) + +===== REPLICATION JOBS (pvesr status) ===== + +JobID Enabled Target LastSync NextSync Duration FailCount State + +===== LISTENING PORTS ===== + +0.0.0.0:111 +0.0.0.0:22 +0.0.0.0:37105 +0.0.0.0:59691 +[::]:111 +[::1]:25 +127.0.0.1:25 +127.0.0.1:85 +[::]:22 +*:3128 +[::]:43035 +[::]:45287 +*:8006 + +===== SUBSCRIPTION / UPDATES ===== + +key: pve8p-1145141919 +productname: YajuuSenpai +status: active + +----- apt upgradable (top 20) ----- +base-files/oldstable 12.4+deb12u13 amd64 [upgradable from: 12.4+deb12u11] +bash/oldstable 5.2.15-2+b10 amd64 [upgradable from: 5.2.15-2+b8] +bind9-dnsutils/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-host/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-libs/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +btrfs-progs/oldstable 6.2-1+deb12u2 amd64 [upgradable from: 6.2-1+deb12u1] +busybox/oldstable 1:1.35.0-4+b7 amd64 [upgradable from: 1:1.35.0-4+b4] +corosync/stable 3.1.10-pve2~bpo12+1 amd64 [upgradable from: 3.1.9-pve1] +criu/oldstable 3.17.1-2+deb12u2 amd64 [upgradable from: 3.17.1-2+deb12u1] +curl/oldstable 7.88.1-10+deb12u14 amd64 [upgradable from: 7.88.1-10+deb12u12] +dirmngr/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +distro-info-data/oldstable 0.58+deb12u6 all [upgradable from: 0.58+deb12u4] +e2fsprogs/oldstable 1.47.0-2+b2 amd64 [upgradable from: 1.47.0-2] +gnupg-l10n/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] +gnupg-utils/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +gnupg/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] +gnutls-bin/oldstable-security 3.7.9-2+deb12u6 amd64 [upgradable from: 3.7.9-2+deb12u4] +gpg-agent/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +gpg-wks-client/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +gpg-wks-server/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] + +===== DONE ===== + +Review this output for backup gaps (VERDICT=NO in coverage section) +and anomalies in storage / PBS / replication sections. diff --git a/servers/pfi-pve/proxmox-details.txt b/servers/pfi-pve/proxmox-details.txt new file mode 100644 index 0000000..6871584 --- /dev/null +++ b/servers/pfi-pve/proxmox-details.txt @@ -0,0 +1,452 @@ + +===== HOST ===== + +Hostname: pve.phasefinal.com +Date: 2026-04-20T22:12:20-07:00 +Uptime: up 34 weeks, 2 days, 8 hours, 54 minutes +PVE: pve-manager/8.3.5/dac3aa88bac3f300 (running kernel: 6.8.12-8-pve) +Kernel: 6.8.12-8-pve +Arch: x86_64 + +===== HARDWARE ===== + +CPU model: Intel(R) Xeon(R) Silver 4310 CPU @ 2.10GHz +CPU cores: 48 +MemTotal: 188.1 GB +MemAvail: 39.8 GB + +===== CLUSTER ===== + +(single-node host (or pvecm returned no cluster info)) + +===== CLUSTER RESOURCES (pvesh) ===== + +┌─────────────────────────┬─────────┬─────────────┬───────────────────────────────────────────┬────────┬────────────┬────────────┬────────────┬─────────┬───────┬──────┬────────┬────────────┬────────────┬────────────┬─────────────────┬────────────┬────────────┬──────┬────────────┬──────┬───────────┬─────────────┬──────┬──────────┬───────────┬──────┐ +│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ name │ netin │ netout │ node │ plugintype │ pool │ status │ storage │ tags │ template │ uptime │ vmid │ +╞═════════════════════════╪═════════╪═════════════╪═══════════════════════════════════════════╪════════╪════════════╪════════════╪════════════╪═════════╪═══════╪══════╪════════╪════════════╪════════════╪════════════╪═════════════════╪════════════╪════════════╪══════╪════════════╪══════╪═══════════╪═════════════╪══════╪══════════╪═══════════╪══════╡ +│ lxc/109 │ lxc │ │ │ 0.00% │ 811.75 MiB │ 621.95 MiB │ 625.77 MiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 72.56 MiB │ ana-nas │ 74.49 GiB │ 22.26 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 1d 9h │ 109 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ lxc/112 │ lxc │ │ │ 0.00% │ 812.62 MiB │ 329.95 MiB │ 836.00 KiB │ │ │ │ 4 │ 80.00 GiB │ 2.00 GiB │ 28.55 MiB │ ana-filebot │ 15.03 GiB │ 7.11 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 4h │ 112 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ lxc/113 │ lxc │ │ │ 0.01% │ 622.12 MiB │ 488.52 MiB │ 2.28 MiB │ │ │ │ 4 │ 8.00 GiB │ 2.00 GiB │ 44.26 MiB │ ana-wg │ 16.88 GiB │ 1.77 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 4h │ 113 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ node/pve │ node │ 2 │ │ 5.26% │ 29.71 GiB │ │ │ │ p │ │ 48 │ 64.05 GiB │ 188.10 GiB │ 150.55 GiB │ │ │ │ pve │ │ │ online │ │ │ │ 34w 2d 8h │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/100 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 4 │ 80.00 GiB │ 8.00 GiB │ 0.00 B │ PFI-ANA-TRUENAS │ 0.00 B │ 0.00 B │ pve │ │ │ stopped │ │ │ 0 │ 0s │ 100 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/101 │ qemu │ │ │ 1.22% │ 0.00 B │ 26.68 GiB │ 1.08 TiB │ │ │ │ 12 │ 240.00 GiB │ 24.00 GiB │ 16.64 GiB │ PFI-ANA-DC │ 15.03 GiB │ 77.91 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 101 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/102 │ qemu │ │ │ 12.83% │ 0.00 B │ 16.10 GiB │ 240.82 GiB │ │ │ │ 8 │ 250.00 GiB │ 16.00 GiB │ 14.14 GiB │ PFI-ANA-Docker │ 258.16 GiB │ 2.56 TiB │ pve │ │ │ running │ │ │ 0 │ 2w 6d 23h │ 102 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/103 │ qemu │ │ │ 0.95% │ 0.00 B │ 306.26 GiB │ 665.47 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 6.38 GiB │ PFI-SlaveBot │ 37.00 GiB │ 674.35 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 103 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/104 │ qemu │ │ │ 0.78% │ 0.00 B │ 1.67 GiB │ 111.78 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 2.56 GiB │ PFI-Mongo │ 29.20 GiB │ 43.65 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 104 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/105 │ qemu │ │ │ 0.26% │ 0.00 B │ 510.30 MiB │ 20.04 GiB │ │ │ │ 16 │ 80.00 GiB │ 8.00 GiB │ 1.29 GiB │ PFI-Postgres │ 783.20 GiB │ 858.89 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 105 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/106 │ qemu │ │ │ 0.54% │ 0.00 B │ 203.46 MiB │ 12.00 GiB │ │ │ │ 8 │ 256.00 GiB │ 2.00 GiB │ 1.47 GiB │ PFI-Tailscale │ 15.20 GiB │ 315.17 MiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 106 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/107 │ qemu │ │ │ 5.54% │ 0.00 B │ 38.72 TiB │ 316.20 GiB │ │ │ │ 8 │ 256.00 GiB │ 8.00 GiB │ 7.50 GiB │ PFI-Pteradactyl │ 28.20 GiB │ 3.13 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 107 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/108 │ qemu │ │ │ 0.00% │ 0.00 B │ 0.00 B │ 0.00 B │ │ │ │ 8 │ 120.00 GiB │ 8.00 GiB │ 0.00 B │ PFI-ANA--DEV │ 0.00 B │ 0.00 B │ pve │ │ │ stopped │ │ │ 0 │ 0s │ 108 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/110 │ qemu │ │ │ 0.53% │ 0.00 B │ 196.53 TiB │ 10.64 TiB │ │ │ │ 16 │ 250.00 GiB │ 4.00 GiB │ 1.29 GiB │ PFI-ANA-Webhost │ 17.53 GiB │ 12.19 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 110 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ qemu/111 │ qemu │ │ │ 0.64% │ 0.00 B │ 3.74 GiB │ 361.90 GiB │ │ │ │ 16 │ 256.00 GiB │ 8.00 GiB │ 3.45 GiB │ pfi-tacticalrmm │ 44.45 GiB │ 44.08 GiB │ pve │ │ │ running │ │ │ 0 │ 34w 2d 8h │ 111 │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ sdn/pve/localnetwork │ sdn │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ pve │ │ │ ok │ │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/pve/local │ storage │ │ backup,iso,vztmpl │ │ 29.71 GiB │ │ │ │ │ │ │ 64.05 GiB │ │ │ │ │ │ pve │ dir │ │ available │ local │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/pve/local-lvm │ storage │ │ rootdir,images │ │ 0.00 B │ │ │ │ │ │ │ 130.22 GiB │ │ │ │ │ │ pve │ lvmthin │ │ available │ local-lvm │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/pve/ospool │ storage │ │ rootdir,images │ │ 568.00 GiB │ │ │ │ │ │ │ 10.78 TiB │ │ │ │ │ │ pve │ zfspool │ │ available │ ospool │ │ │ │ │ +├─────────────────────────┼─────────┼─────────────┼───────────────────────────────────────────┼────────┼────────────┼────────────┼────────────┼─────────┼───────┼──────┼────────┼────────────┼────────────┼────────────┼─────────────────┼────────────┼────────────┼──────┼────────────┼──────┼───────────┼─────────────┼──────┼──────────┼───────────┼──────┤ +│ storage/pve/pve-truenas │ storage │ │ vztmpl,rootdir,backup,images,snippets,iso │ │ 2.33 TiB │ │ │ │ │ │ │ 21.68 TiB │ │ │ │ │ │ pve │ dir │ │ available │ pve-truenas │ │ │ │ │ +└─────────────────────────┴─────────┴─────────────┴───────────────────────────────────────────┴────────┴────────────┴────────────┴────────────┴─────────┴───────┴──────┴────────┴────────────┴────────────┴────────────┴─────────────────┴────────────┴────────────┴──────┴────────────┴──────┴───────────┴─────────────┴──────┴──────────┴───────────┴──────┘ + +===== VMs (qm list) ===== + + VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID + 100 PFI-ANA-TRUENAS stopped 8196 80.00 0 + 101 PFI-ANA-DC running 24576 240.00 5372 + 102 PFI-ANA-Docker running 16384 250.00 2249394 + 103 PFI-SlaveBot running 8192 256.00 7274 + 104 PFI-Mongo running 8196 256.00 4190 + 105 PFI-Postgres running 8196 80.00 4688 + 106 PFI-Tailscale running 2048 256.00 7464 + 107 PFI-Pteradactyl running 8192 256.00 7652 + 108 PFI-ANA--DEV stopped 8192 120.00 0 + 110 PFI-ANA-Webhost running 4096 250.00 6460 + 111 pfi-tacticalrmm running 8192 256.00 6253 + +===== VM CONFIGS (qm config per id) ===== + + +----- VMID 100 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 2 +ide2: local:iso/TrueNAS-SCALE-22.12.1.iso,media=cdrom,size=1697330K +memory: 8196 +name: PFI-ANA-TRUENAS +net0: virtio=9A:90:79:7A:86:87,bridge=vmbr0,firewall=1,tag=50 +ostype: l26 +scsi0: ospool:vm-100-disk-0,iothread=1,size=80G + +----- VMID 101 ----- +agent: 1 +boot: order=scsi0;net0;ide0;scsi1 +cores: 6 +memory: 24576 +name: PFI-ANA-DC +net0: e1000=CE:C8:D7:FE:32:40,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: win11 +scsi0: ospool:vm-101-disk-0,iothread=1,size=240G +scsi1: local:iso/virtio-win-0.1.229.iso,media=cdrom,size=522284K + +----- VMID 102 ----- +agent: 1 +boot: order=scsi0;net0;scsi1 +cores: 4 +memory: 16384 +name: PFI-ANA-Docker +net0: virtio=BA:AF:E7:E9:79:23,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-102-disk-0,iothread=1,size=250G +scsi1: none,media=cdrom + +----- VMID 103 ----- +agent: 1 +boot: order=ide0;net0;scsi0 +cores: 4 +ide0: ospool:vm-103-disk-0,size=256G +memory: 8192 +name: PFI-SlaveBot +net0: e1000=CE:F0:49:C9:03:70,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: win10 +scsi0: none,media=cdrom + +----- VMID 104 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +description: ## Connection String%0A%0Amongodb%3A//10.250.50.81%3A27017/ +ide2: none,media=cdrom +memory: 8196 +name: PFI-Mongo +net0: virtio=32:57:90:B2:66:61,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-104-disk-0,iothread=1,size=256G + +----- VMID 105 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-11.6.0-amd64-netinst.iso,media=cdrom,size=388M +memory: 8196 +name: PFI-Postgres +net0: virtio=C2:1F:CC:71:66:D0,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-105-disk-0,iothread=1,size=80G + +----- VMID 106 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-12.2.0-amd64-netinst.iso,media=cdrom,size=628M +memory: 2048 +name: PFI-Tailscale +net0: virtio=BC:24:11:D7:E9:52,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-106-disk-0,iothread=1,size=256G + +----- VMID 107 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-11.6.0-amd64-netinst.iso,media=cdrom,size=388M +memory: 8192 +name: PFI-Pteradactyl +net0: virtio=CA:44:37:8A:BF:E0,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-107-disk-0,iothread=1,size=256G + +----- VMID 108 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-11.6.0-amd64-netinst.iso,media=cdrom,size=388M +memory: 8192 +name: PFI-ANA--DEV +net0: virtio=F2:EF:82:2C:AF:90,bridge=vmbr0,firewall=1,tag=50 +ostype: l26 +scsi0: ospool:vm-108-disk-0,iothread=1,size=120G + +----- VMID 110 ----- +agent: 1 +balloon: 1024 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: local:iso/debian-11.6.0-amd64-netinst.iso,media=cdrom,size=388M +memory: 4096 +name: PFI-ANA-Webhost +net0: virtio=E6:F9:3A:C9:61:2A,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-110-disk-1,iothread=1,size=250G + +----- VMID 111 ----- +agent: 1 +boot: order=scsi0;ide2;net0 +cores: 4 +ide2: none,media=cdrom +memory: 8192 +name: pfi-tacticalrmm +net0: virtio=BA:FA:65:F6:46:25,bridge=vmbr0,firewall=1,tag=50 +onboot: 1 +ostype: l26 +scsi0: ospool:vm-111-disk-0,iothread=1,size=256G + +===== LXC CONTAINERS (pct list) ===== + +VMID Status Lock Name +109 running ana-nas +112 running ana-filebot +113 running ana-wg + +===== LXC CONFIGS (pct config per id) ===== + + +----- CTID 109 ----- +cores: 4 +hostname: ana-nas +memory: 2048 +mp0: /ospool/backup/,mp=/mnt/ospool-backup +mp1: /NASPool/backupStore,mp=/mnt/backup +mp2: /NASPool/db,mp=/mnt/db +mp3: /NASPool/docker,mp=/mnt/docker +mp4: /NASPool/pve-VMStorage,mp=/mnt/pve-VMStorage +mp5: /NASPool/webdav,mp=/mnt/webdav +net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=BC:24:11:C3:71:B5,ip=dhcp,tag=50,type=veth +ostype: debian +rootfs: ospool:subvol-109-disk-0,size=80G +swap: 2048 + +----- CTID 112 ----- +cores: 4 +hostname: ana-filebot +memory: 2048 +mp0: /ospool/backup/,mp=/mnt/ospool-backup +mp1: /NASPool/backupStore,mp=/mnt/backup +mp2: /NASPool/db,mp=/mnt/db +mp3: /NASPool/docker,mp=/mnt/docker +mp4: /NASPool/pve-VMStorage,mp=/mnt/pve-VMStorage +mp5: /NASPool/webdav,mp=/mnt/webdav +net0: name=eth0,bridge=vmbr0,firewall=1,hwaddr=BC:24:11:C0:35:77,ip=dhcp,tag=50,type=veth +ostype: debian +rootfs: ospool:subvol-112-disk-0,size=80G +swap: 2048 + +----- CTID 113 ----- +cores: 4 +features: nesting=1 +hostname: ana-wg +memory: 2048 +net0: name=eth0,bridge=vmbr0,hwaddr=BC:24:11:D7:E4:B7,ip=dhcp,tag=50,type=veth +ostype: debian +rootfs: ospool:subvol-113-disk-0,size=8G +swap: 2048 +unprivileged: 1 + +===== STORAGE (pvesm status) ===== + +Name Type Status Total Used Available % +local dir active 67157384 31151980 32548176 46.39% +local-lvm lvmthin active 136544256 0 136544256 0.00% +ospool zfspool active 11576279040 595589636 10980689404 5.14% +pve-truenas dir active 23283137152 2499788288 20783348864 10.74% + +===== DATASTORE CONFIG (/etc/pve/storage.cfg) ===== + +dir: local + path /var/lib/vz + content iso,vztmpl,backup + +lvmthin: local-lvm + thinpool data + vgname pve + content rootdir,images + +zfspool: ospool + pool ospool + content images,rootdir + mountpoint /ospool + sparse 1 + +dir: pve-truenas + path /NASPool/pve-VMStorage + content images,rootdir,iso,backup,vztmpl,snippets + prune-backups keep-daily=1,keep-last=3,keep-monthly=1,keep-weekly=1,keep-yearly=1 + shared 0 + + +===== ZFS POOLS (zpool list -v) ===== + +NAME SIZE ALLOC FREE CKPOINT EXPANDSZ FRAG CAP DEDUP HEALTH ALTROOT +NASPool 21.8T 2.33T 19.5T - - 0% 10% 1.00x DEGRADED - + mirror-0 5.45T 584G 4.88T - - 0% 10.4% - ONLINE + 94636621-0b53-48d2-822a-7faedb9c0564 5.46T - - - - - - - ONLINE + e2d298dc-4eb9-4439-8077-2ecfb80d3a80 5.46T - - - - - - - ONLINE + mirror-1 5.45T 566G 4.90T - - 0% 10.1% - ONLINE + 007912e2-94bf-4d6c-8bb0-559b85272376 5.46T - - - - - - - ONLINE + 2b52afd9-dfae-4f87-9991-253945cb2602 5.46T - - - - - - - ONLINE + mirror-2 5.45T 617G 4.85T - - 0% 11.0% - DEGRADED + 30d320e8-0853-4d5a-949d-43d27787340f 5.46T - - - - - - - ONLINE + 12919489166929965838 - - - - - - - - UNAVAIL + mirror-3 5.45T 620G 4.85T - - 0% 11.1% - DEGRADED + 4aab7556-462e-4e1a-a8ad-5e22ea7d85e9 5.46T - - - - - - - ONLINE + 15297137012818397568 - - - - - - - - UNAVAIL +ospool 10.9T 568G 10.4T - - 16% 5% 1.00x ONLINE - + mirror-0 5.45T 284G 5.18T - - 16% 5.08% - ONLINE + scsi-350000398d8822a19 5.46T - - - - - - - ONLINE + scsi-3500003982803add1 5.46T - - - - - - - ONLINE + mirror-1 5.45T 284G 5.18T - - 16% 5.08% - ONLINE + scsi-3500003980842ee15 5.46T - - - - - - - ONLINE + scsi-350000397c81b6195 5.46T - - - - - - - ONLINE + +===== FILESYSTEMS (df -h, local fs only) ===== + +Filesystem Type Size Used Avail Use% Mounted on +/dev/mapper/pve-root ext4 65G 30G 32G 49% / +efivarfs efivarfs 304K 212K 88K 71% /sys/firmware/efi/efivars +/dev/sdk2 vfat 1022M 356K 1022M 1% /boot/efi +ospool zfs 11T 128K 11T 1% /ospool +NASPool zfs 20T 128K 20T 1% /NASPool +NASPool/db zfs 20T 282M 20T 1% /NASPool/db +NASPool/docker zfs 20T 384K 20T 1% /NASPool/docker +ospool/subvol-113-disk-0 zfs 8.0G 623M 7.4G 8% /ospool/subvol-113-disk-0 +ospool/subvol-109-disk-0 zfs 80G 812M 80G 1% /ospool/subvol-109-disk-0 +ospool/subvol-112-disk-0 zfs 80G 813M 80G 1% /ospool/subvol-112-disk-0 +ospool/backup zfs 11T 240M 11T 1% /ospool/backup +NASPool/backupStore zfs 20T 1.1G 20T 1% /NASPool/backupStore +NASPool/pve-VMStorage zfs 22T 2.4T 20T 11% /NASPool/pve-VMStorage +NASPool/webdav zfs 20T 256K 20T 1% /NASPool/webdav +/dev/fuse fuse 128M 24K 128M 1% /etc/pve + +===== MOUNTED NFS / CIFS ===== + + +===== BACKUP JOBS (/etc/pve/jobs.cfg + /etc/vzdump.conf) ===== + +vzdump: backup-4b911ca7-92df + schedule 03:00 + compress zstd + enabled 1 + fleecing 0 + mode snapshot + notes-template {{guestname}} + prune-backups keep-daily=1,keep-last=5,keep-monthly=1,keep-weekly=1,keep-yearly=1 + storage pve-truenas + vmid 111,101,102,103,104,105,108,110 + + +----- vzdump defaults ----- + +===== BACKUP COVERAGE ANALYSIS ===== + +JOB-ID SCHEDULE ALL ENABLED VMID-LIST EXCLUDE STORAGE +backup-4b911ca7-92df 03:00 0 1 111,101,102,103,104,105,108,110 - pve-truenas + +----- per-guest coverage ----- +ID VERDICT REASON +100 NO no job targets this id +101 YES explicit vmid match +102 YES explicit vmid match +103 YES explicit vmid match +104 YES explicit vmid match +105 YES explicit vmid match +106 NO no job targets this id +107 NO no job targets this id +108 YES explicit vmid match +110 YES explicit vmid match +111 YES explicit vmid match +109 NO no job targets this id +112 NO no job targets this id +113 NO no job targets this id + +===== RECENT BACKUPS ON LOCAL DUMP STORAGES ===== + + +----- /var/lib/vz/dump/ ----- + +----- /NASPool/pve-VMStorage/dump/ ----- + VMID 101 2026-04-20 03:06 vzdump-qemu-101-2026_04_20-03_00_10.vma.zst + VMID 102 2026-04-20 03:37 vzdump-qemu-102-2026_04_20-03_06_09.vma.zst + VMID 103 2026-04-20 03:47 vzdump-qemu-103-2026_04_20-03_37_24.vma.zst + VMID 104 2026-04-20 03:52 vzdump-qemu-104-2026_04_20-03_47_58.vma.zst + VMID 105 2026-04-20 03:55 vzdump-qemu-105-2026_04_20-03_52_37.vma.zst + VMID 106 2024-05-31 03:29 vzdump-lxc-106-2024_05_31-03_28_22.tar.zst + VMID 108 2026-04-20 03:57 vzdump-qemu-108-2026_04_20-03_55_19.vma.zst + VMID 110 2026-04-20 04:24 vzdump-qemu-110-2026_04_20-03_57_33.vma.zst + VMID 111 2026-04-20 04:31 vzdump-qemu-111-2026_04_20-04_24_12.vma.zst + +===== PBS TARGETS ===== + +(no PBS storage configured on this node) + +===== REPLICATION JOBS (pvesr status) ===== + +JobID Enabled Target LastSync NextSync Duration FailCount State + +===== LISTENING PORTS ===== + +0.0.0.0:111 +0.0.0.0:22 +[::]:111 +[::1]:25 +127.0.0.1:25 +127.0.0.1:85 +[::]:22 +*:3128 +*:8006 + +===== SUBSCRIPTION / UPDATES ===== + +key: pve8p-1145141919 +productname: YajuuSenpai +status: active + +----- apt upgradable (top 20) ----- +base-files/oldstable 12.4+deb12u13 amd64 [upgradable from: 12.4+deb12u10] +bash/oldstable 5.2.15-2+b10 amd64 [upgradable from: 5.2.15-2+b7] +bind9-dnsutils/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-host/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +bind9-libs/oldstable-security 1:9.18.47-1~deb12u1 amd64 [upgradable from: 1:9.18.33-1~deb12u2] +btrfs-progs/oldstable 6.2-1+deb12u2 amd64 [upgradable from: 6.2-1+deb12u1] +busybox/oldstable 1:1.35.0-4+b7 amd64 [upgradable from: 1:1.35.0-4+b3] +ca-certificates/oldstable,oldstable-updates 20230311+deb12u1 all [upgradable from: 20230311] +corosync/stable 3.1.10-pve2~bpo12+1 amd64 [upgradable from: 3.1.7-pve3] +criu/oldstable 3.17.1-2+deb12u2 amd64 [upgradable from: 3.17.1-2+deb12u1] +curl/oldstable 7.88.1-10+deb12u14 amd64 [upgradable from: 7.88.1-10+deb12u12] +debian-archive-keyring/oldstable 2023.3+deb12u2 all [upgradable from: 2023.3+deb12u1] +dirmngr/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +distro-info-data/oldstable 0.58+deb12u6 all [upgradable from: 0.58+deb12u3] +e2fsprogs/oldstable 1.47.0-2+b2 amd64 [upgradable from: 1.47.0-2] +fonts-glyphicons-halflings/oldstable 1.009~3.4.1+dfsg-3+deb12u1 all [upgradable from: 1.009~3.4.1+dfsg-3] +gcc-12-base/oldstable 12.2.0-14+deb12u1 amd64 [upgradable from: 12.2.0-14] +gnupg-l10n/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] +gnupg-utils/oldstable 2.2.40-1.1+deb12u2 amd64 [upgradable from: 2.2.40-1.1] +gnupg/oldstable 2.2.40-1.1+deb12u2 all [upgradable from: 2.2.40-1.1] + +===== DONE ===== + +Review this output for backup gaps (VERDICT=NO in coverage section) +and anomalies in storage / PBS / replication sections.