...
| PlantUML Macro |
|---|
@startuml Network Topology
skinparam rectangle {
BackgroundColor WhiteSmoke
BorderColor Black
}
' --- Variant 1: two separate switches ---
package "Вариант 1 — Раздельные коммутаторы" {
rectangle "SMG200" as smg
rectangle "Коммутатор\n(VLAN_local)" as sw_local
rectangle "Коммутатор\n(VLAN_global)" as sw_global
rectangle "Локальная сеть" as lan
rectangle "Провайдер" as isp
smg -[hidden]down- sw_local
smg -[hidden]down- sw_global
smg -->|tagged\nVLAN_local| sw_local
smg -->|tagged\nVLAN_global| sw_global
sw_local -->|access\nVLAN_local| lan
sw_global -->|access\nVLAN_global| isp
} |
...