diff options
Diffstat (limited to 'test/test_ipsecmb_nat.py')
-rw-r--r-- | test/test_ipsecmb_nat.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/test_ipsecmb_nat.py b/test/test_ipsecmb_nat.py new file mode 100644 index 00000000000..82f5daa0fb1 --- /dev/null +++ b/test/test_ipsecmb_nat.py @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +from test_ipsec_nat import TemplateIPSecNAT + + +class IPSecMBNATTestCase(TemplateIPSecNAT): + """ IPSecMB/NAT """ + extra_vpp_plugin_config = [ + "plugin", "ipsecmb_plugin.so", "{", "enable", "}"] + + @classmethod + def ipsec_select_backend(cls): + cls.vapi.ipsec_select_backend(protocol=cls.vpp_ah_protocol, index=1) |