Add fwaas support to vsphere by vmware-nsx plugin

Add fwaas support to vsphere by vmware-nsx plugin in neutron.

Change-Id: Ie80830f97701d322a3610815f6abd63c523a96d4
Partially-implements: blueprint kolla-ansible-support-vsphere
This commit is contained in:
shaofeng_cheng 2017-07-15 17:03:53 +08:00
parent 2cb46ffbae
commit 4eda91e229

View File

@ -1,8 +1,12 @@
{% if enable_neutron_fwaas | bool %}
[fwaas]
enabled = True
{% if neutron_plugin_agent == 'vmware_nsxv' %}
driver = vmware_nsxv_edge
{% else %}
driver = iptables
[service_providers]
service_provider = FIREWALL:Iptables:neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver:default
[fwaas]
driver = iptables
enabled = True
{% endif %}
{% endif %}