Merge "use proxy mode on vxlan interface only when l2-population is activated"
This commit is contained in:
commit
18bb94239d
@ -147,8 +147,8 @@ class IPWrapper(SubProcessBase):
|
||||
device.link.set_netns(self.namespace)
|
||||
|
||||
def add_vxlan(self, name, vni, group=None, dev=None, ttl=None, tos=None,
|
||||
local=None, port=None):
|
||||
cmd = ['add', name, 'type', 'vxlan', 'id', vni, 'proxy']
|
||||
local=None, port=None, proxy=False):
|
||||
cmd = ['add', name, 'type', 'vxlan', 'id', vni]
|
||||
if group:
|
||||
cmd.extend(['group', group])
|
||||
if dev:
|
||||
@ -159,6 +159,8 @@ class IPWrapper(SubProcessBase):
|
||||
cmd.extend(['tos', tos])
|
||||
if local:
|
||||
cmd.extend(['local', local])
|
||||
if proxy:
|
||||
cmd.append('proxy')
|
||||
# tuple: min,max
|
||||
if port and len(port) == 2:
|
||||
cmd.extend(['port', port[0], port[1]])
|
||||
|
@ -256,6 +256,8 @@ class LinuxBridgeManager:
|
||||
args['ttl'] = cfg.CONF.VXLAN.ttl
|
||||
if cfg.CONF.VXLAN.tos:
|
||||
args['tos'] = cfg.CONF.VXLAN.tos
|
||||
if cfg.CONF.VXLAN.l2_population:
|
||||
args['proxy'] = True
|
||||
int_vxlan = self.ip.add_vxlan(interface, segmentation_id, **args)
|
||||
int_vxlan.link.set_up()
|
||||
LOG.debug(_("Done creating vxlan interface %s"), interface)
|
||||
|
@ -361,6 +361,13 @@ class TestLinuxBridgeManager(base.BaseTestCase):
|
||||
add_vxlan_fn.assert_called_with("vxlan-" + seg_id, seg_id,
|
||||
group="224.0.0.1",
|
||||
dev=self.lbm.local_int)
|
||||
cfg.CONF.set_override('l2_population', 'True', 'VXLAN')
|
||||
self.assertEqual(self.lbm.ensure_vxlan(seg_id),
|
||||
"vxlan-" + seg_id)
|
||||
add_vxlan_fn.assert_called_with("vxlan-" + seg_id, seg_id,
|
||||
group="224.0.0.1",
|
||||
dev=self.lbm.local_int,
|
||||
proxy=True)
|
||||
|
||||
def test_update_interface_ip_details(self):
|
||||
gwdict = dict(gateway='1.1.1.1',
|
||||
|
Loading…
Reference in New Issue
Block a user