diff options
author | Florin Coras <fcoras@cisco.com> | 2018-03-28 02:18:29 -0700 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-03-29 19:26:49 +0000 |
commit | f3a3bad8006afb0b379761dfe4d5d25de07b32cc (patch) | |
tree | ed4e09a82e3e8103d94a25bf432eb9930f602119 /test | |
parent | 109139eed67b7f472cf7328a02265528dbe8934e (diff) |
ip6: fix ip6-local urpf checking
Use sw_if_index[VLIB_TX] if set as fib index when doing the urpf check.
Change-Id: I5ec3e7f7a54c6782704d91e9a5614fd0f7f9e3de
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_vcl.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/test/test_vcl.py b/test/test_vcl.py index c02f13f6990..593088f0f65 100644 --- a/test/test_vcl.py +++ b/test/test_vcl.py @@ -636,11 +636,9 @@ class VCLIpv6ThruHostStackTestCase(VCLTestCase): def test_vcl_ipv6_thru_host_stack_echo(self): """ run VCL IPv6 thru host stack echo test """ - # TBD: Enable this when VPP IPv6 thru host teardown - # config bug is fixed. - # self.thru_host_stack_test("vcl_test_server", self.server_ipv6_args, - # "vcl_test_client", - # self.client_ipv6_echo_test_args) + self.thru_host_stack_test("vcl_test_server", self.server_ipv6_args, + "vcl_test_client", + self.client_ipv6_echo_test_args) # TBD: Remove VCLIpv6ThruHostStackExtended*TestCase classes and move # tests here when VPP thru host teardown/setup config bug |