sdwan.ServiceLanVpnInterfaceIpsecFeature
Explore with Pulumi AI
This resource can manage a Service LAN VPN Interface IPSec Feature.
- Minimum SD-WAN Manager version:
20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.ServiceLanVpnInterfaceIpsecFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
interfaceName: "ipsec987",
shutdown: true,
interfaceDescription: "ipsec987",
ipv4Address: "9.7.5.4",
ipv4SubnetMask: "255.255.255.0",
tunnelSourceIpv4Address: "1.3.5.88",
tunnelSourceIpv4SubnetMask: "255.255.255.0",
tunnelSourceInterface: "GigabitEthernet8",
tunnelDestinationIpv4Address: "2.55.67.99",
tunnelDestinationIpv4SubnetMask: "255.255.255.0",
applicationTunnelType: "none",
tcpMss: 1460,
clearDontFragment: false,
ipMtu: 1500,
dpdInterval: 10,
dpdRetries: 3,
ikePresharedKey: "123",
ikeVersion: 1,
ikeIntegrityProtocol: "main",
ikeRekeyInterval: 14400,
ikeCiphersuite: "aes256-cbc-sha1",
ikeDiffieHellmanGroup: "16",
ikeIdLocalEndPoint: "xxx",
ikeIdRemoteEndPoint: "xxx",
ipsecRekeyInterval: 3600,
ipsecReplayWindow: 512,
ipsecCiphersuite: "aes256-gcm",
perfectForwardSecrecy: "group-16",
tunnelRouteVia: "2222",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceLanVpnInterfaceIpsecFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
interface_name="ipsec987",
shutdown=True,
interface_description="ipsec987",
ipv4_address="9.7.5.4",
ipv4_subnet_mask="255.255.255.0",
tunnel_source_ipv4_address="1.3.5.88",
tunnel_source_ipv4_subnet_mask="255.255.255.0",
tunnel_source_interface="GigabitEthernet8",
tunnel_destination_ipv4_address="2.55.67.99",
tunnel_destination_ipv4_subnet_mask="255.255.255.0",
application_tunnel_type="none",
tcp_mss=1460,
clear_dont_fragment=False,
ip_mtu=1500,
dpd_interval=10,
dpd_retries=3,
ike_preshared_key="123",
ike_version=1,
ike_integrity_protocol="main",
ike_rekey_interval=14400,
ike_ciphersuite="aes256-cbc-sha1",
ike_diffie_hellman_group="16",
ike_id_local_end_point="xxx",
ike_id_remote_end_point="xxx",
ipsec_rekey_interval=3600,
ipsec_replay_window=512,
ipsec_ciphersuite="aes256-gcm",
perfect_forward_secrecy="group-16",
tunnel_route_via="2222")
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.NewServiceLanVpnInterfaceIpsecFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceIpsecFeatureArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My Example"),
FeatureProfileId: pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
ServiceLanVpnFeatureId: pulumi.String("140331f6-5418-4755-a059-13c77eb96037"),
InterfaceName: pulumi.String("ipsec987"),
Shutdown: pulumi.Bool(true),
InterfaceDescription: pulumi.String("ipsec987"),
Ipv4Address: pulumi.String("9.7.5.4"),
Ipv4SubnetMask: pulumi.String("255.255.255.0"),
TunnelSourceIpv4Address: pulumi.String("1.3.5.88"),
TunnelSourceIpv4SubnetMask: pulumi.String("255.255.255.0"),
TunnelSourceInterface: pulumi.String("GigabitEthernet8"),
TunnelDestinationIpv4Address: pulumi.String("2.55.67.99"),
TunnelDestinationIpv4SubnetMask: pulumi.String("255.255.255.0"),
ApplicationTunnelType: pulumi.String("none"),
TcpMss: pulumi.Int(1460),
ClearDontFragment: pulumi.Bool(false),
IpMtu: pulumi.Int(1500),
DpdInterval: pulumi.Int(10),
DpdRetries: pulumi.Int(3),
IkePresharedKey: pulumi.String("123"),
IkeVersion: pulumi.Int(1),
IkeIntegrityProtocol: pulumi.String("main"),
IkeRekeyInterval: pulumi.Int(14400),
IkeCiphersuite: pulumi.String("aes256-cbc-sha1"),
IkeDiffieHellmanGroup: pulumi.String("16"),
IkeIdLocalEndPoint: pulumi.String("xxx"),
IkeIdRemoteEndPoint: pulumi.String("xxx"),
IpsecRekeyInterval: pulumi.Int(3600),
IpsecReplayWindow: pulumi.Int(512),
IpsecCiphersuite: pulumi.String("aes256-gcm"),
PerfectForwardSecrecy: pulumi.String("group-16"),
TunnelRouteVia: pulumi.String("2222"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = new Sdwan.ServiceLanVpnInterfaceIpsecFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
InterfaceName = "ipsec987",
Shutdown = true,
InterfaceDescription = "ipsec987",
Ipv4Address = "9.7.5.4",
Ipv4SubnetMask = "255.255.255.0",
TunnelSourceIpv4Address = "1.3.5.88",
TunnelSourceIpv4SubnetMask = "255.255.255.0",
TunnelSourceInterface = "GigabitEthernet8",
TunnelDestinationIpv4Address = "2.55.67.99",
TunnelDestinationIpv4SubnetMask = "255.255.255.0",
ApplicationTunnelType = "none",
TcpMss = 1460,
ClearDontFragment = false,
IpMtu = 1500,
DpdInterval = 10,
DpdRetries = 3,
IkePresharedKey = "123",
IkeVersion = 1,
IkeIntegrityProtocol = "main",
IkeRekeyInterval = 14400,
IkeCiphersuite = "aes256-cbc-sha1",
IkeDiffieHellmanGroup = "16",
IkeIdLocalEndPoint = "xxx",
IkeIdRemoteEndPoint = "xxx",
IpsecRekeyInterval = 3600,
IpsecReplayWindow = 512,
IpsecCiphersuite = "aes256-gcm",
PerfectForwardSecrecy = "group-16",
TunnelRouteVia = "2222",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceLanVpnInterfaceIpsecFeature;
import com.pulumi.sdwan.ServiceLanVpnInterfaceIpsecFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ServiceLanVpnInterfaceIpsecFeature("example", ServiceLanVpnInterfaceIpsecFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.interfaceName("ipsec987")
.shutdown(true)
.interfaceDescription("ipsec987")
.ipv4Address("9.7.5.4")
.ipv4SubnetMask("255.255.255.0")
.tunnelSourceIpv4Address("1.3.5.88")
.tunnelSourceIpv4SubnetMask("255.255.255.0")
.tunnelSourceInterface("GigabitEthernet8")
.tunnelDestinationIpv4Address("2.55.67.99")
.tunnelDestinationIpv4SubnetMask("255.255.255.0")
.applicationTunnelType("none")
.tcpMss(1460)
.clearDontFragment(false)
.ipMtu(1500)
.dpdInterval(10)
.dpdRetries(3)
.ikePresharedKey("123")
.ikeVersion(1)
.ikeIntegrityProtocol("main")
.ikeRekeyInterval(14400)
.ikeCiphersuite("aes256-cbc-sha1")
.ikeDiffieHellmanGroup("16")
.ikeIdLocalEndPoint("xxx")
.ikeIdRemoteEndPoint("xxx")
.ipsecRekeyInterval(3600)
.ipsecReplayWindow(512)
.ipsecCiphersuite("aes256-gcm")
.perfectForwardSecrecy("group-16")
.tunnelRouteVia("2222")
.build());
}
}
resources:
example:
type: sdwan:ServiceLanVpnInterfaceIpsecFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
interfaceName: ipsec987
shutdown: true
interfaceDescription: ipsec987
ipv4Address: 9.7.5.4
ipv4SubnetMask: 255.255.255.0
tunnelSourceIpv4Address: 1.3.5.88
tunnelSourceIpv4SubnetMask: 255.255.255.0
tunnelSourceInterface: GigabitEthernet8
tunnelDestinationIpv4Address: 2.55.67.99
tunnelDestinationIpv4SubnetMask: 255.255.255.0
applicationTunnelType: none
tcpMss: 1460
clearDontFragment: false
ipMtu: 1500
dpdInterval: 10
dpdRetries: 3
ikePresharedKey: '123'
ikeVersion: 1
ikeIntegrityProtocol: main
ikeRekeyInterval: 14400
ikeCiphersuite: aes256-cbc-sha1
ikeDiffieHellmanGroup: '16'
ikeIdLocalEndPoint: xxx
ikeIdRemoteEndPoint: xxx
ipsecRekeyInterval: 3600
ipsecReplayWindow: 512
ipsecCiphersuite: aes256-gcm
perfectForwardSecrecy: group-16
tunnelRouteVia: '2222'
Create ServiceLanVpnInterfaceIpsecFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLanVpnInterfaceIpsecFeature(name: string, args: ServiceLanVpnInterfaceIpsecFeatureArgs, opts?: CustomResourceOptions);
@overload
def ServiceLanVpnInterfaceIpsecFeature(resource_name: str,
args: ServiceLanVpnInterfaceIpsecFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLanVpnInterfaceIpsecFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
tunnel_destination_ipv4_subnet_mask: Optional[str] = None,
application_tunnel_type: Optional[str] = None,
application_tunnel_type_variable: Optional[str] = None,
clear_dont_fragment: Optional[bool] = None,
clear_dont_fragment_variable: Optional[str] = None,
description: Optional[str] = None,
dpd_interval: Optional[int] = None,
dpd_interval_variable: Optional[str] = None,
dpd_retries: Optional[int] = None,
dpd_retries_variable: Optional[str] = None,
ike_ciphersuite: Optional[str] = None,
ike_ciphersuite_variable: Optional[str] = None,
ike_diffie_hellman_group: Optional[str] = None,
ike_diffie_hellman_group_variable: Optional[str] = None,
ike_id_local_end_point: Optional[str] = None,
ike_id_local_end_point_variable: Optional[str] = None,
ike_id_remote_end_point: Optional[str] = None,
ike_id_remote_end_point_variable: Optional[str] = None,
ike_integrity_protocol: Optional[str] = None,
ike_integrity_protocol_variable: Optional[str] = None,
ike_preshared_key: Optional[str] = None,
ike_preshared_key_variable: Optional[str] = None,
ike_rekey_interval: Optional[int] = None,
ike_rekey_interval_variable: Optional[str] = None,
ike_version: Optional[int] = None,
interface_description: Optional[str] = None,
interface_description_variable: Optional[str] = None,
interface_name: Optional[str] = None,
interface_name_variable: Optional[str] = None,
ip_mtu: Optional[int] = None,
ip_mtu_variable: Optional[str] = None,
ipsec_ciphersuite: Optional[str] = None,
ipsec_ciphersuite_variable: Optional[str] = None,
ipsec_rekey_interval: Optional[int] = None,
ipsec_rekey_interval_variable: Optional[str] = None,
ipsec_replay_window: Optional[int] = None,
ipsec_replay_window_variable: Optional[str] = None,
ipv4_address: Optional[str] = None,
ipv4_address_variable: Optional[str] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
name: Optional[str] = None,
perfect_forward_secrecy: Optional[str] = None,
perfect_forward_secrecy_variable: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
tracker_id: Optional[str] = None,
tracker_id_variable: Optional[str] = None,
tunnel_destination_ipv4_address: Optional[str] = None,
tunnel_destination_ipv4_address_variable: Optional[str] = None,
tunnel_destination_ipv4_subnet_mask_variable: Optional[str] = None,
tunnel_route_via: Optional[str] = None,
tunnel_route_via_variable: Optional[str] = None,
tunnel_source_interface: Optional[str] = None,
tunnel_source_interface_variable: Optional[str] = None,
tunnel_source_ipv4_address: Optional[str] = None,
tunnel_source_ipv4_address_variable: Optional[str] = None,
tunnel_source_ipv4_subnet_mask: Optional[str] = None,
tunnel_source_ipv4_subnet_mask_variable: Optional[str] = None)
func NewServiceLanVpnInterfaceIpsecFeature(ctx *Context, name string, args ServiceLanVpnInterfaceIpsecFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceIpsecFeature, error)
public ServiceLanVpnInterfaceIpsecFeature(string name, ServiceLanVpnInterfaceIpsecFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceLanVpnInterfaceIpsecFeature(String name, ServiceLanVpnInterfaceIpsecFeatureArgs args)
public ServiceLanVpnInterfaceIpsecFeature(String name, ServiceLanVpnInterfaceIpsecFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceLanVpnInterfaceIpsecFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLanVpnInterfaceIpsecFeatureArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceLanVpnInterfaceIpsecFeatureResource = new Sdwan.ServiceLanVpnInterfaceIpsecFeature("serviceLanVpnInterfaceIpsecFeatureResource", new()
{
FeatureProfileId = "string",
TunnelDestinationIpv4SubnetMask = "string",
ApplicationTunnelType = "string",
ApplicationTunnelTypeVariable = "string",
ClearDontFragment = false,
ClearDontFragmentVariable = "string",
Description = "string",
DpdInterval = 0,
DpdIntervalVariable = "string",
DpdRetries = 0,
DpdRetriesVariable = "string",
IkeCiphersuite = "string",
IkeCiphersuiteVariable = "string",
IkeDiffieHellmanGroup = "string",
IkeDiffieHellmanGroupVariable = "string",
IkeIdLocalEndPoint = "string",
IkeIdLocalEndPointVariable = "string",
IkeIdRemoteEndPoint = "string",
IkeIdRemoteEndPointVariable = "string",
IkeIntegrityProtocol = "string",
IkeIntegrityProtocolVariable = "string",
IkePresharedKey = "string",
IkePresharedKeyVariable = "string",
IkeRekeyInterval = 0,
IkeRekeyIntervalVariable = "string",
IkeVersion = 0,
InterfaceDescription = "string",
InterfaceDescriptionVariable = "string",
InterfaceName = "string",
InterfaceNameVariable = "string",
IpMtu = 0,
IpMtuVariable = "string",
IpsecCiphersuite = "string",
IpsecCiphersuiteVariable = "string",
IpsecRekeyInterval = 0,
IpsecRekeyIntervalVariable = "string",
IpsecReplayWindow = 0,
IpsecReplayWindowVariable = "string",
Ipv4Address = "string",
Ipv4AddressVariable = "string",
Ipv4SubnetMask = "string",
Ipv4SubnetMaskVariable = "string",
Name = "string",
PerfectForwardSecrecy = "string",
PerfectForwardSecrecyVariable = "string",
ServiceLanVpnFeatureId = "string",
Shutdown = false,
ShutdownVariable = "string",
TcpMss = 0,
TcpMssVariable = "string",
TrackerId = "string",
TrackerIdVariable = "string",
TunnelDestinationIpv4Address = "string",
TunnelDestinationIpv4AddressVariable = "string",
TunnelDestinationIpv4SubnetMaskVariable = "string",
TunnelRouteVia = "string",
TunnelRouteViaVariable = "string",
TunnelSourceInterface = "string",
TunnelSourceInterfaceVariable = "string",
TunnelSourceIpv4Address = "string",
TunnelSourceIpv4AddressVariable = "string",
TunnelSourceIpv4SubnetMask = "string",
TunnelSourceIpv4SubnetMaskVariable = "string",
});
example, err := sdwan.NewServiceLanVpnInterfaceIpsecFeature(ctx, "serviceLanVpnInterfaceIpsecFeatureResource", &sdwan.ServiceLanVpnInterfaceIpsecFeatureArgs{
FeatureProfileId: pulumi.String("string"),
TunnelDestinationIpv4SubnetMask: pulumi.String("string"),
ApplicationTunnelType: pulumi.String("string"),
ApplicationTunnelTypeVariable: pulumi.String("string"),
ClearDontFragment: pulumi.Bool(false),
ClearDontFragmentVariable: pulumi.String("string"),
Description: pulumi.String("string"),
DpdInterval: pulumi.Int(0),
DpdIntervalVariable: pulumi.String("string"),
DpdRetries: pulumi.Int(0),
DpdRetriesVariable: pulumi.String("string"),
IkeCiphersuite: pulumi.String("string"),
IkeCiphersuiteVariable: pulumi.String("string"),
IkeDiffieHellmanGroup: pulumi.String("string"),
IkeDiffieHellmanGroupVariable: pulumi.String("string"),
IkeIdLocalEndPoint: pulumi.String("string"),
IkeIdLocalEndPointVariable: pulumi.String("string"),
IkeIdRemoteEndPoint: pulumi.String("string"),
IkeIdRemoteEndPointVariable: pulumi.String("string"),
IkeIntegrityProtocol: pulumi.String("string"),
IkeIntegrityProtocolVariable: pulumi.String("string"),
IkePresharedKey: pulumi.String("string"),
IkePresharedKeyVariable: pulumi.String("string"),
IkeRekeyInterval: pulumi.Int(0),
IkeRekeyIntervalVariable: pulumi.String("string"),
IkeVersion: pulumi.Int(0),
InterfaceDescription: pulumi.String("string"),
InterfaceDescriptionVariable: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
InterfaceNameVariable: pulumi.String("string"),
IpMtu: pulumi.Int(0),
IpMtuVariable: pulumi.String("string"),
IpsecCiphersuite: pulumi.String("string"),
IpsecCiphersuiteVariable: pulumi.String("string"),
IpsecRekeyInterval: pulumi.Int(0),
IpsecRekeyIntervalVariable: pulumi.String("string"),
IpsecReplayWindow: pulumi.Int(0),
IpsecReplayWindowVariable: pulumi.String("string"),
Ipv4Address: pulumi.String("string"),
Ipv4AddressVariable: pulumi.String("string"),
Ipv4SubnetMask: pulumi.String("string"),
Ipv4SubnetMaskVariable: pulumi.String("string"),
Name: pulumi.String("string"),
PerfectForwardSecrecy: pulumi.String("string"),
PerfectForwardSecrecyVariable: pulumi.String("string"),
ServiceLanVpnFeatureId: pulumi.String("string"),
Shutdown: pulumi.Bool(false),
ShutdownVariable: pulumi.String("string"),
TcpMss: pulumi.Int(0),
TcpMssVariable: pulumi.String("string"),
TrackerId: pulumi.String("string"),
TrackerIdVariable: pulumi.String("string"),
TunnelDestinationIpv4Address: pulumi.String("string"),
TunnelDestinationIpv4AddressVariable: pulumi.String("string"),
TunnelDestinationIpv4SubnetMaskVariable: pulumi.String("string"),
TunnelRouteVia: pulumi.String("string"),
TunnelRouteViaVariable: pulumi.String("string"),
TunnelSourceInterface: pulumi.String("string"),
TunnelSourceInterfaceVariable: pulumi.String("string"),
TunnelSourceIpv4Address: pulumi.String("string"),
TunnelSourceIpv4AddressVariable: pulumi.String("string"),
TunnelSourceIpv4SubnetMask: pulumi.String("string"),
TunnelSourceIpv4SubnetMaskVariable: pulumi.String("string"),
})
var serviceLanVpnInterfaceIpsecFeatureResource = new ServiceLanVpnInterfaceIpsecFeature("serviceLanVpnInterfaceIpsecFeatureResource", ServiceLanVpnInterfaceIpsecFeatureArgs.builder()
.featureProfileId("string")
.tunnelDestinationIpv4SubnetMask("string")
.applicationTunnelType("string")
.applicationTunnelTypeVariable("string")
.clearDontFragment(false)
.clearDontFragmentVariable("string")
.description("string")
.dpdInterval(0)
.dpdIntervalVariable("string")
.dpdRetries(0)
.dpdRetriesVariable("string")
.ikeCiphersuite("string")
.ikeCiphersuiteVariable("string")
.ikeDiffieHellmanGroup("string")
.ikeDiffieHellmanGroupVariable("string")
.ikeIdLocalEndPoint("string")
.ikeIdLocalEndPointVariable("string")
.ikeIdRemoteEndPoint("string")
.ikeIdRemoteEndPointVariable("string")
.ikeIntegrityProtocol("string")
.ikeIntegrityProtocolVariable("string")
.ikePresharedKey("string")
.ikePresharedKeyVariable("string")
.ikeRekeyInterval(0)
.ikeRekeyIntervalVariable("string")
.ikeVersion(0)
.interfaceDescription("string")
.interfaceDescriptionVariable("string")
.interfaceName("string")
.interfaceNameVariable("string")
.ipMtu(0)
.ipMtuVariable("string")
.ipsecCiphersuite("string")
.ipsecCiphersuiteVariable("string")
.ipsecRekeyInterval(0)
.ipsecRekeyIntervalVariable("string")
.ipsecReplayWindow(0)
.ipsecReplayWindowVariable("string")
.ipv4Address("string")
.ipv4AddressVariable("string")
.ipv4SubnetMask("string")
.ipv4SubnetMaskVariable("string")
.name("string")
.perfectForwardSecrecy("string")
.perfectForwardSecrecyVariable("string")
.serviceLanVpnFeatureId("string")
.shutdown(false)
.shutdownVariable("string")
.tcpMss(0)
.tcpMssVariable("string")
.trackerId("string")
.trackerIdVariable("string")
.tunnelDestinationIpv4Address("string")
.tunnelDestinationIpv4AddressVariable("string")
.tunnelDestinationIpv4SubnetMaskVariable("string")
.tunnelRouteVia("string")
.tunnelRouteViaVariable("string")
.tunnelSourceInterface("string")
.tunnelSourceInterfaceVariable("string")
.tunnelSourceIpv4Address("string")
.tunnelSourceIpv4AddressVariable("string")
.tunnelSourceIpv4SubnetMask("string")
.tunnelSourceIpv4SubnetMaskVariable("string")
.build());
service_lan_vpn_interface_ipsec_feature_resource = sdwan.ServiceLanVpnInterfaceIpsecFeature("serviceLanVpnInterfaceIpsecFeatureResource",
feature_profile_id="string",
tunnel_destination_ipv4_subnet_mask="string",
application_tunnel_type="string",
application_tunnel_type_variable="string",
clear_dont_fragment=False,
clear_dont_fragment_variable="string",
description="string",
dpd_interval=0,
dpd_interval_variable="string",
dpd_retries=0,
dpd_retries_variable="string",
ike_ciphersuite="string",
ike_ciphersuite_variable="string",
ike_diffie_hellman_group="string",
ike_diffie_hellman_group_variable="string",
ike_id_local_end_point="string",
ike_id_local_end_point_variable="string",
ike_id_remote_end_point="string",
ike_id_remote_end_point_variable="string",
ike_integrity_protocol="string",
ike_integrity_protocol_variable="string",
ike_preshared_key="string",
ike_preshared_key_variable="string",
ike_rekey_interval=0,
ike_rekey_interval_variable="string",
ike_version=0,
interface_description="string",
interface_description_variable="string",
interface_name="string",
interface_name_variable="string",
ip_mtu=0,
ip_mtu_variable="string",
ipsec_ciphersuite="string",
ipsec_ciphersuite_variable="string",
ipsec_rekey_interval=0,
ipsec_rekey_interval_variable="string",
ipsec_replay_window=0,
ipsec_replay_window_variable="string",
ipv4_address="string",
ipv4_address_variable="string",
ipv4_subnet_mask="string",
ipv4_subnet_mask_variable="string",
name="string",
perfect_forward_secrecy="string",
perfect_forward_secrecy_variable="string",
service_lan_vpn_feature_id="string",
shutdown=False,
shutdown_variable="string",
tcp_mss=0,
tcp_mss_variable="string",
tracker_id="string",
tracker_id_variable="string",
tunnel_destination_ipv4_address="string",
tunnel_destination_ipv4_address_variable="string",
tunnel_destination_ipv4_subnet_mask_variable="string",
tunnel_route_via="string",
tunnel_route_via_variable="string",
tunnel_source_interface="string",
tunnel_source_interface_variable="string",
tunnel_source_ipv4_address="string",
tunnel_source_ipv4_address_variable="string",
tunnel_source_ipv4_subnet_mask="string",
tunnel_source_ipv4_subnet_mask_variable="string")
const serviceLanVpnInterfaceIpsecFeatureResource = new sdwan.ServiceLanVpnInterfaceIpsecFeature("serviceLanVpnInterfaceIpsecFeatureResource", {
featureProfileId: "string",
tunnelDestinationIpv4SubnetMask: "string",
applicationTunnelType: "string",
applicationTunnelTypeVariable: "string",
clearDontFragment: false,
clearDontFragmentVariable: "string",
description: "string",
dpdInterval: 0,
dpdIntervalVariable: "string",
dpdRetries: 0,
dpdRetriesVariable: "string",
ikeCiphersuite: "string",
ikeCiphersuiteVariable: "string",
ikeDiffieHellmanGroup: "string",
ikeDiffieHellmanGroupVariable: "string",
ikeIdLocalEndPoint: "string",
ikeIdLocalEndPointVariable: "string",
ikeIdRemoteEndPoint: "string",
ikeIdRemoteEndPointVariable: "string",
ikeIntegrityProtocol: "string",
ikeIntegrityProtocolVariable: "string",
ikePresharedKey: "string",
ikePresharedKeyVariable: "string",
ikeRekeyInterval: 0,
ikeRekeyIntervalVariable: "string",
ikeVersion: 0,
interfaceDescription: "string",
interfaceDescriptionVariable: "string",
interfaceName: "string",
interfaceNameVariable: "string",
ipMtu: 0,
ipMtuVariable: "string",
ipsecCiphersuite: "string",
ipsecCiphersuiteVariable: "string",
ipsecRekeyInterval: 0,
ipsecRekeyIntervalVariable: "string",
ipsecReplayWindow: 0,
ipsecReplayWindowVariable: "string",
ipv4Address: "string",
ipv4AddressVariable: "string",
ipv4SubnetMask: "string",
ipv4SubnetMaskVariable: "string",
name: "string",
perfectForwardSecrecy: "string",
perfectForwardSecrecyVariable: "string",
serviceLanVpnFeatureId: "string",
shutdown: false,
shutdownVariable: "string",
tcpMss: 0,
tcpMssVariable: "string",
trackerId: "string",
trackerIdVariable: "string",
tunnelDestinationIpv4Address: "string",
tunnelDestinationIpv4AddressVariable: "string",
tunnelDestinationIpv4SubnetMaskVariable: "string",
tunnelRouteVia: "string",
tunnelRouteViaVariable: "string",
tunnelSourceInterface: "string",
tunnelSourceInterfaceVariable: "string",
tunnelSourceIpv4Address: "string",
tunnelSourceIpv4AddressVariable: "string",
tunnelSourceIpv4SubnetMask: "string",
tunnelSourceIpv4SubnetMaskVariable: "string",
});
type: sdwan:ServiceLanVpnInterfaceIpsecFeature
properties:
applicationTunnelType: string
applicationTunnelTypeVariable: string
clearDontFragment: false
clearDontFragmentVariable: string
description: string
dpdInterval: 0
dpdIntervalVariable: string
dpdRetries: 0
dpdRetriesVariable: string
featureProfileId: string
ikeCiphersuite: string
ikeCiphersuiteVariable: string
ikeDiffieHellmanGroup: string
ikeDiffieHellmanGroupVariable: string
ikeIdLocalEndPoint: string
ikeIdLocalEndPointVariable: string
ikeIdRemoteEndPoint: string
ikeIdRemoteEndPointVariable: string
ikeIntegrityProtocol: string
ikeIntegrityProtocolVariable: string
ikePresharedKey: string
ikePresharedKeyVariable: string
ikeRekeyInterval: 0
ikeRekeyIntervalVariable: string
ikeVersion: 0
interfaceDescription: string
interfaceDescriptionVariable: string
interfaceName: string
interfaceNameVariable: string
ipMtu: 0
ipMtuVariable: string
ipsecCiphersuite: string
ipsecCiphersuiteVariable: string
ipsecRekeyInterval: 0
ipsecRekeyIntervalVariable: string
ipsecReplayWindow: 0
ipsecReplayWindowVariable: string
ipv4Address: string
ipv4AddressVariable: string
ipv4SubnetMask: string
ipv4SubnetMaskVariable: string
name: string
perfectForwardSecrecy: string
perfectForwardSecrecyVariable: string
serviceLanVpnFeatureId: string
shutdown: false
shutdownVariable: string
tcpMss: 0
tcpMssVariable: string
trackerId: string
trackerIdVariable: string
tunnelDestinationIpv4Address: string
tunnelDestinationIpv4AddressVariable: string
tunnelDestinationIpv4SubnetMask: string
tunnelDestinationIpv4SubnetMaskVariable: string
tunnelRouteVia: string
tunnelRouteViaVariable: string
tunnelSourceInterface: string
tunnelSourceInterfaceVariable: string
tunnelSourceIpv4Address: string
tunnelSourceIpv4AddressVariable: string
tunnelSourceIpv4SubnetMask: string
tunnelSourceIpv4SubnetMaskVariable: string
ServiceLanVpnInterfaceIpsecFeature Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ServiceLanVpnInterfaceIpsecFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- Dpd
Retries stringVariable - Variable name
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- Ike
Diffie stringHellman Group Variable - Variable name
- Ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringLocal End Point Variable - Variable name
- Ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringRemote End Point Variable - Variable name
- Ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- Ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Interface
Name stringVariable - Variable name
- Ip
Mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- Ip
Mtu stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- Perfect
Forward stringSecrecy Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state - Default value:
true
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Tracker
Id string - Enable tracker for this interface
- Tracker
Id stringVariable - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- Dpd
Retries stringVariable - Variable name
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- Ike
Diffie stringHellman Group Variable - Variable name
- Ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringLocal End Point Variable - Variable name
- Ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringRemote End Point Variable - Variable name
- Ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- Ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Interface
Name stringVariable - Variable name
- Ip
Mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- Ip
Mtu stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- Perfect
Forward stringSecrecy Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state - Default value:
true
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Tracker
Id string - Enable tracker for this interface
- Tracker
Id stringVariable - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- feature
Profile StringId - Feature Profile ID
- tunnel
Destination StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- application
Tunnel StringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Integer - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries StringVariable - Variable name
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite StringVariable - Variable name
- ike
Diffie StringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie StringHellman Group Variable - Variable name
- ike
Id StringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringLocal End Point Variable - Variable name
- ike
Id StringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringRemote End Point Variable - Variable name
- ike
Integrity StringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity StringProtocol Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- ike
Rekey IntegerInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey StringInterval Variable - Variable name
- ike
Version Integer - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- interface
Name StringVariable - Variable name
- ip
Mtu Integer - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay IntegerWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Subnet
Mask String - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward StringSecrecy Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state - Default value:
true
- shutdown
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- tracker
Id String - Enable tracker for this interface
- tracker
Id StringVariable - Variable name
- tunnel
Destination StringIpv4Address - tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv4Subnet Mask Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source StringIpv4Subnet Mask Variable - Variable name
- feature
Profile stringId - Feature Profile ID
- tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel stringType Variable - Variable name
- clear
Dont booleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont stringFragment Variable - Variable name
- description string
- The description of the Feature
- dpd
Interval number - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries stringVariable - Variable name
- ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite stringVariable - Variable name
- ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie stringHellman Group Variable - Variable name
- ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id stringLocal End Point Variable - Variable name
- ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id stringRemote End Point Variable - Variable name
- ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- ike
Rekey numberInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey stringInterval Variable - Variable name
- ike
Version number - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name: IPsec when present
- interface
Name stringVariable - Variable name
- ip
Mtu number - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu stringVariable - Variable name
- ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey stringInterval Variable - Variable name
- ipsec
Replay numberWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- ipv4Address
Variable string - Variable name
- ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name
- name string
- The name of the Feature
- perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward stringSecrecy Variable - Variable name
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- Administrative state - Default value:
true
- shutdown
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss stringVariable - Variable name
- tracker
Id string - Enable tracker for this interface
- tracker
Id stringVariable - Variable name
- tunnel
Destination stringIpv4Address - tunnel
Destination stringIpv4Address Variable - Variable name
- tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route stringVia Variable - Variable name
- tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source stringInterface Variable - Variable name
- tunnel
Source stringIpv4Address - tunnel
Source stringIpv4Address Variable - Variable name
- tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- feature_
profile_ strid - Feature Profile ID
- tunnel_
destination_ stripv4_ subnet_ mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- application_
tunnel_ strtype - Enable Application Tunnel Type - Choices:
none
,sig
- application_
tunnel_ strtype_ variable - Variable name
- clear_
dont_ boolfragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear_
dont_ strfragment_ variable - Variable name
- description str
- The description of the Feature
- dpd_
interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd_
retries_ strvariable - Variable name
- ike_
ciphersuite str - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike_
ciphersuite_ strvariable - Variable name
- ike_
diffie_ strhellman_ group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike_
diffie_ strhellman_ group_ variable - Variable name
- ike_
id_ strlocal_ end_ point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
id_ strlocal_ end_ point_ variable - Variable name
- ike_
id_ strremote_ end_ point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
id_ strremote_ end_ point_ variable - Variable name
- ike_
integrity_ strprotocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike_
integrity_ strprotocol_ variable - Variable name
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- ike_
rekey_ intinterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name: IPsec when present
- interface_
name_ strvariable - Variable name
- ip_
mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip_
mtu_ strvariable - Variable name
- ipsec_
ciphersuite str - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec_
rekey_ strinterval_ variable - Variable name
- ipsec_
replay_ intwindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - ipv4_
address_ strvariable - Variable name
- ipv4_
subnet_ strmask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name
- name str
- The name of the Feature
- perfect_
forward_ strsecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect_
forward_ strsecrecy_ variable - Variable name
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- Administrative state - Default value:
true
- shutdown_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp_
mss_ strvariable - Variable name
- tracker_
id str - Enable tracker for this interface
- tracker_
id_ strvariable - Variable name
- tunnel_
destination_ stripv4_ address - tunnel_
destination_ stripv4_ address_ variable - Variable name
- tunnel_
destination_ stripv4_ subnet_ mask_ variable - Variable name
- tunnel_
route_ strvia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
route_ strvia_ variable - Variable name
- tunnel_
source_ strinterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
source_ strinterface_ variable - Variable name
- tunnel_
source_ stripv4_ address - tunnel_
source_ stripv4_ address_ variable - Variable name
- tunnel_
source_ stripv4_ subnet_ mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel_
source_ stripv4_ subnet_ mask_ variable - Variable name
- feature
Profile StringId - Feature Profile ID
- tunnel
Destination StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- application
Tunnel StringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Number - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries StringVariable - Variable name
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite StringVariable - Variable name
- ike
Diffie StringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie StringHellman Group Variable - Variable name
- ike
Id StringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringLocal End Point Variable - Variable name
- ike
Id StringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringRemote End Point Variable - Variable name
- ike
Integrity StringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity StringProtocol Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- ike
Rekey NumberInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey StringInterval Variable - Variable name
- ike
Version Number - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- interface
Name StringVariable - Variable name
- ip
Mtu Number - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay NumberWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Subnet
Mask String - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward StringSecrecy Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state - Default value:
true
- shutdown
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- tracker
Id String - Enable tracker for this interface
- tracker
Id StringVariable - Variable name
- tunnel
Destination StringIpv4Address - tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv4Subnet Mask Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source StringIpv4Subnet Mask Variable - Variable name
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceIpsecFeature resource produces the following output properties:
Look up Existing ServiceLanVpnInterfaceIpsecFeature Resource
Get an existing ServiceLanVpnInterfaceIpsecFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServiceLanVpnInterfaceIpsecFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceIpsecFeature
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_tunnel_type: Optional[str] = None,
application_tunnel_type_variable: Optional[str] = None,
clear_dont_fragment: Optional[bool] = None,
clear_dont_fragment_variable: Optional[str] = None,
description: Optional[str] = None,
dpd_interval: Optional[int] = None,
dpd_interval_variable: Optional[str] = None,
dpd_retries: Optional[int] = None,
dpd_retries_variable: Optional[str] = None,
feature_profile_id: Optional[str] = None,
ike_ciphersuite: Optional[str] = None,
ike_ciphersuite_variable: Optional[str] = None,
ike_diffie_hellman_group: Optional[str] = None,
ike_diffie_hellman_group_variable: Optional[str] = None,
ike_id_local_end_point: Optional[str] = None,
ike_id_local_end_point_variable: Optional[str] = None,
ike_id_remote_end_point: Optional[str] = None,
ike_id_remote_end_point_variable: Optional[str] = None,
ike_integrity_protocol: Optional[str] = None,
ike_integrity_protocol_variable: Optional[str] = None,
ike_preshared_key: Optional[str] = None,
ike_preshared_key_variable: Optional[str] = None,
ike_rekey_interval: Optional[int] = None,
ike_rekey_interval_variable: Optional[str] = None,
ike_version: Optional[int] = None,
interface_description: Optional[str] = None,
interface_description_variable: Optional[str] = None,
interface_name: Optional[str] = None,
interface_name_variable: Optional[str] = None,
ip_mtu: Optional[int] = None,
ip_mtu_variable: Optional[str] = None,
ipsec_ciphersuite: Optional[str] = None,
ipsec_ciphersuite_variable: Optional[str] = None,
ipsec_rekey_interval: Optional[int] = None,
ipsec_rekey_interval_variable: Optional[str] = None,
ipsec_replay_window: Optional[int] = None,
ipsec_replay_window_variable: Optional[str] = None,
ipv4_address: Optional[str] = None,
ipv4_address_variable: Optional[str] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
name: Optional[str] = None,
perfect_forward_secrecy: Optional[str] = None,
perfect_forward_secrecy_variable: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
tracker_id: Optional[str] = None,
tracker_id_variable: Optional[str] = None,
tunnel_destination_ipv4_address: Optional[str] = None,
tunnel_destination_ipv4_address_variable: Optional[str] = None,
tunnel_destination_ipv4_subnet_mask: Optional[str] = None,
tunnel_destination_ipv4_subnet_mask_variable: Optional[str] = None,
tunnel_route_via: Optional[str] = None,
tunnel_route_via_variable: Optional[str] = None,
tunnel_source_interface: Optional[str] = None,
tunnel_source_interface_variable: Optional[str] = None,
tunnel_source_ipv4_address: Optional[str] = None,
tunnel_source_ipv4_address_variable: Optional[str] = None,
tunnel_source_ipv4_subnet_mask: Optional[str] = None,
tunnel_source_ipv4_subnet_mask_variable: Optional[str] = None,
version: Optional[int] = None) -> ServiceLanVpnInterfaceIpsecFeature
func GetServiceLanVpnInterfaceIpsecFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceIpsecFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceIpsecFeature, error)
public static ServiceLanVpnInterfaceIpsecFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceIpsecFeatureState? state, CustomResourceOptions? opts = null)
public static ServiceLanVpnInterfaceIpsecFeature get(String name, Output<String> id, ServiceLanVpnInterfaceIpsecFeatureState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- Dpd
Retries stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- Ike
Diffie stringHellman Group Variable - Variable name
- Ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringLocal End Point Variable - Variable name
- Ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringRemote End Point Variable - Variable name
- Ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- Ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Interface
Name stringVariable - Variable name
- Ip
Mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- Ip
Mtu stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- Perfect
Forward stringSecrecy Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state - Default value:
true
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Tracker
Id string - Enable tracker for this interface
- Tracker
Id stringVariable - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- Version int
- The version of the Feature
- Application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- Clear
Dont stringFragment Variable - Variable name
- Description string
- The description of the Feature
- Dpd
Interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- Dpd
Retries stringVariable - Variable name
- Feature
Profile stringId - Feature Profile ID
- Ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- Ike
Diffie stringHellman Group Variable - Variable name
- Ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringLocal End Point Variable - Variable name
- Ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Id stringRemote End Point Variable - Variable name
- Ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- Ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name: IPsec when present
- Interface
Name stringVariable - Variable name
- Ip
Mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- Ip
Mtu stringVariable - Variable name
- Ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- Ipsec
Rekey stringInterval Variable - Variable name
- Ipsec
Replay intWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- Ipv4Address
Variable string - Variable name
- Ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name
- Name string
- The name of the Feature
- Perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- Perfect
Forward stringSecrecy Variable - Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state - Default value:
true
- Shutdown
Variable string - Variable name
- Tcp
Mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- Tcp
Mss stringVariable - Variable name
- Tracker
Id string - Enable tracker for this interface
- Tracker
Id stringVariable - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel
Destination stringIpv4Address Variable - Variable name
- Tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- Tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Route stringVia Variable - Variable name
- Tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- Tunnel
Source stringInterface Variable - Variable name
- Tunnel
Source stringIpv4Address - Tunnel
Source stringIpv4Address Variable - Variable name
- Tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- Tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- Version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Integer - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite StringVariable - Variable name
- ike
Diffie StringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie StringHellman Group Variable - Variable name
- ike
Id StringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringLocal End Point Variable - Variable name
- ike
Id StringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringRemote End Point Variable - Variable name
- ike
Integrity StringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity StringProtocol Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- ike
Rekey IntegerInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey StringInterval Variable - Variable name
- ike
Version Integer - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- interface
Name StringVariable - Variable name
- ip
Mtu Integer - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay IntegerWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Subnet
Mask String - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward StringSecrecy Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state - Default value:
true
- shutdown
Variable String - Variable name
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- tracker
Id String - Enable tracker for this interface
- tracker
Id StringVariable - Variable name
- tunnel
Destination StringIpv4Address - tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Destination StringIpv4Subnet Mask Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source StringIpv4Subnet Mask Variable - Variable name
- version Integer
- The version of the Feature
- application
Tunnel stringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel stringType Variable - Variable name
- clear
Dont booleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont stringFragment Variable - Variable name
- description string
- The description of the Feature
- dpd
Interval number - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries stringVariable - Variable name
- feature
Profile stringId - Feature Profile ID
- ike
Ciphersuite string - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite stringVariable - Variable name
- ike
Diffie stringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie stringHellman Group Variable - Variable name
- ike
Id stringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id stringLocal End Point Variable - Variable name
- ike
Id stringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id stringRemote End Point Variable - Variable name
- ike
Integrity stringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity stringProtocol Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- ike
Rekey numberInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey stringInterval Variable - Variable name
- ike
Version number - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name: IPsec when present
- interface
Name stringVariable - Variable name
- ip
Mtu number - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu stringVariable - Variable name
- ipsec
Ciphersuite string - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey stringInterval Variable - Variable name
- ipsec
Replay numberWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- ipv4Address
Variable string - Variable name
- ipv4Subnet
Mask string - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name
- name string
- The name of the Feature
- perfect
Forward stringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward stringSecrecy Variable - Variable name
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- Administrative state - Default value:
true
- shutdown
Variable string - Variable name
- tcp
Mss number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss stringVariable - Variable name
- tracker
Id string - Enable tracker for this interface
- tracker
Id stringVariable - Variable name
- tunnel
Destination stringIpv4Address - tunnel
Destination stringIpv4Address Variable - Variable name
- tunnel
Destination stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Destination stringIpv4Subnet Mask Variable - Variable name
- tunnel
Route stringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route stringVia Variable - Variable name
- tunnel
Source stringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source stringInterface Variable - Variable name
- tunnel
Source stringIpv4Address - tunnel
Source stringIpv4Address Variable - Variable name
- tunnel
Source stringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source stringIpv4Subnet Mask Variable - Variable name
- version number
- The version of the Feature
- application_
tunnel_ strtype - Enable Application Tunnel Type - Choices:
none
,sig
- application_
tunnel_ strtype_ variable - Variable name
- clear_
dont_ boolfragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear_
dont_ strfragment_ variable - Variable name
- description str
- The description of the Feature
- dpd_
interval int - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd_
retries_ strvariable - Variable name
- feature_
profile_ strid - Feature Profile ID
- ike_
ciphersuite str - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike_
ciphersuite_ strvariable - Variable name
- ike_
diffie_ strhellman_ group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike_
diffie_ strhellman_ group_ variable - Variable name
- ike_
id_ strlocal_ end_ point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
id_ strlocal_ end_ point_ variable - Variable name
- ike_
id_ strremote_ end_ point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
id_ strremote_ end_ point_ variable - Variable name
- ike_
integrity_ strprotocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike_
integrity_ strprotocol_ variable - Variable name
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- ike_
rekey_ intinterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
version int - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name: IPsec when present
- interface_
name_ strvariable - Variable name
- ip_
mtu int - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip_
mtu_ strvariable - Variable name
- ipsec_
ciphersuite str - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec_
rekey_ strinterval_ variable - Variable name
- ipsec_
replay_ intwindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - ipv4_
address_ strvariable - Variable name
- ipv4_
subnet_ strmask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name
- name str
- The name of the Feature
- perfect_
forward_ strsecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect_
forward_ strsecrecy_ variable - Variable name
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- Administrative state - Default value:
true
- shutdown_
variable str - Variable name
- tcp_
mss int - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp_
mss_ strvariable - Variable name
- tracker_
id str - Enable tracker for this interface
- tracker_
id_ strvariable - Variable name
- tunnel_
destination_ stripv4_ address - tunnel_
destination_ stripv4_ address_ variable - Variable name
- tunnel_
destination_ stripv4_ subnet_ mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel_
destination_ stripv4_ subnet_ mask_ variable - Variable name
- tunnel_
route_ strvia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
route_ strvia_ variable - Variable name
- tunnel_
source_ strinterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel_
source_ strinterface_ variable - Variable name
- tunnel_
source_ stripv4_ address - tunnel_
source_ stripv4_ address_ variable - Variable name
- tunnel_
source_ stripv4_ subnet_ mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel_
source_ stripv4_ subnet_ mask_ variable - Variable name
- version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type - Choices:
none
,sig
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface) - Default value:
false
- clear
Dont StringFragment Variable - Variable name
- description String
- The description of the Feature
- dpd
Interval Number - IKE keepalive interval (seconds) - Range:
10
-3600
- Default value:10
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries - Range:
2
-60
- Default value:3
- dpd
Retries StringVariable - Variable name
- feature
Profile StringId - Feature Profile ID
- ike
Ciphersuite String - IKE identity the IKE preshared secret belongs to - Choices:
aes256-cbc-sha1
,aes256-cbc-sha2
,aes128-cbc-sha1
,aes128-cbc-sha2
- Default value:aes256-cbc-sha1
- ike
Ciphersuite StringVariable - Variable name
- ike
Diffie StringHellman Group - IKE Diffie Hellman Groups - Choices:
2
,14
,15
,16
,19
,20
,21
,24
- Default value:16
- ike
Diffie StringHellman Group Variable - Variable name
- ike
Id StringLocal End Point - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringLocal End Point Variable - Variable name
- ike
Id StringRemote End Point - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Id StringRemote End Point Variable - Variable name
- ike
Integrity StringProtocol - IKE integrity protocol - Choices:
main
,aggressive
- Default value:main
- ike
Integrity StringProtocol Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- ike
Rekey NumberInterval - IKE rekey interval <60..86400> seconds - Range:
60
-86400
- Default value:14400
- ike
Rekey StringInterval Variable - Variable name
- ike
Version Number - IKE Version <1..2> - Range:
1
-2
- Default value:1
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name: IPsec when present
- interface
Name StringVariable - Variable name
- ip
Mtu Number - Interface MTU <68..9216>, in bytes - Range:
68
-9216
- Default value:1500
- ip
Mtu StringVariable - Variable name
- ipsec
Ciphersuite String - IPsec(ESP) encryption and integrity protocol - Choices:
aes256-cbc-sha1
,aes256-cbc-sha384
,aes256-cbc-sha256
,aes256-cbc-sha512
,aes256-gcm
,null-sha1
,null-sha384
,null-sha256
,null-sha512
- Default value:aes256-gcm
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval <300..1209600> seconds - Range:
120
-2592000
- Default value:3600
- ipsec
Rekey StringInterval Variable - Variable name
- ipsec
Replay NumberWindow - Replay window size 32..8192 (must be a power of 2) - Range:
64
-4096
- Default value:512
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- ipv4Address
Variable String - Variable name
- ipv4Subnet
Mask String - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name
- name String
- The name of the Feature
- perfect
Forward StringSecrecy - IPsec perfect forward secrecy settings - Choices:
group-1
,group-2
,group-5
,group-14
,group-15
,group-16
,group-19
,group-20
,group-21
,group-24
,none
- Default value:group-16
- perfect
Forward StringSecrecy Variable - Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state - Default value:
true
- shutdown
Variable String - Variable name
- tcp
Mss Number - TCP MSS on SYN packets, in bytes - Range:
500
-1460
- tcp
Mss StringVariable - Variable name
- tracker
Id String - Enable tracker for this interface
- tracker
Id StringVariable - Variable name
- tunnel
Destination StringIpv4Address - tunnel
Destination StringIpv4Address Variable - Variable name
- tunnel
Destination StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Destination StringIpv4Subnet Mask Variable - Variable name
- tunnel
Route StringVia - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Route StringVia Variable - Variable name
- tunnel
Source StringInterface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid
- tunnel
Source StringInterface Variable - Variable name
- tunnel
Source StringIpv4Address - tunnel
Source StringIpv4Address Variable - Variable name
- tunnel
Source StringIpv4Subnet Mask - Choices:
255.255.255.255
,255.255.255.254
,255.255.255.252
,255.255.255.248
,255.255.255.240
,255.255.255.224
,255.255.255.192
,255.255.255.128
,255.255.255.0
,255.255.254.0
,255.255.252.0
,255.255.248.0
,255.255.240.0
,255.255.224.0
,255.255.192.0
,255.255.128.0
,255.255.0.0
,255.254.0.0
,255.252.0.0
,255.240.0.0
,255.224.0.0
,255.192.0.0
,255.128.0.0
,255.0.0.0
,254.0.0.0
,252.0.0.0
,248.0.0.0
,240.0.0.0
,224.0.0.0
,192.0.0.0
,128.0.0.0
,0.0.0.0
- Choices:
- tunnel
Source StringIpv4Subnet Mask Variable - Variable name
- version Number
- The version of the Feature
Import
Expected import identifier with the format: “service_lan_vpn_interface_ipsec_feature_id,feature_profile_id,service_lan_vpn_feature_id”
$ pulumi import sdwan:index/serviceLanVpnInterfaceIpsecFeature:ServiceLanVpnInterfaceIpsecFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.