From 0797e82aca0a408838a49c1a269948e83d978b1c Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 7 Mar 2023 23:11:28 +0900 Subject: [PATCH] ovs-agent: Use appropriate IP for OpenFlow connection ... instead of using the default IPv4 loopback address. Depends-on: https://review.opendev.org/876736 Change-Id: I82bc6f80368b3e44477f65bc60040114cf1bfb2e --- manifests/neutron.pp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/manifests/neutron.pp b/manifests/neutron.pp index 74a5c35d9..a33e1c553 100644 --- a/manifests/neutron.pp +++ b/manifests/neutron.pp @@ -247,11 +247,12 @@ class openstack_integration::neutron ( case $driver { 'openvswitch': { class { 'neutron::agents::ml2::ovs': - local_ip => $::openstack_integration::config::host, - tunnel_types => ['vxlan'], - bridge_mappings => ['external:br-ex'], - manage_vswitch => false, - firewall_driver => 'iptables_hybrid', + local_ip => $::openstack_integration::config::host, + tunnel_types => ['vxlan'], + bridge_mappings => ['external:br-ex'], + manage_vswitch => false, + firewall_driver => 'iptables_hybrid', + of_listen_address => $::openstack_integration::config::host, } } 'ovn': {