From ee667c2c2dfb7d115b7448934aacce6ed6b84e3e Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 18 Jun 2026 14:09:36 +0000 Subject: [PATCH] =?UTF-8?q?docs(readme):=20corriger=20la=20topologie=20du?= =?UTF-8?q?=20switch=20(Freebox=20+=20storage-01=20=C3=972=20VLAN)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le switch GS308EV4 est le point central : y sont branchés la Freebox (VLAN 1) et storage-01 par ses DEUX interfaces (enp4s0 port 2/VLAN 1 et enp6s0f3u2c2 port 7/VLAN 10). storage-01 fait passerelle/NAT entre VLAN 1 (domestique) et VLAN 10 (cluster). Le diagramme précédent montrait à tort Freebox → storage-01 → switch en série. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_017Qjq5jHiqNepnobJpHYpCa --- README.md | 49 ++++++++++++++++++++++--------------------------- 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index c88045c..698f206 100644 --- a/README.md +++ b/README.md @@ -20,35 +20,30 @@ L'ensemble est géré en Infrastructure-as-Code : **Ansible** pour les hôtes Al ``` Internet - │ - [ Freebox ] 192.168.1.254 - │ - ┌────────────────┐ - │ storage-01 │ AlmaLinux 9.7 - │ 192.168.10.1 │ Gateway + NAT + DNS - │ │ NFS · PostgreSQL - │ │ Qdrant · LiteLLM · Hermes - └───────┬────────┘ - │ WAN enp4s0 → port 2 (VLAN 1) · LAN enp6s0f3u2c2 → port 7 (VLAN 10) - ┌───────┴─────────────┐ - │ Switch Netgear │ 8 ports Gigabit · managé Plus - │ GS308EV4 │ VLAN 802.1Q (VLAN 1 WAN / VLAN 10 cluster) - └───────┬─────────────┘ - │ LAN cluster (192.168.10.0/24) - ┌───────────┼───────────┐ - │ │ │ - [ compute-01 ] [ compute-02 ] [ compute-03 ] Talos Linux - 192.168.10.11 192.168.10.12 192.168.10.13 Kubernetes - control-plane worker worker - - ┌───────────┘ - │ - [ gpu-01 ] AlmaLinux 9.7 - 192.168.10.20 llama-server (ROCm) - AMD RX 6700XT 12GB + │ + [ Freebox ] 192.168.1.254 + │ VLAN 1 + ┌───────────────┴────────────────────────────┐ + │ Switch Netgear GS308EV4 │ 8 ports Gigabit · managé Plus + │ VLAN 802.1Q (VLAN 1 + VLAN 10) │ + └───┬───┬─────────────────────────────┬───────┘ + VLAN 1 │ │ VLAN 10 │ VLAN 10 (cluster 192.168.10.0/24) + enp4s0 │ │ enp6s0f3u2c2 ┌──────────┴───────────────────────┐ + (port 2) │ │ (port 7) │ │ + ┌──┴───┴──┐ [ compute-01 ] [ compute-02 ] [ compute-03 ] [ gpu-01 ] + │storage-01│ 192.168.10.11 192.168.10.12 192.168.10.13 192.168.10.20 + │AlmaLinux │ control-plane worker worker llama-server + │Gateway· │ Talos Linux · Kubernetes AMD RX 6700XT + │NAT·DNS· │ + │NFS·PG· │ + │Qdrant· │ + │LiteLLM· │ + │Hermes │ + └──────────┘ + storage-01 : .1.200 (WAN, VLAN 1) + .10.1 (LAN cluster, VLAN 10) — passerelle / NAT entre les 2 VLAN ``` -> **Réseau** — toutes les machines sont reliées par un switch **Netgear GS308EV4** (8 ports Gigabit, managé *Plus*, VLAN 802.1Q). storage-01 y est raccordée par **deux liens** : WAN `enp4s0` (port 2, VLAN 1 → Freebox `192.168.1.254`) et LAN `enp6s0f3u2c2` (port 7, VLAN 10 → cluster `192.168.10.0/24`). compute-01/02/03 et gpu-01 sont sur la VLAN 10. +> **Réseau** — tout est câblé sur un switch **Netgear GS308EV4** (8 ports Gigabit, managé *Plus*, VLAN 802.1Q). Y sont branchés : la **Freebox** (VLAN 1) et **storage-01 par ses deux interfaces** — `enp4s0` (port 2, VLAN 1, `192.168.1.200`) et `enp6s0f3u2c2` (port 7, VLAN 10, `192.168.10.1`). storage-01 fait **passerelle / NAT** entre la VLAN 1 (LAN domestique `192.168.1.0/24`, côté Freebox) et la VLAN 10 (cluster `192.168.10.0/24`), où se trouvent compute-01/02/03 et gpu-01. ---