From c7b8f203c0740ddd36bced39439aef63ea092d59 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 25 Apr 2018 06:34:31 -0700 Subject: 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 --- test/test_ip6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_ip6.py') 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) -- cgit 1.2.3-korg