diff options
author | Juraj Sloboda <jsloboda@cisco.com> | 2018-01-09 16:08:32 +0100 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2018-01-11 09:34:17 +0000 |
commit | c5c6a3342f3cbaaac647d52fd960b6f5b0fcd4e0 (patch) | |
tree | 3d54fcf6ff947fe45179a9ba47ef43f5f0caf7b8 /test/vpp_papi_provider.py | |
parent | 83d47438ae7c9b3fc53329846ee46a82a3087578 (diff) |
Add basic support for DS-Lite CE (VPP-1059)
Change-Id: Ifcca60da3f77c0a4959f98b3365c846badbdc2d0
Signed-off-by: Juraj Sloboda <jsloboda@cisco.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index acd05a7a26d..7a6d11f75ae 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -1818,6 +1818,17 @@ class VppPapiProvider(object): {'ip4_addr': ip4, 'ip6_addr': ip6}) + def dslite_set_b4_addr(self, ip6, ip4): + """Set DS-Lite B4 IPv6 address + + :param ip4: IPv4 address + :param ip6: IPv6 address + """ + return self.api( + self.papi.dslite_set_b4_addr, + {'ip4_addr': ip4, + 'ip6_addr': ip6}) + def dslite_add_del_pool_addr_range( self, start_addr, |