Skip to content

Commit 0940095

Browse files
NicolasDichteldavem330
authored andcommitted
ipv6: set all.accept_dad to 0 by default
With commits 35e015e and a2d3f3e, the global 'accept_dad' flag is also taken into account (default value is 1). If either global or per-interface flag is non-zero, DAD will be enabled on a given interface. This is not backward compatible: before those patches, the user could disable DAD just by setting the per-interface flag to 0. Now, the user instead needs to set both flags to 0 to actually disable DAD. Restore the previous behaviour by setting the default for the global 'accept_dad' flag to 0. This way, DAD is still enabled by default, as per-interface flags are set to 1 on device creation, but setting them to 0 is enough to disable DAD on a given interface. - Before 35e015e1f57a7 and a2d3f3e: global per-interface DAD enabled [default] 1 1 yes X 0 no X 1 yes - After 35e015e and a2d3f3e: global per-interface DAD enabled [default] 1 1 yes 0 0 no 0 1 yes 1 0 yes - After this fix: global per-interface DAD enabled 1 1 yes 0 0 no [default] 0 1 yes 1 0 yes Fixes: 35e015e ("ipv6: fix net.ipv6.conf.all interface DAD handlers") Fixes: a2d3f3e ("ipv6: fix net.ipv6.conf.all.accept_dad behaviour for real") CC: Stefano Brivio <sbrivio@redhat.com> CC: Matteo Croce <mcroce@redhat.com> CC: Erik Kline <ek@google.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Acked-by: Stefano Brivio <sbrivio@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent b9f3eb4 commit 0940095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/ipv6/addrconf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ static struct ipv6_devconf ipv6_devconf __read_mostly = {
231231
.proxy_ndp = 0,
232232
.accept_source_route = 0, /* we do not accept RH0 by default. */
233233
.disable_ipv6 = 0,
234-
.accept_dad = 1,
234+
.accept_dad = 0,
235235
.suppress_frag_ndisc = 1,
236236
.accept_ra_mtu = 1,
237237
.stable_secret = {

0 commit comments

Comments
 (0)