ipsec: support for multipoint on ipsec interfaces
Type: feature Signed-off-by: Neale Ranns <nranns@cisco.com> Change-Id: Iae9fe35cfbce4c675fa25e0800c0f4629a83e012
This commit is contained in:
@ -379,9 +379,10 @@ class VppIpsecInterface(VppInterface):
|
||||
def __init__(self, test, mode=None, instance=0xffffffff):
|
||||
super(VppIpsecInterface, self).__init__(test)
|
||||
|
||||
# only p2p mode is supported currently
|
||||
self.mode = (VppEnum.vl_api_tunnel_mode_t.
|
||||
TUNNEL_API_MODE_P2P)
|
||||
self.mode = mode
|
||||
if not self.mode:
|
||||
self.mode = (VppEnum.vl_api_tunnel_mode_t.
|
||||
TUNNEL_API_MODE_P2P)
|
||||
self.instance = instance
|
||||
|
||||
def add_vpp_config(self):
|
||||
|
Reference in New Issue
Block a user