aboutsummaryrefslogtreecommitdiffstats
path: root/test/vpp_ip_route.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r--test/vpp_ip_route.py8
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,