published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
This resource can manage a Service LAN VPN Interface Ethernet 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.ServiceLanVpnInterfaceEthernetFeature("example", {
name: "Example",
description: "My Example",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
serviceLanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
shutdown: false,
interfaceName: "GigabitEthernet3",
interfaceDescription: "LAN",
ipv4ConfigurationType: "static",
ipv4Address: "1.2.3.4",
ipv4SubnetMask: "0.0.0.0",
ipv4SecondaryAddresses: [{
address: "1.2.3.5",
subnetMask: "0.0.0.0",
}],
ipv4DhcpHelpers: ["1.2.3.4"],
ipv6ConfigurationType: "static",
ipv6DhcpHelpers: [{
address: "2001:0:0:1::0",
dhcpv6HelperVpn: 1,
}],
ipv4Nat: false,
ipv4NatRangeStart: "1.2.3.4",
ipv4NatRangeEnd: "4.5.6.7",
ipv4NatPrefixLength: 1,
ipv4NatOverload: true,
ipv6Nat: true,
nat64: false,
aclShapingRate: 12,
ipv6Vrrps: [{
groupId: 1,
priority: 100,
timer: 1000,
trackOmp: false,
ipv6Addresses: [{
linkLocalAddress: "1::1",
globalAddress: "1::1/24",
}],
followDualRouterHighAvailability: false,
minPreemptDelay: 60,
}],
ipv4Vrrps: [{
groupId: 1,
priority: 100,
timer: 1000,
trackOmp: false,
address: "1.2.3.4",
secondaryAddresses: [{
address: "2.3.4.5",
subnetMask: "0.0.0.0",
}],
tlocPrefixChange: true,
tlocPrefChangeValue: 100,
trackingObjects: [{
trackerId: "1b270f6d-479b-47e3-ab0b-51bc6811a303",
trackerAction: "Decrement",
decrementValue: 100,
}],
followDualRouterHighAvailability: false,
minPreemptDelay: 60,
}],
arps: [{
ipAddress: "1.2.3.4",
macAddress: "00-B0-D0-63-C2-26",
}],
trustsecEnableSgtPropogation: false,
trustsecPropogate: true,
trustsecSecurityGroupTag: 123,
trustsecEnableEnforcedPropogation: false,
trustsecEnforcedSecurityGroupTag: 1234,
duplex: "full",
macAddress: "00-B0-D0-63-C2-26",
ipMtu: 1500,
interfaceMtu: 1500,
tcpMss: 500,
speed: "1000",
arpTimeout: 1200,
autonegotiate: false,
mediaType: "auto-select",
loadInterval: 30,
icmpRedirectDisable: true,
xconnect: "1",
ipDirectedBroadcast: false,
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ServiceLanVpnInterfaceEthernetFeature("example",
name="Example",
description="My Example",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
service_lan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037",
shutdown=False,
interface_name="GigabitEthernet3",
interface_description="LAN",
ipv4_configuration_type="static",
ipv4_address="1.2.3.4",
ipv4_subnet_mask="0.0.0.0",
ipv4_secondary_addresses=[{
"address": "1.2.3.5",
"subnet_mask": "0.0.0.0",
}],
ipv4_dhcp_helpers=["1.2.3.4"],
ipv6_configuration_type="static",
ipv6_dhcp_helpers=[{
"address": "2001:0:0:1::0",
"dhcpv6_helper_vpn": 1,
}],
ipv4_nat=False,
ipv4_nat_range_start="1.2.3.4",
ipv4_nat_range_end="4.5.6.7",
ipv4_nat_prefix_length=1,
ipv4_nat_overload=True,
ipv6_nat=True,
nat64=False,
acl_shaping_rate=12,
ipv6_vrrps=[{
"group_id": 1,
"priority": 100,
"timer": 1000,
"track_omp": False,
"ipv6_addresses": [{
"link_local_address": "1::1",
"global_address": "1::1/24",
}],
"follow_dual_router_high_availability": False,
"min_preempt_delay": 60,
}],
ipv4_vrrps=[{
"group_id": 1,
"priority": 100,
"timer": 1000,
"track_omp": False,
"address": "1.2.3.4",
"secondary_addresses": [{
"address": "2.3.4.5",
"subnet_mask": "0.0.0.0",
}],
"tloc_prefix_change": True,
"tloc_pref_change_value": 100,
"tracking_objects": [{
"tracker_id": "1b270f6d-479b-47e3-ab0b-51bc6811a303",
"tracker_action": "Decrement",
"decrement_value": 100,
}],
"follow_dual_router_high_availability": False,
"min_preempt_delay": 60,
}],
arps=[{
"ip_address": "1.2.3.4",
"mac_address": "00-B0-D0-63-C2-26",
}],
trustsec_enable_sgt_propogation=False,
trustsec_propogate=True,
trustsec_security_group_tag=123,
trustsec_enable_enforced_propogation=False,
trustsec_enforced_security_group_tag=1234,
duplex="full",
mac_address="00-B0-D0-63-C2-26",
ip_mtu=1500,
interface_mtu=1500,
tcp_mss=500,
speed="1000",
arp_timeout=1200,
autonegotiate=False,
media_type="auto-select",
load_interval=30,
icmp_redirect_disable=True,
xconnect="1",
ip_directed_broadcast=False)
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.NewServiceLanVpnInterfaceEthernetFeature(ctx, "example", &sdwan.ServiceLanVpnInterfaceEthernetFeatureArgs{
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"),
Shutdown: pulumi.Bool(false),
InterfaceName: pulumi.String("GigabitEthernet3"),
InterfaceDescription: pulumi.String("LAN"),
Ipv4ConfigurationType: pulumi.String("static"),
Ipv4Address: pulumi.String("1.2.3.4"),
Ipv4SubnetMask: pulumi.String("0.0.0.0"),
Ipv4SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs{
Address: pulumi.String("1.2.3.5"),
SubnetMask: pulumi.String("0.0.0.0"),
},
},
Ipv4DhcpHelpers: pulumi.StringArray{
pulumi.String("1.2.3.4"),
},
Ipv6ConfigurationType: pulumi.String("static"),
Ipv6DhcpHelpers: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs{
Address: pulumi.String("2001:0:0:1::0"),
Dhcpv6HelperVpn: pulumi.Int(1),
},
},
Ipv4Nat: pulumi.Bool(false),
Ipv4NatRangeStart: pulumi.String("1.2.3.4"),
Ipv4NatRangeEnd: pulumi.String("4.5.6.7"),
Ipv4NatPrefixLength: pulumi.Int(1),
Ipv4NatOverload: pulumi.Bool(true),
Ipv6Nat: pulumi.Bool(true),
Nat64: pulumi.Bool(false),
AclShapingRate: pulumi.Int(12),
Ipv6Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs{
GroupId: pulumi.Int(1),
Priority: pulumi.Int(100),
Timer: pulumi.Int(1000),
TrackOmp: pulumi.Bool(false),
Ipv6Addresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs{
LinkLocalAddress: pulumi.String("1::1"),
GlobalAddress: pulumi.String("1::1/24"),
},
},
FollowDualRouterHighAvailability: pulumi.Bool(false),
MinPreemptDelay: pulumi.Int(60),
},
},
Ipv4Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs{
GroupId: pulumi.Int(1),
Priority: pulumi.Int(100),
Timer: pulumi.Int(1000),
TrackOmp: pulumi.Bool(false),
Address: pulumi.String("1.2.3.4"),
SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs{
Address: pulumi.String("2.3.4.5"),
SubnetMask: pulumi.String("0.0.0.0"),
},
},
TlocPrefixChange: pulumi.Bool(true),
TlocPrefChangeValue: pulumi.Int(100),
TrackingObjects: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs{
TrackerId: pulumi.String("1b270f6d-479b-47e3-ab0b-51bc6811a303"),
TrackerAction: pulumi.String("Decrement"),
DecrementValue: pulumi.Int(100),
},
},
FollowDualRouterHighAvailability: pulumi.Bool(false),
MinPreemptDelay: pulumi.Int(60),
},
},
Arps: sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArgs{
IpAddress: pulumi.String("1.2.3.4"),
MacAddress: pulumi.String("00-B0-D0-63-C2-26"),
},
},
TrustsecEnableSgtPropogation: pulumi.Bool(false),
TrustsecPropogate: pulumi.Bool(true),
TrustsecSecurityGroupTag: pulumi.Int(123),
TrustsecEnableEnforcedPropogation: pulumi.Bool(false),
TrustsecEnforcedSecurityGroupTag: pulumi.Int(1234),
Duplex: pulumi.String("full"),
MacAddress: pulumi.String("00-B0-D0-63-C2-26"),
IpMtu: pulumi.Int(1500),
InterfaceMtu: pulumi.Int(1500),
TcpMss: pulumi.Int(500),
Speed: pulumi.String("1000"),
ArpTimeout: pulumi.Int(1200),
Autonegotiate: pulumi.Bool(false),
MediaType: pulumi.String("auto-select"),
LoadInterval: pulumi.Int(30),
IcmpRedirectDisable: pulumi.Bool(true),
Xconnect: pulumi.String("1"),
IpDirectedBroadcast: pulumi.Bool(false),
})
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.ServiceLanVpnInterfaceEthernetFeature("example", new()
{
Name = "Example",
Description = "My Example",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
ServiceLanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
Shutdown = false,
InterfaceName = "GigabitEthernet3",
InterfaceDescription = "LAN",
Ipv4ConfigurationType = "static",
Ipv4Address = "1.2.3.4",
Ipv4SubnetMask = "0.0.0.0",
Ipv4SecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
{
Address = "1.2.3.5",
SubnetMask = "0.0.0.0",
},
},
Ipv4DhcpHelpers = new[]
{
"1.2.3.4",
},
Ipv6ConfigurationType = "static",
Ipv6DhcpHelpers = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
{
Address = "2001:0:0:1::0",
Dhcpv6HelperVpn = 1,
},
},
Ipv4Nat = false,
Ipv4NatRangeStart = "1.2.3.4",
Ipv4NatRangeEnd = "4.5.6.7",
Ipv4NatPrefixLength = 1,
Ipv4NatOverload = true,
Ipv6Nat = true,
Nat64 = false,
AclShapingRate = 12,
Ipv6Vrrps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
{
GroupId = 1,
Priority = 100,
Timer = 1000,
TrackOmp = false,
Ipv6Addresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs
{
LinkLocalAddress = "1::1",
GlobalAddress = "1::1/24",
},
},
FollowDualRouterHighAvailability = false,
MinPreemptDelay = 60,
},
},
Ipv4Vrrps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
{
GroupId = 1,
Priority = 100,
Timer = 1000,
TrackOmp = false,
Address = "1.2.3.4",
SecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs
{
Address = "2.3.4.5",
SubnetMask = "0.0.0.0",
},
},
TlocPrefixChange = true,
TlocPrefChangeValue = 100,
TrackingObjects = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs
{
TrackerId = "1b270f6d-479b-47e3-ab0b-51bc6811a303",
TrackerAction = "Decrement",
DecrementValue = 100,
},
},
FollowDualRouterHighAvailability = false,
MinPreemptDelay = 60,
},
},
Arps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureArpArgs
{
IpAddress = "1.2.3.4",
MacAddress = "00-B0-D0-63-C2-26",
},
},
TrustsecEnableSgtPropogation = false,
TrustsecPropogate = true,
TrustsecSecurityGroupTag = 123,
TrustsecEnableEnforcedPropogation = false,
TrustsecEnforcedSecurityGroupTag = 1234,
Duplex = "full",
MacAddress = "00-B0-D0-63-C2-26",
IpMtu = 1500,
InterfaceMtu = 1500,
TcpMss = 500,
Speed = "1000",
ArpTimeout = 1200,
Autonegotiate = false,
MediaType = "auto-select",
LoadInterval = 30,
IcmpRedirectDisable = true,
Xconnect = "1",
IpDirectedBroadcast = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ServiceLanVpnInterfaceEthernetFeature;
import com.pulumi.sdwan.ServiceLanVpnInterfaceEthernetFeatureArgs;
import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs;
import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs;
import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs;
import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs;
import com.pulumi.sdwan.inputs.ServiceLanVpnInterfaceEthernetFeatureArpArgs;
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 ServiceLanVpnInterfaceEthernetFeature("example", ServiceLanVpnInterfaceEthernetFeatureArgs.builder()
.name("Example")
.description("My Example")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.serviceLanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.shutdown(false)
.interfaceName("GigabitEthernet3")
.interfaceDescription("LAN")
.ipv4ConfigurationType("static")
.ipv4Address("1.2.3.4")
.ipv4SubnetMask("0.0.0.0")
.ipv4SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
.address("1.2.3.5")
.subnetMask("0.0.0.0")
.build())
.ipv4DhcpHelpers("1.2.3.4")
.ipv6ConfigurationType("static")
.ipv6DhcpHelpers(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs.builder()
.address("2001:0:0:1::0")
.dhcpv6HelperVpn(1)
.build())
.ipv4Nat(false)
.ipv4NatRangeStart("1.2.3.4")
.ipv4NatRangeEnd("4.5.6.7")
.ipv4NatPrefixLength(1)
.ipv4NatOverload(true)
.ipv6Nat(true)
.nat64(false)
.aclShapingRate(12)
.ipv6Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs.builder()
.groupId(1)
.priority(100)
.timer(1000)
.trackOmp(false)
.ipv6Addresses(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs.builder()
.linkLocalAddress("1::1")
.globalAddress("1::1/24")
.build())
.followDualRouterHighAvailability(false)
.minPreemptDelay(60)
.build())
.ipv4Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs.builder()
.groupId(1)
.priority(100)
.timer(1000)
.trackOmp(false)
.address("1.2.3.4")
.secondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs.builder()
.address("2.3.4.5")
.subnetMask("0.0.0.0")
.build())
.tlocPrefixChange(true)
.tlocPrefChangeValue(100)
.trackingObjects(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs.builder()
.trackerId("1b270f6d-479b-47e3-ab0b-51bc6811a303")
.trackerAction("Decrement")
.decrementValue(100)
.build())
.followDualRouterHighAvailability(false)
.minPreemptDelay(60)
.build())
.arps(ServiceLanVpnInterfaceEthernetFeatureArpArgs.builder()
.ipAddress("1.2.3.4")
.macAddress("00-B0-D0-63-C2-26")
.build())
.trustsecEnableSgtPropogation(false)
.trustsecPropogate(true)
.trustsecSecurityGroupTag(123)
.trustsecEnableEnforcedPropogation(false)
.trustsecEnforcedSecurityGroupTag(1234)
.duplex("full")
.macAddress("00-B0-D0-63-C2-26")
.ipMtu(1500)
.interfaceMtu(1500)
.tcpMss(500)
.speed("1000")
.arpTimeout(1200)
.autonegotiate(false)
.mediaType("auto-select")
.loadInterval(30)
.icmpRedirectDisable(true)
.xconnect("1")
.ipDirectedBroadcast(false)
.build());
}
}
resources:
example:
type: sdwan:ServiceLanVpnInterfaceEthernetFeature
properties:
name: Example
description: My Example
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
serviceLanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
shutdown: false
interfaceName: GigabitEthernet3
interfaceDescription: LAN
ipv4ConfigurationType: static
ipv4Address: 1.2.3.4
ipv4SubnetMask: 0.0.0.0
ipv4SecondaryAddresses:
- address: 1.2.3.5
subnetMask: 0.0.0.0
ipv4DhcpHelpers:
- 1.2.3.4
ipv6ConfigurationType: static
ipv6DhcpHelpers:
- address: 2001:0:0:1::0
dhcpv6HelperVpn: 1
ipv4Nat: false
ipv4NatRangeStart: 1.2.3.4
ipv4NatRangeEnd: 4.5.6.7
ipv4NatPrefixLength: 1
ipv4NatOverload: true
ipv6Nat: true
nat64: false
aclShapingRate: 12
ipv6Vrrps:
- groupId: 1
priority: 100
timer: 1000
trackOmp: false
ipv6Addresses:
- linkLocalAddress: 1::1
globalAddress: 1::1/24
followDualRouterHighAvailability: false
minPreemptDelay: 60
ipv4Vrrps:
- groupId: 1
priority: 100
timer: 1000
trackOmp: false
address: 1.2.3.4
secondaryAddresses:
- address: 2.3.4.5
subnetMask: 0.0.0.0
tlocPrefixChange: true
tlocPrefChangeValue: 100
trackingObjects:
- trackerId: 1b270f6d-479b-47e3-ab0b-51bc6811a303
trackerAction: Decrement
decrementValue: 100
followDualRouterHighAvailability: false
minPreemptDelay: 60
arps:
- ipAddress: 1.2.3.4
macAddress: 00-B0-D0-63-C2-26
trustsecEnableSgtPropogation: false
trustsecPropogate: true
trustsecSecurityGroupTag: 123
trustsecEnableEnforcedPropogation: false
trustsecEnforcedSecurityGroupTag: 1234
duplex: full
macAddress: 00-B0-D0-63-C2-26
ipMtu: 1500
interfaceMtu: 1500
tcpMss: 500
speed: '1000'
arpTimeout: 1200
autonegotiate: false
mediaType: auto-select
loadInterval: 30
icmpRedirectDisable: true
xconnect: '1'
ipDirectedBroadcast: false
Create ServiceLanVpnInterfaceEthernetFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceLanVpnInterfaceEthernetFeature(name: string, args: ServiceLanVpnInterfaceEthernetFeatureArgs, opts?: CustomResourceOptions);@overload
def ServiceLanVpnInterfaceEthernetFeature(resource_name: str,
args: ServiceLanVpnInterfaceEthernetFeatureArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceLanVpnInterfaceEthernetFeature(resource_name: str,
opts: Optional[ResourceOptions] = None,
feature_profile_id: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
acl_ipv4_egress_policy_id: Optional[str] = None,
acl_ipv4_ingress_policy_id: Optional[str] = None,
acl_ipv6_egress_policy_id: Optional[str] = None,
acl_ipv6_ingress_policy_id: Optional[str] = None,
acl_shaping_rate: Optional[int] = None,
acl_shaping_rate_variable: Optional[str] = None,
arp_timeout: Optional[int] = None,
arp_timeout_variable: Optional[str] = None,
arps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]] = None,
autonegotiate: Optional[bool] = None,
autonegotiate_variable: Optional[str] = None,
description: Optional[str] = None,
duplex: Optional[str] = None,
duplex_variable: Optional[str] = None,
enable_dhcpv6: Optional[bool] = None,
icmp_redirect_disable: Optional[bool] = None,
icmp_redirect_disable_variable: Optional[str] = None,
interface_description: Optional[str] = None,
interface_description_variable: Optional[str] = None,
interface_mtu: Optional[int] = None,
interface_mtu_variable: Optional[str] = None,
interface_name: Optional[str] = None,
interface_name_variable: Optional[str] = None,
ip_directed_broadcast: Optional[bool] = None,
ip_directed_broadcast_variable: Optional[str] = None,
ip_mtu: Optional[int] = None,
ip_mtu_variable: Optional[str] = None,
ipv4_address: Optional[str] = None,
ipv4_address_variable: Optional[str] = None,
ipv4_configuration_type: Optional[str] = None,
ipv4_dhcp_distance: Optional[int] = None,
ipv4_dhcp_distance_variable: Optional[str] = None,
ipv4_dhcp_helper_variable: Optional[str] = None,
ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
ipv4_nat: Optional[bool] = None,
ipv4_nat_loopback: Optional[str] = None,
ipv4_nat_loopback_variable: Optional[str] = None,
ipv4_nat_overload: Optional[bool] = None,
ipv4_nat_overload_variable: Optional[str] = None,
ipv4_nat_prefix_length: Optional[int] = None,
ipv4_nat_prefix_length_variable: Optional[str] = None,
ipv4_nat_range_end: Optional[str] = None,
ipv4_nat_range_end_variable: Optional[str] = None,
ipv4_nat_range_start: Optional[str] = None,
ipv4_nat_range_start_variable: Optional[str] = None,
ipv4_nat_tcp_timeout: Optional[int] = None,
ipv4_nat_tcp_timeout_variable: Optional[str] = None,
ipv4_nat_udp_timeout: Optional[int] = None,
ipv4_nat_udp_timeout_variable: Optional[str] = None,
ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_configuration_type: Optional[str] = None,
ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]] = None,
ipv6_dhcp_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]] = None,
ipv6_nat: Optional[bool] = None,
ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]] = None,
ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]] = None,
load_interval: Optional[int] = None,
load_interval_variable: Optional[str] = None,
mac_address: Optional[str] = None,
mac_address_variable: Optional[str] = None,
media_type: Optional[str] = None,
media_type_variable: Optional[str] = None,
name: Optional[str] = None,
nat64: Optional[bool] = None,
port_channel_interface: Optional[bool] = None,
port_channel_lacp_fast_switchover: Optional[bool] = None,
port_channel_lacp_fast_switchover_variable: Optional[str] = None,
port_channel_lacp_load_balance: Optional[str] = None,
port_channel_lacp_load_balance_variable: Optional[str] = None,
port_channel_lacp_max_bundle: Optional[int] = None,
port_channel_lacp_max_bundle_variable: Optional[str] = None,
port_channel_lacp_member_links: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs]] = None,
port_channel_lacp_min_bundle: Optional[int] = None,
port_channel_lacp_min_bundle_variable: Optional[str] = None,
port_channel_lacp_qos_aggregate: Optional[bool] = None,
port_channel_lacp_qos_aggregate_variable: Optional[str] = None,
port_channel_member_interface: Optional[bool] = None,
port_channel_mode: Optional[str] = None,
port_channel_static_load_balance: Optional[str] = None,
port_channel_static_load_balance_variable: Optional[str] = None,
port_channel_static_member_links: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs]] = None,
port_channel_static_qos_aggregate: Optional[bool] = None,
port_channel_static_qos_aggregate_variable: Optional[str] = None,
port_channel_subinterface: Optional[bool] = None,
port_channel_subinterface_primary_interface_name: Optional[str] = None,
port_channel_subinterface_primary_interface_name_variable: Optional[str] = None,
port_channel_subinterface_secondary_interface_name: Optional[str] = None,
port_channel_subinterface_secondary_interface_name_variable: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
speed: Optional[str] = None,
speed_variable: Optional[str] = None,
static_nats: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
trustsec_enable_enforced_propogation: Optional[bool] = None,
trustsec_enable_sgt_propogation: Optional[bool] = None,
trustsec_enforced_security_group_tag: Optional[int] = None,
trustsec_enforced_security_group_tag_variable: Optional[str] = None,
trustsec_propogate: Optional[bool] = None,
trustsec_security_group_tag: Optional[int] = None,
trustsec_security_group_tag_variable: Optional[str] = None,
xconnect: Optional[str] = None,
xconnect_variable: Optional[str] = None)func NewServiceLanVpnInterfaceEthernetFeature(ctx *Context, name string, args ServiceLanVpnInterfaceEthernetFeatureArgs, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeature, error)public ServiceLanVpnInterfaceEthernetFeature(string name, ServiceLanVpnInterfaceEthernetFeatureArgs args, CustomResourceOptions? opts = null)
public ServiceLanVpnInterfaceEthernetFeature(String name, ServiceLanVpnInterfaceEthernetFeatureArgs args)
public ServiceLanVpnInterfaceEthernetFeature(String name, ServiceLanVpnInterfaceEthernetFeatureArgs args, CustomResourceOptions options)
type: sdwan:ServiceLanVpnInterfaceEthernetFeature
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 ServiceLanVpnInterfaceEthernetFeatureArgs
- 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 ServiceLanVpnInterfaceEthernetFeatureArgs
- 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 ServiceLanVpnInterfaceEthernetFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceLanVpnInterfaceEthernetFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceLanVpnInterfaceEthernetFeatureArgs
- 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 serviceLanVpnInterfaceEthernetFeatureResource = new Sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", new()
{
FeatureProfileId = "string",
ServiceLanVpnFeatureId = "string",
AclIpv4EgressPolicyId = "string",
AclIpv4IngressPolicyId = "string",
AclIpv6EgressPolicyId = "string",
AclIpv6IngressPolicyId = "string",
AclShapingRate = 0,
AclShapingRateVariable = "string",
ArpTimeout = 0,
ArpTimeoutVariable = "string",
Arps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureArpArgs
{
IpAddress = "string",
IpAddressVariable = "string",
MacAddress = "string",
MacAddressVariable = "string",
},
},
Autonegotiate = false,
AutonegotiateVariable = "string",
Description = "string",
Duplex = "string",
DuplexVariable = "string",
EnableDhcpv6 = false,
IcmpRedirectDisable = false,
IcmpRedirectDisableVariable = "string",
InterfaceDescription = "string",
InterfaceDescriptionVariable = "string",
InterfaceMtu = 0,
InterfaceMtuVariable = "string",
InterfaceName = "string",
InterfaceNameVariable = "string",
IpDirectedBroadcast = false,
IpDirectedBroadcastVariable = "string",
IpMtu = 0,
IpMtuVariable = "string",
Ipv4Address = "string",
Ipv4AddressVariable = "string",
Ipv4ConfigurationType = "string",
Ipv4DhcpDistance = 0,
Ipv4DhcpDistanceVariable = "string",
Ipv4DhcpHelperVariable = "string",
Ipv4DhcpHelpers = new[]
{
"string",
},
Ipv4Nat = false,
Ipv4NatLoopback = "string",
Ipv4NatLoopbackVariable = "string",
Ipv4NatOverload = false,
Ipv4NatOverloadVariable = "string",
Ipv4NatPrefixLength = 0,
Ipv4NatPrefixLengthVariable = "string",
Ipv4NatRangeEnd = "string",
Ipv4NatRangeEndVariable = "string",
Ipv4NatRangeStart = "string",
Ipv4NatRangeStartVariable = "string",
Ipv4NatTcpTimeout = 0,
Ipv4NatTcpTimeoutVariable = "string",
Ipv4NatUdpTimeout = 0,
Ipv4NatUdpTimeoutVariable = "string",
Ipv4SecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
{
Address = "string",
AddressVariable = "string",
SubnetMask = "string",
SubnetMaskVariable = "string",
},
},
Ipv4SubnetMask = "string",
Ipv4SubnetMaskVariable = "string",
Ipv4Vrrps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
{
Address = "string",
AddressVariable = "string",
FollowDualRouterHighAvailability = false,
GroupId = 0,
GroupIdVariable = "string",
MinPreemptDelay = 0,
MinPreemptDelayVariable = "string",
Priority = 0,
PriorityVariable = "string",
SecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs
{
Address = "string",
AddressVariable = "string",
SubnetMask = "string",
SubnetMaskVariable = "string",
},
},
Timer = 0,
TimerVariable = "string",
TlocPrefChangeValue = 0,
TlocPrefixChange = false,
TrackOmp = false,
TrackingObjects = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs
{
DecrementValue = 0,
DecrementValueVariable = "string",
TrackerAction = "string",
TrackerActionVariable = "string",
TrackerId = "string",
},
},
},
},
Ipv6Address = "string",
Ipv6AddressVariable = "string",
Ipv6ConfigurationType = "string",
Ipv6DhcpHelpers = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
{
Address = "string",
AddressVariable = "string",
Dhcpv6HelperVpn = 0,
Dhcpv6HelperVpnVariable = "string",
},
},
Ipv6DhcpSecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs
{
Address = "string",
AddressVariable = "string",
},
},
Ipv6Nat = false,
Ipv6SecondaryAddresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs
{
Address = "string",
AddressVariable = "string",
},
},
Ipv6Vrrps = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
{
FollowDualRouterHighAvailability = false,
GroupId = 0,
GroupIdVariable = "string",
Ipv6Addresses = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs
{
GlobalAddress = "string",
GlobalAddressVariable = "string",
LinkLocalAddress = "string",
LinkLocalAddressVariable = "string",
},
},
MinPreemptDelay = 0,
MinPreemptDelayVariable = "string",
Priority = 0,
PriorityVariable = "string",
Timer = 0,
TimerVariable = "string",
TrackOmp = false,
},
},
LoadInterval = 0,
LoadIntervalVariable = "string",
MacAddress = "string",
MacAddressVariable = "string",
MediaType = "string",
MediaTypeVariable = "string",
Name = "string",
Nat64 = false,
PortChannelInterface = false,
PortChannelLacpFastSwitchover = false,
PortChannelLacpFastSwitchoverVariable = "string",
PortChannelLacpLoadBalance = "string",
PortChannelLacpLoadBalanceVariable = "string",
PortChannelLacpMaxBundle = 0,
PortChannelLacpMaxBundleVariable = "string",
PortChannelLacpMemberLinks = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs
{
InterfaceId = "string",
LacpMode = "string",
LacpModeVariable = "string",
LacpPortPriority = 0,
LacpPortPriorityVariable = "string",
LacpRate = "string",
LacpRateVariable = "string",
},
},
PortChannelLacpMinBundle = 0,
PortChannelLacpMinBundleVariable = "string",
PortChannelLacpQosAggregate = false,
PortChannelLacpQosAggregateVariable = "string",
PortChannelMemberInterface = false,
PortChannelMode = "string",
PortChannelStaticLoadBalance = "string",
PortChannelStaticLoadBalanceVariable = "string",
PortChannelStaticMemberLinks = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs
{
InterfaceId = "string",
},
},
PortChannelStaticQosAggregate = false,
PortChannelStaticQosAggregateVariable = "string",
PortChannelSubinterface = false,
PortChannelSubinterfacePrimaryInterfaceName = "string",
PortChannelSubinterfacePrimaryInterfaceNameVariable = "string",
PortChannelSubinterfaceSecondaryInterfaceName = "string",
PortChannelSubinterfaceSecondaryInterfaceNameVariable = "string",
Shutdown = false,
ShutdownVariable = "string",
Speed = "string",
SpeedVariable = "string",
StaticNats = new[]
{
new Sdwan.Inputs.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs
{
Direction = "string",
SourceIp = "string",
SourceIpVariable = "string",
SourceVpn = 0,
SourceVpnVariable = "string",
TranslateIp = "string",
TranslateIpVariable = "string",
},
},
TcpMss = 0,
TcpMssVariable = "string",
TrustsecEnableEnforcedPropogation = false,
TrustsecEnableSgtPropogation = false,
TrustsecEnforcedSecurityGroupTag = 0,
TrustsecEnforcedSecurityGroupTagVariable = "string",
TrustsecPropogate = false,
TrustsecSecurityGroupTag = 0,
TrustsecSecurityGroupTagVariable = "string",
Xconnect = "string",
XconnectVariable = "string",
});
example, err := sdwan.NewServiceLanVpnInterfaceEthernetFeature(ctx, "serviceLanVpnInterfaceEthernetFeatureResource", &sdwan.ServiceLanVpnInterfaceEthernetFeatureArgs{
FeatureProfileId: pulumi.String("string"),
ServiceLanVpnFeatureId: pulumi.String("string"),
AclIpv4EgressPolicyId: pulumi.String("string"),
AclIpv4IngressPolicyId: pulumi.String("string"),
AclIpv6EgressPolicyId: pulumi.String("string"),
AclIpv6IngressPolicyId: pulumi.String("string"),
AclShapingRate: pulumi.Int(0),
AclShapingRateVariable: pulumi.String("string"),
ArpTimeout: pulumi.Int(0),
ArpTimeoutVariable: pulumi.String("string"),
Arps: sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureArpArgs{
IpAddress: pulumi.String("string"),
IpAddressVariable: pulumi.String("string"),
MacAddress: pulumi.String("string"),
MacAddressVariable: pulumi.String("string"),
},
},
Autonegotiate: pulumi.Bool(false),
AutonegotiateVariable: pulumi.String("string"),
Description: pulumi.String("string"),
Duplex: pulumi.String("string"),
DuplexVariable: pulumi.String("string"),
EnableDhcpv6: pulumi.Bool(false),
IcmpRedirectDisable: pulumi.Bool(false),
IcmpRedirectDisableVariable: pulumi.String("string"),
InterfaceDescription: pulumi.String("string"),
InterfaceDescriptionVariable: pulumi.String("string"),
InterfaceMtu: pulumi.Int(0),
InterfaceMtuVariable: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
InterfaceNameVariable: pulumi.String("string"),
IpDirectedBroadcast: pulumi.Bool(false),
IpDirectedBroadcastVariable: pulumi.String("string"),
IpMtu: pulumi.Int(0),
IpMtuVariable: pulumi.String("string"),
Ipv4Address: pulumi.String("string"),
Ipv4AddressVariable: pulumi.String("string"),
Ipv4ConfigurationType: pulumi.String("string"),
Ipv4DhcpDistance: pulumi.Int(0),
Ipv4DhcpDistanceVariable: pulumi.String("string"),
Ipv4DhcpHelperVariable: pulumi.String("string"),
Ipv4DhcpHelpers: pulumi.StringArray{
pulumi.String("string"),
},
Ipv4Nat: pulumi.Bool(false),
Ipv4NatLoopback: pulumi.String("string"),
Ipv4NatLoopbackVariable: pulumi.String("string"),
Ipv4NatOverload: pulumi.Bool(false),
Ipv4NatOverloadVariable: pulumi.String("string"),
Ipv4NatPrefixLength: pulumi.Int(0),
Ipv4NatPrefixLengthVariable: pulumi.String("string"),
Ipv4NatRangeEnd: pulumi.String("string"),
Ipv4NatRangeEndVariable: pulumi.String("string"),
Ipv4NatRangeStart: pulumi.String("string"),
Ipv4NatRangeStartVariable: pulumi.String("string"),
Ipv4NatTcpTimeout: pulumi.Int(0),
Ipv4NatTcpTimeoutVariable: pulumi.String("string"),
Ipv4NatUdpTimeout: pulumi.Int(0),
Ipv4NatUdpTimeoutVariable: pulumi.String("string"),
Ipv4SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
SubnetMask: pulumi.String("string"),
SubnetMaskVariable: pulumi.String("string"),
},
},
Ipv4SubnetMask: pulumi.String("string"),
Ipv4SubnetMaskVariable: pulumi.String("string"),
Ipv4Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
FollowDualRouterHighAvailability: pulumi.Bool(false),
GroupId: pulumi.Int(0),
GroupIdVariable: pulumi.String("string"),
MinPreemptDelay: pulumi.Int(0),
MinPreemptDelayVariable: pulumi.String("string"),
Priority: pulumi.Int(0),
PriorityVariable: pulumi.String("string"),
SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
SubnetMask: pulumi.String("string"),
SubnetMaskVariable: pulumi.String("string"),
},
},
Timer: pulumi.Int(0),
TimerVariable: pulumi.String("string"),
TlocPrefChangeValue: pulumi.Int(0),
TlocPrefixChange: pulumi.Bool(false),
TrackOmp: pulumi.Bool(false),
TrackingObjects: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs{
DecrementValue: pulumi.Int(0),
DecrementValueVariable: pulumi.String("string"),
TrackerAction: pulumi.String("string"),
TrackerActionVariable: pulumi.String("string"),
TrackerId: pulumi.String("string"),
},
},
},
},
Ipv6Address: pulumi.String("string"),
Ipv6AddressVariable: pulumi.String("string"),
Ipv6ConfigurationType: pulumi.String("string"),
Ipv6DhcpHelpers: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
Dhcpv6HelperVpn: pulumi.Int(0),
Dhcpv6HelperVpnVariable: pulumi.String("string"),
},
},
Ipv6DhcpSecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
},
},
Ipv6Nat: pulumi.Bool(false),
Ipv6SecondaryAddresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs{
Address: pulumi.String("string"),
AddressVariable: pulumi.String("string"),
},
},
Ipv6Vrrps: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs{
FollowDualRouterHighAvailability: pulumi.Bool(false),
GroupId: pulumi.Int(0),
GroupIdVariable: pulumi.String("string"),
Ipv6Addresses: sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs{
GlobalAddress: pulumi.String("string"),
GlobalAddressVariable: pulumi.String("string"),
LinkLocalAddress: pulumi.String("string"),
LinkLocalAddressVariable: pulumi.String("string"),
},
},
MinPreemptDelay: pulumi.Int(0),
MinPreemptDelayVariable: pulumi.String("string"),
Priority: pulumi.Int(0),
PriorityVariable: pulumi.String("string"),
Timer: pulumi.Int(0),
TimerVariable: pulumi.String("string"),
TrackOmp: pulumi.Bool(false),
},
},
LoadInterval: pulumi.Int(0),
LoadIntervalVariable: pulumi.String("string"),
MacAddress: pulumi.String("string"),
MacAddressVariable: pulumi.String("string"),
MediaType: pulumi.String("string"),
MediaTypeVariable: pulumi.String("string"),
Name: pulumi.String("string"),
Nat64: pulumi.Bool(false),
PortChannelInterface: pulumi.Bool(false),
PortChannelLacpFastSwitchover: pulumi.Bool(false),
PortChannelLacpFastSwitchoverVariable: pulumi.String("string"),
PortChannelLacpLoadBalance: pulumi.String("string"),
PortChannelLacpLoadBalanceVariable: pulumi.String("string"),
PortChannelLacpMaxBundle: pulumi.Int(0),
PortChannelLacpMaxBundleVariable: pulumi.String("string"),
PortChannelLacpMemberLinks: sdwan.ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs{
InterfaceId: pulumi.String("string"),
LacpMode: pulumi.String("string"),
LacpModeVariable: pulumi.String("string"),
LacpPortPriority: pulumi.Int(0),
LacpPortPriorityVariable: pulumi.String("string"),
LacpRate: pulumi.String("string"),
LacpRateVariable: pulumi.String("string"),
},
},
PortChannelLacpMinBundle: pulumi.Int(0),
PortChannelLacpMinBundleVariable: pulumi.String("string"),
PortChannelLacpQosAggregate: pulumi.Bool(false),
PortChannelLacpQosAggregateVariable: pulumi.String("string"),
PortChannelMemberInterface: pulumi.Bool(false),
PortChannelMode: pulumi.String("string"),
PortChannelStaticLoadBalance: pulumi.String("string"),
PortChannelStaticLoadBalanceVariable: pulumi.String("string"),
PortChannelStaticMemberLinks: sdwan.ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs{
InterfaceId: pulumi.String("string"),
},
},
PortChannelStaticQosAggregate: pulumi.Bool(false),
PortChannelStaticQosAggregateVariable: pulumi.String("string"),
PortChannelSubinterface: pulumi.Bool(false),
PortChannelSubinterfacePrimaryInterfaceName: pulumi.String("string"),
PortChannelSubinterfacePrimaryInterfaceNameVariable: pulumi.String("string"),
PortChannelSubinterfaceSecondaryInterfaceName: pulumi.String("string"),
PortChannelSubinterfaceSecondaryInterfaceNameVariable: pulumi.String("string"),
Shutdown: pulumi.Bool(false),
ShutdownVariable: pulumi.String("string"),
Speed: pulumi.String("string"),
SpeedVariable: pulumi.String("string"),
StaticNats: sdwan.ServiceLanVpnInterfaceEthernetFeatureStaticNatArray{
&sdwan.ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs{
Direction: pulumi.String("string"),
SourceIp: pulumi.String("string"),
SourceIpVariable: pulumi.String("string"),
SourceVpn: pulumi.Int(0),
SourceVpnVariable: pulumi.String("string"),
TranslateIp: pulumi.String("string"),
TranslateIpVariable: pulumi.String("string"),
},
},
TcpMss: pulumi.Int(0),
TcpMssVariable: pulumi.String("string"),
TrustsecEnableEnforcedPropogation: pulumi.Bool(false),
TrustsecEnableSgtPropogation: pulumi.Bool(false),
TrustsecEnforcedSecurityGroupTag: pulumi.Int(0),
TrustsecEnforcedSecurityGroupTagVariable: pulumi.String("string"),
TrustsecPropogate: pulumi.Bool(false),
TrustsecSecurityGroupTag: pulumi.Int(0),
TrustsecSecurityGroupTagVariable: pulumi.String("string"),
Xconnect: pulumi.String("string"),
XconnectVariable: pulumi.String("string"),
})
var serviceLanVpnInterfaceEthernetFeatureResource = new ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", ServiceLanVpnInterfaceEthernetFeatureArgs.builder()
.featureProfileId("string")
.serviceLanVpnFeatureId("string")
.aclIpv4EgressPolicyId("string")
.aclIpv4IngressPolicyId("string")
.aclIpv6EgressPolicyId("string")
.aclIpv6IngressPolicyId("string")
.aclShapingRate(0)
.aclShapingRateVariable("string")
.arpTimeout(0)
.arpTimeoutVariable("string")
.arps(ServiceLanVpnInterfaceEthernetFeatureArpArgs.builder()
.ipAddress("string")
.ipAddressVariable("string")
.macAddress("string")
.macAddressVariable("string")
.build())
.autonegotiate(false)
.autonegotiateVariable("string")
.description("string")
.duplex("string")
.duplexVariable("string")
.enableDhcpv6(false)
.icmpRedirectDisable(false)
.icmpRedirectDisableVariable("string")
.interfaceDescription("string")
.interfaceDescriptionVariable("string")
.interfaceMtu(0)
.interfaceMtuVariable("string")
.interfaceName("string")
.interfaceNameVariable("string")
.ipDirectedBroadcast(false)
.ipDirectedBroadcastVariable("string")
.ipMtu(0)
.ipMtuVariable("string")
.ipv4Address("string")
.ipv4AddressVariable("string")
.ipv4ConfigurationType("string")
.ipv4DhcpDistance(0)
.ipv4DhcpDistanceVariable("string")
.ipv4DhcpHelperVariable("string")
.ipv4DhcpHelpers("string")
.ipv4Nat(false)
.ipv4NatLoopback("string")
.ipv4NatLoopbackVariable("string")
.ipv4NatOverload(false)
.ipv4NatOverloadVariable("string")
.ipv4NatPrefixLength(0)
.ipv4NatPrefixLengthVariable("string")
.ipv4NatRangeEnd("string")
.ipv4NatRangeEndVariable("string")
.ipv4NatRangeStart("string")
.ipv4NatRangeStartVariable("string")
.ipv4NatTcpTimeout(0)
.ipv4NatTcpTimeoutVariable("string")
.ipv4NatUdpTimeout(0)
.ipv4NatUdpTimeoutVariable("string")
.ipv4SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs.builder()
.address("string")
.addressVariable("string")
.subnetMask("string")
.subnetMaskVariable("string")
.build())
.ipv4SubnetMask("string")
.ipv4SubnetMaskVariable("string")
.ipv4Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs.builder()
.address("string")
.addressVariable("string")
.followDualRouterHighAvailability(false)
.groupId(0)
.groupIdVariable("string")
.minPreemptDelay(0)
.minPreemptDelayVariable("string")
.priority(0)
.priorityVariable("string")
.secondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs.builder()
.address("string")
.addressVariable("string")
.subnetMask("string")
.subnetMaskVariable("string")
.build())
.timer(0)
.timerVariable("string")
.tlocPrefChangeValue(0)
.tlocPrefixChange(false)
.trackOmp(false)
.trackingObjects(ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs.builder()
.decrementValue(0)
.decrementValueVariable("string")
.trackerAction("string")
.trackerActionVariable("string")
.trackerId("string")
.build())
.build())
.ipv6Address("string")
.ipv6AddressVariable("string")
.ipv6ConfigurationType("string")
.ipv6DhcpHelpers(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs.builder()
.address("string")
.addressVariable("string")
.dhcpv6HelperVpn(0)
.dhcpv6HelperVpnVariable("string")
.build())
.ipv6DhcpSecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs.builder()
.address("string")
.addressVariable("string")
.build())
.ipv6Nat(false)
.ipv6SecondaryAddresses(ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs.builder()
.address("string")
.addressVariable("string")
.build())
.ipv6Vrrps(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs.builder()
.followDualRouterHighAvailability(false)
.groupId(0)
.groupIdVariable("string")
.ipv6Addresses(ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs.builder()
.globalAddress("string")
.globalAddressVariable("string")
.linkLocalAddress("string")
.linkLocalAddressVariable("string")
.build())
.minPreemptDelay(0)
.minPreemptDelayVariable("string")
.priority(0)
.priorityVariable("string")
.timer(0)
.timerVariable("string")
.trackOmp(false)
.build())
.loadInterval(0)
.loadIntervalVariable("string")
.macAddress("string")
.macAddressVariable("string")
.mediaType("string")
.mediaTypeVariable("string")
.name("string")
.nat64(false)
.portChannelInterface(false)
.portChannelLacpFastSwitchover(false)
.portChannelLacpFastSwitchoverVariable("string")
.portChannelLacpLoadBalance("string")
.portChannelLacpLoadBalanceVariable("string")
.portChannelLacpMaxBundle(0)
.portChannelLacpMaxBundleVariable("string")
.portChannelLacpMemberLinks(ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs.builder()
.interfaceId("string")
.lacpMode("string")
.lacpModeVariable("string")
.lacpPortPriority(0)
.lacpPortPriorityVariable("string")
.lacpRate("string")
.lacpRateVariable("string")
.build())
.portChannelLacpMinBundle(0)
.portChannelLacpMinBundleVariable("string")
.portChannelLacpQosAggregate(false)
.portChannelLacpQosAggregateVariable("string")
.portChannelMemberInterface(false)
.portChannelMode("string")
.portChannelStaticLoadBalance("string")
.portChannelStaticLoadBalanceVariable("string")
.portChannelStaticMemberLinks(ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs.builder()
.interfaceId("string")
.build())
.portChannelStaticQosAggregate(false)
.portChannelStaticQosAggregateVariable("string")
.portChannelSubinterface(false)
.portChannelSubinterfacePrimaryInterfaceName("string")
.portChannelSubinterfacePrimaryInterfaceNameVariable("string")
.portChannelSubinterfaceSecondaryInterfaceName("string")
.portChannelSubinterfaceSecondaryInterfaceNameVariable("string")
.shutdown(false)
.shutdownVariable("string")
.speed("string")
.speedVariable("string")
.staticNats(ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs.builder()
.direction("string")
.sourceIp("string")
.sourceIpVariable("string")
.sourceVpn(0)
.sourceVpnVariable("string")
.translateIp("string")
.translateIpVariable("string")
.build())
.tcpMss(0)
.tcpMssVariable("string")
.trustsecEnableEnforcedPropogation(false)
.trustsecEnableSgtPropogation(false)
.trustsecEnforcedSecurityGroupTag(0)
.trustsecEnforcedSecurityGroupTagVariable("string")
.trustsecPropogate(false)
.trustsecSecurityGroupTag(0)
.trustsecSecurityGroupTagVariable("string")
.xconnect("string")
.xconnectVariable("string")
.build());
service_lan_vpn_interface_ethernet_feature_resource = sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource",
feature_profile_id="string",
service_lan_vpn_feature_id="string",
acl_ipv4_egress_policy_id="string",
acl_ipv4_ingress_policy_id="string",
acl_ipv6_egress_policy_id="string",
acl_ipv6_ingress_policy_id="string",
acl_shaping_rate=0,
acl_shaping_rate_variable="string",
arp_timeout=0,
arp_timeout_variable="string",
arps=[{
"ip_address": "string",
"ip_address_variable": "string",
"mac_address": "string",
"mac_address_variable": "string",
}],
autonegotiate=False,
autonegotiate_variable="string",
description="string",
duplex="string",
duplex_variable="string",
enable_dhcpv6=False,
icmp_redirect_disable=False,
icmp_redirect_disable_variable="string",
interface_description="string",
interface_description_variable="string",
interface_mtu=0,
interface_mtu_variable="string",
interface_name="string",
interface_name_variable="string",
ip_directed_broadcast=False,
ip_directed_broadcast_variable="string",
ip_mtu=0,
ip_mtu_variable="string",
ipv4_address="string",
ipv4_address_variable="string",
ipv4_configuration_type="string",
ipv4_dhcp_distance=0,
ipv4_dhcp_distance_variable="string",
ipv4_dhcp_helper_variable="string",
ipv4_dhcp_helpers=["string"],
ipv4_nat=False,
ipv4_nat_loopback="string",
ipv4_nat_loopback_variable="string",
ipv4_nat_overload=False,
ipv4_nat_overload_variable="string",
ipv4_nat_prefix_length=0,
ipv4_nat_prefix_length_variable="string",
ipv4_nat_range_end="string",
ipv4_nat_range_end_variable="string",
ipv4_nat_range_start="string",
ipv4_nat_range_start_variable="string",
ipv4_nat_tcp_timeout=0,
ipv4_nat_tcp_timeout_variable="string",
ipv4_nat_udp_timeout=0,
ipv4_nat_udp_timeout_variable="string",
ipv4_secondary_addresses=[{
"address": "string",
"address_variable": "string",
"subnet_mask": "string",
"subnet_mask_variable": "string",
}],
ipv4_subnet_mask="string",
ipv4_subnet_mask_variable="string",
ipv4_vrrps=[{
"address": "string",
"address_variable": "string",
"follow_dual_router_high_availability": False,
"group_id": 0,
"group_id_variable": "string",
"min_preempt_delay": 0,
"min_preempt_delay_variable": "string",
"priority": 0,
"priority_variable": "string",
"secondary_addresses": [{
"address": "string",
"address_variable": "string",
"subnet_mask": "string",
"subnet_mask_variable": "string",
}],
"timer": 0,
"timer_variable": "string",
"tloc_pref_change_value": 0,
"tloc_prefix_change": False,
"track_omp": False,
"tracking_objects": [{
"decrement_value": 0,
"decrement_value_variable": "string",
"tracker_action": "string",
"tracker_action_variable": "string",
"tracker_id": "string",
}],
}],
ipv6_address="string",
ipv6_address_variable="string",
ipv6_configuration_type="string",
ipv6_dhcp_helpers=[{
"address": "string",
"address_variable": "string",
"dhcpv6_helper_vpn": 0,
"dhcpv6_helper_vpn_variable": "string",
}],
ipv6_dhcp_secondary_addresses=[{
"address": "string",
"address_variable": "string",
}],
ipv6_nat=False,
ipv6_secondary_addresses=[{
"address": "string",
"address_variable": "string",
}],
ipv6_vrrps=[{
"follow_dual_router_high_availability": False,
"group_id": 0,
"group_id_variable": "string",
"ipv6_addresses": [{
"global_address": "string",
"global_address_variable": "string",
"link_local_address": "string",
"link_local_address_variable": "string",
}],
"min_preempt_delay": 0,
"min_preempt_delay_variable": "string",
"priority": 0,
"priority_variable": "string",
"timer": 0,
"timer_variable": "string",
"track_omp": False,
}],
load_interval=0,
load_interval_variable="string",
mac_address="string",
mac_address_variable="string",
media_type="string",
media_type_variable="string",
name="string",
nat64=False,
port_channel_interface=False,
port_channel_lacp_fast_switchover=False,
port_channel_lacp_fast_switchover_variable="string",
port_channel_lacp_load_balance="string",
port_channel_lacp_load_balance_variable="string",
port_channel_lacp_max_bundle=0,
port_channel_lacp_max_bundle_variable="string",
port_channel_lacp_member_links=[{
"interface_id": "string",
"lacp_mode": "string",
"lacp_mode_variable": "string",
"lacp_port_priority": 0,
"lacp_port_priority_variable": "string",
"lacp_rate": "string",
"lacp_rate_variable": "string",
}],
port_channel_lacp_min_bundle=0,
port_channel_lacp_min_bundle_variable="string",
port_channel_lacp_qos_aggregate=False,
port_channel_lacp_qos_aggregate_variable="string",
port_channel_member_interface=False,
port_channel_mode="string",
port_channel_static_load_balance="string",
port_channel_static_load_balance_variable="string",
port_channel_static_member_links=[{
"interface_id": "string",
}],
port_channel_static_qos_aggregate=False,
port_channel_static_qos_aggregate_variable="string",
port_channel_subinterface=False,
port_channel_subinterface_primary_interface_name="string",
port_channel_subinterface_primary_interface_name_variable="string",
port_channel_subinterface_secondary_interface_name="string",
port_channel_subinterface_secondary_interface_name_variable="string",
shutdown=False,
shutdown_variable="string",
speed="string",
speed_variable="string",
static_nats=[{
"direction": "string",
"source_ip": "string",
"source_ip_variable": "string",
"source_vpn": 0,
"source_vpn_variable": "string",
"translate_ip": "string",
"translate_ip_variable": "string",
}],
tcp_mss=0,
tcp_mss_variable="string",
trustsec_enable_enforced_propogation=False,
trustsec_enable_sgt_propogation=False,
trustsec_enforced_security_group_tag=0,
trustsec_enforced_security_group_tag_variable="string",
trustsec_propogate=False,
trustsec_security_group_tag=0,
trustsec_security_group_tag_variable="string",
xconnect="string",
xconnect_variable="string")
const serviceLanVpnInterfaceEthernetFeatureResource = new sdwan.ServiceLanVpnInterfaceEthernetFeature("serviceLanVpnInterfaceEthernetFeatureResource", {
featureProfileId: "string",
serviceLanVpnFeatureId: "string",
aclIpv4EgressPolicyId: "string",
aclIpv4IngressPolicyId: "string",
aclIpv6EgressPolicyId: "string",
aclIpv6IngressPolicyId: "string",
aclShapingRate: 0,
aclShapingRateVariable: "string",
arpTimeout: 0,
arpTimeoutVariable: "string",
arps: [{
ipAddress: "string",
ipAddressVariable: "string",
macAddress: "string",
macAddressVariable: "string",
}],
autonegotiate: false,
autonegotiateVariable: "string",
description: "string",
duplex: "string",
duplexVariable: "string",
enableDhcpv6: false,
icmpRedirectDisable: false,
icmpRedirectDisableVariable: "string",
interfaceDescription: "string",
interfaceDescriptionVariable: "string",
interfaceMtu: 0,
interfaceMtuVariable: "string",
interfaceName: "string",
interfaceNameVariable: "string",
ipDirectedBroadcast: false,
ipDirectedBroadcastVariable: "string",
ipMtu: 0,
ipMtuVariable: "string",
ipv4Address: "string",
ipv4AddressVariable: "string",
ipv4ConfigurationType: "string",
ipv4DhcpDistance: 0,
ipv4DhcpDistanceVariable: "string",
ipv4DhcpHelperVariable: "string",
ipv4DhcpHelpers: ["string"],
ipv4Nat: false,
ipv4NatLoopback: "string",
ipv4NatLoopbackVariable: "string",
ipv4NatOverload: false,
ipv4NatOverloadVariable: "string",
ipv4NatPrefixLength: 0,
ipv4NatPrefixLengthVariable: "string",
ipv4NatRangeEnd: "string",
ipv4NatRangeEndVariable: "string",
ipv4NatRangeStart: "string",
ipv4NatRangeStartVariable: "string",
ipv4NatTcpTimeout: 0,
ipv4NatTcpTimeoutVariable: "string",
ipv4NatUdpTimeout: 0,
ipv4NatUdpTimeoutVariable: "string",
ipv4SecondaryAddresses: [{
address: "string",
addressVariable: "string",
subnetMask: "string",
subnetMaskVariable: "string",
}],
ipv4SubnetMask: "string",
ipv4SubnetMaskVariable: "string",
ipv4Vrrps: [{
address: "string",
addressVariable: "string",
followDualRouterHighAvailability: false,
groupId: 0,
groupIdVariable: "string",
minPreemptDelay: 0,
minPreemptDelayVariable: "string",
priority: 0,
priorityVariable: "string",
secondaryAddresses: [{
address: "string",
addressVariable: "string",
subnetMask: "string",
subnetMaskVariable: "string",
}],
timer: 0,
timerVariable: "string",
tlocPrefChangeValue: 0,
tlocPrefixChange: false,
trackOmp: false,
trackingObjects: [{
decrementValue: 0,
decrementValueVariable: "string",
trackerAction: "string",
trackerActionVariable: "string",
trackerId: "string",
}],
}],
ipv6Address: "string",
ipv6AddressVariable: "string",
ipv6ConfigurationType: "string",
ipv6DhcpHelpers: [{
address: "string",
addressVariable: "string",
dhcpv6HelperVpn: 0,
dhcpv6HelperVpnVariable: "string",
}],
ipv6DhcpSecondaryAddresses: [{
address: "string",
addressVariable: "string",
}],
ipv6Nat: false,
ipv6SecondaryAddresses: [{
address: "string",
addressVariable: "string",
}],
ipv6Vrrps: [{
followDualRouterHighAvailability: false,
groupId: 0,
groupIdVariable: "string",
ipv6Addresses: [{
globalAddress: "string",
globalAddressVariable: "string",
linkLocalAddress: "string",
linkLocalAddressVariable: "string",
}],
minPreemptDelay: 0,
minPreemptDelayVariable: "string",
priority: 0,
priorityVariable: "string",
timer: 0,
timerVariable: "string",
trackOmp: false,
}],
loadInterval: 0,
loadIntervalVariable: "string",
macAddress: "string",
macAddressVariable: "string",
mediaType: "string",
mediaTypeVariable: "string",
name: "string",
nat64: false,
portChannelInterface: false,
portChannelLacpFastSwitchover: false,
portChannelLacpFastSwitchoverVariable: "string",
portChannelLacpLoadBalance: "string",
portChannelLacpLoadBalanceVariable: "string",
portChannelLacpMaxBundle: 0,
portChannelLacpMaxBundleVariable: "string",
portChannelLacpMemberLinks: [{
interfaceId: "string",
lacpMode: "string",
lacpModeVariable: "string",
lacpPortPriority: 0,
lacpPortPriorityVariable: "string",
lacpRate: "string",
lacpRateVariable: "string",
}],
portChannelLacpMinBundle: 0,
portChannelLacpMinBundleVariable: "string",
portChannelLacpQosAggregate: false,
portChannelLacpQosAggregateVariable: "string",
portChannelMemberInterface: false,
portChannelMode: "string",
portChannelStaticLoadBalance: "string",
portChannelStaticLoadBalanceVariable: "string",
portChannelStaticMemberLinks: [{
interfaceId: "string",
}],
portChannelStaticQosAggregate: false,
portChannelStaticQosAggregateVariable: "string",
portChannelSubinterface: false,
portChannelSubinterfacePrimaryInterfaceName: "string",
portChannelSubinterfacePrimaryInterfaceNameVariable: "string",
portChannelSubinterfaceSecondaryInterfaceName: "string",
portChannelSubinterfaceSecondaryInterfaceNameVariable: "string",
shutdown: false,
shutdownVariable: "string",
speed: "string",
speedVariable: "string",
staticNats: [{
direction: "string",
sourceIp: "string",
sourceIpVariable: "string",
sourceVpn: 0,
sourceVpnVariable: "string",
translateIp: "string",
translateIpVariable: "string",
}],
tcpMss: 0,
tcpMssVariable: "string",
trustsecEnableEnforcedPropogation: false,
trustsecEnableSgtPropogation: false,
trustsecEnforcedSecurityGroupTag: 0,
trustsecEnforcedSecurityGroupTagVariable: "string",
trustsecPropogate: false,
trustsecSecurityGroupTag: 0,
trustsecSecurityGroupTagVariable: "string",
xconnect: "string",
xconnectVariable: "string",
});
type: sdwan:ServiceLanVpnInterfaceEthernetFeature
properties:
aclIpv4EgressPolicyId: string
aclIpv4IngressPolicyId: string
aclIpv6EgressPolicyId: string
aclIpv6IngressPolicyId: string
aclShapingRate: 0
aclShapingRateVariable: string
arpTimeout: 0
arpTimeoutVariable: string
arps:
- ipAddress: string
ipAddressVariable: string
macAddress: string
macAddressVariable: string
autonegotiate: false
autonegotiateVariable: string
description: string
duplex: string
duplexVariable: string
enableDhcpv6: false
featureProfileId: string
icmpRedirectDisable: false
icmpRedirectDisableVariable: string
interfaceDescription: string
interfaceDescriptionVariable: string
interfaceMtu: 0
interfaceMtuVariable: string
interfaceName: string
interfaceNameVariable: string
ipDirectedBroadcast: false
ipDirectedBroadcastVariable: string
ipMtu: 0
ipMtuVariable: string
ipv4Address: string
ipv4AddressVariable: string
ipv4ConfigurationType: string
ipv4DhcpDistance: 0
ipv4DhcpDistanceVariable: string
ipv4DhcpHelperVariable: string
ipv4DhcpHelpers:
- string
ipv4Nat: false
ipv4NatLoopback: string
ipv4NatLoopbackVariable: string
ipv4NatOverload: false
ipv4NatOverloadVariable: string
ipv4NatPrefixLength: 0
ipv4NatPrefixLengthVariable: string
ipv4NatRangeEnd: string
ipv4NatRangeEndVariable: string
ipv4NatRangeStart: string
ipv4NatRangeStartVariable: string
ipv4NatTcpTimeout: 0
ipv4NatTcpTimeoutVariable: string
ipv4NatUdpTimeout: 0
ipv4NatUdpTimeoutVariable: string
ipv4SecondaryAddresses:
- address: string
addressVariable: string
subnetMask: string
subnetMaskVariable: string
ipv4SubnetMask: string
ipv4SubnetMaskVariable: string
ipv4Vrrps:
- address: string
addressVariable: string
followDualRouterHighAvailability: false
groupId: 0
groupIdVariable: string
minPreemptDelay: 0
minPreemptDelayVariable: string
priority: 0
priorityVariable: string
secondaryAddresses:
- address: string
addressVariable: string
subnetMask: string
subnetMaskVariable: string
timer: 0
timerVariable: string
tlocPrefChangeValue: 0
tlocPrefixChange: false
trackOmp: false
trackingObjects:
- decrementValue: 0
decrementValueVariable: string
trackerAction: string
trackerActionVariable: string
trackerId: string
ipv6Address: string
ipv6AddressVariable: string
ipv6ConfigurationType: string
ipv6DhcpHelpers:
- address: string
addressVariable: string
dhcpv6HelperVpn: 0
dhcpv6HelperVpnVariable: string
ipv6DhcpSecondaryAddresses:
- address: string
addressVariable: string
ipv6Nat: false
ipv6SecondaryAddresses:
- address: string
addressVariable: string
ipv6Vrrps:
- followDualRouterHighAvailability: false
groupId: 0
groupIdVariable: string
ipv6Addresses:
- globalAddress: string
globalAddressVariable: string
linkLocalAddress: string
linkLocalAddressVariable: string
minPreemptDelay: 0
minPreemptDelayVariable: string
priority: 0
priorityVariable: string
timer: 0
timerVariable: string
trackOmp: false
loadInterval: 0
loadIntervalVariable: string
macAddress: string
macAddressVariable: string
mediaType: string
mediaTypeVariable: string
name: string
nat64: false
portChannelInterface: false
portChannelLacpFastSwitchover: false
portChannelLacpFastSwitchoverVariable: string
portChannelLacpLoadBalance: string
portChannelLacpLoadBalanceVariable: string
portChannelLacpMaxBundle: 0
portChannelLacpMaxBundleVariable: string
portChannelLacpMemberLinks:
- interfaceId: string
lacpMode: string
lacpModeVariable: string
lacpPortPriority: 0
lacpPortPriorityVariable: string
lacpRate: string
lacpRateVariable: string
portChannelLacpMinBundle: 0
portChannelLacpMinBundleVariable: string
portChannelLacpQosAggregate: false
portChannelLacpQosAggregateVariable: string
portChannelMemberInterface: false
portChannelMode: string
portChannelStaticLoadBalance: string
portChannelStaticLoadBalanceVariable: string
portChannelStaticMemberLinks:
- interfaceId: string
portChannelStaticQosAggregate: false
portChannelStaticQosAggregateVariable: string
portChannelSubinterface: false
portChannelSubinterfacePrimaryInterfaceName: string
portChannelSubinterfacePrimaryInterfaceNameVariable: string
portChannelSubinterfaceSecondaryInterfaceName: string
portChannelSubinterfaceSecondaryInterfaceNameVariable: string
serviceLanVpnFeatureId: string
shutdown: false
shutdownVariable: string
speed: string
speedVariable: string
staticNats:
- direction: string
sourceIp: string
sourceIpVariable: string
sourceVpn: 0
sourceVpnVariable: string
translateIp: string
translateIpVariable: string
tcpMss: 0
tcpMssVariable: string
trustsecEnableEnforcedPropogation: false
trustsecEnableSgtPropogation: false
trustsecEnforcedSecurityGroupTag: 0
trustsecEnforcedSecurityGroupTagVariable: string
trustsecPropogate: false
trustsecSecurityGroupTag: 0
trustsecSecurityGroupTagVariable: string
xconnect: string
xconnectVariable: string
ServiceLanVpnInterfaceEthernetFeature 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 ServiceLanVpnInterfaceEthernetFeature resource accepts the following input properties:
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- Acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- Arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arps
List<Service
Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- Duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- Interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ip
Mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- Ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - Ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Nat bool
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Default value:
true
- Default value:
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- Ipv6Dhcp
Helpers List<ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Dhcp
Secondary List<ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv6Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- Media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- Port
Channel boolInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- Port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel List<ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- Port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- Port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel List<ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- Speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Static
Nats List<ServiceLan Vpn Interface Ethernet Feature Static Nat> - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- Feature
Profile stringId - Feature Profile ID
- Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- Acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- Arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arps
[]Service
Lan Vpn Interface Ethernet Feature Arp Args - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- Duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- Interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ip
Mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- Ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - Ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Nat bool
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Default value:
true
- Default value:
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses []ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address Args - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Vrrps
[]Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp Args - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- Ipv6Dhcp
Helpers []ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper Args - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Dhcp
Secondary []ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address Args - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv6Secondary
Addresses []ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address Args - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Vrrps
[]Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Args - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- Media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- Port
Channel boolInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- Port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel []ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link Args - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- Port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- Port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel []ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link Args - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- Speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Static
Nats []ServiceLan Vpn Interface Ethernet Feature Static Nat Args - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping IntegerRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping StringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout Integer - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
List<Service
Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect StringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed StringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu Integer - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type String - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat Boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix IntegerLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp IntegerTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp IntegerTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type String - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers List<ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary List<ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval Integer - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type String - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type StringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel BooleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel StringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel IntegerLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel List<ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel IntegerLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel StringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel StringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel List<ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel StringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel StringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats List<ServiceLan Vpn Interface Ethernet Feature Static Nat> - static NAT
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced IntegerSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security IntegerGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security StringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable String - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- feature
Profile stringId - Feature Profile ID
- service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- acl
Ipv4Egress stringPolicy Id - acl
Ipv4Ingress stringPolicy Id - acl
Ipv6Egress stringPolicy Id - acl
Ipv6Ingress stringPolicy Id - acl
Shaping numberRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
Service
Lan Vpn Interface Ethernet Feature Arp[] - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu number - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback stringVariable - Variable name
- ipv4Nat
Overload boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload stringVariable - Variable name
- ipv4Nat
Prefix numberLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix stringLength Variable - Variable name
- ipv4Nat
Range stringEnd - NAT Pool Range End
- ipv4Nat
Range stringEnd Variable - Variable name
- ipv4Nat
Range stringStart - NAT Pool Range Start
- ipv4Nat
Range stringStart Variable - Variable name
- ipv4Nat
Tcp numberTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp stringTimeout Variable - Variable name
- ipv4Nat
Udp numberTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp stringTimeout Variable - Variable name
- ipv4Secondary
Addresses ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps
Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp[] - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper[] - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address[] - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address[] - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps
Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp[] - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name string
- The name of the Feature
- nat64 boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel booleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel booleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel numberLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link[] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel numberLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel booleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel booleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link[] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel booleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel booleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - shutdown boolean
- Default value:
true
- Default value:
- shutdown
Variable string - Variable name
- speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats ServiceLan Vpn Interface Ethernet Feature Static Nat[] - static NAT
- tcp
Mss number - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable booleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable booleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced numberSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security numberGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- feature_
profile_ strid - Feature Profile ID
- service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- 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), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl_
shaping_ strrate_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp_
timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp_
timeout_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
Sequence[Service
Lan Vpn Interface Ethernet Feature Arp Args] - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate bool
- Link autonegotiation
- autonegotiate_
variable str - Variable name
- description str
- The description of the Feature
- duplex str
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex_
variable str - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp_
redirect_ strdisable_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface_
mtu_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip_
directed_ strbroadcast_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip_
mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip_
mtu_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
address str - IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
address_ strvariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
configuration_ strtype - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ strdistance_ variable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4_
dhcp_ strhelper_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
nat bool - enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4_
nat_ strloopback - NAT Inside Source Loopback Interface
- ipv4_
nat_ strloopback_ variable - Variable name
- ipv4_
nat_ booloverload - NAT Overload
- Default value:
true
- Default value:
- ipv4_
nat_ stroverload_ variable - Variable name
- ipv4_
nat_ intprefix_ length - NAT Pool Prefix Length
- Range:
1-32
- Range:
- 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
- Range:
1-8947 - Default value:
60
- Range:
- ipv4_
nat_ strtcp_ timeout_ variable - Variable name
- ipv4_
nat_ intudp_ timeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4_
nat_ strudp_ timeout_ variable - Variable name
- ipv4_
secondary_ Sequence[Serviceaddresses Lan Vpn Interface Ethernet Feature Ipv4Secondary Address Args] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
vrrps Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Args] - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
address_ strvariable - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
configuration_ strtype - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6_
dhcp_ Sequence[Servicehelpers Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper Args] - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
dhcp_ Sequence[Servicesecondary_ addresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address Args] - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6_
nat bool - enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6_
secondary_ Sequence[Serviceaddresses Lan Vpn Interface Ethernet Feature Ipv6Secondary Address Args] - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
vrrps Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv6Vrrp Args] - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load_
interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac_
address_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media_
type str - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media_
type_ strvariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name str
- The name of the Feature
- nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- port_
channel_ boolinterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port_
channel_ boollacp_ fast_ switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ fast_ switchover_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ load_ balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port_
channel_ strlacp_ load_ balance_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ intlacp_ max_ bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port_
channel_ strlacp_ max_ bundle_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ Sequence[Servicelacp_ member_ links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link Args] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ intlacp_ min_ bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port_
channel_ strlacp_ min_ bundle_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ boollacp_ qos_ aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ qos_ aggregate_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ boolmember_ interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port_
channel_ strmode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port_
channel_ strstatic_ load_ balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port_
channel_ strstatic_ load_ balance_ variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ Sequence[Servicestatic_ member_ links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link Args] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ boolstatic_ qos_ aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ strstatic_ qos_ aggregate_ variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ boolsubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port_
channel_ strsubinterface_ primary_ interface_ name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ primary_ interface_ name_ variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ secondary_ interface_ name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ secondary_ interface_ name_ variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - shutdown bool
- Default value:
true
- Default value:
- shutdown_
variable str - Variable name
- speed str
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed_
variable str - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static_
nats Sequence[ServiceLan Vpn Interface Ethernet Feature Static Nat Args] - static NAT
- tcp_
mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp_
mss_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
enable_ boolenforced_ propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
enable_ boolsgt_ propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec_
enforced_ intsecurity_ group_ tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec_
enforced_ strsecurity_ group_ tag_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec_
security_ intgroup_ tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec_
security_ strgroup_ tag_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect str
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect_
variable str - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- feature
Profile StringId - Feature Profile ID
- service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping NumberRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping StringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout Number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps List<Property Map>
- Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect StringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed StringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu Number - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type String - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat Boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix NumberLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp NumberTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp NumberTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps List<Property Map>
- Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type String - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers List<Property Map> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary List<Property Map>Addresses - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses List<Property Map> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps List<Property Map>
- Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval Number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type String - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type StringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel BooleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel StringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel NumberLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel List<Property Map>Lacp Member Links - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel NumberLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel StringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel StringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel List<Property Map>Static Member Links - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel StringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel StringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats List<Property Map> - static NAT
- tcp
Mss Number - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced NumberSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security NumberGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security StringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable String - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceLanVpnInterfaceEthernetFeature resource produces the following output properties:
Look up Existing ServiceLanVpnInterfaceEthernetFeature Resource
Get an existing ServiceLanVpnInterfaceEthernetFeature 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?: ServiceLanVpnInterfaceEthernetFeatureState, opts?: CustomResourceOptions): ServiceLanVpnInterfaceEthernetFeature@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
acl_ipv4_egress_policy_id: Optional[str] = None,
acl_ipv4_ingress_policy_id: Optional[str] = None,
acl_ipv6_egress_policy_id: Optional[str] = None,
acl_ipv6_ingress_policy_id: Optional[str] = None,
acl_shaping_rate: Optional[int] = None,
acl_shaping_rate_variable: Optional[str] = None,
arp_timeout: Optional[int] = None,
arp_timeout_variable: Optional[str] = None,
arps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureArpArgs]] = None,
autonegotiate: Optional[bool] = None,
autonegotiate_variable: Optional[str] = None,
description: Optional[str] = None,
duplex: Optional[str] = None,
duplex_variable: Optional[str] = None,
enable_dhcpv6: Optional[bool] = None,
feature_profile_id: Optional[str] = None,
icmp_redirect_disable: Optional[bool] = None,
icmp_redirect_disable_variable: Optional[str] = None,
interface_description: Optional[str] = None,
interface_description_variable: Optional[str] = None,
interface_mtu: Optional[int] = None,
interface_mtu_variable: Optional[str] = None,
interface_name: Optional[str] = None,
interface_name_variable: Optional[str] = None,
ip_directed_broadcast: Optional[bool] = None,
ip_directed_broadcast_variable: Optional[str] = None,
ip_mtu: Optional[int] = None,
ip_mtu_variable: Optional[str] = None,
ipv4_address: Optional[str] = None,
ipv4_address_variable: Optional[str] = None,
ipv4_configuration_type: Optional[str] = None,
ipv4_dhcp_distance: Optional[int] = None,
ipv4_dhcp_distance_variable: Optional[str] = None,
ipv4_dhcp_helper_variable: Optional[str] = None,
ipv4_dhcp_helpers: Optional[Sequence[str]] = None,
ipv4_nat: Optional[bool] = None,
ipv4_nat_loopback: Optional[str] = None,
ipv4_nat_loopback_variable: Optional[str] = None,
ipv4_nat_overload: Optional[bool] = None,
ipv4_nat_overload_variable: Optional[str] = None,
ipv4_nat_prefix_length: Optional[int] = None,
ipv4_nat_prefix_length_variable: Optional[str] = None,
ipv4_nat_range_end: Optional[str] = None,
ipv4_nat_range_end_variable: Optional[str] = None,
ipv4_nat_range_start: Optional[str] = None,
ipv4_nat_range_start_variable: Optional[str] = None,
ipv4_nat_tcp_timeout: Optional[int] = None,
ipv4_nat_tcp_timeout_variable: Optional[str] = None,
ipv4_nat_udp_timeout: Optional[int] = None,
ipv4_nat_udp_timeout_variable: Optional[str] = None,
ipv4_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs]] = None,
ipv4_subnet_mask: Optional[str] = None,
ipv4_subnet_mask_variable: Optional[str] = None,
ipv4_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs]] = None,
ipv6_address: Optional[str] = None,
ipv6_address_variable: Optional[str] = None,
ipv6_configuration_type: Optional[str] = None,
ipv6_dhcp_helpers: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs]] = None,
ipv6_dhcp_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs]] = None,
ipv6_nat: Optional[bool] = None,
ipv6_secondary_addresses: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs]] = None,
ipv6_vrrps: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs]] = None,
load_interval: Optional[int] = None,
load_interval_variable: Optional[str] = None,
mac_address: Optional[str] = None,
mac_address_variable: Optional[str] = None,
media_type: Optional[str] = None,
media_type_variable: Optional[str] = None,
name: Optional[str] = None,
nat64: Optional[bool] = None,
port_channel_interface: Optional[bool] = None,
port_channel_lacp_fast_switchover: Optional[bool] = None,
port_channel_lacp_fast_switchover_variable: Optional[str] = None,
port_channel_lacp_load_balance: Optional[str] = None,
port_channel_lacp_load_balance_variable: Optional[str] = None,
port_channel_lacp_max_bundle: Optional[int] = None,
port_channel_lacp_max_bundle_variable: Optional[str] = None,
port_channel_lacp_member_links: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs]] = None,
port_channel_lacp_min_bundle: Optional[int] = None,
port_channel_lacp_min_bundle_variable: Optional[str] = None,
port_channel_lacp_qos_aggregate: Optional[bool] = None,
port_channel_lacp_qos_aggregate_variable: Optional[str] = None,
port_channel_member_interface: Optional[bool] = None,
port_channel_mode: Optional[str] = None,
port_channel_static_load_balance: Optional[str] = None,
port_channel_static_load_balance_variable: Optional[str] = None,
port_channel_static_member_links: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs]] = None,
port_channel_static_qos_aggregate: Optional[bool] = None,
port_channel_static_qos_aggregate_variable: Optional[str] = None,
port_channel_subinterface: Optional[bool] = None,
port_channel_subinterface_primary_interface_name: Optional[str] = None,
port_channel_subinterface_primary_interface_name_variable: Optional[str] = None,
port_channel_subinterface_secondary_interface_name: Optional[str] = None,
port_channel_subinterface_secondary_interface_name_variable: Optional[str] = None,
service_lan_vpn_feature_id: Optional[str] = None,
shutdown: Optional[bool] = None,
shutdown_variable: Optional[str] = None,
speed: Optional[str] = None,
speed_variable: Optional[str] = None,
static_nats: Optional[Sequence[ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs]] = None,
tcp_mss: Optional[int] = None,
tcp_mss_variable: Optional[str] = None,
trustsec_enable_enforced_propogation: Optional[bool] = None,
trustsec_enable_sgt_propogation: Optional[bool] = None,
trustsec_enforced_security_group_tag: Optional[int] = None,
trustsec_enforced_security_group_tag_variable: Optional[str] = None,
trustsec_propogate: Optional[bool] = None,
trustsec_security_group_tag: Optional[int] = None,
trustsec_security_group_tag_variable: Optional[str] = None,
version: Optional[int] = None,
xconnect: Optional[str] = None,
xconnect_variable: Optional[str] = None) -> ServiceLanVpnInterfaceEthernetFeaturefunc GetServiceLanVpnInterfaceEthernetFeature(ctx *Context, name string, id IDInput, state *ServiceLanVpnInterfaceEthernetFeatureState, opts ...ResourceOption) (*ServiceLanVpnInterfaceEthernetFeature, error)public static ServiceLanVpnInterfaceEthernetFeature Get(string name, Input<string> id, ServiceLanVpnInterfaceEthernetFeatureState? state, CustomResourceOptions? opts = null)public static ServiceLanVpnInterfaceEthernetFeature get(String name, Output<String> id, ServiceLanVpnInterfaceEthernetFeatureState state, CustomResourceOptions options)resources: _: type: sdwan:ServiceLanVpnInterfaceEthernetFeature 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.
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- Acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- Arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arps
List<Service
Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- Duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- Interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ip
Mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- Ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - Ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Nat bool
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Default value:
true
- Default value:
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- Ipv6Dhcp
Helpers List<ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Dhcp
Secondary List<ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv6Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- Media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- Port
Channel boolInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- Port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel List<ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- Port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- Port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel List<ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- Speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Static
Nats List<ServiceLan Vpn Interface Ethernet Feature Static Nat> - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- Acl
Ipv4Egress stringPolicy Id - Acl
Ipv4Ingress stringPolicy Id - Acl
Ipv6Egress stringPolicy Id - Acl
Ipv6Ingress stringPolicy Id - Acl
Shaping intRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- Acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arp
Timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- Arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Arps
[]Service
Lan Vpn Interface Ethernet Feature Arp Args - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- Duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Enable
Dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - Feature
Profile stringId - Feature Profile ID
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- Interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ip
Mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- Ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- Ipv4Dhcp
Distance int - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- Ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - Ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv4Nat bool
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- Ipv4Nat
Loopback stringVariable - Variable name
- Ipv4Nat
Overload bool - NAT Overload
- Default value:
true
- Default value:
- Ipv4Nat
Overload stringVariable - Variable name
- Ipv4Nat
Prefix intLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- Ipv4Nat
Prefix stringLength Variable - Variable name
- Ipv4Nat
Range stringEnd - NAT Pool Range End
- Ipv4Nat
Range stringEnd Variable - Variable name
- Ipv4Nat
Range stringStart - NAT Pool Range Start
- Ipv4Nat
Range stringStart Variable - Variable name
- Ipv4Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- Ipv4Nat
Tcp stringTimeout Variable - Variable name
- Ipv4Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- Ipv4Nat
Udp stringTimeout Variable - Variable name
- Ipv4Secondary
Addresses []ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address Args - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - Ipv4Vrrps
[]Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp Args - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - Ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- Ipv6Dhcp
Helpers []ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper Args - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Dhcp
Secondary []ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address Args - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - Ipv6Nat bool
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Ipv6Secondary
Addresses []ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address Args - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - Ipv6Vrrps
[]Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Args - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - Load
Interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - Media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- Media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- Port
Channel boolInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- Port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel []ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link Args - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel intLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- Port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - Port
Channel boolMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- Port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- Port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel []ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link Args - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - Port
Channel boolSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - Service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- Shutdown bool
- Default value:
true
- Default value:
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- Speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - Static
Nats []ServiceLan Vpn Interface Ethernet Feature Static Nat Args - static NAT
- Tcp
Mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- Tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Enable boolSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- Trustsec
Enforced intSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Trustsec
Propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- Trustsec
Security intGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- Trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - Xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping IntegerRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping StringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout Integer - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
List<Service
Lan Vpn Interface Ethernet Feature Arp> - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect StringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed StringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu Integer - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type String - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance Integer - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat Boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix IntegerLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp IntegerTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp IntegerTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp> - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type String - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers List<ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary List<ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp> - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval Integer - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type String - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type StringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel BooleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel StringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel IntegerLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel List<ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel IntegerLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel StringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel StringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel List<ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel StringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel StringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats List<ServiceLan Vpn Interface Ethernet Feature Static Nat> - static NAT
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced IntegerSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security IntegerGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security StringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - version Integer
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable String - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- acl
Ipv4Egress stringPolicy Id - acl
Ipv4Ingress stringPolicy Id - acl
Ipv6Egress stringPolicy Id - acl
Ipv6Ingress stringPolicy Id - acl
Shaping numberRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping stringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
Service
Lan Vpn Interface Ethernet Feature Arp[] - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - feature
Profile stringId - Feature Profile ID
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect stringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed stringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu number - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address string
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable string - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type string - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance number - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback string - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback stringVariable - Variable name
- ipv4Nat
Overload boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload stringVariable - Variable name
- ipv4Nat
Prefix numberLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix stringLength Variable - Variable name
- ipv4Nat
Range stringEnd - NAT Pool Range End
- ipv4Nat
Range stringEnd Variable - Variable name
- ipv4Nat
Range stringStart - NAT Pool Range Start
- ipv4Nat
Range stringStart Variable - Variable name
- ipv4Nat
Tcp numberTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp stringTimeout Variable - Variable name
- ipv4Nat
Udp numberTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp stringTimeout Variable - Variable name
- ipv4Secondary
Addresses ServiceLan Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask string - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask stringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps
Service
Lan Vpn Interface Ethernet Feature Ipv4Vrrp[] - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address string
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable string - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type string - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers ServiceLan Vpn Interface Ethernet Feature Ipv6Dhcp Helper[] - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary ServiceAddresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address[] - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses ServiceLan Vpn Interface Ethernet Feature Ipv6Secondary Address[] - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps
Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp[] - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type string - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type stringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name string
- The name of the Feature
- nat64 boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel booleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel booleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel stringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel numberLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel stringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel ServiceLacp Member Links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link[] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel numberLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel stringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel booleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel stringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel booleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel stringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel stringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel ServiceStatic Member Links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link[] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel booleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel stringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel booleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel stringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel stringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - service
Lan stringVpn Feature Id - Service LAN VPN Feature ID
- shutdown boolean
- Default value:
true
- Default value:
- shutdown
Variable string - Variable name
- speed string
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable string - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats ServiceLan Vpn Interface Ethernet Feature Static Nat[] - static NAT
- tcp
Mss number - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss stringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable booleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable booleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced numberSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced stringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security numberGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security stringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - version number
- The version of the Feature
- xconnect string
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable string - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- 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), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl_
shaping_ strrate_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp_
timeout int - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp_
timeout_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps
Sequence[Service
Lan Vpn Interface Ethernet Feature Arp Args] - Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate bool
- Link autonegotiation
- autonegotiate_
variable str - Variable name
- description str
- The description of the Feature
- duplex str
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex_
variable str - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable_
dhcpv6 bool - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - feature_
profile_ strid - Feature Profile ID
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp_
redirect_ strdisable_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface_
mtu_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip_
directed_ strbroadcast_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip_
mtu int - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip_
mtu_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
address str - IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
address_ strvariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
configuration_ strtype - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4_
dhcp_ intdistance - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4_
dhcp_ strdistance_ variable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4_
dhcp_ strhelper_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4_
nat bool - enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4_
nat_ strloopback - NAT Inside Source Loopback Interface
- ipv4_
nat_ strloopback_ variable - Variable name
- ipv4_
nat_ booloverload - NAT Overload
- Default value:
true
- Default value:
- ipv4_
nat_ stroverload_ variable - Variable name
- ipv4_
nat_ intprefix_ length - NAT Pool Prefix Length
- Range:
1-32
- Range:
- 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
- Range:
1-8947 - Default value:
60
- Range:
- ipv4_
nat_ strtcp_ timeout_ variable - Variable name
- ipv4_
nat_ intudp_ timeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4_
nat_ strudp_ timeout_ variable - Variable name
- ipv4_
secondary_ Sequence[Serviceaddresses Lan Vpn Interface Ethernet Feature Ipv4Secondary Address Args] - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
subnet_ strmask - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4_
subnet_ strmask_ variable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4_
vrrps Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Args] - Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6_
address str - IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
address_ strvariable - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
configuration_ strtype - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6_
dhcp_ Sequence[Servicehelpers Lan Vpn Interface Ethernet Feature Ipv6Dhcp Helper Args] - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
dhcp_ Sequence[Servicesecondary_ addresses Lan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address Args] - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6_
nat bool - enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6_
secondary_ Sequence[Serviceaddresses Lan Vpn Interface Ethernet Feature Ipv6Secondary Address Args] - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6_
vrrps Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv6Vrrp Args] - Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load_
interval int - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac_
address_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media_
type str - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media_
type_ strvariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name str
- The name of the Feature
- nat64 bool
- NAT64 on this interface
- Default value:
false
- Default value:
- port_
channel_ boolinterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port_
channel_ boollacp_ fast_ switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ fast_ switchover_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ load_ balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port_
channel_ strlacp_ load_ balance_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ intlacp_ max_ bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port_
channel_ strlacp_ max_ bundle_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ Sequence[Servicelacp_ member_ links Lan Vpn Interface Ethernet Feature Port Channel Lacp Member Link Args] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ intlacp_ min_ bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port_
channel_ strlacp_ min_ bundle_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ boollacp_ qos_ aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ strlacp_ qos_ aggregate_ variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port_
channel_ boolmember_ interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port_
channel_ strmode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port_
channel_ strstatic_ load_ balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port_
channel_ strstatic_ load_ balance_ variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ Sequence[Servicestatic_ member_ links Lan Vpn Interface Ethernet Feature Port Channel Static Member Link Args] - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ boolstatic_ qos_ aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ strstatic_ qos_ aggregate_ variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port_
channel_ boolsubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port_
channel_ strsubinterface_ primary_ interface_ name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ primary_ interface_ name_ variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ secondary_ interface_ name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port_
channel_ strsubinterface_ secondary_ interface_ name_ variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - service_
lan_ strvpn_ feature_ id - Service LAN VPN Feature ID
- shutdown bool
- Default value:
true
- Default value:
- shutdown_
variable str - Variable name
- speed str
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed_
variable str - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static_
nats Sequence[ServiceLan Vpn Interface Ethernet Feature Static Nat Args] - static NAT
- tcp_
mss int - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp_
mss_ strvariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
enable_ boolenforced_ propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
enable_ boolsgt_ propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec_
enforced_ intsecurity_ group_ tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec_
enforced_ strsecurity_ group_ tag_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec_
propogate bool - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec_
security_ intgroup_ tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec_
security_ strgroup_ tag_ variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - version int
- The version of the Feature
- xconnect str
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect_
variable str - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
- acl
Ipv4Egress StringPolicy Id - acl
Ipv4Ingress StringPolicy Id - acl
Ipv6Egress StringPolicy Id - acl
Ipv6Ingress StringPolicy Id - acl
Shaping NumberRate - Shaping Rate (Kbps), Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
8-100000000
- Range:
- acl
Shaping StringRate Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arp
Timeout Number - Timeout value for dynamically learned ARP entries, <0..2678400> seconds, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
0-2147483 - Default value:
1200
- Range:
- arp
Timeout StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - arps List<Property Map>
- Configure ARP entries, Attribute conditional on
port_channel_member_interfacenot equal totrue - autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
full,half,auto
- Choices:
- duplex
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - enable
Dhcpv6 Boolean - Enable DHCPv6, Attribute conditional on
ipv6_configuration_typeequal todynamic - feature
Profile StringId - Feature Profile ID
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- icmp
Redirect StringDisable Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
1500-9216 - Default value:
1500
- Range:
- interface
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ip
Directed StringBroadcast Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ip
Mtu Number - IP MTU for GigabitEthernet main <576..Interface MTU>, GigabitEthernet subinterface <576..9216>, Other Interfaces <576..2000> in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
576-9216 - Default value:
1500
- Range:
- ip
Mtu StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Address String
- IP Address, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Address
Variable String - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Configuration
Type String - IPv4 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
dynamic
- Choices:
- ipv4Dhcp
Distance Number - DHCP Distance, Attribute conditional on
ipv4_configuration_typeequal todynamic- Range:
1-255 - Default value:
1
- Range:
- ipv4Dhcp
Distance StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal todynamic - ipv4Dhcp
Helper StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8), Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv4Nat Boolean
- enable Network Address Translation on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv4Nat
Loopback String - NAT Inside Source Loopback Interface
- ipv4Nat
Loopback StringVariable - Variable name
- ipv4Nat
Overload Boolean - NAT Overload
- Default value:
true
- Default value:
- ipv4Nat
Overload StringVariable - Variable name
- ipv4Nat
Prefix NumberLength - NAT Pool Prefix Length
- Range:
1-32
- Range:
- ipv4Nat
Prefix StringLength Variable - Variable name
- ipv4Nat
Range StringEnd - NAT Pool Range End
- ipv4Nat
Range StringEnd Variable - Variable name
- ipv4Nat
Range StringStart - NAT Pool Range Start
- ipv4Nat
Range StringStart Variable - Variable name
- ipv4Nat
Tcp NumberTimeout - Set NAT TCP session timeout, in minutes
- Range:
1-8947 - Default value:
60
- Range:
- ipv4Nat
Tcp StringTimeout Variable - Variable name
- ipv4Nat
Udp NumberTimeout - Set NAT UDP session timeout, in minutes
- Range:
1-8947 - Default value:
1
- Range:
- ipv4Nat
Udp StringTimeout Variable - Variable name
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Subnet
Mask String - Subnet Mask, Attribute conditional on
ipv4_configuration_typeequal tostatic- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- ipv4Subnet
Mask StringVariable - Variable name, Attribute conditional on
ipv4_configuration_typeequal tostatic - ipv4Vrrps List<Property Map>
- Enable VRRP, Attribute conditional on
port_channel_member_interfacenot equal totrue - ipv6Address String
- IPv6 Address Secondary, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Address
Variable String - Variable name, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Configuration
Type String - IPv6 Configuration Type, Attribute conditional on
port_channel_member_interfacenot equal totrue- Choices:
dynamic,static,none - Default value:
none
- Choices:
- ipv6Dhcp
Helpers List<Property Map> - DHCPv6 Helper, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Dhcp
Secondary List<Property Map>Addresses - secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal todynamic - ipv6Nat Boolean
- enable Network Address Translation ipv6 on this interface, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- ipv6Secondary
Addresses List<Property Map> - Static secondary IPv6 addresses, Attribute conditional on
ipv6_configuration_typeequal tostatic - ipv6Vrrps List<Property Map>
- Enable VRRP Ipv6, Attribute conditional on
port_channel_member_interfacenot equal totrue - load
Interval Number - Interval for interface load calculation
- Range:
30-600 - Default value:
30
- Range:
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - mac
Address StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrueandport_channel_interfacenot equal totrue - media
Type String - Media type, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
auto-select,rj45,sfp
- Choices:
- media
Type StringVariable - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- Default value:
false
- Default value:
- port
Channel BooleanInterface - Port-Channel interface on/off
- Default value:
false
- Default value:
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Fast Switchover Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp- Choices:
flow,vlan
- Choices:
- port
Channel StringLacp Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel NumberLacp Max Bundle - Set LACP max bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Max Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel List<Property Map>Lacp Member Links - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tolacp - port
Channel NumberLacp Min Bundle - Set LACP min bundle, Attribute conditional on
port_channel_modeequal tolacp- Range:
1-16
- Range:
- port
Channel StringLacp Min Bundle Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tolacp - port
Channel StringLacp Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tolacp - port
Channel BooleanMember Interface - Port-Channel member interface on/off
- Default value:
false
- Default value:
- port
Channel StringMode - Port Channel Mode, Attribute conditional on
port_channel_interfaceequal totrue- Choices:
lacp,static
- Choices:
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic- Choices:
flow,vlan
- Choices:
- port
Channel StringStatic Load Balance Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel List<Property Map>Static Member Links - Configure Port-Channel member links, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate, Attribute conditional on
port_channel_modeequal tostatic - port
Channel StringStatic Qos Aggregate Variable - Variable name, Attribute conditional on
port_channel_modeequal tostatic - port
Channel BooleanSubinterface - Port Channel Sub Interface on/off, Attribute conditional on
port_channel_interfaceequal totrue - port
Channel StringSubinterface Primary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Primary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name - , Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - port
Channel StringSubinterface Secondary Interface Name Variable - Variable name, Attribute conditional on
port_channel_interfaceequal totrueandport_channel_subinterfaceequal totrue - service
Lan StringVpn Feature Id - Service LAN VPN Feature ID
- shutdown Boolean
- Default value:
true
- Default value:
- shutdown
Variable String - Variable name
- speed String
- Set interface speed, Attribute conditional on
port_channel_interfacenot equal totrue- Choices:
10,100,1000,2500,10000,25000
- Choices:
- speed
Variable String - Variable name, Attribute conditional on
port_channel_interfacenot equal totrue - static
Nats List<Property Map> - static NAT
- tcp
Mss Number - TCP MSS on SYN packets, in bytes, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
500-1460
- Range:
- tcp
Mss StringVariable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanEnforced Propogation - Enable/Disable SGT Enforcement on an interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Enable BooleanSgt Propogation - Indicates that the interface is trustworthy for CTS, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
false
- Default value:
- trustsec
Enforced NumberSecurity Group Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Enforced StringSecurity Group Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - trustsec
Propogate Boolean - Enables the interface for CTS SGT authorization and forwarding, Attribute conditional on
port_channel_member_interfacenot equal totrue- Default value:
true
- Default value:
- trustsec
Security NumberGroup Tag - SGT value between 2 and 65519, Attribute conditional on
port_channel_member_interfacenot equal totrue- Range:
2-65519
- Range:
- trustsec
Security StringGroup Tag Variable - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue - version Number
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local LAN interface, Attribute conditional on
port_channel_member_interfacenot equal totrue - xconnect
Variable String - Variable name, Attribute conditional on
port_channel_member_interfacenot equal totrue
Supporting Types
ServiceLanVpnInterfaceEthernetFeatureArp, ServiceLanVpnInterfaceEthernetFeatureArpArgs
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Ip
Address string - IPV4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- ip
Address string - IPV4 Address
- ip
Address stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- ip_
address str - IPV4 Address
- ip_
address_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- ip
Address String - IPV4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv4SecondaryAddressArgs
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask stringVariable - Variable name
- address str
- IpV4 Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet_
mask_ strvariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask StringVariable - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv4Vrrp, ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpArgs
- Address string
- VRRP Ip Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- Group
Id int - Group ID
- Range:
1-255
- Range:
- Group
Id stringVariable - Variable name
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- Priority
Variable string - Variable name
- Secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> - VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- Timer
Variable string - Variable name
- Tloc
Pref intChange Value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- Tloc
Prefix boolChange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- Track
Omp bool - Track OMP status
- Default value:
false
- Default value:
- Tracking
Objects List<ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> - Tracking object for VRRP configuration
- Address string
- VRRP Ip Address
- Address
Variable string - Variable name
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- Group
Id int - Group ID
- Range:
1-255
- Range:
- Group
Id stringVariable - Variable name
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- Priority
Variable string - Variable name
- Secondary
Addresses []ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address - VRRP Secondary Ip Addresses
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- Timer
Variable string - Variable name
- Tloc
Pref intChange Value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- Tloc
Prefix boolChange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- Track
Omp bool - Track OMP status
- Default value:
false
- Default value:
- Tracking
Objects []ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object - Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id Integer - Group ID
- Range:
1-255
- Range:
- group
Id StringVariable - Variable name
- min
Preempt IntegerDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt StringDelay Variable - Variable name
- priority Integer
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable String - Variable name
- secondary
Addresses List<ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address> - VRRP Secondary Ip Addresses
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable String - Variable name
- tloc
Pref IntegerChange Value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- tloc
Prefix BooleanChange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- track
Omp Boolean - Track OMP status
- Default value:
false
- Default value:
- tracking
Objects List<ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object> - Tracking object for VRRP configuration
- address string
- VRRP Ip Address
- address
Variable string - Variable name
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id number - Group ID
- Range:
1-255
- Range:
- group
Id stringVariable - Variable name
- min
Preempt numberDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt stringDelay Variable - Variable name
- priority number
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable string - Variable name
- secondary
Addresses ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address[] - VRRP Secondary Ip Addresses
- timer number
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable string - Variable name
- tloc
Pref numberChange Value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- tloc
Prefix booleanChange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- track
Omp boolean - Track OMP status
- Default value:
false
- Default value:
- tracking
Objects ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object[] - Tracking object for VRRP configuration
- address str
- VRRP Ip Address
- address_
variable str - Variable name
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group_
id int - Group ID
- Range:
1-255
- Range:
- group_
id_ strvariable - Variable name
- min_
preempt_ intdelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min_
preempt_ strdelay_ variable - Variable name
- priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority_
variable str - Variable name
- secondary_
addresses Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Secondary Address] - VRRP Secondary Ip Addresses
- timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer_
variable str - Variable name
- tloc_
pref_ intchange_ value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- tloc_
prefix_ boolchange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- track_
omp bool - Track OMP status
- Default value:
false
- Default value:
- tracking_
objects Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv4Vrrp Tracking Object] - Tracking object for VRRP configuration
- address String
- VRRP Ip Address
- address
Variable String - Variable name
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id Number - Group ID
- Range:
1-255
- Range:
- group
Id StringVariable - Variable name
- min
Preempt NumberDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt StringDelay Variable - Variable name
- priority Number
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable String - Variable name
- secondary
Addresses List<Property Map> - VRRP Secondary Ip Addresses
- timer Number
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable String - Variable name
- tloc
Pref NumberChange Value - Timer interval for successive advertisements, in milliseconds
- Range:
1-4294967295
- Range:
- tloc
Prefix BooleanChange - Timer interval for successive advertisements, in milliseconds
- Default value:
false
- Default value:
- track
Omp Boolean - Track OMP status
- Default value:
false
- Default value:
- tracking
Objects List<Property Map> - Tracking object for VRRP configuration
ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpSecondaryAddressArgs
- Address string
- Ip Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Subnet
Mask stringVariable - Variable name
- Address string
- Ip Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- Subnet
Mask stringVariable - Variable name
- address String
- Ip Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask StringVariable - Variable name
- address string
- Ip Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask stringVariable - Variable name
- address str
- Ip Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet_
mask_ strvariable - Variable name
- address String
- Ip Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- Choices:
255.255.255.255,255.255.255.254,255.255.255.252,255.255.255.248,255.255.255.240,255.255.255.224,255.255.255.192,255.255.255.128,255.255.255.0,255.255.254.0,255.255.252.0,255.255.248.0,255.255.240.0,255.255.224.0,255.255.192.0,255.255.128.0,255.255.0.0,255.254.0.0,255.252.0.0,255.240.0.0,255.224.0.0,255.192.0.0,255.128.0.0,255.0.0.0,254.0.0.0,252.0.0.0,248.0.0.0,240.0.0.0,224.0.0.0,192.0.0.0,128.0.0.0,0.0.0.0
- Choices:
- subnet
Mask StringVariable - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObject, ServiceLanVpnInterfaceEthernetFeatureIpv4VrrpTrackingObjectArgs
- Decrement
Value int - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- Decrement
Value stringVariable - Variable name
- Tracker
Action string - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- Tracker
Action stringVariable - Variable name
- Tracker
Id string
- Decrement
Value int - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- Decrement
Value stringVariable - Variable name
- Tracker
Action string - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- Tracker
Action stringVariable - Variable name
- Tracker
Id string
- decrement
Value Integer - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- decrement
Value StringVariable - Variable name
- tracker
Action String - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- tracker
Action StringVariable - Variable name
- tracker
Id String
- decrement
Value number - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- decrement
Value stringVariable - Variable name
- tracker
Action string - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- tracker
Action stringVariable - Variable name
- tracker
Id string
- decrement_
value int - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- decrement_
value_ strvariable - Variable name
- tracker_
action str - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- tracker_
action_ strvariable - Variable name
- tracker_
id str
- decrement
Value Number - Decrement Value for VRRP priority
- Range:
1-255
- Range:
- decrement
Value StringVariable - Variable name
- tracker
Action String - Track Action
- Choices:
Decrement,Shutdown
- Choices:
- tracker
Action StringVariable - Variable name
- tracker
Id String
ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelper, ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpHelperArgs
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Dhcpv6Helper
Vpn int - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- Dhcpv6Helper
Vpn stringVariable - Variable name
- Address string
- DHCPv6 Helper address
- Address
Variable string - Variable name
- Dhcpv6Helper
Vpn int - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- Dhcpv6Helper
Vpn stringVariable - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- dhcpv6Helper
Vpn Integer - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- dhcpv6Helper
Vpn StringVariable - Variable name
- address string
- DHCPv6 Helper address
- address
Variable string - Variable name
- dhcpv6Helper
Vpn number - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- dhcpv6Helper
Vpn stringVariable - Variable name
- address str
- DHCPv6 Helper address
- address_
variable str - Variable name
- dhcpv6_
helper_ intvpn - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- dhcpv6_
helper_ strvpn_ variable - Variable name
- address String
- DHCPv6 Helper address
- address
Variable String - Variable name
- dhcpv6Helper
Vpn Number - DHCPv6 Helper VPN
- Range:
1-65536
- Range:
- dhcpv6Helper
Vpn StringVariable - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddressArgs
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
- address string
- IPv6 Address Secondary
- address
Variable string - Variable name
- address str
- IPv6 Address Secondary
- address_
variable str - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddress, ServiceLanVpnInterfaceEthernetFeatureIpv6SecondaryAddressArgs
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- Address string
- IPv6 Address Secondary
- Address
Variable string - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
- address string
- IPv6 Address Secondary
- address
Variable string - Variable name
- address str
- IPv6 Address Secondary
- address_
variable str - Variable name
- address String
- IPv6 Address Secondary
- address
Variable String - Variable name
ServiceLanVpnInterfaceEthernetFeatureIpv6Vrrp, ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpArgs
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- Group
Id int - Group ID
- Range:
1-255
- Range:
- Group
Id stringVariable - Variable name
- Ipv6Addresses
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> - IPv6 VRRP
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- Priority
Variable string - Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- Default value:
false
- Default value:
- Follow
Dual boolRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- Group
Id int - Group ID
- Range:
1-255
- Range:
- Group
Id stringVariable - Variable name
- Ipv6Addresses
[]Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address - IPv6 VRRP
- Min
Preempt intDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- Min
Preempt stringDelay Variable - Variable name
- Priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- Priority
Variable string - Variable name
- Timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- Timer
Variable string - Variable name
- Track
Omp bool - Track OMP status
- Default value:
false
- Default value:
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id Integer - Group ID
- Range:
1-255
- Range:
- group
Id StringVariable - Variable name
- ipv6Addresses
List<Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address> - IPv6 VRRP
- min
Preempt IntegerDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt StringDelay Variable - Variable name
- priority Integer
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable String - Variable name
- timer Integer
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
- Default value:
false
- Default value:
- follow
Dual booleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id number - Group ID
- Range:
1-255
- Range:
- group
Id stringVariable - Variable name
- ipv6Addresses
Service
Lan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address[] - IPv6 VRRP
- min
Preempt numberDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt stringDelay Variable - Variable name
- priority number
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable string - Variable name
- timer number
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable string - Variable name
- track
Omp boolean - Track OMP status
- Default value:
false
- Default value:
- follow_
dual_ boolrouter_ high_ availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group_
id int - Group ID
- Range:
1-255
- Range:
- group_
id_ strvariable - Variable name
- ipv6_
addresses Sequence[ServiceLan Vpn Interface Ethernet Feature Ipv6Vrrp Ipv6Address] - IPv6 VRRP
- min_
preempt_ intdelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min_
preempt_ strdelay_ variable - Variable name
- priority int
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority_
variable str - Variable name
- timer int
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer_
variable str - Variable name
- track_
omp bool - Track OMP status
- Default value:
false
- Default value:
- follow
Dual BooleanRouter High Availability - Follow RG state by default when B2B HA is configured
- Default value:
true
- Default value:
- group
Id Number - Group ID
- Range:
1-255
- Range:
- group
Id StringVariable - Variable name
- ipv6Addresses List<Property Map>
- IPv6 VRRP
- min
Preempt NumberDelay - Minimum preempt delay in seconds
- Range:
0-3600
- Range:
- min
Preempt StringDelay Variable - Variable name
- priority Number
- Set priority
- Range:
1-254 - Default value:
100
- Range:
- priority
Variable String - Variable name
- timer Number
- Timer interval for successive advertisements, in milliseconds
- Range:
100-40950 - Default value:
1000
- Range:
- timer
Variable String - Variable name
- track
Omp Boolean - Track OMP status
- Default value:
false
- Default value:
ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6Address, ServiceLanVpnInterfaceEthernetFeatureIpv6VrrpIpv6AddressArgs
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- Global
Address string - Assign Global IPv6 Prefix
- Global
Address stringVariable - Variable name
- Link
Local stringAddress - Use link-local IPv6 Address
- Link
Local stringAddress Variable - Variable name
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
- global
Address string - Assign Global IPv6 Prefix
- global
Address stringVariable - Variable name
- link
Local stringAddress - Use link-local IPv6 Address
- link
Local 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
- global
Address String - Assign Global IPv6 Prefix
- global
Address StringVariable - Variable name
- link
Local StringAddress - Use link-local IPv6 Address
- link
Local StringAddress Variable - Variable name
ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLink, ServiceLanVpnInterfaceEthernetFeaturePortChannelLacpMemberLinkArgs
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Range:
1-65535
- Range:
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Choices:
fast,normal
- Choices:
- Lacp
Rate stringVariable - Variable name
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Range:
1-65535
- Range:
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Choices:
fast,normal
- Choices:
- Lacp
Rate stringVariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- lacp
Mode StringVariable - Variable name
- lacp
Port IntegerPriority - Set lacp port priority
- Range:
1-65535
- Range:
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- Choices:
fast,normal
- Choices:
- lacp
Rate StringVariable - Variable name
- interface
Id string - lacp
Mode string - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- lacp
Mode stringVariable - Variable name
- lacp
Port numberPriority - Set lacp port priority
- Range:
1-65535
- Range:
- lacp
Port stringPriority Variable - Variable name
- lacp
Rate string - Set lacp rate
- Choices:
fast,normal
- Choices:
- lacp
Rate stringVariable - Variable name
- interface_
id str - lacp_
mode str - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- lacp_
mode_ strvariable - Variable name
- lacp_
port_ intpriority - Set lacp port priority
- Range:
1-65535
- Range:
- lacp_
port_ strpriority_ variable - Variable name
- lacp_
rate str - Set lacp rate
- Choices:
fast,normal
- Choices:
- lacp_
rate_ strvariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- Choices:
active,passive - Default value:
active
- Choices:
- lacp
Mode StringVariable - Variable name
- lacp
Port NumberPriority - Set lacp port priority
- Range:
1-65535
- Range:
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- Choices:
fast,normal
- Choices:
- lacp
Rate StringVariable - Variable name
ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLink, ServiceLanVpnInterfaceEthernetFeaturePortChannelStaticMemberLinkArgs
- Interface
Id string
- Interface
Id string
- interface
Id String
- interface
Id string
- interface_
id str
- interface
Id String
ServiceLanVpnInterfaceEthernetFeatureStaticNat, ServiceLanVpnInterfaceEthernetFeatureStaticNatArgs
- Direction string
- Direction of static NAT translation
- Choices:
inside,outside - Default value:
inside
- Choices:
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- Source
Vpn stringVariable - Variable name
- Translate
Ip string - Statically translated source IP address
- Translate
Ip stringVariable - Variable name
- Direction string
- Direction of static NAT translation
- Choices:
inside,outside - Default value:
inside
- Choices:
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- Source
Vpn stringVariable - Variable name
- Translate
Ip string - Statically translated source IP address
- Translate
Ip stringVariable - Variable name
- direction String
- Direction of static NAT translation
- Choices:
inside,outside - Default value:
inside
- Choices:
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Integer - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- source
Vpn StringVariable - Variable name
- translate
Ip String - Statically translated source IP address
- translate
Ip StringVariable - Variable name
- direction string
- Direction of static NAT translation
- Choices:
inside,outside - Default value:
inside
- Choices:
- source
Ip string - Source IP address to be translated
- source
Ip stringVariable - Variable name
- source
Vpn number - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- source
Vpn stringVariable - Variable name
- translate
Ip string - Statically translated source IP address
- translate
Ip stringVariable - Variable name
- direction str
- Direction of static NAT translation
- Choices:
inside,outside - Default value:
inside
- Choices:
- source_
ip str - Source IP address to be translated
- source_
ip_ strvariable - Variable name
- source_
vpn int - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- 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
- Choices:
inside,outside - Default value:
inside
- Choices:
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Number - Source VPN ID
- Range:
0-65530 - Default value:
0
- Range:
- source
Vpn StringVariable - Variable name
- translate
Ip String - Statically translated source IP address
- translate
Ip StringVariable - Variable name
Import
The pulumi import command can be used, for example:
Expected import identifier with the format: “service_lan_vpn_interface_ethernet_feature_id,feature_profile_id,service_lan_vpn_feature_id”
$ pulumi import sdwan:index/serviceLanVpnInterfaceEthernetFeature:ServiceLanVpnInterfaceEthernetFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac,140331f6-5418-4755-a059-13c77eb96037"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
published on Tuesday, Feb 24, 2026 by Pulumi
