1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. ServiceLanVpnInterfaceGreFeature
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
sdwan logo
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
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:

    FeatureProfileId string
    Feature Profile ID
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    ApplicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    DpdRetriesVariable string
    Variable name
    IkeCiphersuite 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
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite 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
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    Ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4Mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    Ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    Ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    Ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6Mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    Ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    Ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    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
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state

    • Default value: false
    ShutdownVariable string
    Variable name
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    TunnelProtection bool
    Tunnel protection state

    • Default value: false
    TunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    FeatureProfileId string
    Feature Profile ID
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    ApplicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    DpdRetriesVariable string
    Variable name
    IkeCiphersuite 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
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite 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
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    Ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4Mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    Ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    Ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    Ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6Mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    Ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    Ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    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
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    Shutdown bool
    Administrative state

    • Default value: false
    ShutdownVariable string
    Variable name
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    TunnelProtection bool
    Tunnel protection state

    • Default value: false
    TunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    featureProfileId String
    Feature Profile ID
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    applicationTunnelType String
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Integer
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable String
    Variable name
    dpdRetries Integer
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable String
    Variable name
    ikeCiphersuite 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
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Integer
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Integer
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Integer
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Integer
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu Integer
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask String
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss Integer
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address String
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu Integer
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss Integer
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name String
    The name of the Feature
    perfectForwardSecrecy String
    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
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state

    • Default value: false
    shutdownVariable String
    Variable name
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode String
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection Boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address String
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    featureProfileId string
    Feature Profile ID
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    applicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    dpdInterval number
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable string
    Variable name
    dpdRetries number
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable string
    Variable name
    ikeCiphersuite 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
    ikeCiphersuiteVariable string
    Variable name
    ikeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable string
    Variable name
    ikeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable string
    Variable name
    ikeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable string
    Variable name
    ikeRekeyInterval number
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable string
    Variable name
    ikeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable string
    Variable name
    ikeVersion number
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name (1..255)
    interfaceNameVariable string
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable string
    Variable name
    ipsecRekeyInterval number
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable string
    Variable name
    ipsecReplayWindow number
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable string
    Variable name
    ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu number
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss number
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu number
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss number
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name string
    The name of the Feature
    perfectForwardSecrecy string
    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
    perfectForwardSecrecyVariable string
    Variable name
    preSharedSecret string
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable string
    Variable name
    shutdown boolean
    Administrative state

    • Default value: false
    shutdownVariable string
    Variable name
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    feature_profile_id str
    Feature Profile ID
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    application_tunnel_type str
    Enable Application Tunnel Type

    • Choices: none, sig
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    dpd_interval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpd_interval_variable str
    Variable name
    dpd_retries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpd_retries_variable str
    Variable name
    ike_ciphersuite str
    IKE identity the IKE preshared secret belongs to

    • Choices: aes256-cbc-sha1, aes256-cbc-sha2, aes128-cbc-sha1, aes128-cbc-sha2
    • Default value: aes256-cbc-sha1
    ike_ciphersuite_variable str
    Variable name
    ike_group str
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ike_group_variable str
    Variable name
    ike_local_id str
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_local_id_variable str
    Variable name
    ike_mode str
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ike_mode_variable str
    Variable name
    ike_rekey_interval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ike_rekey_interval_variable str
    Variable name
    ike_remote_id str
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_remote_id_variable str
    Variable name
    ike_version int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name (1..255)
    interface_name_variable str
    Variable name
    ipsec_ciphersuite str
    IPsec(ESP) encryption and integrity protocol

    • Choices: aes256-cbc-sha1, aes256-cbc-sha384, aes256-cbc-sha256, aes256-cbc-sha512, aes256-gcm, null-sha1, null-sha384, null-sha256, null-sha512
    • Default value: aes256-gcm
    ipsec_ciphersuite_variable str
    Variable name
    ipsec_rekey_interval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsec_rekey_interval_variable str
    Variable name
    ipsec_replay_window int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsec_replay_window_variable str
    Variable name
    ipv4_address str
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4_mtu_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_subnet_mask str
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4_subnet_mask_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_tcp_mss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4_tcp_mss_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6_address str
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6_mtu_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_tcp_mss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6_tcp_mss_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name str
    The name of the Feature
    perfect_forward_secrecy str
    IPsec perfect forward secrecy settings

    • Choices: group-1, group-2, group-5, group-14, group-15, group-16, group-19, group-20, group-21, group-24, none
    • Default value: group-16
    perfect_forward_secrecy_variable str
    Variable name
    pre_shared_secret str
    Use preshared key to authenticate IKE peer
    pre_shared_secret_variable str
    Variable name
    shutdown bool
    Administrative state

    • Default value: false
    shutdown_variable str
    Variable name
    tunnel_destination_ipv4_address str
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_destination_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_destination_ipv6_address str
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_destination_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_mode str
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnel_protection bool
    Tunnel protection state

    • Default value: false
    tunnel_route_via_interface str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_interface_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv4_address str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv6_address str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_route_via_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_route_via_loopback str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_loopback_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface str
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_loopback str
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_loopback_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv4_address str
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv6_address str
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_source_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    featureProfileId String
    Feature Profile ID
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    applicationTunnelType String
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Number
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable String
    Variable name
    dpdRetries Number
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable String
    Variable name
    ikeCiphersuite 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
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Number
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Number
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Number
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Number
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu Number
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask String
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss Number
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address String
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu Number
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss Number
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name String
    The name of the Feature
    perfectForwardSecrecy String
    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
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    shutdown Boolean
    Administrative state

    • Default value: false
    shutdownVariable String
    Variable name
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode String
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection Boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address String
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceGreFeature resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Feature
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Feature
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Feature
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Feature

    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) -> ServiceLanVpnInterfaceGreFeature
    func 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.
    The following state arguments are supported:
    ApplicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IkeCiphersuite 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
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite 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
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    Ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4Mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    Ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    Ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    Ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6Mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    Ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    Ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    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
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state

    • Default value: false
    ShutdownVariable string
    Variable name
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    TunnelProtection bool
    Tunnel protection state

    • Default value: false
    TunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Version int
    The version of the Feature
    ApplicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    ApplicationTunnelTypeVariable string
    Variable name
    ClearDontFragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    ClearDontFragmentVariable string
    Variable name
    Description string
    The description of the Feature
    DpdInterval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    DpdIntervalVariable string
    Variable name
    DpdRetries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    DpdRetriesVariable string
    Variable name
    FeatureProfileId string
    Feature Profile ID
    IkeCiphersuite 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
    IkeCiphersuiteVariable string
    Variable name
    IkeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    IkeGroupVariable string
    Variable name
    IkeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    IkeLocalIdVariable string
    Variable name
    IkeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    IkeModeVariable string
    Variable name
    IkeRekeyInterval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    IkeRekeyIntervalVariable string
    Variable name
    IkeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    IkeRemoteIdVariable string
    Variable name
    IkeVersion int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    InterfaceDescription string
    Interface description
    InterfaceDescriptionVariable string
    Variable name
    InterfaceName string
    Interface name (1..255)
    InterfaceNameVariable string
    Variable name
    IpsecCiphersuite 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
    IpsecCiphersuiteVariable string
    Variable name
    IpsecRekeyInterval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    IpsecRekeyIntervalVariable string
    Variable name
    IpsecReplayWindow int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    IpsecReplayWindowVariable string
    Variable name
    Ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    Ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4Mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    Ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    Ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv4TcpMss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    Ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    Ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6Mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    Ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Ipv6TcpMss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    Ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Name string
    The name of the Feature
    PerfectForwardSecrecy string
    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
    PerfectForwardSecrecyVariable string
    Variable name
    PreSharedSecret string
    Use preshared key to authenticate IKE peer
    PreSharedSecretVariable string
    Variable name
    ServiceLanVpnFeatureId string
    Service LAN VPN Feature ID
    Shutdown bool
    Administrative state

    • Default value: false
    ShutdownVariable string
    Variable name
    TunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    TunnelProtection bool
    Tunnel protection state

    • Default value: false
    TunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    TunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    TunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    TunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    TunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    Version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Integer
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable String
    Variable name
    dpdRetries Integer
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikeCiphersuite 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
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Integer
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Integer
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Integer
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Integer
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu Integer
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask String
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss Integer
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address String
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu Integer
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss Integer
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name String
    The name of the Feature
    perfectForwardSecrecy String
    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
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state

    • Default value: false
    shutdownVariable String
    Variable name
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode String
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection Boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address String
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    version Integer
    The version of the Feature
    applicationTunnelType string
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable string
    Variable name
    clearDontFragment boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable string
    Variable name
    description string
    The description of the Feature
    dpdInterval number
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable string
    Variable name
    dpdRetries number
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable string
    Variable name
    featureProfileId string
    Feature Profile ID
    ikeCiphersuite 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
    ikeCiphersuiteVariable string
    Variable name
    ikeGroup string
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable string
    Variable name
    ikeLocalId string
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable string
    Variable name
    ikeMode string
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable string
    Variable name
    ikeRekeyInterval number
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable string
    Variable name
    ikeRemoteId string
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable string
    Variable name
    ikeVersion number
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription string
    Interface description
    interfaceDescriptionVariable string
    Variable name
    interfaceName string
    Interface name (1..255)
    interfaceNameVariable string
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable string
    Variable name
    ipsecRekeyInterval number
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable string
    Variable name
    ipsecReplayWindow number
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable string
    Variable name
    ipv4Address string
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu number
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask string
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss number
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address string
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu number
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss number
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name string
    The name of the Feature
    perfectForwardSecrecy string
    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
    perfectForwardSecrecyVariable string
    Variable name
    preSharedSecret string
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable string
    Variable name
    serviceLanVpnFeatureId string
    Service LAN VPN Feature ID
    shutdown boolean
    Administrative state

    • Default value: false
    shutdownVariable string
    Variable name
    tunnelDestinationIpv4Address string
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address string
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode string
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback string
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback string
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address string
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address string
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable string
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    version number
    The version of the Feature
    application_tunnel_type str
    Enable Application Tunnel Type

    • Choices: none, sig
    application_tunnel_type_variable str
    Variable name
    clear_dont_fragment bool
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clear_dont_fragment_variable str
    Variable name
    description str
    The description of the Feature
    dpd_interval int
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpd_interval_variable str
    Variable name
    dpd_retries int
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpd_retries_variable str
    Variable name
    feature_profile_id str
    Feature Profile ID
    ike_ciphersuite str
    IKE identity the IKE preshared secret belongs to

    • Choices: aes256-cbc-sha1, aes256-cbc-sha2, aes128-cbc-sha1, aes128-cbc-sha2
    • Default value: aes256-cbc-sha1
    ike_ciphersuite_variable str
    Variable name
    ike_group str
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ike_group_variable str
    Variable name
    ike_local_id str
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ike_local_id_variable str
    Variable name
    ike_mode str
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ike_mode_variable str
    Variable name
    ike_rekey_interval int
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ike_rekey_interval_variable str
    Variable name
    ike_remote_id str
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ike_remote_id_variable str
    Variable name
    ike_version int
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interface_description str
    Interface description
    interface_description_variable str
    Variable name
    interface_name str
    Interface name (1..255)
    interface_name_variable str
    Variable name
    ipsec_ciphersuite str
    IPsec(ESP) encryption and integrity protocol

    • Choices: aes256-cbc-sha1, aes256-cbc-sha384, aes256-cbc-sha256, aes256-cbc-sha512, aes256-gcm, null-sha1, null-sha384, null-sha256, null-sha512
    • Default value: aes256-gcm
    ipsec_ciphersuite_variable str
    Variable name
    ipsec_rekey_interval int
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsec_rekey_interval_variable str
    Variable name
    ipsec_replay_window int
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsec_replay_window_variable str
    Variable name
    ipv4_address str
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_mtu int
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4_mtu_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_subnet_mask str
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4_subnet_mask_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4_tcp_mss int
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4_tcp_mss_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6_address str
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_mtu int
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6_mtu_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6_tcp_mss int
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6_tcp_mss_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name str
    The name of the Feature
    perfect_forward_secrecy str
    IPsec perfect forward secrecy settings

    • Choices: group-1, group-2, group-5, group-14, group-15, group-16, group-19, group-20, group-21, group-24, none
    • Default value: group-16
    perfect_forward_secrecy_variable str
    Variable name
    pre_shared_secret str
    Use preshared key to authenticate IKE peer
    pre_shared_secret_variable str
    Variable name
    service_lan_vpn_feature_id str
    Service LAN VPN Feature ID
    shutdown bool
    Administrative state

    • Default value: false
    shutdown_variable str
    Variable name
    tunnel_destination_ipv4_address str
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_destination_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_destination_ipv6_address str
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_destination_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_mode str
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnel_protection bool
    Tunnel protection state

    • Default value: false
    tunnel_route_via_interface str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_interface_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv4_address str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_ipv6_address str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_route_via_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_route_via_loopback str
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_route_via_loopback_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface str
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_loopback str
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_loopback_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_interface_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv4_address str
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv4_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnel_source_ipv6_address str
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnel_source_ipv6_address_variable str
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    version int
    The version of the Feature
    applicationTunnelType String
    Enable Application Tunnel Type

    • Choices: none, sig
    applicationTunnelTypeVariable String
    Variable name
    clearDontFragment Boolean
    Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)

    • Default value: false
    clearDontFragmentVariable String
    Variable name
    description String
    The description of the Feature
    dpdInterval Number
    IKE keepalive interval (seconds)

    • Range: 10-3600
    • Default value: 10
    dpdIntervalVariable String
    Variable name
    dpdRetries Number
    IKE keepalive retries

    • Range: 2-60
    • Default value: 3
    dpdRetriesVariable String
    Variable name
    featureProfileId String
    Feature Profile ID
    ikeCiphersuite 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
    ikeCiphersuiteVariable String
    Variable name
    ikeGroup String
    IKE Diffie Hellman Groups

    • Choices: 2, 14, 15, 16, 19, 20, 21, 24
    • Default value: 16
    ikeGroupVariable String
    Variable name
    ikeLocalId String
    IKE ID for the local endpoint. Input IPv4 address, domain name, or email address
    ikeLocalIdVariable String
    Variable name
    ikeMode String
    IKE integrity protocol

    • Choices: main, aggressive
    • Default value: main
    ikeModeVariable String
    Variable name
    ikeRekeyInterval Number
    IKE rekey interval <60..86400> seconds

    • Range: 60-86400
    • Default value: 14400
    ikeRekeyIntervalVariable String
    Variable name
    ikeRemoteId String
    IKE ID for the remote endpoint. Input IPv4 address, domain name, or email address
    ikeRemoteIdVariable String
    Variable name
    ikeVersion Number
    IKE Version <1..2>

    • Range: 1-2
    • Default value: 1
    interfaceDescription String
    Interface description
    interfaceDescriptionVariable String
    Variable name
    interfaceName String
    Interface name (1..255)
    interfaceNameVariable String
    Variable name
    ipsecCiphersuite 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
    ipsecCiphersuiteVariable String
    Variable name
    ipsecRekeyInterval Number
    IPsec rekey interval <300..1209600> seconds

    • Range: 120-2592000
    • Default value: 3600
    ipsecRekeyIntervalVariable String
    Variable name
    ipsecReplayWindow Number
    Replay window size 32..8192 (must be a power of 2)

    • Range: 64-4096
    • Default value: 512
    ipsecReplayWindowVariable String
    Variable name
    ipv4Address String
    , Attribute conditional on tunnel_mode equal to ipv4
    ipv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4Mtu Number
    Interface MTU <576..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 576-9976
    • Default value: 1500
    ipv4MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4SubnetMask String
    , Attribute conditional on tunnel_mode equal to ipv4

    • 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
    ipv4SubnetMaskVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv4TcpMss Number
    TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv4

    • Range: 500-1460
    ipv4TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    ipv6Address String
    Assign IPv6 address, Attribute conditional on tunnel_mode equal to ipv6
    ipv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6Mtu Number
    Interface MTU <1280..9976>, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 1280-9976
    ipv6MtuVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    ipv6TcpMss Number
    IPv6 TCP MSS on SYN packets, in bytes, Attribute conditional on tunnel_mode equal to ipv6

    • Range: 40-1454
    ipv6TcpMssVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    name String
    The name of the Feature
    perfectForwardSecrecy String
    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
    perfectForwardSecrecyVariable String
    Variable name
    preSharedSecret String
    Use preshared key to authenticate IKE peer
    preSharedSecretVariable String
    Variable name
    serviceLanVpnFeatureId String
    Service LAN VPN Feature ID
    shutdown Boolean
    Administrative state

    • Default value: false
    shutdownVariable String
    Variable name
    tunnelDestinationIpv4Address String
    Tunnel destination IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelDestinationIpv6Address String
    Tunnel destination IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelDestinationIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelMode String
    GRE Tunnel Mode

    • Choices: ipv4, ipv6
    • Default value: ipv4
    tunnelProtection Boolean
    Tunnel protection state

    • Default value: false
    tunnelRouteViaInterface String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaIpv6Address String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    tunnelRouteViaLoopback String
    <1..32 characters> Interface name: ge0/<0-..> or ge0/<0-..>.vlanid, Attribute conditional on tunnel_mode equal to ipv4
    tunnelRouteViaLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterface String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopback String
    <1..32 characters> Interface name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceLoopbackVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceInterfaceVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4Address String
    Tunnel source IP Address, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv4AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv4
    tunnelSourceIpv6Address String
    Tunnel source IPv6 Address, Attribute conditional on tunnel_mode equal to ipv6
    tunnelSourceIpv6AddressVariable String
    Variable name, Attribute conditional on tunnel_mode equal to ipv6
    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 sdwan Terraform Provider.
    sdwan logo
    Viewing docs for Cisco Catalyst SD-WAN v0.7.0
    published on Tuesday, Feb 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.