Browse code

Merge "DVR-Enable ARP Responder when DVR and L2pop is enabled"

Zuul authored on 2019/08/22 02:34:47
Showing 2 changed files
... ...
@@ -251,6 +251,7 @@ function configure_neutron_new {
251 251
             if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
252 252
                 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
253 253
                 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
254
+                iniset $NEUTRON_CORE_PLUGIN_CONF agent arp_responder True
254 255
             fi
255 256
         fi
256 257
 
... ...
@@ -147,6 +147,7 @@ function neutron_plugin_configure_service {
147 147
         populate_ml2_config /$Q_PLUGIN_CONF_FILE agent l2_population=True
148 148
         populate_ml2_config /$Q_PLUGIN_CONF_FILE agent tunnel_types=vxlan
149 149
         populate_ml2_config /$Q_PLUGIN_CONF_FILE agent enable_distributed_routing=True
150
+        populate_ml2_config /$Q_PLUGIN_CONF_FILE agent arp_responder=True
150 151
     fi
151 152
 }
152 153