66d50cdbd7
This adds ability to configure local_ip service plugin and local_ip OVS agent extension. Needed to enable corresponding API/CLI and scenario tests. Related-Bug: #1930200 Change-Id: Ia9269b7a73aef116cf8c5bc6ca0a1cca9deaa056
10 lines
257 B
Plaintext
10 lines
257 B
Plaintext
function configure_local_ip {
|
|
neutron_service_plugin_class_add "local_ip"
|
|
plugin_agent_add_l2_agent_extension "local_ip"
|
|
}
|
|
|
|
function configure_local_ip_static {
|
|
configure_local_ip
|
|
iniset /$NEUTRON_CORE_PLUGIN_CONF local_ip static_nat True
|
|
}
|