diff options
author | Neale Ranns <neale@graphiant.com> | 2021-04-02 07:34:39 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2021-04-05 00:56:47 +0000 |
commit | e2b6736e1f5c9a841e37ea1e0c3db4c1989a10ba (patch) | |
tree | 26740cb0392570b67a02ff3e86810b60cceabe2a /test | |
parent | 014dba38cb9579808a2134fd10a071e4f8c4e213 (diff) |
ip6-nd: Solicitation reply only if target is our link-local
Type: fix
The fib source IP6_ND is used for all link-local entries, hence
solicitation responses were sent for a peer's address. Constrain the
source check to also in clude the LOCAL flag, which indicates that the
link-local address is ours.
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: Iba7e66049e4d89ee3f36d77aeb09310b978d70de
Diffstat (limited to 'test')
-rw-r--r-- | test/test_ip6.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test_ip6.py b/test/test_ip6.py index 8abd8d6807f..7635a01c7ce 100644 --- a/test/test_ip6.py +++ b/test/test_ip6.py @@ -505,6 +505,18 @@ class TestIPv6(TestIPv6ND): tgt_ip=self.pg0.local_ip6_ll) # + # do not respond to a NS for the peer's address + # + p = (Ether(dst=in6_getnsmac(nsma), src=self.pg0.remote_mac) / + IPv6(dst=d, + src=self.pg0._remote_hosts[3].ip6_ll) / + ICMPv6ND_NS(tgt=self.pg0._remote_hosts[3].ip6_ll) / + ICMPv6NDOptSrcLLAddr( + lladdr=self.pg0.remote_mac)) + + self.send_and_assert_no_replies(self.pg0, p) + + # # we should have learned an ND entry for the peer's link-local # but not inserted a route to it in the FIB # |