Browse code

DVR-Enable ARP Responder when DVR and L2pop is enabled

This patch enables ARP Responder with DVR routers along with
l2pop in devstack.

Related-Bug: #1774459

Change-Id: I82f628c32f6e38c2419b6ffe90d9f9adf96777b1

Swaminathan Vasudevan authored on 2019/05/03 05:45:46
Showing 2 changed files
... ...
@@ -237,6 +237,7 @@ function configure_neutron_new {
237 237
             if [[ "$NEUTRON_DISTRIBUTED_ROUTING" = "True" ]]; then
238 238
                 iniset $NEUTRON_CORE_PLUGIN_CONF agent l2_population True
239 239
                 iniset $NEUTRON_CORE_PLUGIN_CONF agent enable_distributed_routing True
240
+                iniset $NEUTRON_CORE_PLUGIN_CONF agent arp_responder True
240 241
             fi
241 242
         fi
242 243
 
... ...
@@ -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