Update docs/tech_docs/linux/vxlan.md

This commit is contained in:
2024-04-12 12:25:02 +00:00
parent c42d1df73b
commit 9780cf3879

View File

@@ -83,4 +83,20 @@ ping 192.168.1.2
### Conclusion
VXLAN provides a robust method for extending Layer 2 networks over Layer 3 infrastructures. When properly configured, it enables flexible, scalable, and secure network designs across geographically dispersed locations. This setup is especially beneficial in environments where virtualization and containerization are heavily used, allowing seamless connectivity across various hosts and clusters.
VXLAN provides a robust method for extending Layer 2 networks over Layer 3 infrastructures. When properly configured, it enables flexible, scalable, and secure network designs across geographically dispersed locations. This setup is especially beneficial in environments where virtualization and containerization are heavily used, allowing seamless connectivity across various hosts and clusters.
```mermaid
graph TD;
subgraph Site A
A_OPNsense[OPNsense Gateway A<br>192.168.10.1] --> A_Debian[Debian A<br>10.0.0.1<br>VXLAN ID 100]
end
subgraph Site B
B_OPNsense[OPNsense Gateway B<br>192.168.20.1] --> B_Debian[Debian B<br>10.0.0.2<br>VXLAN ID 100]
end
subgraph Site C
C_OPNsense[OPNsense Gateway C<br>192.168.30.1] --> C_Debian[Debian C<br>10.0.0.3<br>VXLAN ID 100]
end
A_Debian --- B_Debian
B_Debian --- C_Debian
C_Debian --- A_Debian
```