Skip to content
Snippets Groups Projects
linuxbridge_agent.ini.j2 657 B
[agent]
{% if neutron_agent_extensions %}
extensions = {{ neutron_agent_extensions|map(attribute='name')|join(',') }}
{% endif %}

[linux_bridge]
physical_interface_mappings = physnet1:{{ neutron_external_interface }}

[securitygroup]
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver

[vxlan]
l2_population = true
local_ip = {{ tunnel_interface_address }}

{% if enable_neutron_sriov | bool %}
[FDB]
# Allows instances using sriov ports to communicate with instances that do not.
# See https://docs.openstack.org/neutron/latest/admin/config-sriov.html
shared_physical_device_mappings = {{ neutron_sriov_physnets }}
{% endif %}