]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Expand arp_responder help text
authorRyan Moats <rmoats@us.ibm.com>
Mon, 14 Jul 2014 20:29:34 +0000 (16:29 -0400)
committerRyan Moats <rmoats@us.ibm.com>
Tue, 15 Jul 2014 00:26:44 +0000 (20:26 -0400)
Add additional text to arp_responder help to ensure that
proper documentation is included in the configuration guide.

Make ML2 and L2population references consistent.

Closes-Bug: #1321320

Change-Id: I0fc0691fc3729aa39888c90ca871ad7f711343f8

neutron/plugins/openvswitch/common/config.py

index 849044db6975c1b6110169158b28e075169cc3d2..e643fb6e88819c5f5d86300c4e1e0b09401d6ac9 100644 (file)
@@ -79,10 +79,14 @@ agent_opts = [
     cfg.IntOpt('veth_mtu',
                help=_("MTU size of veth interfaces")),
     cfg.BoolOpt('l2_population', default=False,
-                help=_("Use ml2 l2population mechanism driver to learn "
+                help=_("Use ML2 l2population mechanism driver to learn "
                        "remote mac and IPs and improve tunnel scalability")),
     cfg.BoolOpt('arp_responder', default=False,
-                help=_("Enable local ARP responder if it is supported")),
+                help=_("Enable local ARP responder if it is supported. "
+                       "Requires OVS 2.1 and ML2 l2population driver. "
+                       "Allows the switch (when supporting an overlay) "
+                       "to respond to an ARP request locally without "
+                       "performing a costly ARP broadcast into the overlay")),
     cfg.BoolOpt('dont_fragment', default=True,
                 help=_("Set or un-set the don't fragment (DF) bit on "
                        "outgoing IP packet carrying GRE/VXLAN tunnel")),