Default the Linuxbridge agent to enabling VXLAN

Linux kernels from 3.7 and up have supported VXLAN with Linuxbridge.
I think it's time we default to enabling this support in the
Linuxbridge agent in Neutron as well.

DocImpact

Change-Id: I8a99c973b4816e3a2845cdb8abd71d6250bc4800
This commit is contained in:
Kyle Mestery 2015-03-03 14:57:31 +00:00
parent e63aecd55f
commit b7a56fd1b4
2 changed files with 3 additions and 3 deletions

View File

@ -34,8 +34,8 @@
[vxlan]
# (BoolOpt) enable VXLAN on the agent
# VXLAN support can be enabled when agent is managed by ml2 plugin using
# linuxbridge mechanism driver. Useless if set while using linuxbridge plugin.
# enable_vxlan = False
# linuxbridge mechanism driver.
# enable_vxlan = True
#
# (IntOpt) use specific TTL for vxlan interface protocol packets
# ttl =

View File

@ -32,7 +32,7 @@ vlan_opts = [
]
vxlan_opts = [
cfg.BoolOpt('enable_vxlan', default=False,
cfg.BoolOpt('enable_vxlan', default=True,
help=_("Enable VXLAN on the agent. Can be enabled when "
"agent is managed by ml2 plugin using linuxbridge "
"mechanism driver")),