Update tech_docs/lab/ipv6_lab.md

This commit is contained in:
2025-07-09 00:34:28 -05:00
parent 5af56c5c1b
commit 1c6f8031a8

View File

@@ -3,27 +3,27 @@ graph TD
%% Host and Bridges %% Host and Bridges
subgraph Host_Machine_LXD subgraph Host_Machine_LXD
H0[LXD Host] H0[LXD Host]
H0 --> B1[br-lan: IPv4/IPv6 LAN] H0 --> B1[br-lan]
H0 --> B2[br-wan: Simulated WAN] H0 --> B2[br-wan]
end end
%% LAN Zone %% LAN Zone
subgraph LAN_Zone subgraph LAN_Zone
B1 --> R1[Router: VyOS or Ubuntu with radvd/DHCPv6/NAT64] B1 --> R1[Router: VyOS or Ubuntu]
R1 --> C1[Client1: IPv6-only] R1 --> C1[Client1: IPv6-only]
R1 --> C2[Client2: Dual-Stack] R1 --> C2[Client2: Dual-Stack]
R1 --> C3[Client3: IPv4-only] R1 --> C3[Client3: IPv4-only]
R1 --> S1[WebServer: Dual-Stack NGINX + DNS] R1 --> S1[WebServer: Dual-Stack]
end end
%% WAN Zone %% WAN Zone
subgraph WAN_Zone subgraph WAN_Zone
B2 --> ISP[ISP Router (simulated)] B2 --> R2[ISP Router]
ISP --> EXT[External IPv6 Service or Tunnel Broker] R2 --> EXT[External IPv6 Service]
end end
%% Logical Routing %% Logical Routing
R1 --> ISP R1 --> R2
C1 --> R1 C1 --> R1
C2 --> R1 C2 --> R1
C3 --> R1 C3 --> R1