Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi
sdwan.getServiceLanVpnInterfaceEthernetFeature
Explore with Pulumi AI
This data source can read the Service LAN VPN Interface Ethernet Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getServiceLanVpnInterfaceEthernetFeature({
    id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
    featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_service_lan_vpn_interface_ethernet_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
    feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
    service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037")
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.LookupServiceLanVpnInterfaceEthernetFeature(ctx, &sdwan.LookupServiceLanVpnInterfaceEthernetFeatureArgs{
			Id:                     "f6b2c44c-693c-4763-b010-895aa3d236bd",
			FeatureProfileId:       "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
			ServiceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
		}, nil)
		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 = Sdwan.GetServiceLanVpnInterfaceEthernetFeature.Invoke(new()
    {
        Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
        FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetServiceLanVpnInterfaceEthernetFeatureArgs;
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) {
        final var example = SdwanFunctions.getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs.builder()
            .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: sdwan:getServiceLanVpnInterfaceEthernetFeature
      arguments:
        id: f6b2c44c-693c-4763-b010-895aa3d236bd
        featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
        serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getServiceLanVpnInterfaceEthernetFeature
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getServiceLanVpnInterfaceEthernetFeature(args: GetServiceLanVpnInterfaceEthernetFeatureArgs, opts?: InvokeOptions): Promise<GetServiceLanVpnInterfaceEthernetFeatureResult>
function getServiceLanVpnInterfaceEthernetFeatureOutput(args: GetServiceLanVpnInterfaceEthernetFeatureOutputArgs, opts?: InvokeOptions): Output<GetServiceLanVpnInterfaceEthernetFeatureResult>def get_service_lan_vpn_interface_ethernet_feature(feature_profile_id: Optional[str] = None,
                                                   id: Optional[str] = None,
                                                   service_lan_vpn_feature_id: Optional[str] = None,
                                                   opts: Optional[InvokeOptions] = None) -> GetServiceLanVpnInterfaceEthernetFeatureResult
def get_service_lan_vpn_interface_ethernet_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
                                                   id: Optional[pulumi.Input[str]] = None,
                                                   service_lan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
                                                   opts: Optional[InvokeOptions] = None) -> Output[GetServiceLanVpnInterfaceEthernetFeatureResult]func LookupServiceLanVpnInterfaceEthernetFeature(ctx *Context, args *LookupServiceLanVpnInterfaceEthernetFeatureArgs, opts ...InvokeOption) (*LookupServiceLanVpnInterfaceEthernetFeatureResult, error)
func LookupServiceLanVpnInterfaceEthernetFeatureOutput(ctx *Context, args *LookupServiceLanVpnInterfaceEthernetFeatureOutputArgs, opts ...InvokeOption) LookupServiceLanVpnInterfaceEthernetFeatureResultOutput> Note: This function is named LookupServiceLanVpnInterfaceEthernetFeature in the Go SDK.
public static class GetServiceLanVpnInterfaceEthernetFeature 
{
    public static Task<GetServiceLanVpnInterfaceEthernetFeatureResult> InvokeAsync(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions? opts = null)
    public static Output<GetServiceLanVpnInterfaceEthernetFeatureResult> Invoke(GetServiceLanVpnInterfaceEthernetFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetServiceLanVpnInterfaceEthernetFeatureResult> getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
public static Output<GetServiceLanVpnInterfaceEthernetFeatureResult> getServiceLanVpnInterfaceEthernetFeature(GetServiceLanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
fn::invoke:
  function: sdwan:index/getServiceLanVpnInterfaceEthernetFeature:getServiceLanVpnInterfaceEthernetFeature
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- serviceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- feature_profile_ strid 
- Feature Profile ID
- id str
- The id of the Feature
- service_lan_ strvpn_ feature_ id 
- Service LAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
getServiceLanVpnInterfaceEthernetFeature Result
The following output properties are available:
- AclIpv4Egress stringPolicy Id 
- AclIpv4Ingress stringPolicy Id 
- AclIpv6Egress stringPolicy Id 
- AclIpv6Ingress stringPolicy Id 
- AclShaping intRate 
- Shaping Rate (Kbps)
- AclShaping stringRate Variable 
- Variable name
- ArpTimeout int
- Timeout value for dynamically learned ARP entries, \n\n seconds
- ArpTimeout stringVariable 
- Variable name
- Arps
List<GetService Lan Vpn Interface Ethernet Feature Arp> 
- Configure ARP entries
- Autonegotiate bool
- Link autonegotiation
- AutonegotiateVariable string
- Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- DuplexVariable string
- Variable name
- EnableDhcpv6 bool
- Enable DHCPv6
- FeatureProfile stringId 
- Feature Profile ID
- IcmpRedirect boolDisable 
- ICMP/ICMPv6 Redirect Disable
- IcmpRedirect stringDisable Variable 
- Variable name
- Id string
- The id of the Feature
- InterfaceDescription string
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- IP Address
- Ipv4AddressVariable string
- Variable name
- Ipv4DhcpDistance int
- DHCP Distance
- Ipv4DhcpDistance stringVariable 
- Variable name
- Ipv4DhcpHelper stringVariable 
- Variable name
- Ipv4DhcpHelpers List<string>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Nat bool
- enable Network Address Translation on this interface
- Ipv4NatLoopback string
- NAT Inside Source Loopback Interface
- Ipv4NatLoopback stringVariable 
- Variable name
- Ipv4NatOverload bool
- NAT Overload
- Ipv4NatOverload stringVariable 
- Variable name
- Ipv4NatPrefix intLength 
- NAT Pool Prefix Length
- Ipv4NatPrefix stringLength Variable 
- Variable name
- Ipv4NatRange stringEnd 
- NAT Pool Range End
- Ipv4NatRange stringEnd Variable 
- Variable name
- Ipv4NatRange stringStart 
- NAT Pool Range Start
- Ipv4NatRange stringStart Variable 
- Variable name
- Ipv4NatTcp intTimeout 
- Set NAT TCP session timeout, in minutes
- Ipv4NatTcp stringTimeout Variable 
- Variable name
- Ipv4NatType string
- NAT Type
- Ipv4NatType stringVariable 
- Variable name
- Ipv4NatUdp intTimeout 
- Set NAT UDP session timeout, in minutes
- Ipv4NatUdp stringTimeout Variable 
- Variable name
- Ipv4SecondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address> 
- Secondary IpV4 Addresses
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv4Vrrps
List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp> 
- Enable VRRP
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6AddressVariable string
- Variable name
- Ipv6DhcpHelpers List<GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> 
- DHCPv6 Helper
- Ipv6DhcpSecondary List<GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> 
- secondary IPv6 addresses
- Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface
- Ipv6SecondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address> 
- Static secondary IPv6 addresses
- Ipv6Vrrps
List<GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp> 
- Enable VRRP Ipv6
- LoadInterval int
- Interval for interface load calculation
- LoadInterval stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- MediaType string
- Media type
- MediaType stringVariable 
- Variable name
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- Shutdown bool
- ShutdownVariable string
- Variable name
- Speed string
- Set interface speed
- SpeedVariable string
- Variable name
- StaticNats List<GetService Lan Vpn Interface Ethernet Feature Static Nat> 
- static NAT
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- Tracker string
- Enable tracker for this interface
- TrackerVariable string
- Variable name
- TrustsecEnable boolEnforced Propogation 
- Enable/Disable SGT Enforcement on an interface
- TrustsecEnable boolSgt Propogation 
- Indicates that the interface is trustworthy for CTS
- TrustsecEnforced intSecurity Group Tag 
- SGT value between 2 and 65519
- TrustsecEnforced stringSecurity Group Tag Variable 
- Variable name
- TrustsecPropogate bool
- Enables the interface for CTS SGT authorization and forwarding
- TrustsecSecurity intGroup Tag 
- SGT value between 2 and 65519
- TrustsecSecurity stringGroup Tag Variable 
- Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- XconnectVariable string
- Variable name
- AclIpv4Egress stringPolicy Id 
- AclIpv4Ingress stringPolicy Id 
- AclIpv6Egress stringPolicy Id 
- AclIpv6Ingress stringPolicy Id 
- AclShaping intRate 
- Shaping Rate (Kbps)
- AclShaping stringRate Variable 
- Variable name
- ArpTimeout int
- Timeout value for dynamically learned ARP entries, \n\n seconds
- ArpTimeout stringVariable 
- Variable name
- Arps
[]GetService Lan Vpn Interface Ethernet Feature Arp 
- Configure ARP entries
- Autonegotiate bool
- Link autonegotiation
- AutonegotiateVariable string
- Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- DuplexVariable string
- Variable name
- EnableDhcpv6 bool
- Enable DHCPv6
- FeatureProfile stringId 
- Feature Profile ID
- IcmpRedirect boolDisable 
- ICMP/ICMPv6 Redirect Disable
- IcmpRedirect stringDisable Variable 
- Variable name
- Id string
- The id of the Feature
- InterfaceDescription string
- InterfaceDescription stringVariable 
- Variable name
- InterfaceMtu int
- Interface MTU
- InterfaceMtu stringVariable 
- Variable name
- InterfaceName string
- InterfaceName stringVariable 
- Variable name
- IpDirected boolBroadcast 
- IP Directed-Broadcast
- IpDirected stringBroadcast Variable 
- Variable name
- IpMtu int
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- IP Address
- Ipv4AddressVariable string
- Variable name
- Ipv4DhcpDistance int
- DHCP Distance
- Ipv4DhcpDistance stringVariable 
- Variable name
- Ipv4DhcpHelper stringVariable 
- Variable name
- Ipv4DhcpHelpers []string
- List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Nat bool
- enable Network Address Translation on this interface
- Ipv4NatLoopback string
- NAT Inside Source Loopback Interface
- Ipv4NatLoopback stringVariable 
- Variable name
- Ipv4NatOverload bool
- NAT Overload
- Ipv4NatOverload stringVariable 
- Variable name
- Ipv4NatPrefix intLength 
- NAT Pool Prefix Length
- Ipv4NatPrefix stringLength Variable 
- Variable name
- Ipv4NatRange stringEnd 
- NAT Pool Range End
- Ipv4NatRange stringEnd Variable 
- Variable name
- Ipv4NatRange stringStart 
- NAT Pool Range Start
- Ipv4NatRange stringStart Variable 
- Variable name
- Ipv4NatTcp intTimeout 
- Set NAT TCP session timeout, in minutes
- Ipv4NatTcp stringTimeout Variable 
- Variable name
- Ipv4NatType string
- NAT Type
- Ipv4NatType stringVariable 
- Variable name
- Ipv4NatUdp intTimeout 
- Set NAT UDP session timeout, in minutes
- Ipv4NatUdp stringTimeout Variable 
- Variable name
- Ipv4SecondaryAddresses []GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address 
- Secondary IpV4 Addresses
- Ipv4SubnetMask string
- Subnet Mask
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv4Vrrps
[]GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp 
- Enable VRRP
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6AddressVariable string
- Variable name
- Ipv6DhcpHelpers []GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper 
- DHCPv6 Helper
- Ipv6DhcpSecondary []GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address 
- secondary IPv6 addresses
- Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface
- Ipv6SecondaryAddresses []GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address 
- Static secondary IPv6 addresses
- Ipv6Vrrps
[]GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp 
- Enable VRRP Ipv6
- LoadInterval int
- Interval for interface load calculation
- LoadInterval stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- MediaType string
- Media type
- MediaType stringVariable 
- Variable name
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- ServiceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- Shutdown bool
- ShutdownVariable string
- Variable name
- Speed string
- Set interface speed
- SpeedVariable string
- Variable name
- StaticNats []GetService Lan Vpn Interface Ethernet Feature Static Nat 
- static NAT
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- Tracker string
- Enable tracker for this interface
- TrackerVariable string
- Variable name
- TrustsecEnable boolEnforced Propogation 
- Enable/Disable SGT Enforcement on an interface
- TrustsecEnable boolSgt Propogation 
- Indicates that the interface is trustworthy for CTS
- TrustsecEnforced intSecurity Group Tag 
- SGT value between 2 and 65519
- TrustsecEnforced stringSecurity Group Tag Variable 
- Variable name
- TrustsecPropogate bool
- Enables the interface for CTS SGT authorization and forwarding
- TrustsecSecurity intGroup Tag 
- SGT value between 2 and 65519
- TrustsecSecurity stringGroup Tag Variable 
- Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- XconnectVariable string
- Variable name
- aclIpv4Egress StringPolicy Id 
- aclIpv4Ingress StringPolicy Id 
- aclIpv6Egress StringPolicy Id 
- aclIpv6Ingress StringPolicy Id 
- aclShaping IntegerRate 
- Shaping Rate (Kbps)
- aclShaping StringRate Variable 
- Variable name
- arpTimeout Integer
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout StringVariable 
- Variable name
- arps
List<GetService Lan Vpn Interface Ethernet Feature Arp> 
- Configure ARP entries
- autonegotiate Boolean
- Link autonegotiation
- autonegotiateVariable String
- Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplexVariable String
- Variable name
- enableDhcpv6 Boolean
- Enable DHCPv6
- featureProfile StringId 
- Feature Profile ID
- icmpRedirect BooleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect StringDisable Variable 
- Variable name
- id String
- The id of the Feature
- interfaceDescription String
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Integer
- Interface MTU
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Integer
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- IP Address
- ipv4AddressVariable String
- Variable name
- ipv4DhcpDistance Integer
- DHCP Distance
- ipv4DhcpDistance StringVariable 
- Variable name
- ipv4DhcpHelper StringVariable 
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat Boolean
- enable Network Address Translation on this interface
- ipv4NatLoopback String
- NAT Inside Source Loopback Interface
- ipv4NatLoopback StringVariable 
- Variable name
- ipv4NatOverload Boolean
- NAT Overload
- ipv4NatOverload StringVariable 
- Variable name
- ipv4NatPrefix IntegerLength 
- NAT Pool Prefix Length
- ipv4NatPrefix StringLength Variable 
- Variable name
- ipv4NatRange StringEnd 
- NAT Pool Range End
- ipv4NatRange StringEnd Variable 
- Variable name
- ipv4NatRange StringStart 
- NAT Pool Range Start
- ipv4NatRange StringStart Variable 
- Variable name
- ipv4NatTcp IntegerTimeout 
- Set NAT TCP session timeout, in minutes
- ipv4NatTcp StringTimeout Variable 
- Variable name
- ipv4NatType String
- NAT Type
- ipv4NatType StringVariable 
- Variable name
- ipv4NatUdp IntegerTimeout 
- Set NAT UDP session timeout, in minutes
- ipv4NatUdp StringTimeout Variable 
- Variable name
- ipv4SecondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address> 
- Secondary IpV4 Addresses
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
- ipv4Vrrps
List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp> 
- Enable VRRP
- ipv6Address String
- IPv6 Address Secondary
- ipv6AddressVariable String
- Variable name
- ipv6DhcpHelpers List<GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> 
- DHCPv6 Helper
- ipv6DhcpSecondary List<GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> 
- secondary IPv6 addresses
- ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface
- ipv6SecondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address> 
- Static secondary IPv6 addresses
- ipv6Vrrps
List<GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp> 
- Enable VRRP Ipv6
- loadInterval Integer
- Interval for interface load calculation
- loadInterval StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
- mediaType String
- Media type
- mediaType StringVariable 
- Variable name
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown Boolean
- shutdownVariable String
- Variable name
- speed String
- Set interface speed
- speedVariable String
- Variable name
- staticNats List<GetService Lan Vpn Interface Ethernet Feature Static Nat> 
- static NAT
- tcpMss Integer
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tracker String
- Enable tracker for this interface
- trackerVariable String
- Variable name
- trustsecEnable BooleanEnforced Propogation 
- Enable/Disable SGT Enforcement on an interface
- trustsecEnable BooleanSgt Propogation 
- Indicates that the interface is trustworthy for CTS
- trustsecEnforced IntegerSecurity Group Tag 
- SGT value between 2 and 65519
- trustsecEnforced StringSecurity Group Tag Variable 
- Variable name
- trustsecPropogate Boolean
- Enables the interface for CTS SGT authorization and forwarding
- trustsecSecurity IntegerGroup Tag 
- SGT value between 2 and 65519
- trustsecSecurity StringGroup Tag Variable 
- Variable name
- version Integer
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnectVariable String
- Variable name
- aclIpv4Egress stringPolicy Id 
- aclIpv4Ingress stringPolicy Id 
- aclIpv6Egress stringPolicy Id 
- aclIpv6Ingress stringPolicy Id 
- aclShaping numberRate 
- Shaping Rate (Kbps)
- aclShaping stringRate Variable 
- Variable name
- arpTimeout number
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout stringVariable 
- Variable name
- arps
GetService Lan Vpn Interface Ethernet Feature Arp[] 
- Configure ARP entries
- autonegotiate boolean
- Link autonegotiation
- autonegotiateVariable string
- Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode
- duplexVariable string
- Variable name
- enableDhcpv6 boolean
- Enable DHCPv6
- featureProfile stringId 
- Feature Profile ID
- icmpRedirect booleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect stringDisable Variable 
- Variable name
- id string
- The id of the Feature
- interfaceDescription string
- interfaceDescription stringVariable 
- Variable name
- interfaceMtu number
- Interface MTU
- interfaceMtu stringVariable 
- Variable name
- interfaceName string
- interfaceName stringVariable 
- Variable name
- ipDirected booleanBroadcast 
- IP Directed-Broadcast
- ipDirected stringBroadcast Variable 
- Variable name
- ipMtu number
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- IP Address
- ipv4AddressVariable string
- Variable name
- ipv4DhcpDistance number
- DHCP Distance
- ipv4DhcpDistance stringVariable 
- Variable name
- ipv4DhcpHelper stringVariable 
- Variable name
- ipv4DhcpHelpers string[]
- List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat boolean
- enable Network Address Translation on this interface
- ipv4NatLoopback string
- NAT Inside Source Loopback Interface
- ipv4NatLoopback stringVariable 
- Variable name
- ipv4NatOverload boolean
- NAT Overload
- ipv4NatOverload stringVariable 
- Variable name
- ipv4NatPrefix numberLength 
- NAT Pool Prefix Length
- ipv4NatPrefix stringLength Variable 
- Variable name
- ipv4NatRange stringEnd 
- NAT Pool Range End
- ipv4NatRange stringEnd Variable 
- Variable name
- ipv4NatRange stringStart 
- NAT Pool Range Start
- ipv4NatRange stringStart Variable 
- Variable name
- ipv4NatTcp numberTimeout 
- Set NAT TCP session timeout, in minutes
- ipv4NatTcp stringTimeout Variable 
- Variable name
- ipv4NatType string
- NAT Type
- ipv4NatType stringVariable 
- Variable name
- ipv4NatUdp numberTimeout 
- Set NAT UDP session timeout, in minutes
- ipv4NatUdp stringTimeout Variable 
- Variable name
- ipv4SecondaryAddresses GetService Lan Vpn Interface Ethernet Feature Ipv4Secondary Address[] 
- Secondary IpV4 Addresses
- ipv4SubnetMask string
- Subnet Mask
- ipv4SubnetMask stringVariable 
- Variable name
- ipv4Vrrps
GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp[] 
- Enable VRRP
- ipv6Address string
- IPv6 Address Secondary
- ipv6AddressVariable string
- Variable name
- ipv6DhcpHelpers GetService Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper[] 
- DHCPv6 Helper
- ipv6DhcpSecondary GetAddresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address[] 
- secondary IPv6 addresses
- ipv6Nat boolean
- enable Network Address Translation ipv6 on this interface
- ipv6SecondaryAddresses GetService Lan Vpn Interface Ethernet Feature Ipv6Secondary Address[] 
- Static secondary IPv6 addresses
- ipv6Vrrps
GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp[] 
- Enable VRRP Ipv6
- loadInterval number
- Interval for interface load calculation
- loadInterval stringVariable 
- Variable name
- macAddress string
- MAC Address
- macAddress stringVariable 
- Variable name
- mediaType string
- Media type
- mediaType stringVariable 
- Variable name
- name string
- The name of the Feature
- nat64 boolean
- NAT64 on this interface
- serviceLan stringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown boolean
- shutdownVariable string
- Variable name
- speed string
- Set interface speed
- speedVariable string
- Variable name
- staticNats GetService Lan Vpn Interface Ethernet Feature Static Nat[] 
- static NAT
- tcpMss number
- TCP MSS on SYN packets, in bytes
- tcpMss stringVariable 
- Variable name
- tracker string
- Enable tracker for this interface
- trackerVariable string
- Variable name
- trustsecEnable booleanEnforced Propogation 
- Enable/Disable SGT Enforcement on an interface
- trustsecEnable booleanSgt Propogation 
- Indicates that the interface is trustworthy for CTS
- trustsecEnforced numberSecurity Group Tag 
- SGT value between 2 and 65519
- trustsecEnforced stringSecurity Group Tag Variable 
- Variable name
- trustsecPropogate boolean
- Enables the interface for CTS SGT authorization and forwarding
- trustsecSecurity numberGroup Tag 
- SGT value between 2 and 65519
- trustsecSecurity stringGroup Tag Variable 
- Variable name
- version number
- The version of the Feature
- xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnectVariable string
- Variable name
- acl_ipv4_ stregress_ policy_ id 
- acl_ipv4_ stringress_ policy_ id 
- acl_ipv6_ stregress_ policy_ id 
- acl_ipv6_ stringress_ policy_ id 
- acl_shaping_ intrate 
- Shaping Rate (Kbps)
- acl_shaping_ strrate_ variable 
- Variable name
- arp_timeout int
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arp_timeout_ strvariable 
- Variable name
- arps
Sequence[GetService Lan Vpn Interface Ethernet Feature Arp] 
- Configure ARP entries
- autonegotiate bool
- Link autonegotiation
- autonegotiate_variable str
- Variable name
- description str
- The description of the Feature
- duplex str
- Duplex mode
- duplex_variable str
- Variable name
- enable_dhcpv6 bool
- Enable DHCPv6
- feature_profile_ strid 
- Feature Profile ID
- icmp_redirect_ booldisable 
- ICMP/ICMPv6 Redirect Disable
- icmp_redirect_ strdisable_ variable 
- Variable name
- id str
- The id of the Feature
- interface_description str
- interface_description_ strvariable 
- Variable name
- interface_mtu int
- Interface MTU
- interface_mtu_ strvariable 
- Variable name
- interface_name str
- interface_name_ strvariable 
- Variable name
- ip_directed_ boolbroadcast 
- IP Directed-Broadcast
- ip_directed_ strbroadcast_ variable 
- Variable name
- ip_mtu int
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip_mtu_ strvariable 
- Variable name
- ipv4_address str
- IP Address
- ipv4_address_ strvariable 
- Variable name
- ipv4_dhcp_ intdistance 
- DHCP Distance
- ipv4_dhcp_ strdistance_ variable 
- Variable name
- ipv4_dhcp_ strhelper_ variable 
- Variable name
- ipv4_dhcp_ Sequence[str]helpers 
- List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_nat bool
- enable Network Address Translation on this interface
- ipv4_nat_ strloopback 
- NAT Inside Source Loopback Interface
- ipv4_nat_ strloopback_ variable 
- Variable name
- ipv4_nat_ booloverload 
- NAT Overload
- ipv4_nat_ stroverload_ variable 
- Variable name
- ipv4_nat_ intprefix_ length 
- NAT Pool Prefix Length
- ipv4_nat_ strprefix_ length_ variable 
- Variable name
- ipv4_nat_ strrange_ end 
- NAT Pool Range End
- ipv4_nat_ strrange_ end_ variable 
- Variable name
- ipv4_nat_ strrange_ start 
- NAT Pool Range Start
- ipv4_nat_ strrange_ start_ variable 
- Variable name
- ipv4_nat_ inttcp_ timeout 
- Set NAT TCP session timeout, in minutes
- ipv4_nat_ strtcp_ timeout_ variable 
- Variable name
- ipv4_nat_ strtype 
- NAT Type
- ipv4_nat_ strtype_ variable 
- Variable name
- ipv4_nat_ intudp_ timeout 
- Set NAT UDP session timeout, in minutes
- ipv4_nat_ strudp_ timeout_ variable 
- Variable name
- ipv4_secondary_ Sequence[Getaddresses Service Lan Vpn Interface Ethernet Feature Ipv4Secondary Address] 
- Secondary IpV4 Addresses
- ipv4_subnet_ strmask 
- Subnet Mask
- ipv4_subnet_ strmask_ variable 
- Variable name
- ipv4_vrrps Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp] 
- Enable VRRP
- ipv6_address str
- IPv6 Address Secondary
- ipv6_address_ strvariable 
- Variable name
- ipv6_dhcp_ Sequence[Gethelpers Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper] 
- DHCPv6 Helper
- ipv6_dhcp_ Sequence[Getsecondary_ addresses Service Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address] 
- secondary IPv6 addresses
- ipv6_nat bool
- enable Network Address Translation ipv6 on this interface
- ipv6_secondary_ Sequence[Getaddresses Service Lan Vpn Interface Ethernet Feature Ipv6Secondary Address] 
- Static secondary IPv6 addresses
- ipv6_vrrps Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp] 
- Enable VRRP Ipv6
- load_interval int
- Interval for interface load calculation
- load_interval_ strvariable 
- Variable name
- mac_address str
- MAC Address
- mac_address_ strvariable 
- Variable name
- media_type str
- Media type
- media_type_ strvariable 
- Variable name
- name str
- The name of the Feature
- nat64 bool
- NAT64 on this interface
- service_lan_ strvpn_ feature_ id 
- Service LAN VPN Feature ID
- shutdown bool
- shutdown_variable str
- Variable name
- speed str
- Set interface speed
- speed_variable str
- Variable name
- static_nats Sequence[GetService Lan Vpn Interface Ethernet Feature Static Nat] 
- static NAT
- tcp_mss int
- TCP MSS on SYN packets, in bytes
- tcp_mss_ strvariable 
- Variable name
- tracker str
- Enable tracker for this interface
- tracker_variable str
- Variable name
- trustsec_enable_ boolenforced_ propogation 
- Enable/Disable SGT Enforcement on an interface
- trustsec_enable_ boolsgt_ propogation 
- Indicates that the interface is trustworthy for CTS
- trustsec_enforced_ intsecurity_ group_ tag 
- SGT value between 2 and 65519
- trustsec_enforced_ strsecurity_ group_ tag_ variable 
- Variable name
- trustsec_propogate bool
- Enables the interface for CTS SGT authorization and forwarding
- trustsec_security_ intgroup_ tag 
- SGT value between 2 and 65519
- trustsec_security_ strgroup_ tag_ variable 
- Variable name
- version int
- The version of the Feature
- xconnect str
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnect_variable str
- Variable name
- aclIpv4Egress StringPolicy Id 
- aclIpv4Ingress StringPolicy Id 
- aclIpv6Egress StringPolicy Id 
- aclIpv6Ingress StringPolicy Id 
- aclShaping NumberRate 
- Shaping Rate (Kbps)
- aclShaping StringRate Variable 
- Variable name
- arpTimeout Number
- Timeout value for dynamically learned ARP entries, \n\n seconds
- arpTimeout StringVariable 
- Variable name
- arps List<Property Map>
- Configure ARP entries
- autonegotiate Boolean
- Link autonegotiation
- autonegotiateVariable String
- Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplexVariable String
- Variable name
- enableDhcpv6 Boolean
- Enable DHCPv6
- featureProfile StringId 
- Feature Profile ID
- icmpRedirect BooleanDisable 
- ICMP/ICMPv6 Redirect Disable
- icmpRedirect StringDisable Variable 
- Variable name
- id String
- The id of the Feature
- interfaceDescription String
- interfaceDescription StringVariable 
- Variable name
- interfaceMtu Number
- Interface MTU
- interfaceMtu StringVariable 
- Variable name
- interfaceName String
- interfaceName StringVariable 
- Variable name
- ipDirected BooleanBroadcast 
- IP Directed-Broadcast
- ipDirected StringBroadcast Variable 
- Variable name
- ipMtu Number
- IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- IP Address
- ipv4AddressVariable String
- Variable name
- ipv4DhcpDistance Number
- DHCP Distance
- ipv4DhcpDistance StringVariable 
- Variable name
- ipv4DhcpHelper StringVariable 
- Variable name
- ipv4DhcpHelpers List<String>
- List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Nat Boolean
- enable Network Address Translation on this interface
- ipv4NatLoopback String
- NAT Inside Source Loopback Interface
- ipv4NatLoopback StringVariable 
- Variable name
- ipv4NatOverload Boolean
- NAT Overload
- ipv4NatOverload StringVariable 
- Variable name
- ipv4NatPrefix NumberLength 
- NAT Pool Prefix Length
- ipv4NatPrefix StringLength Variable 
- Variable name
- ipv4NatRange StringEnd 
- NAT Pool Range End
- ipv4NatRange StringEnd Variable 
- Variable name
- ipv4NatRange StringStart 
- NAT Pool Range Start
- ipv4NatRange StringStart Variable 
- Variable name
- ipv4NatTcp NumberTimeout 
- Set NAT TCP session timeout, in minutes
- ipv4NatTcp StringTimeout Variable 
- Variable name
- ipv4NatType String
- NAT Type
- ipv4NatType StringVariable 
- Variable name
- ipv4NatUdp NumberTimeout 
- Set NAT UDP session timeout, in minutes
- ipv4NatUdp StringTimeout Variable 
- Variable name
- ipv4SecondaryAddresses List<Property Map>
- Secondary IpV4 Addresses
- ipv4SubnetMask String
- Subnet Mask
- ipv4SubnetMask StringVariable 
- Variable name
- ipv4Vrrps List<Property Map>
- Enable VRRP
- ipv6Address String
- IPv6 Address Secondary
- ipv6AddressVariable String
- Variable name
- ipv6DhcpHelpers List<Property Map>
- DHCPv6 Helper
- ipv6DhcpSecondary List<Property Map>Addresses 
- secondary IPv6 addresses
- ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface
- ipv6SecondaryAddresses List<Property Map>
- Static secondary IPv6 addresses
- ipv6Vrrps List<Property Map>
- Enable VRRP Ipv6
- loadInterval Number
- Interval for interface load calculation
- loadInterval StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
- mediaType String
- Media type
- mediaType StringVariable 
- Variable name
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- serviceLan StringVpn Feature Id 
- Service LAN VPN Feature ID
- shutdown Boolean
- shutdownVariable String
- Variable name
- speed String
- Set interface speed
- speedVariable String
- Variable name
- staticNats List<Property Map>
- static NAT
- tcpMss Number
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tracker String
- Enable tracker for this interface
- trackerVariable String
- Variable name
- trustsecEnable BooleanEnforced Propogation 
- Enable/Disable SGT Enforcement on an interface
- trustsecEnable BooleanSgt Propogation 
- Indicates that the interface is trustworthy for CTS
- trustsecEnforced NumberSecurity Group Tag 
- SGT value between 2 and 65519
- trustsecEnforced StringSecurity Group Tag Variable 
- Variable name
- trustsecPropogate Boolean
- Enables the interface for CTS SGT authorization and forwarding
- trustsecSecurity NumberGroup Tag 
- SGT value between 2 and 65519
- trustsecSecurity StringGroup Tag Variable 
- Variable name
- version Number
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface
- xconnectVariable String
- Variable name
Supporting Types
GetServiceLanVpnInterfaceEthernetFeatureArp       
- IpAddress string
- IPV4 Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- IpAddress string
- IPV4 Address
- IpAddress stringVariable 
- Variable name
- MacAddress string
- MAC Address
- MacAddress stringVariable 
- Variable name
- ipAddress String
- IPV4 Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
- ipAddress string
- IPV4 Address
- ipAddress stringVariable 
- Variable name
- macAddress string
- MAC Address
- macAddress stringVariable 
- Variable name
- ip_address str
- IPV4 Address
- ip_address_ strvariable 
- Variable name
- mac_address str
- MAC Address
- mac_address_ strvariable 
- Variable name
- ipAddress String
- IPV4 Address
- ipAddress StringVariable 
- Variable name
- macAddress String
- MAC Address
- macAddress StringVariable 
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress        
- Address string
- IpV4 Address
- AddressVariable string
- Variable name
- SubnetMask string
- Subnet Mask
- SubnetMask stringVariable 
- Variable name
- Address string
- IpV4 Address
- AddressVariable string
- Variable name
- SubnetMask string
- Subnet Mask
- SubnetMask stringVariable 
- Variable name
- address String
- IpV4 Address
- addressVariable String
- Variable name
- subnetMask String
- Subnet Mask
- subnetMask StringVariable 
- Variable name
- address string
- IpV4 Address
- addressVariable string
- Variable name
- subnetMask string
- Subnet Mask
- subnetMask stringVariable 
- Variable name
- address str
- IpV4 Address
- address_variable str
- Variable name
- subnet_mask str
- Subnet Mask
- subnet_mask_ strvariable 
- Variable name
- address String
- IpV4 Address
- addressVariable String
- Variable name
- subnetMask String
- Subnet Mask
- subnetMask StringVariable 
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp       
- Address string
- VRRP Ip Address
- AddressVariable string
- Variable name
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> 
- VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TlocPref intChange Value 
- Timer interval for successive advertisements, in milliseconds
- TlocPrefix boolChange 
- Timer interval for successive advertisements, in milliseconds
- TrackOmp bool
- Track OMP status
- TrackingObjects List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> 
- Tracking object for VRRP configuration
- Address string
- VRRP Ip Address
- AddressVariable string
- Variable name
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- SecondaryAddresses []GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address 
- VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TlocPref intChange Value 
- Timer interval for successive advertisements, in milliseconds
- TlocPrefix boolChange 
- Timer interval for successive advertisements, in milliseconds
- TrackOmp bool
- Track OMP status
- TrackingObjects []GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object 
- Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- addressVariable String
- Variable name
- groupId Integer
- Group ID
- groupId StringVariable 
- Variable name
- priority Integer
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> 
- VRRP Secondary Ip Addresses
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- tlocPref IntegerChange Value 
- Timer interval for successive advertisements, in milliseconds
- tlocPrefix BooleanChange 
- Timer interval for successive advertisements, in milliseconds
- trackOmp Boolean
- Track OMP status
- trackingObjects List<GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> 
- Tracking object for VRRP configuration
- address string
- VRRP Ip Address
- addressVariable string
- Variable name
- groupId number
- Group ID
- groupId stringVariable 
- Variable name
- priority number
- Set priority
- priorityVariable string
- Variable name
- secondaryAddresses GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address[] 
- VRRP Secondary Ip Addresses
- timer number
- Timer interval for successive advertisements, in milliseconds
- timerVariable string
- Variable name
- tlocPref numberChange Value 
- Timer interval for successive advertisements, in milliseconds
- tlocPrefix booleanChange 
- Timer interval for successive advertisements, in milliseconds
- trackOmp boolean
- Track OMP status
- trackingObjects GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object[] 
- Tracking object for VRRP configuration
- address str
- VRRP Ip Address
- address_variable str
- Variable name
- group_id int
- Group ID
- group_id_ strvariable 
- Variable name
- priority int
- Set priority
- priority_variable str
- Variable name
- secondary_addresses Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address] 
- VRRP Secondary Ip Addresses
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_variable str
- Variable name
- tloc_pref_ intchange_ value 
- Timer interval for successive advertisements, in milliseconds
- tloc_prefix_ boolchange 
- Timer interval for successive advertisements, in milliseconds
- track_omp bool
- Track OMP status
- tracking_objects Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object] 
- Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- addressVariable String
- Variable name
- groupId Number
- Group ID
- groupId StringVariable 
- Variable name
- priority Number
- Set priority
- priorityVariable String
- Variable name
- secondaryAddresses List<Property Map>
- VRRP Secondary Ip Addresses
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- tlocPref NumberChange Value 
- Timer interval for successive advertisements, in milliseconds
- tlocPrefix BooleanChange 
- Timer interval for successive advertisements, in milliseconds
- trackOmp Boolean
- Track OMP status
- trackingObjects List<Property Map>
- Tracking object for VRRP configuration
GetServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress         
- Address string
- Ip Address
- AddressVariable string
- Variable name
- SubnetMask string
- Subnet Mask
- SubnetMask stringVariable 
- Variable name
- Address string
- Ip Address
- AddressVariable string
- Variable name
- SubnetMask string
- Subnet Mask
- SubnetMask stringVariable 
- Variable name
- address String
- Ip Address
- addressVariable String
- Variable name
- subnetMask String
- Subnet Mask
- subnetMask StringVariable 
- Variable name
- address string
- Ip Address
- addressVariable string
- Variable name
- subnetMask string
- Subnet Mask
- subnetMask stringVariable 
- Variable name
- address str
- Ip Address
- address_variable str
- Variable name
- subnet_mask str
- Subnet Mask
- subnet_mask_ strvariable 
- Variable name
- address String
- Ip Address
- addressVariable String
- Variable name
- subnetMask String
- Subnet Mask
- subnetMask StringVariable 
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObject         
- DecrementValue int
- Decrement Value for VRRP priority
- DecrementValue stringVariable 
- Variable name
- TrackerAction string
- Track Action
- TrackerAction stringVariable 
- Variable name
- TrackerId string
- DecrementValue int
- Decrement Value for VRRP priority
- DecrementValue stringVariable 
- Variable name
- TrackerAction string
- Track Action
- TrackerAction stringVariable 
- Variable name
- TrackerId string
- decrementValue Integer
- Decrement Value for VRRP priority
- decrementValue StringVariable 
- Variable name
- trackerAction String
- Track Action
- trackerAction StringVariable 
- Variable name
- trackerId String
- decrementValue number
- Decrement Value for VRRP priority
- decrementValue stringVariable 
- Variable name
- trackerAction string
- Track Action
- trackerAction stringVariable 
- Variable name
- trackerId string
- decrement_value int
- Decrement Value for VRRP priority
- decrement_value_ strvariable 
- Variable name
- tracker_action str
- Track Action
- tracker_action_ strvariable 
- Variable name
- tracker_id str
- decrementValue Number
- Decrement Value for VRRP priority
- decrementValue StringVariable 
- Variable name
- trackerAction String
- Track Action
- trackerAction StringVariable 
- Variable name
- trackerId String
GetServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper        
- Address string
- DHCPv6 Helper address
- AddressVariable string
- Variable name
- Dhcpv6HelperVpn int
- DHCPv6 Helper VPN
- Dhcpv6HelperVpn stringVariable 
- Variable name
- Address string
- DHCPv6 Helper address
- AddressVariable string
- Variable name
- Dhcpv6HelperVpn int
- DHCPv6 Helper VPN
- Dhcpv6HelperVpn stringVariable 
- Variable name
- address String
- DHCPv6 Helper address
- addressVariable String
- Variable name
- dhcpv6HelperVpn Integer
- DHCPv6 Helper VPN
- dhcpv6HelperVpn StringVariable 
- Variable name
- address string
- DHCPv6 Helper address
- addressVariable string
- Variable name
- dhcpv6HelperVpn number
- DHCPv6 Helper VPN
- dhcpv6HelperVpn stringVariable 
- Variable name
- address str
- DHCPv6 Helper address
- address_variable str
- Variable name
- dhcpv6_helper_ intvpn 
- DHCPv6 Helper VPN
- dhcpv6_helper_ strvpn_ variable 
- Variable name
- address String
- DHCPv6 Helper address
- addressVariable String
- Variable name
- dhcpv6HelperVpn Number
- DHCPv6 Helper VPN
- dhcpv6HelperVpn StringVariable 
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress         
- Address string
- IPv6 Address Secondary
- AddressVariable string
- Variable name
- Address string
- IPv6 Address Secondary
- AddressVariable string
- Variable name
- address String
- IPv6 Address Secondary
- addressVariable String
- Variable name
- address string
- IPv6 Address Secondary
- addressVariable string
- Variable name
- address str
- IPv6 Address Secondary
- address_variable str
- Variable name
- address String
- IPv6 Address Secondary
- addressVariable String
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress        
- Address string
- IPv6 Address Secondary
- AddressVariable string
- Variable name
- Address string
- IPv6 Address Secondary
- AddressVariable string
- Variable name
- address String
- IPv6 Address Secondary
- addressVariable String
- Variable name
- address string
- IPv6 Address Secondary
- addressVariable string
- Variable name
- address str
- IPv6 Address Secondary
- address_variable str
- Variable name
- address String
- IPv6 Address Secondary
- addressVariable String
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp       
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Ipv6Addresses
List<GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> 
- IPv6 VRRP
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TrackOmp bool
- Track OMP status
- GroupId int
- Group ID
- GroupId stringVariable 
- Variable name
- Ipv6Addresses
[]GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address 
- IPv6 VRRP
- Priority int
- Set priority
- PriorityVariable string
- Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- TimerVariable string
- Variable name
- TrackOmp bool
- Track OMP status
- groupId Integer
- Group ID
- groupId StringVariable 
- Variable name
- ipv6Addresses
List<GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> 
- IPv6 VRRP
- priority Integer
- Set priority
- priorityVariable String
- Variable name
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- trackOmp Boolean
- Track OMP status
- groupId number
- Group ID
- groupId stringVariable 
- Variable name
- ipv6Addresses
GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address[] 
- IPv6 VRRP
- priority number
- Set priority
- priorityVariable string
- Variable name
- timer number
- Timer interval for successive advertisements, in milliseconds
- timerVariable string
- Variable name
- trackOmp boolean
- Track OMP status
- group_id int
- Group ID
- group_id_ strvariable 
- Variable name
- ipv6_addresses Sequence[GetService Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address] 
- IPv6 VRRP
- priority int
- Set priority
- priority_variable str
- Variable name
- timer int
- Timer interval for successive advertisements, in milliseconds
- timer_variable str
- Variable name
- track_omp bool
- Track OMP status
- groupId Number
- Group ID
- groupId StringVariable 
- Variable name
- ipv6Addresses List<Property Map>
- IPv6 VRRP
- priority Number
- Set priority
- priorityVariable String
- Variable name
- timer Number
- Timer interval for successive advertisements, in milliseconds
- timerVariable String
- Variable name
- trackOmp Boolean
- Track OMP status
GetServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address        
- GlobalAddress string
- Assign Global IPv6 Prefix
- GlobalAddress stringVariable 
- Variable name
- LinkLocal stringAddress 
- Use link-local IPv6 Address
- LinkLocal stringAddress Variable 
- Variable name
- GlobalAddress string
- Assign Global IPv6 Prefix
- GlobalAddress stringVariable 
- Variable name
- LinkLocal stringAddress 
- Use link-local IPv6 Address
- LinkLocal stringAddress Variable 
- Variable name
- globalAddress String
- Assign Global IPv6 Prefix
- globalAddress StringVariable 
- Variable name
- linkLocal StringAddress 
- Use link-local IPv6 Address
- linkLocal StringAddress Variable 
- Variable name
- globalAddress string
- Assign Global IPv6 Prefix
- globalAddress stringVariable 
- Variable name
- linkLocal stringAddress 
- Use link-local IPv6 Address
- linkLocal stringAddress Variable 
- Variable name
- global_address str
- Assign Global IPv6 Prefix
- global_address_ strvariable 
- Variable name
- link_local_ straddress 
- Use link-local IPv6 Address
- link_local_ straddress_ variable 
- Variable name
- globalAddress String
- Assign Global IPv6 Prefix
- globalAddress StringVariable 
- Variable name
- linkLocal StringAddress 
- Use link-local IPv6 Address
- linkLocal StringAddress Variable 
- Variable name
GetServiceLanVpnInterfaceEthernetFeatureStaticNat        
- Direction string
- Direction of static NAT translation
- SourceIp string
- Source IP address to be translated
- SourceIp stringVariable 
- Variable name
- SourceVpn int
- Source VPN ID
- SourceVpn stringVariable 
- Variable name
- TranslateIp string
- Statically translated source IP address
- TranslateIp stringVariable 
- Variable name
- Direction string
- Direction of static NAT translation
- SourceIp string
- Source IP address to be translated
- SourceIp stringVariable 
- Variable name
- SourceVpn int
- Source VPN ID
- SourceVpn stringVariable 
- Variable name
- TranslateIp string
- Statically translated source IP address
- TranslateIp stringVariable 
- Variable name
- direction String
- Direction of static NAT translation
- sourceIp String
- Source IP address to be translated
- sourceIp StringVariable 
- Variable name
- sourceVpn Integer
- Source VPN ID
- sourceVpn StringVariable 
- Variable name
- translateIp String
- Statically translated source IP address
- translateIp StringVariable 
- Variable name
- direction string
- Direction of static NAT translation
- sourceIp string
- Source IP address to be translated
- sourceIp stringVariable 
- Variable name
- sourceVpn number
- Source VPN ID
- sourceVpn stringVariable 
- Variable name
- translateIp string
- Statically translated source IP address
- translateIp stringVariable 
- Variable name
- direction str
- Direction of static NAT translation
- source_ip str
- Source IP address to be translated
- source_ip_ strvariable 
- Variable name
- source_vpn int
- Source VPN ID
- source_vpn_ strvariable 
- Variable name
- translate_ip str
- Statically translated source IP address
- translate_ip_ strvariable 
- Variable name
- direction String
- Direction of static NAT translation
- sourceIp String
- Source IP address to be translated
- sourceIp StringVariable 
- Variable name
- sourceVpn Number
- Source VPN ID
- sourceVpn StringVariable 
- Variable name
- translateIp String
- Statically translated source IP address
- translateIp StringVariable 
- Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
