]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
networkd: vxlan rename ARPProxy to ReduceARPProxy (#4891)
authorSusant Sahani <ssahani@users.noreply.github.com>
Wed, 21 Dec 2016 17:59:15 +0000 (23:29 +0530)
committerLennart Poettering <lennart@poettering.net>
Wed, 21 Dec 2016 17:59:15 +0000 (18:59 +0100)
Fixes: #4768
man/systemd.netdev.xml
src/network/netdev/netdev-gperf.gperf

index a549ec83bdda80f3891e056c3120cf2b32c171e4..4df98b281e3df6ae342ae9110fa80bd3bd8a223b 100644 (file)
         </listitem>
       </varlistentry>
       <varlistentry>
-        <term><varname>ARPProxy=</varname></term>
+        <term><varname>ReduceARPProxy=</varname></term>
         <listitem>
-          <para>A boolean. When true bridge-connected VXLAN tunnel endpoint
-         answers ARP requests from the local bridge on behalf of
-         remote Distributed Overlay Virtual Ethernet (DOVE) clients.</para>
+          <para>A boolean. When true, bridge-connected VXLAN tunnel
+          endpoint answers ARP requests from the local bridge on behalf
+          of remote Distributed Overlay Virtual Ethernet
+          <ulink url="https://en.wikipedia.org/wiki/Distributed_Overlay_Virtual_Ethernet">
+          (DVOE)</ulink> clients. Defaults to false.</para>
         </listitem>
       </varlistentry>
       <varlistentry>
index b3461e39a97574b55fb4dc808e653e6c4b6a86d8..e74ae9eb9fcdf9747a329e9fb00b6b3d967a3875 100644 (file)
@@ -59,6 +59,7 @@ VXLAN.TOS,                   config_parse_unsigned,              0,
 VXLAN.TTL,                   config_parse_unsigned,              0,                             offsetof(VxLan, ttl)
 VXLAN.MacLearning,           config_parse_bool,                  0,                             offsetof(VxLan, learning)
 VXLAN.ARPProxy,              config_parse_bool,                  0,                             offsetof(VxLan, arp_proxy)
+VXLAN.ReduceARPProxy,        config_parse_bool,                  0,                             offsetof(VxLan, arp_proxy)
 VXLAN.L2MissNotification,    config_parse_bool,                  0,                             offsetof(VxLan, l2miss)
 VXLAN.L3MissNotification,    config_parse_bool,                  0,                             offsetof(VxLan, l3miss)
 VXLAN.RouteShortCircuit,     config_parse_bool,                  0,                             offsetof(VxLan, route_short_circuit)