diff options
author | Neale Ranns <nranns@cisco.com> | 2018-04-25 06:34:31 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-04-27 14:52:53 +0000 |
commit | c7b8f203c0740ddd36bced39439aef63ea092d59 (patch) | |
tree | 174be00e899a304e6b723d1b2a87fc71d3c049cb /test/test_ip6.py | |
parent | cbe8d65068c9c39ca6b1f7e116dac2744835f18c (diff) |
IPv6 NS: use the mcast rewrite node to fill in the destination MAC
- move the IPv6 incomplete and glean node to ip6_neighbour.c (so it has access to ip6_neighbour_main_t)
- use the RA info config on the interface to find the multicast adj to use
Change-Id: I835e419072abe54fb09dafb0e7eb0a9e50eba1af
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_ip6.py')
-rw-r--r-- | test/test_ip6.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ip6.py b/test/test_ip6.py index c9efcbbc51c..884f793680d 100644 --- a/test/test_ip6.py +++ b/test/test_ip6.py @@ -84,7 +84,7 @@ class TestIPv6ND(VppTestCase): dst_ip = inet_ntop(AF_INET6, nsma) # NS is broadcast - self.assertEqual(rx[Ether].dst, "ff:ff:ff:ff:ff:ff") + self.assertEqual(rx[Ether].dst, in6_getnsmac(nsma)) # and from the router's MAC self.assertEqual(rx[Ether].src, intf.local_mac) |