blob: fab7f89f49ef9b8d4420449fb172279d936ed47a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -2888,7 +2888,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)) {
|