5d22ea34c0
Openvswitch_db is not necessary to listener api_address. Just let openvswitch_db listener localhost to avoid security issues. Change-Id: If4912d90abae933a1ed9e2d14336b89b7c7179dd Closes-Bug: #1712767
26 lines
674 B
Django/Jinja
26 lines
674 B
Django/Jinja
# dhcp_agent.ini
|
|
[DEFAULT]
|
|
dnsmasq_config_file = /etc/neutron/dnsmasq.conf
|
|
enable_isolated_metadata = true
|
|
force_metadata = true
|
|
dnsmasq_dns_servers = 8.8.8.8,8.8.4.4
|
|
|
|
{% if neutron_plugin_agent == 'vmware_dvs' %}
|
|
ovs_integration_bridge = {{ neutron_bridge_name }}
|
|
enable_metadata_network = True
|
|
dhcp_driver = vmware_nsx.plugins.dvs.dhcp.Dnsmasq
|
|
use_namespaces = True
|
|
ovs_use_veth = False
|
|
{% if vmware_dvs_dhcp_override_mac != '' %}
|
|
dhcp_override_mac = {{ vmware_dvs_dhcp_override_mac }}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if enable_opendaylight | bool %}
|
|
interface_driver = openvswitch
|
|
{% endif %}
|
|
|
|
[ovs]
|
|
ovsdb_interface = native
|
|
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|