Files
88_247/README.md
Timmy 40945cf625 docs: 初始化 PVECluster (192.168.88.0/24) 文件庫
仿照 timmy/42_38 結構建立 7 份文件,涵蓋 3 節點 PVE 8.4.16 叢集
(pve-000/.73、pve-001/.249、pve-002/.247)的架構、API、儲存、
備份與服務分類。

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-15 16:02:48 +08:00

60 lines
2.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 88_247 — PVECluster 基礎建設文件庫
管理與記錄 PVECluster3 節點 Proxmox VE 叢集192.168.88.0/24的架構、API 操作指南及相關自動化工具。
## 叢集簡介
| 項目 | 值 |
|---|---|
| 叢集名稱 | PVECluster |
| PVE 版本 | 8.4.16Kernel 6.8.12-18-pve |
| 節點 | pve-000 (192.168.88.73)、pve-001 (.249)、pve-002 (.247) |
| 硬體 | 異質配置i3 / Xeon E3 / Xeon 24C |
| VM/容器 | 2521 running / 4 stopped |
| 主要儲存 | Synology iSCSI 共享 LVM 4.5 TB`pve-iscsi-3t` |
| 備份 | Proxmox Backup Server (192.168.88.1691 TB) |
## 文件索引
| 文件 | 說明 |
|---|---|
| [QUICKSTART.md](QUICKSTART.md) | 快速上手連線、API 呼叫、常用操作 |
| [API.md](API.md) | Proxmox VE API 完整參考手冊 |
| [PVE_API.md](PVE_API.md) | API 認證/Token 速查 |
| [PVECluster_Architecture.md](PVECluster_Architecture.md) | 叢集架構詳細文件(硬體/網路/儲存/VM 清單) |
| [SUMMARY.md](SUMMARY.md) | 叢集狀態摘要與服務一覽 |
| [CLAUDE.md](CLAUDE.md) | Claude Code 工作指引 |
## 網路拓撲
```
HiNet PPPoE 210.242.157.197
[VM 115 OpenWRT] ─── vmbr2 (WAN) / vmbr1 192.168.77.1 (LAN)
└── CT104, CT125Tailscale/Headscale 子網)
192.168.88.1 (上游 GW) ─── vmbr0 (192.168.88.0/24)
├── pve-000 (.73) 4C/32GB 16 guests
├── pve-001 (.249) 24C/132GB 9 guests
└── pve-002 (.247) 4C/16GB (備援節點,目前無工作負載)
```
## 快速存取
```bash
# SSH 連線root 密碼25915525
ssh root@192.168.88.247 # pve-002本文件主要連線點
ssh root@192.168.88.73 # pve-000
ssh root@192.168.88.249 # pve-001
# Web UI
https://192.168.88.247:8006
# API 呼叫
curl -sk https://192.168.88.247:8006/api2/json/cluster/resources \
-H "Authorization: PVEAPIToken=root@pam!claude=17e96169-a32f-4e2d-951e-859c77770306"
```