diff options
author | Neale Ranns <nranns@cisco.com> | 2019-08-04 03:30:56 -0700 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-08-06 08:56:30 +0000 |
commit | 8b5c75ca40d965d4e1bed10ff2f7d5ab2d1076aa (patch) | |
tree | 4c6ad608a772ca321d595af39de24f4fb30301b3 /test/vpp_ip_route.py | |
parent | 1e567ddb35cb2b1c3b0200c9e8b6c8d2ec2533ae (diff) |
ip tests: Fixes and UT for MPLS 6PE
Type: fix
Change-Id: I48650473591aa181167cf3a86ed2f5da58a81072
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index 0bd6dd33735..516fcb898bf 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -389,6 +389,13 @@ class VppIpRoute(VppObject): else: for path in self.paths: lstack = path.encode_labels() + nh_proto = 0 + + # cross AF next-hop + if self.is_ip6 and path.proto == DpoProto.DPO_PROTO_IP4: + nh_proto = 1 + elif not self.is_ip6 and path.proto == DpoProto.DPO_PROTO_IP6: + nh_proto = 2 r = self._test.vapi.ip_add_del_route( dst_address=self.dest_addr, @@ -400,6 +407,7 @@ class VppIpRoute(VppObject): next_hop_out_label_stack=lstack, next_hop_via_label=path.nh_via_label, next_hop_id=path.next_hop_id, + next_hop_proto=nh_proto, is_resolve_host=path.is_resolve_host, is_resolve_attached=path.is_resolve_attached, is_ipv6=self.is_ip6, is_local=self.is_local, |