diff options
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index b79937939c0..e670230487a 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -193,6 +193,8 @@ class VppIpRoute(VppObject): next_hop_via_label=path.nh_via_label, next_hop_table_id=path.nh_table_id, is_ipv6=self.is_ip6, + is_l2_bridged=1 + if path.proto == DpoProto.DPO_PROTO_ETHERNET else 0, is_resolve_host=path.is_resolve_host, is_resolve_attached=path.is_resolve_attached, is_multipath=1 if len(self.paths) > 1 else 0) |