add homelab network architecture

This commit is contained in:
Kim, Jimin 2025-05-21 20:47:13 +09:00
parent 42b5d47967
commit ca463e3465
Signed by: pomp
GPG key ID: D3932F82A0667A3B

38
homelab/README.md Normal file
View file

@ -0,0 +1,38 @@
# Homelab
## Network Architecture
```mermaid
flowchart TD
isp["ISP"]
modem["Modem"]
router["124.58.75.253
Router
ASUS RT-AX53U + OpenWrt"]
switch["Switch
TP-LINK TL-SG108S"]
neil["192.168.1.138
Neil
Beelink EQ12 Pro"]
yuki["192.168.1.124
Yuki
Beelink MINI S12 PRO"]
ryan["192.168.1.XXX
Ryan
Chatreey AN2P"]
isp i2m@==>|" -Gbps (CAT ??) "| modem
modem m2r@==>|" 0.5Gbps (CAT 5e) "| router
router r2s@==>|" 1Gbps (CAT 5e) "| switch
subgraph "                                                                                                                                192.168.1.100"
switch s21@==>|" 1Gbps (CAT 5e) "| neil
switch s22@==>|" 1Gbps (CAT ??) "| yuki
switch s23@==>|" 1Gbps (CAT ??) "| ryan
end
i2m@{ animate: true }
m2r@{ animate: true }
r2s@{ animate: true }
s21@{ animate: true }
s22@{ animate: true }
s23@{ animate: true }
```