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