summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLou Berger <lberger@labn.net>2018-05-01 15:35:52 -0400
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-11-27 20:22:14 -0500
commite8540bcb55db86fd57b37c642de8fbe15d33424b (patch)
tree0d66060b2a4bfd5a0f4ea2bcbef8ae27a50c368b
parentc941311fef4f080854296c0b25fb8eb747c48b97 (diff)
bgp_l3vpn_to_bgp_vrf: fix wrong table entries
-rw-r--r--tests/topotests/bgp_l3vpn_to_bgp_vrf/customize.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/bgp_l3vpn_to_bgp_vrf/customize.py b/tests/topotests/bgp_l3vpn_to_bgp_vrf/customize.py
index 3f7c549598..67850ee276 100644
--- a/tests/topotests/bgp_l3vpn_to_bgp_vrf/customize.py
+++ b/tests/topotests/bgp_l3vpn_to_bgp_vrf/customize.py
@@ -179,8 +179,8 @@ def ltemplatePreRouterStartHook():
#configure cust2 VRFs & MPLS
rtrs = ['r4']
cmds = ['ip link add {0}-cust2 type vrf table 20',
- 'ip ru add oif {0}-cust1 table 20',
- 'ip ru add iif {0}-cust1 table 20',
+ 'ip ru add oif {0}-cust2 table 20',
+ 'ip ru add iif {0}-cust2 table 20',
'ip link set dev {0}-cust2 up']
for rtr in rtrs:
for cmd in cmds: