blob: 208e800eef6382e5d3cfc3848b12ed67659f7a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -2884,7 +2884,8 @@ static void addrconf_dad_completed(struc
start sending router solicitations.
*/
- if (ifp->idev->cnf.forwarding == 0 &&
+ if ((ifp->idev->cnf.forwarding == 0 ||
+ ifp->idev->cnf.forwarding == 2) &&
ifp->idev->cnf.rtr_solicits > 0 &&
(dev->flags&IFF_LOOPBACK) == 0 &&
(ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL)) {
|