From 1d4dad921b99fa2df026053513bbc6cb2eab7173 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Mon, 13 Jul 2015 22:08:17 +0200 Subject: [PATCH] router: only send direct RAs to link-local addresses --- src/router.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/router.c b/src/router.c index 718f170..91ea809 100644 --- a/src/router.c +++ b/src/router.c @@ -215,7 +215,8 @@ static void send_neigh_ra(const struct in6_addr *addr, .sin6_addr = *addr, .sin6_scope_id = iface->ifindex, }; - odhcpd_send(router_event.uloop.fd, &dest, data, RA_IOV_LEN, iface); + if (IN6_IS_ADDR_LINKLOCAL(addr)) + odhcpd_send(router_event.uloop.fd, &dest, data, RA_IOV_LEN, iface); } -- 2.11.0