diff options
author | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2021-03-31 15:45:44 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-04-01 11:38:57 +0000 |
commit | 7f138bad98908762f9e738c2d7c47ac204acae71 (patch) | |
tree | 2ae475deb33f0c1dd5ef76a337be00e8cddbe861 /resources | |
parent | a631fcb82c40d3e49e5ae177653c5aeed94841cd (diff) |
IPsec: add 4, 40 and 400 tunnel policy tests
Add more granularity test policy tests. Mirror the number of tunnels in
other IPsec tests under 1000 tunnels.
Change-Id: I9bde7447a5d809bab05db132bf6cb524e97e19b3
Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/IPsecUtil.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/resources/libraries/python/IPsecUtil.py b/resources/libraries/python/IPsecUtil.py index 327c7e2871..f75daf93c1 100644 --- a/resources/libraries/python/IPsecUtil.py +++ b/resources/libraries/python/IPsecUtil.py @@ -565,6 +565,7 @@ class IPsecUtil: :param raddr_range: Mask specifying range of Policy selector Remote IP addresses. Valid values are from 1 to 32 in case of IPv4 and to 128 in case of IPv6. + :param dst_mac: The MAC address of destination tunnels. :type node: dict :type n_tunnels: int :type tunnel_src: str @@ -572,6 +573,7 @@ class IPsecUtil: :type tunnel_dst: str :type interface: str :type raddr_range: int + :type dst_mac: str """ tunnel_src = ip_address(tunnel_src) tunnel_dst = ip_address(tunnel_dst) |