diff --git a/ansible/roles/neutron/templates/linuxbridge_agent.ini.j2 b/ansible/roles/neutron/templates/linuxbridge_agent.ini.j2 index b2f2d8daed..60c5923dda 100644 --- a/ansible/roles/neutron/templates/linuxbridge_agent.ini.j2 +++ b/ansible/roles/neutron/templates/linuxbridge_agent.ini.j2 @@ -12,4 +12,3 @@ firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver [vxlan] l2_population = true local_ip = {{ tunnel_interface_address }} -arp_responder = true diff --git a/releasenotes/notes/fix-linuxbridge-arp_responder-28068f7fe41e4e4d.yaml b/releasenotes/notes/fix-linuxbridge-arp_responder-28068f7fe41e4e4d.yaml new file mode 100644 index 0000000000..5112a70466 --- /dev/null +++ b/releasenotes/notes/fix-linuxbridge-arp_responder-28068f7fe41e4e4d.yaml @@ -0,0 +1,8 @@ +--- +fixes: + - | + Reverts the arp_responder option setting to the default ('False') for the + LinuxBridge agent, as this is known to cause problems with l2_population + as well as other issues such as not being fully compatible with the + allowed-address-pairs extension. + `LP#1892776 `__