Routing east-west traffic between instances
In the network world, east-west traffic is traditionally defined as server-to-server traffic. In Neutron, as it relates to distributed virtual routers, east-west traffic is traffic between instances in different networks owned by the same project. In Neutron's legacy routing model, traffic between different networks traverses a virtual router located on a centralized network node. With DVR, the same traffic avoids the network node and is routed directly between the compute nodes hosting the virtual machine instances.
Reviewing the topology
Logically speaking, a distributed virtual router is a single router object connecting two or more project networks, as shown in the following diagram:

In the following example, a distributed virtual router named MyDistributedRouter
has been created and connected to two project networks: BLUE_NET
and RED_NET
. Virtual machine instances in each network use their respective default gateways to route traffic to the other...