c24a280bee
Change-Id: Ifcedcc72307732393a92a702a7567addc043b5b2
22 lines
657 B
Django/Jinja
22 lines
657 B
Django/Jinja
[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 %}
|