Search⌘ K

The Theory of Docker Overlay Networking

Learn about the theory of Docker overlay networking.

We'll cover the following...

First and foremost, Docker uses VXLAN tunnels to create virtual layer 2 overlay networks. So, let’s do a quick VXLAN primer.

VXLAN primer

At the highest level, Docker uses VXLANs to create layer 2 networks on top of existing layer 3 infrastructure. That’s a lot of jargon. That means you can create simple networks on top of complex networks. The ...