published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
This resource can manage a Service LAN VPN Interface GRE Feature.
- Minimum SD-WAN Manager version:
20.15.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.ServiceLanVpnInterfaceGreFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
interfaceName: "gre1",
interfaceDescription: "gre1",
ipv4Address: "70.1.1.1",
ipv4SubnetMask: "255.255.255.0",
shutdown: true,
tunnelProtection: false,
tunnelMode: "ipv4",
tunnelSourceIpv4Address: "78.1.1.1",
tunnelDestinationIpv4Address: "79.1.1.1",
ipv4Mtu: 1500,
ipv4TcpMss: 1460,
clearDontFragment: false,
dpdInterval: 10,
dpdRetries: 3,
ikeVersion: 1,
ikeMode: "main",
ikeRekeyInterval: 14400,
ikeCiphersuite: "aes256-cbc-sha1",
ikeGroup: "16",
preSharedSecret: "123",
ikeLocalId: "xxx",
ikeRemoteId: "xxx",
ipsecRekeyInterval: 3600,
ipsecReplayWindow: 512,
ipsecCiphersuite: "aes256-gcm",
perfectForwardSecrecy: "group-16",
applicationTunnelType: "none",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceLanVpnInterfaceGreFeature("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="gre1",
interface_description="gre1",
ipv4_address="70.1.1.1",
ipv4_subnet_mask="255.255.255.0",
shutdown=True,
tunnel_protection=False,
tunnel_mode="ipv4",
tunnel_source_ipv4_address="78.1.1.1",
tunnel_destination_ipv4_address="79.1.1.1",
ipv4_mtu=1500,
ipv4_tcp_mss=1460,
clear_dont_fragment=False,
dpd_interval=10,
dpd_retries=3,
ike_version=1,
ike_mode="main",
ike_rekey_interval=14400,
ike_ciphersuite="aes256-cbc-sha1",
ike_group="16",
pre_shared_secret="123",
ike_local_id="xxx",
ike_remote_id="xxx",
ipsec_rekey_interval=3600,
ipsec_replay_window=512,
ipsec_ciphersuite="aes256-gcm",
perfect_forward_secrecy="group-16",
application_tunnel_type="none")
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.NewServiceLanVpnInterfaceGreFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceGreFeatureArgs{
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("gre1"),
InterfaceDescription: pulumi.String("gre1"),
Ipv4Address: pulumi.String("70.1.1.1"),
Ipv4SubnetMask: pulumi.String("255.255.255.0"),
Shutdown: pulumi.Bool(true),
TunnelProtection: pulumi.Bool(false),
TunnelMode: pulumi.String("ipv4"),
TunnelSourceIpv4Address: pulumi.String("78.1.1.1"),
TunnelDestinationIpv4Address: pulumi.String("79.1.1.1"),
Ipv4Mtu: pulumi.Int(1500),
Ipv4TcpMss: pulumi.Int(1460),
ClearDontFragment: pulumi.Bool(false),
DpdInterval: pulumi.Int(10),
DpdRetries: pulumi.Int(3),
IkeVersion: pulumi.Int(1),
IkeMode: pulumi.String("main"),
IkeRekeyInterval: pulumi.Int(14400),
IkeCiphersuite: pulumi.String("aes256-cbc-sha1"),
IkeGroup: pulumi.String("16"),
PreSharedSecret: pulumi.String("123"),
IkeLocalId: pulumi.String("xxx"),
IkeRemoteId: pulumi.String("xxx"),
IpsecRekeyInterval: pulumi.Int(3600),
IpsecReplayWindow: pulumi.Int(512),
IpsecCiphersuite: pulumi.String("aes256-gcm"),
PerfectForwardSecrecy: pulumi.String("group-16"),
ApplicationTunnelType: pulumi.String("none"),
})
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.ServiceLanVpnInterfaceGreFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
InterfaceName = "gre1",
InterfaceDescription = "gre1",
Ipv4Address = "70.1.1.1",
Ipv4SubnetMask = "255.255.255.0",
Shutdown = true,
TunnelProtection = false,
TunnelMode = "ipv4",
TunnelSourceIpv4Address = "78.1.1.1",
TunnelDestinationIpv4Address = "79.1.1.1",
Ipv4Mtu = 1500,
Ipv4TcpMss = 1460,
ClearDontFragment = false,
DpdInterval = 10,
DpdRetries = 3,
IkeVersion = 1,
IkeMode = "main",
IkeRekeyInterval = 14400,
IkeCiphersuite = "aes256-cbc-sha1",
IkeGroup = "16",
PreSharedSecret = "123",
IkeLocalId = "xxx",
IkeRemoteId = "xxx",
IpsecRekeyInterval = 3600,
IpsecReplayWindow = 512,
IpsecCiphersuite = "aes256-gcm",
PerfectForwardSecrecy = "group-16",
ApplicationTunnelType = "none",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceLanVpnInterfaceGreFeature;
import com.pulumi.sdwan.ServiceLanVpnInterfaceGreFeatureArgs;
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 ServiceLanVpnInterfaceGreFeature("example", ServiceLanVpnInterfaceGreFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.interfaceName("gre1")
.interfaceDescription("gre1")
.ipv4Address("70.1.1.1")
.ipv4SubnetMask("255.255.255.0")
.shutdown(true)
.tunnelProtection(false)
.tunnelMode("ipv4")
.tunnelSourceIpv4Address("78.1.1.1")
.tunnelDestinationIpv4Address("79.1.1.1")
.ipv4Mtu(1500)
.ipv4TcpMss(1460)
.clearDontFragment(false)
.dpdInterval(10)
.dpdRetries(3)
.ikeVersion(1)
.ikeMode("main")
.ikeRekeyInterval(14400)
.ikeCiphersuite("aes256-cbc-sha1")
.ikeGroup("16")
.preSharedSecret("123")
.ikeLocalId("xxx")
.ikeRemoteId("xxx")
.ipsecRekeyInterval(3600)
.ipsecReplayWindow(512)
.ipsecCiphersuite("aes256-gcm")
.perfectForwardSecrecy("group-16")
.applicationTunnelType("none")
.build());
}
}
resources:
example:
type: sdwan:ServiceLanVpnInterfaceGreFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
interfaceName: gre1
interfaceDescription: gre1
ipv4Address: 70.1.1.1
ipv4SubnetMask: 255.255.255.0
shutdown: true
tunnelProtection: false
tunnelMode: ipv4
tunnelSourceIpv4Address: 78.1.1.1
tunnelDestinationIpv4Address: 79.1.1.1
ipv4Mtu: 1500
ipv4TcpMss: 1460
clearDontFragment: false
dpdInterval: 10
dpdRetries: 3
ikeVersion: 1
ikeMode: main
ikeRekeyInterval: 14400
ikeCiphersuite: aes256-cbc-sha1
ikeGroup: '16'
preSharedSecret: '123'
ikeLocalId: xxx
ikeRemoteId: xxx
ipsecRekeyInterval: 3600
ipsecReplayWindow: 512
ipsecCiphersuite: aes256-gcm
perfectForwardSecrecy: group-16
applicationTunnelType: none
Create ServiceLanVpnInterfaceGreFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLanVpnInterfaceGreFeature(name: string, args: ServiceLanVpnInterfaceGreFeatureArgs, opts?: CustomResourceOptions);@overload
def ServiceLanVpnInterfaceGreFeature(resource_name: str,
args: ServiceLanVpnInterfaceGreFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLanVpnInterfaceGreFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_lan_vpn_feature_id: 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_group: Optional[str] = None,
ike_group_variable: Optional[str] = None,
ike_local_id: Optional[str] = None,
ike_local_id_variable: Optional[str] = None,
ike_mode: Optional[str] = None,
ike_mode_variable: Optional[str] = None,
ike_rekey_interval: Optional[int] = None,
ike_rekey_interval_variable: Optional[str] = None,
ike_remote_id: Optional[str] = None,
ike_remote_id_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,
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_mtu: Optional[int] = None,
ipv4_mtu_variable: Optional[str] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv4_tcp_mss: Optional[int] = None,
ipv4_tcp_mss_variable: Optional[str] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_mtu: Optional[int] = None,
ipv6_mtu_variable: Optional[str] = None,
ipv6_tcp_mss: Optional[int] = None,
ipv6_tcp_mss_variable: Optional[str] = None,
name: Optional[str] = None,
perfect_forward_secrecy: Optional[str] = None,
perfect_forward_secrecy_variable: Optional[str] = None,
pre_shared_secret: Optional[str] = None,
pre_shared_secret_variable: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
tunnel_destination_ipv4_address: Optional[str] = None,
tunnel_destination_ipv4_address_variable: Optional[str] = None,
tunnel_destination_ipv6_address: Optional[str] = None,
tunnel_destination_ipv6_address_variable: Optional[str] = None,
tunnel_mode: Optional[str] = None,
tunnel_protection: Optional[bool] = None,
tunnel_route_via_interface: Optional[str] = None,
tunnel_route_via_interface_variable: Optional[str] = None,
tunnel_route_via_ipv4_address: Optional[str] = None,
tunnel_route_via_ipv4_address_variable: Optional[str] = None,
tunnel_route_via_ipv6_address: Optional[str] = None,
tunnel_route_via_ipv6_address_variable: Optional[str] = None,
tunnel_route_via_loopback: Optional[str] = None,
tunnel_route_via_loopback_variable: Optional[str] = None,
tunnel_source_interface: Optional[str] = None,
tunnel_source_interface_loopback: Optional[str] = None,
tunnel_source_interface_loopback_variable: 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_ipv6_address: Optional[str] = None,
tunnel_source_ipv6_address_variable: Optional[str] = None)func NewServiceLanVpnInterfaceGreFeature(ctx *Context, name string, args ServiceLanVpnInterfaceGreFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceGreFeature, error)public ServiceLanVpnInterfaceGreFeature(string name, ServiceLanVpnInterfaceGreFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceLanVpnInterfaceGreFeature(String name, ServiceLanVpnInterfaceGreFeatureArgs args)
public ServiceLanVpnInterfaceGreFeature(String name, ServiceLanVpnInterfaceGreFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceLanVpnInterfaceGreFeature
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 ServiceLanVpnInterfaceGreFeatureArgs
- 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 ServiceLanVpnInterfaceGreFeatureArgs
- 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 ServiceLanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceGreFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLanVpnInterfaceGreFeatureArgs
- 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 serviceLanVpnInterfaceGreFeatureResource = new Sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", new()
{
FeatureProfileId = "string",
ServiceLanVpnFeatureId = "string",
ApplicationTunnelType = "string",
ApplicationTunnelTypeVariable = "string",
ClearDontFragment = false,
ClearDontFragmentVariable = "string",
Description = "string",
DpdInterval = 0,
DpdIntervalVariable = "string",
DpdRetries = 0,
DpdRetriesVariable = "string",
IkeCiphersuite = "string",
IkeCiphersuiteVariable = "string",
IkeGroup = "string",
IkeGroupVariable = "string",
IkeLocalId = "string",
IkeLocalIdVariable = "string",
IkeMode = "string",
IkeModeVariable = "string",
IkeRekeyInterval = 0,
IkeRekeyIntervalVariable = "string",
IkeRemoteId = "string",
IkeRemoteIdVariable = "string",
IkeVersion = 0,
InterfaceDescription = "string",
InterfaceDescriptionVariable = "string",
InterfaceName = "string",
InterfaceNameVariable = "string",
IpsecCiphersuite = "string",
IpsecCiphersuiteVariable = "string",
IpsecRekeyInterval = 0,
IpsecRekeyIntervalVariable = "string",
IpsecReplayWindow = 0,
IpsecReplayWindowVariable = "string",
Ipv4Address = "string",
Ipv4AddressVariable = "string",
Ipv4Mtu = 0,
Ipv4MtuVariable = "string",
Ipv4SubnetMask = "string",
Ipv4SubnetMaskVariable = "string",
Ipv4TcpMss = 0,
Ipv4TcpMssVariable = "string",
Ipv6Address = "string",
Ipv6AddressVariable = "string",
Ipv6Mtu = 0,
Ipv6MtuVariable = "string",
Ipv6TcpMss = 0,
Ipv6TcpMssVariable = "string",
Name = "string",
PerfectForwardSecrecy = "string",
PerfectForwardSecrecyVariable = "string",
PreSharedSecret = "string",
PreSharedSecretVariable = "string",
Shutdown = false,
ShutdownVariable = "string",
TunnelDestinationIpv4Address = "string",
TunnelDestinationIpv4AddressVariable = "string",
TunnelDestinationIpv6Address = "string",
TunnelDestinationIpv6AddressVariable = "string",
TunnelMode = "string",
TunnelProtection = false,
TunnelRouteViaInterface = "string",
TunnelRouteViaInterfaceVariable = "string",
TunnelRouteViaIpv4Address = "string",
TunnelRouteViaIpv4AddressVariable = "string",
TunnelRouteViaIpv6Address = "string",
TunnelRouteViaIpv6AddressVariable = "string",
TunnelRouteViaLoopback = "string",
TunnelRouteViaLoopbackVariable = "string",
TunnelSourceInterface = "string",
TunnelSourceInterfaceLoopback = "string",
TunnelSourceInterfaceLoopbackVariable = "string",
TunnelSourceInterfaceVariable = "string",
TunnelSourceIpv4Address = "string",
TunnelSourceIpv4AddressVariable = "string",
TunnelSourceIpv6Address = "string",
TunnelSourceIpv6AddressVariable = "string",
});
example, err := sdwan.NewServiceLanVpnInterfaceGreFeature(ctx, "serviceLanVpnInterfaceGreFeatureResource", &sdwan.ServiceLanVpnInterfaceGreFeatureArgs{
FeatureProfileId: pulumi.String("string"),
ServiceLanVpnFeatureId: 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"),
IkeGroup: pulumi.String("string"),
IkeGroupVariable: pulumi.String("string"),
IkeLocalId: pulumi.String("string"),
IkeLocalIdVariable: pulumi.String("string"),
IkeMode: pulumi.String("string"),
IkeModeVariable: pulumi.String("string"),
IkeRekeyInterval: pulumi.Int(0),
IkeRekeyIntervalVariable: pulumi.String("string"),
IkeRemoteId: pulumi.String("string"),
IkeRemoteIdVariable: pulumi.String("string"),
IkeVersion: pulumi.Int(0),
InterfaceDescription: pulumi.String("string"),
InterfaceDescriptionVariable: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
InterfaceNameVariable: 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"),
Ipv4Mtu: pulumi.Int(0),
Ipv4MtuVariable: pulumi.String("string"),
Ipv4SubnetMask: pulumi.String("string"),
Ipv4SubnetMaskVariable: pulumi.String("string"),
Ipv4TcpMss: pulumi.Int(0),
Ipv4TcpMssVariable: pulumi.String("string"),
Ipv6Address: pulumi.String("string"),
Ipv6AddressVariable: pulumi.String("string"),
Ipv6Mtu: pulumi.Int(0),
Ipv6MtuVariable: pulumi.String("string"),
Ipv6TcpMss: pulumi.Int(0),
Ipv6TcpMssVariable: pulumi.String("string"),
Name: pulumi.String("string"),
PerfectForwardSecrecy: pulumi.String("string"),
PerfectForwardSecrecyVariable: pulumi.String("string"),
PreSharedSecret: pulumi.String("string"),
PreSharedSecretVariable: pulumi.String("string"),
Shutdown: pulumi.Bool(false),
ShutdownVariable: pulumi.String("string"),
TunnelDestinationIpv4Address: pulumi.String("string"),
TunnelDestinationIpv4AddressVariable: pulumi.String("string"),
TunnelDestinationIpv6Address: pulumi.String("string"),
TunnelDestinationIpv6AddressVariable: pulumi.String("string"),
TunnelMode: pulumi.String("string"),
TunnelProtection: pulumi.Bool(false),
TunnelRouteViaInterface: pulumi.String("string"),
TunnelRouteViaInterfaceVariable: pulumi.String("string"),
TunnelRouteViaIpv4Address: pulumi.String("string"),
TunnelRouteViaIpv4AddressVariable: pulumi.String("string"),
TunnelRouteViaIpv6Address: pulumi.String("string"),
TunnelRouteViaIpv6AddressVariable: pulumi.String("string"),
TunnelRouteViaLoopback: pulumi.String("string"),
TunnelRouteViaLoopbackVariable: pulumi.String("string"),
TunnelSourceInterface: pulumi.String("string"),
TunnelSourceInterfaceLoopback: pulumi.String("string"),
TunnelSourceInterfaceLoopbackVariable: pulumi.String("string"),
TunnelSourceInterfaceVariable: pulumi.String("string"),
TunnelSourceIpv4Address: pulumi.String("string"),
TunnelSourceIpv4AddressVariable: pulumi.String("string"),
TunnelSourceIpv6Address: pulumi.String("string"),
TunnelSourceIpv6AddressVariable: pulumi.String("string"),
})
var serviceLanVpnInterfaceGreFeatureResource = new ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", ServiceLanVpnInterfaceGreFeatureArgs.builder()
.featureProfileId("string")
.serviceLanVpnFeatureId("string")
.applicationTunnelType("string")
.applicationTunnelTypeVariable("string")
.clearDontFragment(false)
.clearDontFragmentVariable("string")
.description("string")
.dpdInterval(0)
.dpdIntervalVariable("string")
.dpdRetries(0)
.dpdRetriesVariable("string")
.ikeCiphersuite("string")
.ikeCiphersuiteVariable("string")
.ikeGroup("string")
.ikeGroupVariable("string")
.ikeLocalId("string")
.ikeLocalIdVariable("string")
.ikeMode("string")
.ikeModeVariable("string")
.ikeRekeyInterval(0)
.ikeRekeyIntervalVariable("string")
.ikeRemoteId("string")
.ikeRemoteIdVariable("string")
.ikeVersion(0)
.interfaceDescription("string")
.interfaceDescriptionVariable("string")
.interfaceName("string")
.interfaceNameVariable("string")
.ipsecCiphersuite("string")
.ipsecCiphersuiteVariable("string")
.ipsecRekeyInterval(0)
.ipsecRekeyIntervalVariable("string")
.ipsecReplayWindow(0)
.ipsecReplayWindowVariable("string")
.ipv4Address("string")
.ipv4AddressVariable("string")
.ipv4Mtu(0)
.ipv4MtuVariable("string")
.ipv4SubnetMask("string")
.ipv4SubnetMaskVariable("string")
.ipv4TcpMss(0)
.ipv4TcpMssVariable("string")
.ipv6Address("string")
.ipv6AddressVariable("string")
.ipv6Mtu(0)
.ipv6MtuVariable("string")
.ipv6TcpMss(0)
.ipv6TcpMssVariable("string")
.name("string")
.perfectForwardSecrecy("string")
.perfectForwardSecrecyVariable("string")
.preSharedSecret("string")
.preSharedSecretVariable("string")
.shutdown(false)
.shutdownVariable("string")
.tunnelDestinationIpv4Address("string")
.tunnelDestinationIpv4AddressVariable("string")
.tunnelDestinationIpv6Address("string")
.tunnelDestinationIpv6AddressVariable("string")
.tunnelMode("string")
.tunnelProtection(false)
.tunnelRouteViaInterface("string")
.tunnelRouteViaInterfaceVariable("string")
.tunnelRouteViaIpv4Address("string")
.tunnelRouteViaIpv4AddressVariable("string")
.tunnelRouteViaIpv6Address("string")
.tunnelRouteViaIpv6AddressVariable("string")
.tunnelRouteViaLoopback("string")
.tunnelRouteViaLoopbackVariable("string")
.tunnelSourceInterface("string")
.tunnelSourceInterfaceLoopback("string")
.tunnelSourceInterfaceLoopbackVariable("string")
.tunnelSourceInterfaceVariable("string")
.tunnelSourceIpv4Address("string")
.tunnelSourceIpv4AddressVariable("string")
.tunnelSourceIpv6Address("string")
.tunnelSourceIpv6AddressVariable("string")
.build());
service_lan_vpn_interface_gre_feature_resource = sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource",
feature_profile_id="string",
service_lan_vpn_feature_id="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_group="string",
ike_group_variable="string",
ike_local_id="string",
ike_local_id_variable="string",
ike_mode="string",
ike_mode_variable="string",
ike_rekey_interval=0,
ike_rekey_interval_variable="string",
ike_remote_id="string",
ike_remote_id_variable="string",
ike_version=0,
interface_description="string",
interface_description_variable="string",
interface_name="string",
interface_name_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_mtu=0,
ipv4_mtu_variable="string",
ipv4_subnet_mask="string",
ipv4_subnet_mask_variable="string",
ipv4_tcp_mss=0,
ipv4_tcp_mss_variable="string",
ipv6_address="string",
ipv6_address_variable="string",
ipv6_mtu=0,
ipv6_mtu_variable="string",
ipv6_tcp_mss=0,
ipv6_tcp_mss_variable="string",
name="string",
perfect_forward_secrecy="string",
perfect_forward_secrecy_variable="string",
pre_shared_secret="string",
pre_shared_secret_variable="string",
shutdown=False,
shutdown_variable="string",
tunnel_destination_ipv4_address="string",
tunnel_destination_ipv4_address_variable="string",
tunnel_destination_ipv6_address="string",
tunnel_destination_ipv6_address_variable="string",
tunnel_mode="string",
tunnel_protection=False,
tunnel_route_via_interface="string",
tunnel_route_via_interface_variable="string",
tunnel_route_via_ipv4_address="string",
tunnel_route_via_ipv4_address_variable="string",
tunnel_route_via_ipv6_address="string",
tunnel_route_via_ipv6_address_variable="string",
tunnel_route_via_loopback="string",
tunnel_route_via_loopback_variable="string",
tunnel_source_interface="string",
tunnel_source_interface_loopback="string",
tunnel_source_interface_loopback_variable="string",
tunnel_source_interface_variable="string",
tunnel_source_ipv4_address="string",
tunnel_source_ipv4_address_variable="string",
tunnel_source_ipv6_address="string",
tunnel_source_ipv6_address_variable="string")
const serviceLanVpnInterfaceGreFeatureResource = new sdwan.ServiceLanVpnInterfaceGreFeature("serviceLanVpnInterfaceGreFeatureResource", {
featureProfileId: "string",
serviceLanVpnFeatureId: "string",
applicationTunnelType: "string",
applicationTunnelTypeVariable: "string",
clearDontFragment: false,
clearDontFragmentVariable: "string",
description: "string",
dpdInterval: 0,
dpdIntervalVariable: "string",
dpdRetries: 0,
dpdRetriesVariable: "string",
ikeCiphersuite: "string",
ikeCiphersuiteVariable: "string",
ikeGroup: "string",
ikeGroupVariable: "string",
ikeLocalId: "string",
ikeLocalIdVariable: "string",
ikeMode: "string",
ikeModeVariable: "string",
ikeRekeyInterval: 0,
ikeRekeyIntervalVariable: "string",
ikeRemoteId: "string",
ikeRemoteIdVariable: "string",
ikeVersion: 0,
interfaceDescription: "string",
interfaceDescriptionVariable: "string",
interfaceName: "string",
interfaceNameVariable: "string",
ipsecCiphersuite: "string",
ipsecCiphersuiteVariable: "string",
ipsecRekeyInterval: 0,
ipsecRekeyIntervalVariable: "string",
ipsecReplayWindow: 0,
ipsecReplayWindowVariable: "string",
ipv4Address: "string",
ipv4AddressVariable: "string",
ipv4Mtu: 0,
ipv4MtuVariable: "string",
ipv4SubnetMask: "string",
ipv4SubnetMaskVariable: "string",
ipv4TcpMss: 0,
ipv4TcpMssVariable: "string",
ipv6Address: "string",
ipv6AddressVariable: "string",
ipv6Mtu: 0,
ipv6MtuVariable: "string",
ipv6TcpMss: 0,
ipv6TcpMssVariable: "string",
name: "string",
perfectForwardSecrecy: "string",
perfectForwardSecrecyVariable: "string",
preSharedSecret: "string",
preSharedSecretVariable: "string",
shutdown: false,
shutdownVariable: "string",
tunnelDestinationIpv4Address: "string",
tunnelDestinationIpv4AddressVariable: "string",
tunnelDestinationIpv6Address: "string",
tunnelDestinationIpv6AddressVariable: "string",
tunnelMode: "string",
tunnelProtection: false,
tunnelRouteViaInterface: "string",
tunnelRouteViaInterfaceVariable: "string",
tunnelRouteViaIpv4Address: "string",
tunnelRouteViaIpv4AddressVariable: "string",
tunnelRouteViaIpv6Address: "string",
tunnelRouteViaIpv6AddressVariable: "string",
tunnelRouteViaLoopback: "string",
tunnelRouteViaLoopbackVariable: "string",
tunnelSourceInterface: "string",
tunnelSourceInterfaceLoopback: "string",
tunnelSourceInterfaceLoopbackVariable: "string",
tunnelSourceInterfaceVariable: "string",
tunnelSourceIpv4Address: "string",
tunnelSourceIpv4AddressVariable: "string",
tunnelSourceIpv6Address: "string",
tunnelSourceIpv6AddressVariable: "string",
});
type: sdwan:ServiceLanVpnInterfaceGreFeature
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
ikeGroup: string
ikeGroupVariable: string
ikeLocalId: string
ikeLocalIdVariable: string
ikeMode: string
ikeModeVariable: string
ikeRekeyInterval: 0
ikeRekeyIntervalVariable: string
ikeRemoteId: string
ikeRemoteIdVariable: string
ikeVersion: 0
interfaceDescription: string
interfaceDescriptionVariable: string
interfaceName: string
interfaceNameVariable: string
ipsecCiphersuite: string
ipsecCiphersuiteVariable: string
ipsecRekeyInterval: 0
ipsecRekeyIntervalVariable: string
ipsecReplayWindow: 0
ipsecReplayWindowVariable: string
ipv4Address: string
ipv4AddressVariable: string
ipv4Mtu: 0
ipv4MtuVariable: string
ipv4SubnetMask: string
ipv4SubnetMaskVariable: string
ipv4TcpMss: 0
ipv4TcpMssVariable: string
ipv6Address: string
ipv6AddressVariable: string
ipv6Mtu: 0
ipv6MtuVariable: string
ipv6TcpMss: 0
ipv6TcpMssVariable: string
name: string
perfectForwardSecrecy: string
perfectForwardSecrecyVariable: string
preSharedSecret: string
preSharedSecretVariable: string
serviceLanVpnFeatureId: string
shutdown: false
shutdownVariable: string
tunnelDestinationIpv4Address: string
tunnelDestinationIpv4AddressVariable: string
tunnelDestinationIpv6Address: string
tunnelDestinationIpv6AddressVariable: string
tunnelMode: string
tunnelProtection: false
tunnelRouteViaInterface: string
tunnelRouteViaInterfaceVariable: string
tunnelRouteViaIpv4Address: string
tunnelRouteViaIpv4AddressVariable: string
tunnelRouteViaIpv6Address: string
tunnelRouteViaIpv6AddressVariable: string
tunnelRouteViaLoopback: string
tunnelRouteViaLoopbackVariable: string
tunnelSourceInterface: string
tunnelSourceInterfaceLoopback: string
tunnelSourceInterfaceLoopbackVariable: string
tunnelSourceInterfaceVariable: string
tunnelSourceIpv4Address: string
tunnelSourceIpv4AddressVariable: string
tunnelSourceIpv6Address: string
tunnelSourceIpv6AddressVariable: string
ServiceLanVpnInterfaceGreFeature 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 ServiceLanVpnInterfaceGreFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Application
Tunnel stringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name 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
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Mtu int
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- Ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- Ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Mtu int
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- Ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- Ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- Tunnel
Protection bool - Tunnel protection state
- Default value:
false
- Default value:
- Tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Application
Tunnel stringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name 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
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Mtu int
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- Ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- Ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Mtu int
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- Ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- Ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- Tunnel
Protection bool - Tunnel protection state
- Default value:
false
- Default value:
- Tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- application
Tunnel StringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode StringVariable - Variable name
- ike
Rekey IntegerInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Integer - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu Integer
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask String - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss Integer - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address String
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu Integer
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss Integer - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode String - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection Boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route StringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
- feature
Profile stringId - Feature Profile ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- application
Tunnel stringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel stringType Variable - Variable name
- clear
Dont booleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite stringVariable - Variable name
- ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group stringVariable - Variable name
- ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local stringId Variable - Variable name
- ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode stringVariable - Variable name
- ike
Rekey numberInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey stringInterval Variable - Variable name
- ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote stringId Variable - Variable name
- ike
Version number - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu number
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss number - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu number
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss number - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- shutdown boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable string - Variable name
- tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
- feature_
profile_ strid - Feature Profile ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- application_
tunnel_ strtype - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application_
tunnel_ strtype_ variable - Variable name
- clear_
dont_ boolfragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike_
ciphersuite_ strvariable - Variable name
- ike_
group str - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike_
group_ strvariable - Variable name
- ike_
local_ strid - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
local_ strid_ variable - Variable name
- ike_
mode str - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike_
mode_ strvariable - Variable name
- ike_
rekey_ intinterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
remote_ strid - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
remote_ strid_ variable - Variable name
- ike_
version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name (1..255)
- interface_
name_ 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
- Choices:
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - , Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
address_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
mtu int - Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4_
mtu_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
subnet_ strmask - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
tcp_ intmss - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4_
tcp_ strmss_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6_
address str - Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
address_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
mtu int - Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6_
mtu_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
tcp_ intmss - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6_
tcp_ strmss_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect_
forward_ strsecrecy_ variable - Variable name
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- shutdown bool
- Administrative state
- Default value:
false
- Default value:
- shutdown_
variable str - Variable name
- tunnel_
destination_ stripv4_ address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
destination_ stripv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
destination_ stripv6_ address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
destination_ stripv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
mode str - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel_
protection bool - Tunnel protection state
- Default value:
false
- Default value:
- tunnel_
route_ strvia_ interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ interface_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv4_ address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv6_ address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
route_ strvia_ ipv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
route_ strvia_ loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ loopback_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ loopback_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv4_ address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv6_ address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
source_ stripv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- application
Tunnel StringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode StringVariable - Variable name
- ike
Rekey NumberInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Number - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu Number
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask String - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss Number - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address String
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu Number
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss Number - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode String - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection Boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route StringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceGreFeature resource produces the following output properties:
Look up Existing ServiceLanVpnInterfaceGreFeature Resource
Get an existing ServiceLanVpnInterfaceGreFeature 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?: ServiceLanVpnInterfaceGreFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceGreFeature@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_group: Optional[str] = None,
ike_group_variable: Optional[str] = None,
ike_local_id: Optional[str] = None,
ike_local_id_variable: Optional[str] = None,
ike_mode: Optional[str] = None,
ike_mode_variable: Optional[str] = None,
ike_rekey_interval: Optional[int] = None,
ike_rekey_interval_variable: Optional[str] = None,
ike_remote_id: Optional[str] = None,
ike_remote_id_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,
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_mtu: Optional[int] = None,
ipv4_mtu_variable: Optional[str] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv4_tcp_mss: Optional[int] = None,
ipv4_tcp_mss_variable: Optional[str] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_mtu: Optional[int] = None,
ipv6_mtu_variable: Optional[str] = None,
ipv6_tcp_mss: Optional[int] = None,
ipv6_tcp_mss_variable: Optional[str] = None,
name: Optional[str] = None,
perfect_forward_secrecy: Optional[str] = None,
perfect_forward_secrecy_variable: Optional[str] = None,
pre_shared_secret: Optional[str] = None,
pre_shared_secret_variable: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
tunnel_destination_ipv4_address: Optional[str] = None,
tunnel_destination_ipv4_address_variable: Optional[str] = None,
tunnel_destination_ipv6_address: Optional[str] = None,
tunnel_destination_ipv6_address_variable: Optional[str] = None,
tunnel_mode: Optional[str] = None,
tunnel_protection: Optional[bool] = None,
tunnel_route_via_interface: Optional[str] = None,
tunnel_route_via_interface_variable: Optional[str] = None,
tunnel_route_via_ipv4_address: Optional[str] = None,
tunnel_route_via_ipv4_address_variable: Optional[str] = None,
tunnel_route_via_ipv6_address: Optional[str] = None,
tunnel_route_via_ipv6_address_variable: Optional[str] = None,
tunnel_route_via_loopback: Optional[str] = None,
tunnel_route_via_loopback_variable: Optional[str] = None,
tunnel_source_interface: Optional[str] = None,
tunnel_source_interface_loopback: Optional[str] = None,
tunnel_source_interface_loopback_variable: 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_ipv6_address: Optional[str] = None,
tunnel_source_ipv6_address_variable: Optional[str] = None,
version: Optional[int] = None) -> ServiceLanVpnInterfaceGreFeaturefunc GetServiceLanVpnInterfaceGreFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceGreFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceGreFeature, error)public static ServiceLanVpnInterfaceGreFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceGreFeatureState? state, CustomResourceOptions? opts = null)public static ServiceLanVpnInterfaceGreFeature get(String name, Output<String> id, ServiceLanVpnInterfaceGreFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:ServiceLanVpnInterfaceGreFeature get: id: ${id}- 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
- Choices:
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name 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
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Mtu int
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- Ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- Ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Mtu int
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- Ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- Ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- Tunnel
Protection bool - Tunnel protection state
- Default value:
false
- Default value:
- Tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Version int
- The version of the Feature
- Application
Tunnel stringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- Application
Tunnel stringType Variable - Variable name
- Clear
Dont boolFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- Dpd
Interval stringVariable - Variable name
- Dpd
Retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- Ike
Ciphersuite stringVariable - Variable name
- Ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- Ike
Group stringVariable - Variable name
- Ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- Ike
Local stringId Variable - Variable name
- Ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- Ike
Mode stringVariable - Variable name
- Ike
Rekey intInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- Ike
Rekey stringInterval Variable - Variable name
- Ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- Ike
Remote stringId Variable - Variable name
- Ike
Version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- Interface
Description string - Interface description
- Interface
Description stringVariable - Variable name
- Interface
Name string - Interface name (1..255)
- Interface
Name 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
- Choices:
- Ipsec
Ciphersuite stringVariable - Variable name
- Ipsec
Rekey intInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- Ipsec
Replay stringWindow Variable - Variable name
- Ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Mtu int
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- Ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - Ipv4Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- Ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Mtu int
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- Ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Ipv6Tcp
Mss int - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- Ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- Perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Administrative state
- Default value:
false
- Default value:
- Shutdown
Variable string - Variable name
- Tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- Tunnel
Protection bool - Tunnel protection state
- Default value:
false
- Default value:
- Tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - Tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - Tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - Version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Integer - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode StringVariable - Variable name
- ike
Rekey IntegerInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Integer - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey IntegerInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu Integer
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask String - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss Integer - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address String
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu Integer
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss Integer - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode String - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection Boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route StringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - version Integer
- The version of the Feature
- application
Tunnel stringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel stringType Variable - Variable name
- clear
Dont booleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval stringVariable - Variable name
- dpd
Retries number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite stringVariable - Variable name
- ike
Group string - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group stringVariable - Variable name
- ike
Local stringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local stringId Variable - Variable name
- ike
Mode string - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode stringVariable - Variable name
- ike
Rekey numberInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey stringInterval Variable - Variable name
- ike
Remote stringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote stringId Variable - Variable name
- ike
Version number - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description string - Interface description
- interface
Description stringVariable - Variable name
- interface
Name string - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite stringVariable - Variable name
- ipsec
Rekey numberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay stringWindow Variable - Variable name
- ipv4Address string
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu number
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask string - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss number - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address string
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu number
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable string - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss number - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss stringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward stringSecrecy Variable - Variable name
- string
- Use preshared key to authenticate IKE peer
- string
- Variable name
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable string - Variable name
- tunnel
Destination stringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination stringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode string - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route stringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route stringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route stringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route stringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source stringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source stringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - version number
- The version of the Feature
- application_
tunnel_ strtype - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application_
tunnel_ strtype_ variable - Variable name
- clear_
dont_ boolfragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd_
interval_ strvariable - Variable name
- dpd_
retries int - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike_
ciphersuite_ strvariable - Variable name
- ike_
group str - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike_
group_ strvariable - Variable name
- ike_
local_ strid - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike_
local_ strid_ variable - Variable name
- ike_
mode str - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike_
mode_ strvariable - Variable name
- ike_
rekey_ intinterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike_
rekey_ strinterval_ variable - Variable name
- ike_
remote_ strid - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike_
remote_ strid_ variable - Variable name
- ike_
version int - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface_
description str - Interface description
- interface_
description_ strvariable - Variable name
- interface_
name str - Interface name (1..255)
- interface_
name_ 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
- Choices:
- ipsec_
ciphersuite_ strvariable - Variable name
- ipsec_
rekey_ intinterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec_
replay_ strwindow_ variable - Variable name
- ipv4_
address str - , Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
address_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
mtu int - Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4_
mtu_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
subnet_ strmask - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4_
tcp_ intmss - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4_
tcp_ strmss_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6_
address str - Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
address_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
mtu int - Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6_
mtu_ strvariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6_
tcp_ intmss - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6_
tcp_ strmss_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect_
forward_ strsecrecy_ variable - Variable name
- str
- Use preshared key to authenticate IKE peer
- str
- Variable name
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- Administrative state
- Default value:
false
- Default value:
- shutdown_
variable str - Variable name
- tunnel_
destination_ stripv4_ address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
destination_ stripv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
destination_ stripv6_ address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
destination_ stripv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
mode str - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel_
protection bool - Tunnel protection state
- Default value:
false
- Default value:
- tunnel_
route_ strvia_ interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ interface_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv4_ address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ ipv6_ address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
route_ strvia_ ipv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
route_ strvia_ loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
route_ strvia_ loopback_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ loopback_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ strinterface_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv4_ address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv4_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel_
source_ stripv6_ address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel_
source_ stripv6_ address_ variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - version int
- The version of the Feature
- application
Tunnel StringType - Enable Application Tunnel Type
- Choices:
none,sig
- Choices:
- application
Tunnel StringType Variable - Variable name
- clear
Dont BooleanFragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Default value:
false
- Default value:
- 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
- Range:
- dpd
Interval StringVariable - Variable name
- dpd
Retries Number - IKE keepalive retries
- Range:
2-60 - Default value:
3
- Range:
- 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
- Choices:
- ike
Ciphersuite StringVariable - Variable name
- ike
Group String - IKE Diffie Hellman Groups
- Choices:
2,14,15,16,19,20,21,24 - Default value:
16
- Choices:
- ike
Group StringVariable - Variable name
- ike
Local StringId - IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
- ike
Local StringId Variable - Variable name
- ike
Mode String - IKE integrity protocol
- Choices:
main,aggressive - Default value:
main
- Choices:
- ike
Mode StringVariable - Variable name
- ike
Rekey NumberInterval - IKE rekey interval <60..86400> seconds
- Range:
60-86400 - Default value:
14400
- Range:
- ike
Rekey StringInterval Variable - Variable name
- ike
Remote StringId - IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
- ike
Remote StringId Variable - Variable name
- ike
Version Number - IKE Version <1..2>
- Range:
1-2 - Default value:
1
- Range:
- interface
Description String - Interface description
- interface
Description StringVariable - Variable name
- interface
Name String - Interface name (1..255)
- interface
Name 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
- Choices:
- ipsec
Ciphersuite StringVariable - Variable name
- ipsec
Rekey NumberInterval - IPsec rekey interval <300..1209600> seconds
- Range:
120-2592000 - Default value:
3600
- Range:
- 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
- Range:
- ipsec
Replay StringWindow Variable - Variable name
- ipv4Address String
- , Attribute conditional on
tunnel_modeequal toipv4 - ipv4Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Mtu Number
- Interface MTU <576..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
576-9976 - Default value:
1500
- Range:
- ipv4Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Subnet
Mask String - , Attribute conditional on
tunnel_modeequal toipv4- 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, Attribute conditional on
tunnel_modeequal toipv4 - ipv4Tcp
Mss Number - TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv4- Range:
500-1460
- Range:
- ipv4Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - ipv6Address String
- Assign IPv6 address, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Address
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Mtu Number
- Interface MTU <1280..9976>, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
1280-9976
- Range:
- ipv6Mtu
Variable String - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - ipv6Tcp
Mss Number - IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on
tunnel_modeequal toipv6- Range:
40-1454
- Range:
- ipv6Tcp
Mss StringVariable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - 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
- Choices:
- perfect
Forward StringSecrecy Variable - Variable name
- String
- Use preshared key to authenticate IKE peer
- String
- Variable name
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Administrative state
- Default value:
false
- Default value:
- shutdown
Variable String - Variable name
- tunnel
Destination StringIpv4Address - Tunnel destination IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Destination StringIpv6Address - Tunnel destination IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Destination StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Mode String - GRE Tunnel Mode
- Choices:
ipv4,ipv6 - Default value:
ipv4
- Choices:
- tunnel
Protection Boolean - Tunnel protection state
- Default value:
false
- Default value:
- tunnel
Route StringVia Interface - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Interface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Ipv6Address - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Ipv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Route StringVia Loopback - <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Route StringVia Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback - <1..32 characters> Interface name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Loopback Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringInterface Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address - Tunnel source IP Address, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv4Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv4 - tunnel
Source StringIpv6Address - Tunnel source IPv6 Address, Attribute conditional on
tunnel_modeequal toipv6 - tunnel
Source StringIpv6Address Variable - Variable name, Attribute conditional on
tunnel_modeequal toipv6 - version Number
- The version of the Feature
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “service_lan_vpn_interface_gre_feature_id,feature_profile_id,service_lan_vpn_feature_id”
$ pulumi import sdwan:index/serviceLanVpnInterfaceGreFeature:ServiceLanVpnInterfaceGreFeature 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
sdwanTerraform Provider.
published on Tuesday, Feb 24, 2026 by Pulumi
