Document mixed scenario with LB and OVS over VXLAN

This patch adds a recommendation to the deployment examples in the docs
on how to configure the udp_dstport option of the Linux bridge agent to
support mixed environments, where nodes with the Linuxbridge agent must
communicate over VXLAN tunnels with nodes with the OVS agent

Change-Id: I6e9bc70ba2bcd5432bee1ddcf16f449421befd90
This commit is contained in:
Miguel Lavalle 2018-04-17 17:08:47 -05:00 committed by Brian Haley
parent d015e84a6d
commit 3a17b61eec
2 changed files with 30 additions and 0 deletions

View File

@ -96,6 +96,16 @@ Network node 2
[securitygroup]
firewall_driver = iptables
.. warning::
By default, Linux uses UDP port ``8472`` for VXLAN tunnel traffic. This
default value doesn't follow the IANA standard, which assigned UDP port
``4789`` for VXLAN communication. As a consequence, if this node is part
of a mixed deployment, where nodes with both OVS and Linux bridge must
communicate over VXLAN tunnels, it is recommended that a line containing
``udp_dstport = 4789`` be added to the [vxlan] section of all the Linux
bridge agents. OVS follows the IANA standard.
Replace ``PROVIDER_INTERFACE`` with the name of the underlying interface
that handles provider networks. For example, ``eth1``.

View File

@ -124,6 +124,16 @@ Network node
[securitygroup]
firewall_driver = iptables
.. warning::
By default, Linux uses UDP port ``8472`` for VXLAN tunnel traffic. This
default value doesn't follow the IANA standard, which assigned UDP port
``4789`` for VXLAN communication. As a consequence, if this node is part
of a mixed deployment, where nodes with both OVS and Linux bridge must
communicate over VXLAN tunnels, it is recommended that a line containing
``udp_dstport = 4789`` be added to the [vxlan] section of all the Linux
bridge agents. OVS follows the IANA standard.
Replace ``PROVIDER_INTERFACE`` with the name of the underlying interface
that handles provider networks. For example, ``eth1``.
@ -161,6 +171,16 @@ Compute nodes
l2_population = True
local_ip = OVERLAY_INTERFACE_IP_ADDRESS
.. warning::
By default, Linux uses UDP port ``8472`` for VXLAN tunnel traffic. This
default value doesn't follow the IANA standard, which assigned UDP port
``4789`` for VXLAN communication. As a consequence, if this node is part
of a mixed deployment, where nodes with both OVS and Linux bridge must
communicate over VXLAN tunnels, it is recommended that a line containing
``udp_dstport = 4789`` be added to the [vxlan] section of all the Linux
bridge agents. OVS follows the IANA standard.
Replace ``OVERLAY_INTERFACE_IP_ADDRESS`` with the IP address of the
interface that handles VXLAN overlays for self-service networks.