diff options
author | Neale Ranns <nranns@cisco.com> | 2016-12-14 13:31:29 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2016-12-14 16:09:14 +0000 |
commit | cb630ff691264f7ea4a0f52cc6faa87fcdaa1a40 (patch) | |
tree | 175e4d58ed65a0c8606bdf85e1b2aab008f2b8e1 /test/vpp_ip_route.py | |
parent | 8c2f05c2dc5d87f64ce03916d1b8341ec0397b15 (diff) |
Ping response in a VRF context uses correct FIB for response
Change-Id: I3b626a1fb9d74ebc609ded14c16c5e3d5a1655ab
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/vpp_ip_route.py')
-rw-r--r-- | test/vpp_ip_route.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/vpp_ip_route.py b/test/vpp_ip_route.py index 1dc8c1abb0f..75f400f1dc0 100644 --- a/test/vpp_ip_route.py +++ b/test/vpp_ip_route.py @@ -102,7 +102,8 @@ class MplsRoute: next_hop_out_label_stack=path.nh_labels, next_hop_n_out_labels=len( path.nh_labels), - next_hop_via_label=path.nh_via_label) + next_hop_via_label=path.nh_via_label, + next_hop_table_id=path.nh_table_id) def remove_vpp_config(self): for path in self.paths: |