diff options
author | Neale Ranns <nranns@cisco.com> | 2017-05-24 10:32:58 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-05-24 19:48:08 +0000 |
commit | 31426c6fee43caf18602a2a7e2ce32c3dda75a29 (patch) | |
tree | 1b9948db8ded8361cd8b8dea4835a3294229cf9e /test/vpp_ip_route.py | |
parent | a7f7457593a00644c10a7fa00db1cd1c32a1bcb2 (diff) |
Missing VLIB node for IPv6 disposition from mcast MPLS LSP
Change-Id: Ibc0e1910a4926fdfbf74571efb5fd5810bfa09da
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index b68e2105548..badb3102752 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -66,10 +66,11 @@ class VppRoutePath(object): self.nh_labels = labels self.weight = 1 self.rpf_id = rpf_id - if is_ip6: - self.nh_addr = inet_pton(AF_INET6, nh_addr) - else: + self.is_ip4 = 1 if is_ip6 == 0 else 0 + if self.is_ip4: self.nh_addr = inet_pton(AF_INET, nh_addr) + else: + self.nh_addr = inet_pton(AF_INET6, nh_addr) self.is_resolve_host = is_resolve_host self.is_resolve_attached = is_resolve_attached self.is_interface_rx = is_interface_rx @@ -400,7 +401,7 @@ class VppMplsRoute(VppObject): self._test.vapi.mpls_route_add_del( self.local_label, self.eos_bit, - 1, + path.is_ip4, path.nh_addr, path.nh_itf, is_multicast=self.is_multicast, |