...

/

The Theory of Docker Overlay Networking

The Theory of Docker Overlay Networking

Let’s learn 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 ...