Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
This data source can read the Transport WAN VPN Interface Ethernet Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getTransportWanVpnInterfaceEthernetFeature({
id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.get_transport_wan_vpn_interface_ethernet_feature(id="f6b2c44c-693c-4763-b010-895aa3d236bd",
feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
transport_wan_vpn_feature_id="140331f6-5418-4755-a059-13c77eb96037")
package main
import (
"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sdwan.LookupTransportWanVpnInterfaceEthernetFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceEthernetFeatureArgs{
Id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportWanVpnFeatureId: "140331f6-5418-4755-a059-13c77eb96037",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() =>
{
var example = Sdwan.GetTransportWanVpnInterfaceEthernetFeature.Invoke(new()
{
Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
TransportWanVpnFeatureId = "140331f6-5418-4755-a059-13c77eb96037",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SdwanFunctions;
import com.pulumi.sdwan.inputs.GetTransportWanVpnInterfaceEthernetFeatureArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = SdwanFunctions.getTransportWanVpnInterfaceEthernetFeature(GetTransportWanVpnInterfaceEthernetFeatureArgs.builder()
.id("f6b2c44c-693c-4763-b010-895aa3d236bd")
.featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
.transportWanVpnFeatureId("140331f6-5418-4755-a059-13c77eb96037")
.build());
}
}
variables:
example:
fn::invoke:
function: sdwan:getTransportWanVpnInterfaceEthernetFeature
arguments:
id: f6b2c44c-693c-4763-b010-895aa3d236bd
featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getTransportWanVpnInterfaceEthernetFeature
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTransportWanVpnInterfaceEthernetFeature(args: GetTransportWanVpnInterfaceEthernetFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceEthernetFeatureResult>
function getTransportWanVpnInterfaceEthernetFeatureOutput(args: GetTransportWanVpnInterfaceEthernetFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceEthernetFeatureResult>def get_transport_wan_vpn_interface_ethernet_feature(feature_profile_id: Optional[str] = None,
id: Optional[str] = None,
transport_wan_vpn_feature_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceEthernetFeatureResult
def get_transport_wan_vpn_interface_ethernet_feature_output(feature_profile_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
transport_wan_vpn_feature_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTransportWanVpnInterfaceEthernetFeatureResult]func LookupTransportWanVpnInterfaceEthernetFeature(ctx *Context, args *LookupTransportWanVpnInterfaceEthernetFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceEthernetFeatureResult, error)
func LookupTransportWanVpnInterfaceEthernetFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceEthernetFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceEthernetFeatureResultOutput> Note: This function is named LookupTransportWanVpnInterfaceEthernetFeature in the Go SDK.
public static class GetTransportWanVpnInterfaceEthernetFeature
{
public static Task<GetTransportWanVpnInterfaceEthernetFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceEthernetFeatureArgs args, InvokeOptions? opts = null)
public static Output<GetTransportWanVpnInterfaceEthernetFeatureResult> Invoke(GetTransportWanVpnInterfaceEthernetFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTransportWanVpnInterfaceEthernetFeatureResult> getTransportWanVpnInterfaceEthernetFeature(GetTransportWanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
public static Output<GetTransportWanVpnInterfaceEthernetFeatureResult> getTransportWanVpnInterfaceEthernetFeature(GetTransportWanVpnInterfaceEthernetFeatureArgs args, InvokeOptions options)
fn::invoke:
function: sdwan:index/getTransportWanVpnInterfaceEthernetFeature:getTransportWanVpnInterfaceEthernetFeature
arguments:
# arguments dictionaryThe following arguments are supported:
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Feature
Profile stringId - Feature Profile ID
- Id string
- The id of the Feature
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- feature
Profile stringId - Feature Profile ID
- id string
- The id of the Feature
- transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- feature_
profile_ strid - Feature Profile ID
- id str
- The id of the Feature
- transport_
wan_ strvpn_ feature_ id - Transport WAN VPN Feature ID
- feature
Profile StringId - Feature Profile ID
- id String
- The id of the Feature
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
getTransportWanVpnInterfaceEthernetFeature Result
The following output properties are available:
- Acl
Ipv4Egress stringFeature Id - Acl
Ipv4Ingress stringFeature Id - Acl
Ipv6Egress stringFeature Id - Acl
Ipv6Ingress stringFeature Id - Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
List<Get
Transport Wan Vpn Interface Ethernet Feature Arp> - Configure ARP entries
- Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Auto
Detect stringBandwidth Variable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Bandwidth
Downstream int - Interface downstream bandwidth capacity, in kbps
- Bandwidth
Downstream stringVariable - Variable name
- Bandwidth
Upstream int - Interface upstream bandwidth capacity, in kbps
- Bandwidth
Upstream stringVariable - Variable name
- Block
Non boolSource Ip - Block packets originating from IP address that is not from this source
- Block
Non stringSource Ip Variable - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Gre
Tunnel stringSource Ip - GRE tunnel source IP
- Gre
Tunnel stringSource Ip Variable - Variable name
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Iperf
Server string - Iperf server for auto bandwidth detect
- Iperf
Server stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers List<string> - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Secondary
Addresses List<GetTransport Wan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type
- Ipv6Dhcp
Secondary List<GetAddresses Transport Wan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses
- Ipv6Secondary
Addresses List<GetTransport Wan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Mrf
Core stringRegion Type - Core Region
- Mrf
Enable boolCore Region - Enable Core Region
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Nat66 bool
- NAT66 on this interface
- Nat
Ipv4 bool - enable Network Address Translation on this interface
- Nat
Ipv4Loopbacks List<GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Loopback> - NAT Multiple Loopback
- Nat
Ipv4Pools List<GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Pool> - NAT Multiple Pool
- Nat
Ipv4Variable string - Variable name
- Nat
Ipv6 bool - enable Network Address Translation ipv6 on this interface
- Nat
Ipv6Variable string - Variable name
- Nat
Loopback string - NAT Inside Source Loopback Interface
- Nat
Loopback stringVariable - Variable name
- Nat
Match boolInterface - NAT Match Interface
- Nat
Match stringInterface Variable - Variable name
- Nat
Overload bool - NAT Overload
- Nat
Overload stringVariable - Variable name
- Nat
Prefix intLength - NAT Pool Prefix Length
- Nat
Prefix stringLength Variable - Variable name
- Nat
Range stringEnd - NAT Pool Range End
- Nat
Range stringEnd Variable - Variable name
- Nat
Range stringStart - NAT Pool Range Start
- Nat
Range stringStart Variable - Variable name
- Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Nat
Tcp stringTimeout Variable - Variable name
- Nat
Type string - NAT Type
- Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Nat
Udp stringTimeout Variable - Variable name
- New
Static List<GetNats Transport Wan Vpn Interface Ethernet Feature New Static Nat> - static NAT
- Per
Tunnel boolQos - Per-tunnel Qos
- Per
Tunnel stringQos Variable - Variable name
- Port
Channel boolInterface - Port-Channel interface on/off
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover
- Port
Channel stringLacp Fast Switchover Variable - Variable name
- Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Load Balance Variable - Variable name
- Port
Channel intLacp Max Bundle - Set LACP max bundle
- Port
Channel stringLacp Max Bundle Variable - Variable name
- Port
Channel List<GetLacp Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links
- Port
Channel intLacp Min Bundle - Set LACP min bundle
- Port
Channel stringLacp Min Bundle Variable - Variable name
- Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Qos Aggregate Variable - Variable name
- Port
Channel boolMember Interface - Port-Channel member interface on/off
- Port
Channel stringMode - Port Channel Mode
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Load Balance Variable - Variable name
- Port
Channel List<GetStatic Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links
- Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Qos Aggregate Variable - Variable name
- Port
Channel boolSubinterface - Qos
Adaptive bool - Adaptive QoS
- Qos
Adaptive boolBandwidth Downstream - Shaping Rate Downstream
- Qos
Adaptive boolBandwidth Upstream - Shaping Rate Upstream
- Qos
Adaptive intDefault Downstream - Adaptive QoS default downstream bandwidth (kbps)
- Qos
Adaptive stringDefault Downstream Variable - Variable name
- Qos
Adaptive intDefault Upstream - Adaptive QoS default upstream bandwidth (kbps)
- Qos
Adaptive stringDefault Upstream Variable - Variable name
- Qos
Adaptive intMax Downstream - Downstream max bandwidth limit (kbps)
- Qos
Adaptive stringMax Downstream Variable - Variable name
- Qos
Adaptive intMax Upstream - Upstream max bandwidth limit (kbps)
- Qos
Adaptive stringMax Upstream Variable - Variable name
- Qos
Adaptive intMin Downstream - Downstream min bandwidth limit (kbps)
- Qos
Adaptive stringMin Downstream Variable - Variable name
- Qos
Adaptive intMin Upstream - Upstream min bandwidth limit (kbps)
- Qos
Adaptive stringMin Upstream Variable - Variable name
- Qos
Adaptive intPeriod - Adapt Period(Minutes)
- Qos
Adaptive stringPeriod Variable - Variable name
- Qos
Shaping intRate - Shaping Rate (Kbps)
- Qos
Shaping stringRate Variable - Variable name
- Service
Provider string - Service Provider Name
- Service
Provider stringVariable - Variable name
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Static
Nat66s List<GetTransport Wan Vpn Interface Ethernet Feature Static Nat66> - static NAT66
- Static
Port List<GetForwards Transport Wan Vpn Interface Ethernet Feature Static Port Forward> - Configure Port Forward entries
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Tloc
Extension string - Extends a local TLOC to a remote node only for vpn 0
- Tloc
Extension stringVariable - Variable name
- Tracker string
- Enable tracker for this interface
- Tracker
Variable string - Variable name
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Tunnel
Bandwidth intPercent - Tunnels Bandwidth Percent
- Tunnel
Bandwidth stringPercent Variable - Variable name
- Tunnel
Interface bool - Tunnel Interface on/off
- Tunnel
Interface boolAllow All - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- Tunnel
Interface stringAllow All Variable - Variable name
- Tunnel
Interface boolAllow Bfd - Allow/Deny BFD
- Tunnel
Interface stringAllow Bfd Variable - Variable name
- Tunnel
Interface boolAllow Bgp - Allow/deny BGP
- Tunnel
Interface stringAllow Bgp Variable - Variable name
- Tunnel
Interface boolAllow Dhcp - Allow/Deny DHCP
- Tunnel
Interface stringAllow Dhcp Variable - Variable name
- Tunnel
Interface boolAllow Dns - Allow/Deny DNS
- Tunnel
Interface stringAllow Dns Variable - Variable name
- Tunnel
Interface boolAllow Fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- Tunnel
Interface stringAllow Fragmentation Variable - Variable name
- Tunnel
Interface boolAllow Https - Allow/Deny HTTPS
- Tunnel
Interface stringAllow Https Variable - Variable name
- Tunnel
Interface boolAllow Icmp - Allow/Deny ICMP
- Tunnel
Interface stringAllow Icmp Variable - Variable name
- Tunnel
Interface boolAllow Netconf - Allow/Deny NETCONF
- Tunnel
Interface stringAllow Netconf Variable - Variable name
- Tunnel
Interface boolAllow Ntp - Allow/Deny NTP
- Tunnel
Interface stringAllow Ntp Variable - Variable name
- Tunnel
Interface boolAllow Ospf - Allow/Deny OSPF
- Tunnel
Interface stringAllow Ospf Variable - Variable name
- Tunnel
Interface boolAllow Snmp - Allow/Deny SNMP
- Tunnel
Interface stringAllow Snmp Variable - Variable name
- Tunnel
Interface boolAllow Ssh - Allow/Deny SSH
- Tunnel
Interface stringAllow Ssh Variable - Variable name
- Tunnel
Interface boolAllow Stun - Allow/Deny STUN
- Tunnel
Interface stringAllow Stun Variable - Variable name
- Tunnel
Interface stringBind Loopback Tunnel - Bind loopback tunnel interface to a physical interface
- Tunnel
Interface stringBind Loopback Tunnel Variable - Variable name
- Tunnel
Interface boolBorder - Set TLOC as border TLOC
- Tunnel
Interface stringBorder Variable - Variable name
- Tunnel
Interface stringCarrier - Set carrier for TLOC
- Tunnel
Interface stringCarrier Variable - Variable name
- Tunnel
Interface boolClear Dont Fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Tunnel
Interface stringClear Dont Fragment Variable - Variable name
- Tunnel
Interface stringColor - Set color for TLOC
- Tunnel
Interface boolColor Restrict - Restrict this TLOC behavior
- Tunnel
Interface stringColor Restrict Variable - Variable name
- Tunnel
Interface stringColor Variable - Variable name
- Tunnel
Interface boolCts Sgt Propagation - CTS SGT Propagation configuration
- Tunnel
Interface stringCts Sgt Propagation Variable - Variable name
- Tunnel
Interface List<GetEncapsulations Transport Wan Vpn Interface Ethernet Feature Tunnel Interface Encapsulation> - Encapsulation for TLOC
- Tunnel
Interface stringExclude Controller Group List Variable - Variable name
- Tunnel
Interface List<int>Exclude Controller Group Lists - Exclude the following controller groups defined in this list.
- Tunnel
Interface stringGre Tunnel Destination Ip - GRE tunnel destination IP
- Tunnel
Interface stringGre Tunnel Destination Ip Variable - Variable name
- Tunnel
Interface intGroups - List of groups
- Tunnel
Interface stringGroups Variable - Variable name
- Tunnel
Interface intHello Interval - Set time period of control hello packets \n\n milli seconds
- Tunnel
Interface stringHello Interval Variable - Variable name
- Tunnel
Interface intHello Tolerance - Set tolerance of control hello packets \n\n seconds
- Tunnel
Interface stringHello Tolerance Variable - Variable name
- Tunnel
Interface boolLast Resort Circuit - Set TLOC as last resort
- Tunnel
Interface stringLast Resort Circuit Variable - Variable name
- Tunnel
Interface boolLow Bandwidth Link - Set the interface as a low-bandwidth circuit
- Tunnel
Interface stringLow Bandwidth Link Variable - Variable name
- Tunnel
Interface intMax Control Connections - Maximum Control Connections
- Tunnel
Interface stringMax Control Connections Variable - Variable name
- Tunnel
Interface intNat Refresh Interval - Set time period of nat refresh packets \n\n seconds
- Tunnel
Interface stringNat Refresh Interval Variable - Variable name
- Tunnel
Interface boolNetwork Broadcast - Accept and respond to network-prefix-directed broadcasts
- Tunnel
Interface stringNetwork Broadcast Variable - Variable name
- Tunnel
Interface boolPort Hop - Disallow port hopping on the tunnel interface
- Tunnel
Interface stringPort Hop Variable - Variable name
- Tunnel
Interface boolSet Sdwan Tunnel Mtu To Max - Set current tunnel mtu to 9k
- Tunnel
Interface stringSet Sdwan Tunnel Mtu To Max Variable - Variable name
- Tunnel
Interface intTunnel Tcp Mss - Tunnel TCP MSS on SYN packets, in bytes
- Tunnel
Interface stringTunnel Tcp Mss Variable - Variable name
- Tunnel
Interface boolVbond As Stun Server - Put this wan interface in STUN mode only
- Tunnel
Interface stringVbond As Stun Server Variable - Variable name
- Tunnel
Interface intVmanage Connection Preference - Set interface preference for control connection to vManage \n\n
- Tunnel
Interface stringVmanage Connection Preference Variable - Variable name
- Tunnel
Qos stringMode - Set tunnel QoS mode
- Tunnel
Qos stringMode Variable - Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- Xconnect
Variable string - Variable name
- Acl
Ipv4Egress stringFeature Id - Acl
Ipv4Ingress stringFeature Id - Acl
Ipv6Egress stringFeature Id - Acl
Ipv6Ingress stringFeature Id - Arp
Timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- Arp
Timeout stringVariable - Variable name
- Arps
[]Get
Transport Wan Vpn Interface Ethernet Feature Arp - Configure ARP entries
- Auto
Detect boolBandwidth - Interface auto detect bandwidth
- Auto
Detect stringBandwidth Variable - Variable name
- Autonegotiate bool
- Link autonegotiation
- Autonegotiate
Variable string - Variable name
- Bandwidth
Downstream int - Interface downstream bandwidth capacity, in kbps
- Bandwidth
Downstream stringVariable - Variable name
- Bandwidth
Upstream int - Interface upstream bandwidth capacity, in kbps
- Bandwidth
Upstream stringVariable - Variable name
- Block
Non boolSource Ip - Block packets originating from IP address that is not from this source
- Block
Non stringSource Ip Variable - Variable name
- Description string
- The description of the Feature
- Duplex string
- Duplex mode
- Duplex
Variable string - Variable name
- Enable
Dhcpv6 bool - Enable DHCPv6
- Feature
Profile stringId - Feature Profile ID
- Gre
Tunnel stringSource Ip - GRE tunnel source IP
- Gre
Tunnel stringSource Ip Variable - Variable name
- Icmp
Redirect boolDisable - ICMP/ICMPv6 Redirect Disable
- Icmp
Redirect stringDisable Variable - Variable name
- Id string
- The id of the Feature
- Interface
Description string - Interface
Description stringVariable - Variable name
- Interface
Mtu int - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- Interface
Mtu stringVariable - Variable name
- Interface
Name string - Interface
Name stringVariable - Variable name
- Ip
Directed boolBroadcast - IP Directed-Broadcast
- Ip
Directed stringBroadcast Variable - Variable name
- Ip
Mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- Ip
Mtu stringVariable - Variable name
- Iperf
Server string - Iperf server for auto bandwidth detect
- Iperf
Server stringVariable - Variable name
- Ipv4Address string
- IP Address
- Ipv4Address
Variable string - Variable name
- Ipv4Configuration
Type string - IPv4 Configuration Type
- Ipv4Dhcp
Distance int - DHCP Distance
- Ipv4Dhcp
Distance stringVariable - Variable name
- Ipv4Dhcp
Helper stringVariable - Variable name
- Ipv4Dhcp
Helpers []string - List of DHCP IPv4 helper addresses (min 1, max 8)
- Ipv4Secondary
Addresses []GetTransport Wan Vpn Interface Ethernet Feature Ipv4Secondary Address - Secondary IpV4 Addresses
- Ipv4Subnet
Mask string - Subnet Mask
- Ipv4Subnet
Mask stringVariable - Variable name
- Ipv6Address string
- IPv6 Address Secondary
- Ipv6Address
Variable string - Variable name
- Ipv6Configuration
Type string - IPv6 Configuration Type
- Ipv6Dhcp
Secondary []GetAddresses Transport Wan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address - secondary IPv6 addresses
- Ipv6Secondary
Addresses []GetTransport Wan Vpn Interface Ethernet Feature Ipv6Secondary Address - Static secondary IPv6 addresses
- Load
Interval int - Interval for interface load calculation
- Load
Interval stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Media
Type string - Media type
- Media
Type stringVariable - Variable name
- Mrf
Core stringRegion Type - Core Region
- Mrf
Enable boolCore Region - Enable Core Region
- Name string
- The name of the Feature
- Nat64 bool
- NAT64 on this interface
- Nat66 bool
- NAT66 on this interface
- Nat
Ipv4 bool - enable Network Address Translation on this interface
- Nat
Ipv4Loopbacks []GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Loopback - NAT Multiple Loopback
- Nat
Ipv4Pools []GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Pool - NAT Multiple Pool
- Nat
Ipv4Variable string - Variable name
- Nat
Ipv6 bool - enable Network Address Translation ipv6 on this interface
- Nat
Ipv6Variable string - Variable name
- Nat
Loopback string - NAT Inside Source Loopback Interface
- Nat
Loopback stringVariable - Variable name
- Nat
Match boolInterface - NAT Match Interface
- Nat
Match stringInterface Variable - Variable name
- Nat
Overload bool - NAT Overload
- Nat
Overload stringVariable - Variable name
- Nat
Prefix intLength - NAT Pool Prefix Length
- Nat
Prefix stringLength Variable - Variable name
- Nat
Range stringEnd - NAT Pool Range End
- Nat
Range stringEnd Variable - Variable name
- Nat
Range stringStart - NAT Pool Range Start
- Nat
Range stringStart Variable - Variable name
- Nat
Tcp intTimeout - Set NAT TCP session timeout, in minutes
- Nat
Tcp stringTimeout Variable - Variable name
- Nat
Type string - NAT Type
- Nat
Udp intTimeout - Set NAT UDP session timeout, in minutes
- Nat
Udp stringTimeout Variable - Variable name
- New
Static []GetNats Transport Wan Vpn Interface Ethernet Feature New Static Nat - static NAT
- Per
Tunnel boolQos - Per-tunnel Qos
- Per
Tunnel stringQos Variable - Variable name
- Port
Channel boolInterface - Port-Channel interface on/off
- Port
Channel boolLacp Fast Switchover - Eanble lacp fast switchover
- Port
Channel stringLacp Fast Switchover Variable - Variable name
- Port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Load Balance Variable - Variable name
- Port
Channel intLacp Max Bundle - Set LACP max bundle
- Port
Channel stringLacp Max Bundle Variable - Variable name
- Port
Channel []GetLacp Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Lacp Member Link - Configure Port-Channel member links
- Port
Channel intLacp Min Bundle - Set LACP min bundle
- Port
Channel stringLacp Min Bundle Variable - Variable name
- Port
Channel boolLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringLacp Qos Aggregate Variable - Variable name
- Port
Channel boolMember Interface - Port-Channel member interface on/off
- Port
Channel stringMode - Port Channel Mode
- Port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Load Balance Variable - Variable name
- Port
Channel []GetStatic Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Static Member Link - Configure Port-Channel member links
- Port
Channel boolStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- Port
Channel stringStatic Qos Aggregate Variable - Variable name
- Port
Channel boolSubinterface - Qos
Adaptive bool - Adaptive QoS
- Qos
Adaptive boolBandwidth Downstream - Shaping Rate Downstream
- Qos
Adaptive boolBandwidth Upstream - Shaping Rate Upstream
- Qos
Adaptive intDefault Downstream - Adaptive QoS default downstream bandwidth (kbps)
- Qos
Adaptive stringDefault Downstream Variable - Variable name
- Qos
Adaptive intDefault Upstream - Adaptive QoS default upstream bandwidth (kbps)
- Qos
Adaptive stringDefault Upstream Variable - Variable name
- Qos
Adaptive intMax Downstream - Downstream max bandwidth limit (kbps)
- Qos
Adaptive stringMax Downstream Variable - Variable name
- Qos
Adaptive intMax Upstream - Upstream max bandwidth limit (kbps)
- Qos
Adaptive stringMax Upstream Variable - Variable name
- Qos
Adaptive intMin Downstream - Downstream min bandwidth limit (kbps)
- Qos
Adaptive stringMin Downstream Variable - Variable name
- Qos
Adaptive intMin Upstream - Upstream min bandwidth limit (kbps)
- Qos
Adaptive stringMin Upstream Variable - Variable name
- Qos
Adaptive intPeriod - Adapt Period(Minutes)
- Qos
Adaptive stringPeriod Variable - Variable name
- Qos
Shaping intRate - Shaping Rate (Kbps)
- Qos
Shaping stringRate Variable - Variable name
- Service
Provider string - Service Provider Name
- Service
Provider stringVariable - Variable name
- Shutdown bool
- Shutdown
Variable string - Variable name
- Speed string
- Set interface speed
- Speed
Variable string - Variable name
- Static
Nat66s []GetTransport Wan Vpn Interface Ethernet Feature Static Nat66 - static NAT66
- Static
Port []GetForwards Transport Wan Vpn Interface Ethernet Feature Static Port Forward - Configure Port Forward entries
- Tcp
Mss int - TCP MSS on SYN packets, in bytes
- Tcp
Mss stringVariable - Variable name
- Tloc
Extension string - Extends a local TLOC to a remote node only for vpn 0
- Tloc
Extension stringVariable - Variable name
- Tracker string
- Enable tracker for this interface
- Tracker
Variable string - Variable name
- Transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- Tunnel
Bandwidth intPercent - Tunnels Bandwidth Percent
- Tunnel
Bandwidth stringPercent Variable - Variable name
- Tunnel
Interface bool - Tunnel Interface on/off
- Tunnel
Interface boolAllow All - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- Tunnel
Interface stringAllow All Variable - Variable name
- Tunnel
Interface boolAllow Bfd - Allow/Deny BFD
- Tunnel
Interface stringAllow Bfd Variable - Variable name
- Tunnel
Interface boolAllow Bgp - Allow/deny BGP
- Tunnel
Interface stringAllow Bgp Variable - Variable name
- Tunnel
Interface boolAllow Dhcp - Allow/Deny DHCP
- Tunnel
Interface stringAllow Dhcp Variable - Variable name
- Tunnel
Interface boolAllow Dns - Allow/Deny DNS
- Tunnel
Interface stringAllow Dns Variable - Variable name
- Tunnel
Interface boolAllow Fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- Tunnel
Interface stringAllow Fragmentation Variable - Variable name
- Tunnel
Interface boolAllow Https - Allow/Deny HTTPS
- Tunnel
Interface stringAllow Https Variable - Variable name
- Tunnel
Interface boolAllow Icmp - Allow/Deny ICMP
- Tunnel
Interface stringAllow Icmp Variable - Variable name
- Tunnel
Interface boolAllow Netconf - Allow/Deny NETCONF
- Tunnel
Interface stringAllow Netconf Variable - Variable name
- Tunnel
Interface boolAllow Ntp - Allow/Deny NTP
- Tunnel
Interface stringAllow Ntp Variable - Variable name
- Tunnel
Interface boolAllow Ospf - Allow/Deny OSPF
- Tunnel
Interface stringAllow Ospf Variable - Variable name
- Tunnel
Interface boolAllow Snmp - Allow/Deny SNMP
- Tunnel
Interface stringAllow Snmp Variable - Variable name
- Tunnel
Interface boolAllow Ssh - Allow/Deny SSH
- Tunnel
Interface stringAllow Ssh Variable - Variable name
- Tunnel
Interface boolAllow Stun - Allow/Deny STUN
- Tunnel
Interface stringAllow Stun Variable - Variable name
- Tunnel
Interface stringBind Loopback Tunnel - Bind loopback tunnel interface to a physical interface
- Tunnel
Interface stringBind Loopback Tunnel Variable - Variable name
- Tunnel
Interface boolBorder - Set TLOC as border TLOC
- Tunnel
Interface stringBorder Variable - Variable name
- Tunnel
Interface stringCarrier - Set carrier for TLOC
- Tunnel
Interface stringCarrier Variable - Variable name
- Tunnel
Interface boolClear Dont Fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- Tunnel
Interface stringClear Dont Fragment Variable - Variable name
- Tunnel
Interface stringColor - Set color for TLOC
- Tunnel
Interface boolColor Restrict - Restrict this TLOC behavior
- Tunnel
Interface stringColor Restrict Variable - Variable name
- Tunnel
Interface stringColor Variable - Variable name
- Tunnel
Interface boolCts Sgt Propagation - CTS SGT Propagation configuration
- Tunnel
Interface stringCts Sgt Propagation Variable - Variable name
- Tunnel
Interface []GetEncapsulations Transport Wan Vpn Interface Ethernet Feature Tunnel Interface Encapsulation - Encapsulation for TLOC
- Tunnel
Interface stringExclude Controller Group List Variable - Variable name
- Tunnel
Interface []intExclude Controller Group Lists - Exclude the following controller groups defined in this list.
- Tunnel
Interface stringGre Tunnel Destination Ip - GRE tunnel destination IP
- Tunnel
Interface stringGre Tunnel Destination Ip Variable - Variable name
- Tunnel
Interface intGroups - List of groups
- Tunnel
Interface stringGroups Variable - Variable name
- Tunnel
Interface intHello Interval - Set time period of control hello packets \n\n milli seconds
- Tunnel
Interface stringHello Interval Variable - Variable name
- Tunnel
Interface intHello Tolerance - Set tolerance of control hello packets \n\n seconds
- Tunnel
Interface stringHello Tolerance Variable - Variable name
- Tunnel
Interface boolLast Resort Circuit - Set TLOC as last resort
- Tunnel
Interface stringLast Resort Circuit Variable - Variable name
- Tunnel
Interface boolLow Bandwidth Link - Set the interface as a low-bandwidth circuit
- Tunnel
Interface stringLow Bandwidth Link Variable - Variable name
- Tunnel
Interface intMax Control Connections - Maximum Control Connections
- Tunnel
Interface stringMax Control Connections Variable - Variable name
- Tunnel
Interface intNat Refresh Interval - Set time period of nat refresh packets \n\n seconds
- Tunnel
Interface stringNat Refresh Interval Variable - Variable name
- Tunnel
Interface boolNetwork Broadcast - Accept and respond to network-prefix-directed broadcasts
- Tunnel
Interface stringNetwork Broadcast Variable - Variable name
- Tunnel
Interface boolPort Hop - Disallow port hopping on the tunnel interface
- Tunnel
Interface stringPort Hop Variable - Variable name
- Tunnel
Interface boolSet Sdwan Tunnel Mtu To Max - Set current tunnel mtu to 9k
- Tunnel
Interface stringSet Sdwan Tunnel Mtu To Max Variable - Variable name
- Tunnel
Interface intTunnel Tcp Mss - Tunnel TCP MSS on SYN packets, in bytes
- Tunnel
Interface stringTunnel Tcp Mss Variable - Variable name
- Tunnel
Interface boolVbond As Stun Server - Put this wan interface in STUN mode only
- Tunnel
Interface stringVbond As Stun Server Variable - Variable name
- Tunnel
Interface intVmanage Connection Preference - Set interface preference for control connection to vManage \n\n
- Tunnel
Interface stringVmanage Connection Preference Variable - Variable name
- Tunnel
Qos stringMode - Set tunnel QoS mode
- Tunnel
Qos stringMode Variable - Variable name
- Version int
- The version of the Feature
- Xconnect string
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- Xconnect
Variable string - Variable name
- acl
Ipv4Egress StringFeature Id - acl
Ipv4Ingress StringFeature Id - acl
Ipv6Egress StringFeature Id - acl
Ipv6Ingress StringFeature Id - arp
Timeout Integer - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps
List<Get
Transport Wan Vpn Interface Ethernet Feature Arp> - Configure ARP entries
- auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- auto
Detect StringBandwidth Variable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- bandwidth
Downstream Integer - Interface downstream bandwidth capacity, in kbps
- bandwidth
Downstream StringVariable - Variable name
- bandwidth
Upstream Integer - Interface upstream bandwidth capacity, in kbps
- bandwidth
Upstream StringVariable - Variable name
- block
Non BooleanSource Ip - Block packets originating from IP address that is not from this source
- block
Non StringSource Ip Variable - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- gre
Tunnel StringSource Ip - GRE tunnel source IP
- gre
Tunnel StringSource Ip Variable - Variable name
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Integer - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Integer - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- iperf
Server String - Iperf server for auto bandwidth detect
- iperf
Server StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type
- ipv4Dhcp
Distance Integer - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Secondary
Addresses List<GetTransport Wan Vpn Interface Ethernet Feature Ipv4Secondary Address> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type
- ipv6Dhcp
Secondary List<GetAddresses Transport Wan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address> - secondary IPv6 addresses
- ipv6Secondary
Addresses List<GetTransport Wan Vpn Interface Ethernet Feature Ipv6Secondary Address> - Static secondary IPv6 addresses
- load
Interval Integer - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- mrf
Core StringRegion Type - Core Region
- mrf
Enable BooleanCore Region - Enable Core Region
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- nat66 Boolean
- NAT66 on this interface
- nat
Ipv4 Boolean - enable Network Address Translation on this interface
- nat
Ipv4Loopbacks List<GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Loopback> - NAT Multiple Loopback
- nat
Ipv4Pools List<GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Pool> - NAT Multiple Pool
- nat
Ipv4Variable String - Variable name
- nat
Ipv6 Boolean - enable Network Address Translation ipv6 on this interface
- nat
Ipv6Variable String - Variable name
- nat
Loopback String - NAT Inside Source Loopback Interface
- nat
Loopback StringVariable - Variable name
- nat
Match BooleanInterface - NAT Match Interface
- nat
Match StringInterface Variable - Variable name
- nat
Overload Boolean - NAT Overload
- nat
Overload StringVariable - Variable name
- nat
Prefix IntegerLength - NAT Pool Prefix Length
- nat
Prefix StringLength Variable - Variable name
- nat
Range StringEnd - NAT Pool Range End
- nat
Range StringEnd Variable - Variable name
- nat
Range StringStart - NAT Pool Range Start
- nat
Range StringStart Variable - Variable name
- nat
Tcp IntegerTimeout - Set NAT TCP session timeout, in minutes
- nat
Tcp StringTimeout Variable - Variable name
- nat
Type String - NAT Type
- nat
Udp IntegerTimeout - Set NAT UDP session timeout, in minutes
- nat
Udp StringTimeout Variable - Variable name
- new
Static List<GetNats Transport Wan Vpn Interface Ethernet Feature New Static Nat> - static NAT
- per
Tunnel BooleanQos - Per-tunnel Qos
- per
Tunnel StringQos Variable - Variable name
- port
Channel BooleanInterface - Port-Channel interface on/off
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel StringLacp Fast Switchover Variable - Variable name
- port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Load Balance Variable - Variable name
- port
Channel IntegerLacp Max Bundle - Set LACP max bundle
- port
Channel StringLacp Max Bundle Variable - Variable name
- port
Channel List<GetLacp Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Lacp Member Link> - Configure Port-Channel member links
- port
Channel IntegerLacp Min Bundle - Set LACP min bundle
- port
Channel StringLacp Min Bundle Variable - Variable name
- port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Qos Aggregate Variable - Variable name
- port
Channel BooleanMember Interface - Port-Channel member interface on/off
- port
Channel StringMode - Port Channel Mode
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Load Balance Variable - Variable name
- port
Channel List<GetStatic Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Static Member Link> - Configure Port-Channel member links
- port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Qos Aggregate Variable - Variable name
- port
Channel BooleanSubinterface - qos
Adaptive Boolean - Adaptive QoS
- qos
Adaptive BooleanBandwidth Downstream - Shaping Rate Downstream
- qos
Adaptive BooleanBandwidth Upstream - Shaping Rate Upstream
- qos
Adaptive IntegerDefault Downstream - Adaptive QoS default downstream bandwidth (kbps)
- qos
Adaptive StringDefault Downstream Variable - Variable name
- qos
Adaptive IntegerDefault Upstream - Adaptive QoS default upstream bandwidth (kbps)
- qos
Adaptive StringDefault Upstream Variable - Variable name
- qos
Adaptive IntegerMax Downstream - Downstream max bandwidth limit (kbps)
- qos
Adaptive StringMax Downstream Variable - Variable name
- qos
Adaptive IntegerMax Upstream - Upstream max bandwidth limit (kbps)
- qos
Adaptive StringMax Upstream Variable - Variable name
- qos
Adaptive IntegerMin Downstream - Downstream min bandwidth limit (kbps)
- qos
Adaptive StringMin Downstream Variable - Variable name
- qos
Adaptive IntegerMin Upstream - Upstream min bandwidth limit (kbps)
- qos
Adaptive StringMin Upstream Variable - Variable name
- qos
Adaptive IntegerPeriod - Adapt Period(Minutes)
- qos
Adaptive StringPeriod Variable - Variable name
- qos
Shaping IntegerRate - Shaping Rate (Kbps)
- qos
Shaping StringRate Variable - Variable name
- service
Provider String - Service Provider Name
- service
Provider StringVariable - Variable name
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- static
Nat66s List<GetTransport Wan Vpn Interface Ethernet Feature Static Nat66> - static NAT66
- static
Port List<GetForwards Transport Wan Vpn Interface Ethernet Feature Static Port Forward> - Configure Port Forward entries
- tcp
Mss Integer - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- tloc
Extension String - Extends a local TLOC to a remote node only for vpn 0
- tloc
Extension StringVariable - Variable name
- tracker String
- Enable tracker for this interface
- tracker
Variable String - Variable name
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Bandwidth IntegerPercent - Tunnels Bandwidth Percent
- tunnel
Bandwidth StringPercent Variable - Variable name
- tunnel
Interface Boolean - Tunnel Interface on/off
- tunnel
Interface BooleanAllow All - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnel
Interface StringAllow All Variable - Variable name
- tunnel
Interface BooleanAllow Bfd - Allow/Deny BFD
- tunnel
Interface StringAllow Bfd Variable - Variable name
- tunnel
Interface BooleanAllow Bgp - Allow/deny BGP
- tunnel
Interface StringAllow Bgp Variable - Variable name
- tunnel
Interface BooleanAllow Dhcp - Allow/Deny DHCP
- tunnel
Interface StringAllow Dhcp Variable - Variable name
- tunnel
Interface BooleanAllow Dns - Allow/Deny DNS
- tunnel
Interface StringAllow Dns Variable - Variable name
- tunnel
Interface BooleanAllow Fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- tunnel
Interface StringAllow Fragmentation Variable - Variable name
- tunnel
Interface BooleanAllow Https - Allow/Deny HTTPS
- tunnel
Interface StringAllow Https Variable - Variable name
- tunnel
Interface BooleanAllow Icmp - Allow/Deny ICMP
- tunnel
Interface StringAllow Icmp Variable - Variable name
- tunnel
Interface BooleanAllow Netconf - Allow/Deny NETCONF
- tunnel
Interface StringAllow Netconf Variable - Variable name
- tunnel
Interface BooleanAllow Ntp - Allow/Deny NTP
- tunnel
Interface StringAllow Ntp Variable - Variable name
- tunnel
Interface BooleanAllow Ospf - Allow/Deny OSPF
- tunnel
Interface StringAllow Ospf Variable - Variable name
- tunnel
Interface BooleanAllow Snmp - Allow/Deny SNMP
- tunnel
Interface StringAllow Snmp Variable - Variable name
- tunnel
Interface BooleanAllow Ssh - Allow/Deny SSH
- tunnel
Interface StringAllow Ssh Variable - Variable name
- tunnel
Interface BooleanAllow Stun - Allow/Deny STUN
- tunnel
Interface StringAllow Stun Variable - Variable name
- tunnel
Interface StringBind Loopback Tunnel - Bind loopback tunnel interface to a physical interface
- tunnel
Interface StringBind Loopback Tunnel Variable - Variable name
- tunnel
Interface BooleanBorder - Set TLOC as border TLOC
- tunnel
Interface StringBorder Variable - Variable name
- tunnel
Interface StringCarrier - Set carrier for TLOC
- tunnel
Interface StringCarrier Variable - Variable name
- tunnel
Interface BooleanClear Dont Fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnel
Interface StringClear Dont Fragment Variable - Variable name
- tunnel
Interface StringColor - Set color for TLOC
- tunnel
Interface BooleanColor Restrict - Restrict this TLOC behavior
- tunnel
Interface StringColor Restrict Variable - Variable name
- tunnel
Interface StringColor Variable - Variable name
- tunnel
Interface BooleanCts Sgt Propagation - CTS SGT Propagation configuration
- tunnel
Interface StringCts Sgt Propagation Variable - Variable name
- tunnel
Interface List<GetEncapsulations Transport Wan Vpn Interface Ethernet Feature Tunnel Interface Encapsulation> - Encapsulation for TLOC
- tunnel
Interface StringExclude Controller Group List Variable - Variable name
- tunnel
Interface List<Integer>Exclude Controller Group Lists - Exclude the following controller groups defined in this list.
- tunnel
Interface StringGre Tunnel Destination Ip - GRE tunnel destination IP
- tunnel
Interface StringGre Tunnel Destination Ip Variable - Variable name
- tunnel
Interface IntegerGroups - List of groups
- tunnel
Interface StringGroups Variable - Variable name
- tunnel
Interface IntegerHello Interval - Set time period of control hello packets \n\n milli seconds
- tunnel
Interface StringHello Interval Variable - Variable name
- tunnel
Interface IntegerHello Tolerance - Set tolerance of control hello packets \n\n seconds
- tunnel
Interface StringHello Tolerance Variable - Variable name
- tunnel
Interface BooleanLast Resort Circuit - Set TLOC as last resort
- tunnel
Interface StringLast Resort Circuit Variable - Variable name
- tunnel
Interface BooleanLow Bandwidth Link - Set the interface as a low-bandwidth circuit
- tunnel
Interface StringLow Bandwidth Link Variable - Variable name
- tunnel
Interface IntegerMax Control Connections - Maximum Control Connections
- tunnel
Interface StringMax Control Connections Variable - Variable name
- tunnel
Interface IntegerNat Refresh Interval - Set time period of nat refresh packets \n\n seconds
- tunnel
Interface StringNat Refresh Interval Variable - Variable name
- tunnel
Interface BooleanNetwork Broadcast - Accept and respond to network-prefix-directed broadcasts
- tunnel
Interface StringNetwork Broadcast Variable - Variable name
- tunnel
Interface BooleanPort Hop - Disallow port hopping on the tunnel interface
- tunnel
Interface StringPort Hop Variable - Variable name
- tunnel
Interface BooleanSet Sdwan Tunnel Mtu To Max - Set current tunnel mtu to 9k
- tunnel
Interface StringSet Sdwan Tunnel Mtu To Max Variable - Variable name
- tunnel
Interface IntegerTunnel Tcp Mss - Tunnel TCP MSS on SYN packets, in bytes
- tunnel
Interface StringTunnel Tcp Mss Variable - Variable name
- tunnel
Interface BooleanVbond As Stun Server - Put this wan interface in STUN mode only
- tunnel
Interface StringVbond As Stun Server Variable - Variable name
- tunnel
Interface IntegerVmanage Connection Preference - Set interface preference for control connection to vManage \n\n
- tunnel
Interface StringVmanage Connection Preference Variable - Variable name
- tunnel
Qos StringMode - Set tunnel QoS mode
- tunnel
Qos StringMode Variable - Variable name
- version Integer
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- xconnect
Variable String - Variable name
- acl
Ipv4Egress stringFeature Id - acl
Ipv4Ingress stringFeature Id - acl
Ipv6Egress stringFeature Id - acl
Ipv6Ingress stringFeature Id - arp
Timeout number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout stringVariable - Variable name
- arps
Get
Transport Wan Vpn Interface Ethernet Feature Arp[] - Configure ARP entries
- auto
Detect booleanBandwidth - Interface auto detect bandwidth
- auto
Detect stringBandwidth Variable - Variable name
- autonegotiate boolean
- Link autonegotiation
- autonegotiate
Variable string - Variable name
- bandwidth
Downstream number - Interface downstream bandwidth capacity, in kbps
- bandwidth
Downstream stringVariable - Variable name
- bandwidth
Upstream number - Interface upstream bandwidth capacity, in kbps
- bandwidth
Upstream stringVariable - Variable name
- block
Non booleanSource Ip - Block packets originating from IP address that is not from this source
- block
Non stringSource Ip Variable - Variable name
- description string
- The description of the Feature
- duplex string
- Duplex mode
- duplex
Variable string - Variable name
- enable
Dhcpv6 boolean - Enable DHCPv6
- feature
Profile stringId - Feature Profile ID
- gre
Tunnel stringSource Ip - GRE tunnel source IP
- gre
Tunnel stringSource Ip Variable - Variable name
- icmp
Redirect booleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect stringDisable Variable - Variable name
- id string
- The id of the Feature
- interface
Description string - interface
Description stringVariable - Variable name
- interface
Mtu number - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interface
Mtu stringVariable - Variable name
- interface
Name string - interface
Name stringVariable - Variable name
- ip
Directed booleanBroadcast - IP Directed-Broadcast
- ip
Directed stringBroadcast Variable - Variable name
- ip
Mtu number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu stringVariable - Variable name
- iperf
Server string - Iperf server for auto bandwidth detect
- iperf
Server stringVariable - Variable name
- ipv4Address string
- IP Address
- ipv4Address
Variable string - Variable name
- ipv4Configuration
Type string - IPv4 Configuration Type
- ipv4Dhcp
Distance number - DHCP Distance
- ipv4Dhcp
Distance stringVariable - Variable name
- ipv4Dhcp
Helper stringVariable - Variable name
- ipv4Dhcp
Helpers string[] - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Secondary
Addresses GetTransport Wan Vpn Interface Ethernet Feature Ipv4Secondary Address[] - Secondary IpV4 Addresses
- ipv4Subnet
Mask string - Subnet Mask
- ipv4Subnet
Mask stringVariable - Variable name
- ipv6Address string
- IPv6 Address Secondary
- ipv6Address
Variable string - Variable name
- ipv6Configuration
Type string - IPv6 Configuration Type
- ipv6Dhcp
Secondary GetAddresses Transport Wan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address[] - secondary IPv6 addresses
- ipv6Secondary
Addresses GetTransport Wan Vpn Interface Ethernet Feature Ipv6Secondary Address[] - Static secondary IPv6 addresses
- load
Interval number - Interval for interface load calculation
- load
Interval stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- media
Type string - Media type
- media
Type stringVariable - Variable name
- mrf
Core stringRegion Type - Core Region
- mrf
Enable booleanCore Region - Enable Core Region
- name string
- The name of the Feature
- nat64 boolean
- NAT64 on this interface
- nat66 boolean
- NAT66 on this interface
- nat
Ipv4 boolean - enable Network Address Translation on this interface
- nat
Ipv4Loopbacks GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Loopback[] - NAT Multiple Loopback
- nat
Ipv4Pools GetTransport Wan Vpn Interface Ethernet Feature Nat Ipv4Pool[] - NAT Multiple Pool
- nat
Ipv4Variable string - Variable name
- nat
Ipv6 boolean - enable Network Address Translation ipv6 on this interface
- nat
Ipv6Variable string - Variable name
- nat
Loopback string - NAT Inside Source Loopback Interface
- nat
Loopback stringVariable - Variable name
- nat
Match booleanInterface - NAT Match Interface
- nat
Match stringInterface Variable - Variable name
- nat
Overload boolean - NAT Overload
- nat
Overload stringVariable - Variable name
- nat
Prefix numberLength - NAT Pool Prefix Length
- nat
Prefix stringLength Variable - Variable name
- nat
Range stringEnd - NAT Pool Range End
- nat
Range stringEnd Variable - Variable name
- nat
Range stringStart - NAT Pool Range Start
- nat
Range stringStart Variable - Variable name
- nat
Tcp numberTimeout - Set NAT TCP session timeout, in minutes
- nat
Tcp stringTimeout Variable - Variable name
- nat
Type string - NAT Type
- nat
Udp numberTimeout - Set NAT UDP session timeout, in minutes
- nat
Udp stringTimeout Variable - Variable name
- new
Static GetNats Transport Wan Vpn Interface Ethernet Feature New Static Nat[] - static NAT
- per
Tunnel booleanQos - Per-tunnel Qos
- per
Tunnel stringQos Variable - Variable name
- port
Channel booleanInterface - Port-Channel interface on/off
- port
Channel booleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel stringLacp Fast Switchover Variable - Variable name
- port
Channel stringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel stringLacp Load Balance Variable - Variable name
- port
Channel numberLacp Max Bundle - Set LACP max bundle
- port
Channel stringLacp Max Bundle Variable - Variable name
- port
Channel GetLacp Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Lacp Member Link[] - Configure Port-Channel member links
- port
Channel numberLacp Min Bundle - Set LACP min bundle
- port
Channel stringLacp Min Bundle Variable - Variable name
- port
Channel booleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel stringLacp Qos Aggregate Variable - Variable name
- port
Channel booleanMember Interface - Port-Channel member interface on/off
- port
Channel stringMode - Port Channel Mode
- port
Channel stringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel stringStatic Load Balance Variable - Variable name
- port
Channel GetStatic Member Links Transport Wan Vpn Interface Ethernet Feature Port Channel Static Member Link[] - Configure Port-Channel member links
- port
Channel booleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel stringStatic Qos Aggregate Variable - Variable name
- port
Channel booleanSubinterface - qos
Adaptive boolean - Adaptive QoS
- qos
Adaptive booleanBandwidth Downstream - Shaping Rate Downstream
- qos
Adaptive booleanBandwidth Upstream - Shaping Rate Upstream
- qos
Adaptive numberDefault Downstream - Adaptive QoS default downstream bandwidth (kbps)
- qos
Adaptive stringDefault Downstream Variable - Variable name
- qos
Adaptive numberDefault Upstream - Adaptive QoS default upstream bandwidth (kbps)
- qos
Adaptive stringDefault Upstream Variable - Variable name
- qos
Adaptive numberMax Downstream - Downstream max bandwidth limit (kbps)
- qos
Adaptive stringMax Downstream Variable - Variable name
- qos
Adaptive numberMax Upstream - Upstream max bandwidth limit (kbps)
- qos
Adaptive stringMax Upstream Variable - Variable name
- qos
Adaptive numberMin Downstream - Downstream min bandwidth limit (kbps)
- qos
Adaptive stringMin Downstream Variable - Variable name
- qos
Adaptive numberMin Upstream - Upstream min bandwidth limit (kbps)
- qos
Adaptive stringMin Upstream Variable - Variable name
- qos
Adaptive numberPeriod - Adapt Period(Minutes)
- qos
Adaptive stringPeriod Variable - Variable name
- qos
Shaping numberRate - Shaping Rate (Kbps)
- qos
Shaping stringRate Variable - Variable name
- service
Provider string - Service Provider Name
- service
Provider stringVariable - Variable name
- shutdown boolean
- shutdown
Variable string - Variable name
- speed string
- Set interface speed
- speed
Variable string - Variable name
- static
Nat66s GetTransport Wan Vpn Interface Ethernet Feature Static Nat66[] - static NAT66
- static
Port GetForwards Transport Wan Vpn Interface Ethernet Feature Static Port Forward[] - Configure Port Forward entries
- tcp
Mss number - TCP MSS on SYN packets, in bytes
- tcp
Mss stringVariable - Variable name
- tloc
Extension string - Extends a local TLOC to a remote node only for vpn 0
- tloc
Extension stringVariable - Variable name
- tracker string
- Enable tracker for this interface
- tracker
Variable string - Variable name
- transport
Wan stringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Bandwidth numberPercent - Tunnels Bandwidth Percent
- tunnel
Bandwidth stringPercent Variable - Variable name
- tunnel
Interface boolean - Tunnel Interface on/off
- tunnel
Interface booleanAllow All - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnel
Interface stringAllow All Variable - Variable name
- tunnel
Interface booleanAllow Bfd - Allow/Deny BFD
- tunnel
Interface stringAllow Bfd Variable - Variable name
- tunnel
Interface booleanAllow Bgp - Allow/deny BGP
- tunnel
Interface stringAllow Bgp Variable - Variable name
- tunnel
Interface booleanAllow Dhcp - Allow/Deny DHCP
- tunnel
Interface stringAllow Dhcp Variable - Variable name
- tunnel
Interface booleanAllow Dns - Allow/Deny DNS
- tunnel
Interface stringAllow Dns Variable - Variable name
- tunnel
Interface booleanAllow Fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- tunnel
Interface stringAllow Fragmentation Variable - Variable name
- tunnel
Interface booleanAllow Https - Allow/Deny HTTPS
- tunnel
Interface stringAllow Https Variable - Variable name
- tunnel
Interface booleanAllow Icmp - Allow/Deny ICMP
- tunnel
Interface stringAllow Icmp Variable - Variable name
- tunnel
Interface booleanAllow Netconf - Allow/Deny NETCONF
- tunnel
Interface stringAllow Netconf Variable - Variable name
- tunnel
Interface booleanAllow Ntp - Allow/Deny NTP
- tunnel
Interface stringAllow Ntp Variable - Variable name
- tunnel
Interface booleanAllow Ospf - Allow/Deny OSPF
- tunnel
Interface stringAllow Ospf Variable - Variable name
- tunnel
Interface booleanAllow Snmp - Allow/Deny SNMP
- tunnel
Interface stringAllow Snmp Variable - Variable name
- tunnel
Interface booleanAllow Ssh - Allow/Deny SSH
- tunnel
Interface stringAllow Ssh Variable - Variable name
- tunnel
Interface booleanAllow Stun - Allow/Deny STUN
- tunnel
Interface stringAllow Stun Variable - Variable name
- tunnel
Interface stringBind Loopback Tunnel - Bind loopback tunnel interface to a physical interface
- tunnel
Interface stringBind Loopback Tunnel Variable - Variable name
- tunnel
Interface booleanBorder - Set TLOC as border TLOC
- tunnel
Interface stringBorder Variable - Variable name
- tunnel
Interface stringCarrier - Set carrier for TLOC
- tunnel
Interface stringCarrier Variable - Variable name
- tunnel
Interface booleanClear Dont Fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnel
Interface stringClear Dont Fragment Variable - Variable name
- tunnel
Interface stringColor - Set color for TLOC
- tunnel
Interface booleanColor Restrict - Restrict this TLOC behavior
- tunnel
Interface stringColor Restrict Variable - Variable name
- tunnel
Interface stringColor Variable - Variable name
- tunnel
Interface booleanCts Sgt Propagation - CTS SGT Propagation configuration
- tunnel
Interface stringCts Sgt Propagation Variable - Variable name
- tunnel
Interface GetEncapsulations Transport Wan Vpn Interface Ethernet Feature Tunnel Interface Encapsulation[] - Encapsulation for TLOC
- tunnel
Interface stringExclude Controller Group List Variable - Variable name
- tunnel
Interface number[]Exclude Controller Group Lists - Exclude the following controller groups defined in this list.
- tunnel
Interface stringGre Tunnel Destination Ip - GRE tunnel destination IP
- tunnel
Interface stringGre Tunnel Destination Ip Variable - Variable name
- tunnel
Interface numberGroups - List of groups
- tunnel
Interface stringGroups Variable - Variable name
- tunnel
Interface numberHello Interval - Set time period of control hello packets \n\n milli seconds
- tunnel
Interface stringHello Interval Variable - Variable name
- tunnel
Interface numberHello Tolerance - Set tolerance of control hello packets \n\n seconds
- tunnel
Interface stringHello Tolerance Variable - Variable name
- tunnel
Interface booleanLast Resort Circuit - Set TLOC as last resort
- tunnel
Interface stringLast Resort Circuit Variable - Variable name
- tunnel
Interface booleanLow Bandwidth Link - Set the interface as a low-bandwidth circuit
- tunnel
Interface stringLow Bandwidth Link Variable - Variable name
- tunnel
Interface numberMax Control Connections - Maximum Control Connections
- tunnel
Interface stringMax Control Connections Variable - Variable name
- tunnel
Interface numberNat Refresh Interval - Set time period of nat refresh packets \n\n seconds
- tunnel
Interface stringNat Refresh Interval Variable - Variable name
- tunnel
Interface booleanNetwork Broadcast - Accept and respond to network-prefix-directed broadcasts
- tunnel
Interface stringNetwork Broadcast Variable - Variable name
- tunnel
Interface booleanPort Hop - Disallow port hopping on the tunnel interface
- tunnel
Interface stringPort Hop Variable - Variable name
- tunnel
Interface booleanSet Sdwan Tunnel Mtu To Max - Set current tunnel mtu to 9k
- tunnel
Interface stringSet Sdwan Tunnel Mtu To Max Variable - Variable name
- tunnel
Interface numberTunnel Tcp Mss - Tunnel TCP MSS on SYN packets, in bytes
- tunnel
Interface stringTunnel Tcp Mss Variable - Variable name
- tunnel
Interface booleanVbond As Stun Server - Put this wan interface in STUN mode only
- tunnel
Interface stringVbond As Stun Server Variable - Variable name
- tunnel
Interface numberVmanage Connection Preference - Set interface preference for control connection to vManage \n\n
- tunnel
Interface stringVmanage Connection Preference Variable - Variable name
- tunnel
Qos stringMode - Set tunnel QoS mode
- tunnel
Qos stringMode Variable - Variable name
- version number
- The version of the Feature
- xconnect string
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- xconnect
Variable string - Variable name
- acl_
ipv4_ stregress_ feature_ id - acl_
ipv4_ stringress_ feature_ id - acl_
ipv6_ stregress_ feature_ id - acl_
ipv6_ stringress_ feature_ id - arp_
timeout int - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp_
timeout_ strvariable - Variable name
- arps
Sequence[Get
Transport Wan Vpn Interface Ethernet Feature Arp] - Configure ARP entries
- auto_
detect_ boolbandwidth - Interface auto detect bandwidth
- auto_
detect_ strbandwidth_ variable - Variable name
- autonegotiate bool
- Link autonegotiation
- autonegotiate_
variable str - Variable name
- bandwidth_
downstream int - Interface downstream bandwidth capacity, in kbps
- bandwidth_
downstream_ strvariable - Variable name
- bandwidth_
upstream int - Interface upstream bandwidth capacity, in kbps
- bandwidth_
upstream_ strvariable - Variable name
- block_
non_ boolsource_ ip - Block packets originating from IP address that is not from this source
- block_
non_ strsource_ ip_ variable - Variable name
- description str
- The description of the Feature
- duplex str
- Duplex mode
- duplex_
variable str - Variable name
- enable_
dhcpv6 bool - Enable DHCPv6
- feature_
profile_ strid - Feature Profile ID
- gre_
tunnel_ strsource_ ip - GRE tunnel source IP
- gre_
tunnel_ strsource_ ip_ variable - Variable name
- icmp_
redirect_ booldisable - ICMP/ICMPv6 Redirect Disable
- icmp_
redirect_ strdisable_ variable - Variable name
- id str
- The id of the Feature
- interface_
description str - interface_
description_ strvariable - Variable name
- interface_
mtu int - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interface_
mtu_ strvariable - Variable name
- interface_
name str - interface_
name_ strvariable - Variable name
- ip_
directed_ boolbroadcast - IP Directed-Broadcast
- ip_
directed_ strbroadcast_ variable - Variable name
- ip_
mtu int - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip_
mtu_ strvariable - Variable name
- iperf_
server str - Iperf server for auto bandwidth detect
- iperf_
server_ strvariable - Variable name
- ipv4_
address str - IP Address
- ipv4_
address_ strvariable - Variable name
- ipv4_
configuration_ strtype - IPv4 Configuration Type
- ipv4_
dhcp_ intdistance - DHCP Distance
- ipv4_
dhcp_ strdistance_ variable - Variable name
- ipv4_
dhcp_ strhelper_ variable - Variable name
- ipv4_
dhcp_ Sequence[str]helpers - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4_
secondary_ Sequence[Getaddresses Transport Wan Vpn Interface Ethernet Feature Ipv4Secondary Address] - Secondary IpV4 Addresses
- ipv4_
subnet_ strmask - Subnet Mask
- ipv4_
subnet_ strmask_ variable - Variable name
- ipv6_
address str - IPv6 Address Secondary
- ipv6_
address_ strvariable - Variable name
- ipv6_
configuration_ strtype - IPv6 Configuration Type
- ipv6_
dhcp_ Sequence[Getsecondary_ addresses Transport Wan Vpn Interface Ethernet Feature Ipv6Dhcp Secondary Address] - secondary IPv6 addresses
- ipv6_
secondary_ Sequence[Getaddresses Transport Wan Vpn Interface Ethernet Feature Ipv6Secondary Address] - Static secondary IPv6 addresses
- load_
interval int - Interval for interface load calculation
- load_
interval_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- media_
type str - Media type
- media_
type_ strvariable - Variable name
- mrf_
core_ strregion_ type - Core Region
- mrf_
enable_ boolcore_ region - Enable Core Region
- name str
- The name of the Feature
- nat64 bool
- NAT64 on this interface
- nat66 bool
- NAT66 on this interface
- nat_
ipv4 bool - enable Network Address Translation on this interface
- nat_
ipv4_ Sequence[Getloopbacks Transport Wan Vpn Interface Ethernet Feature Nat Ipv4Loopback] - NAT Multiple Loopback
- nat_
ipv4_ Sequence[Getpools Transport Wan Vpn Interface Ethernet Feature Nat Ipv4Pool] - NAT Multiple Pool
- nat_
ipv4_ strvariable - Variable name
- nat_
ipv6 bool - enable Network Address Translation ipv6 on this interface
- nat_
ipv6_ strvariable - Variable name
- nat_
loopback str - NAT Inside Source Loopback Interface
- nat_
loopback_ strvariable - Variable name
- nat_
match_ boolinterface - NAT Match Interface
- nat_
match_ strinterface_ variable - Variable name
- nat_
overload bool - NAT Overload
- nat_
overload_ strvariable - Variable name
- nat_
prefix_ intlength - NAT Pool Prefix Length
- nat_
prefix_ strlength_ variable - Variable name
- nat_
range_ strend - NAT Pool Range End
- nat_
range_ strend_ variable - Variable name
- nat_
range_ strstart - NAT Pool Range Start
- nat_
range_ strstart_ variable - Variable name
- nat_
tcp_ inttimeout - Set NAT TCP session timeout, in minutes
- nat_
tcp_ strtimeout_ variable - Variable name
- nat_
type str - NAT Type
- nat_
udp_ inttimeout - Set NAT UDP session timeout, in minutes
- nat_
udp_ strtimeout_ variable - Variable name
- new_
static_ Sequence[Getnats Transport Wan Vpn Interface Ethernet Feature New Static Nat] - static NAT
- per_
tunnel_ boolqos - Per-tunnel Qos
- per_
tunnel_ strqos_ variable - Variable name
- port_
channel_ boolinterface - Port-Channel interface on/off
- port_
channel_ boollacp_ fast_ switchover - Eanble lacp fast switchover
- port_
channel_ strlacp_ fast_ switchover_ variable - Variable name
- port_
channel_ strlacp_ load_ balance - Enable QoS Port-Channel aggregate
- port_
channel_ strlacp_ load_ balance_ variable - Variable name
- port_
channel_ intlacp_ max_ bundle - Set LACP max bundle
- port_
channel_ strlacp_ max_ bundle_ variable - Variable name
- port_
channel_ Sequence[Getlacp_ member_ links Transport Wan Vpn Interface Ethernet Feature Port Channel Lacp Member Link] - Configure Port-Channel member links
- port_
channel_ intlacp_ min_ bundle - Set LACP min bundle
- port_
channel_ strlacp_ min_ bundle_ variable - Variable name
- port_
channel_ boollacp_ qos_ aggregate - Enable QoS Port-Channel aggregate
- port_
channel_ strlacp_ qos_ aggregate_ variable - Variable name
- port_
channel_ boolmember_ interface - Port-Channel member interface on/off
- port_
channel_ strmode - Port Channel Mode
- port_
channel_ strstatic_ load_ balance - Enable QoS Port-Channel aggregate
- port_
channel_ strstatic_ load_ balance_ variable - Variable name
- port_
channel_ Sequence[Getstatic_ member_ links Transport Wan Vpn Interface Ethernet Feature Port Channel Static Member Link] - Configure Port-Channel member links
- port_
channel_ boolstatic_ qos_ aggregate - Enable QoS Port-Channel aggregate
- port_
channel_ strstatic_ qos_ aggregate_ variable - Variable name
- port_
channel_ boolsubinterface - qos_
adaptive bool - Adaptive QoS
- qos_
adaptive_ boolbandwidth_ downstream - Shaping Rate Downstream
- qos_
adaptive_ boolbandwidth_ upstream - Shaping Rate Upstream
- qos_
adaptive_ intdefault_ downstream - Adaptive QoS default downstream bandwidth (kbps)
- qos_
adaptive_ strdefault_ downstream_ variable - Variable name
- qos_
adaptive_ intdefault_ upstream - Adaptive QoS default upstream bandwidth (kbps)
- qos_
adaptive_ strdefault_ upstream_ variable - Variable name
- qos_
adaptive_ intmax_ downstream - Downstream max bandwidth limit (kbps)
- qos_
adaptive_ strmax_ downstream_ variable - Variable name
- qos_
adaptive_ intmax_ upstream - Upstream max bandwidth limit (kbps)
- qos_
adaptive_ strmax_ upstream_ variable - Variable name
- qos_
adaptive_ intmin_ downstream - Downstream min bandwidth limit (kbps)
- qos_
adaptive_ strmin_ downstream_ variable - Variable name
- qos_
adaptive_ intmin_ upstream - Upstream min bandwidth limit (kbps)
- qos_
adaptive_ strmin_ upstream_ variable - Variable name
- qos_
adaptive_ intperiod - Adapt Period(Minutes)
- qos_
adaptive_ strperiod_ variable - Variable name
- qos_
shaping_ intrate - Shaping Rate (Kbps)
- qos_
shaping_ strrate_ variable - Variable name
- service_
provider str - Service Provider Name
- service_
provider_ strvariable - Variable name
- shutdown bool
- shutdown_
variable str - Variable name
- speed str
- Set interface speed
- speed_
variable str - Variable name
- static_
nat66s Sequence[GetTransport Wan Vpn Interface Ethernet Feature Static Nat66] - static NAT66
- static_
port_ Sequence[Getforwards Transport Wan Vpn Interface Ethernet Feature Static Port Forward] - Configure Port Forward entries
- tcp_
mss int - TCP MSS on SYN packets, in bytes
- tcp_
mss_ strvariable - Variable name
- tloc_
extension str - Extends a local TLOC to a remote node only for vpn 0
- tloc_
extension_ strvariable - Variable name
- tracker str
- Enable tracker for this interface
- tracker_
variable str - Variable name
- transport_
wan_ strvpn_ feature_ id - Transport WAN VPN Feature ID
- tunnel_
bandwidth_ intpercent - Tunnels Bandwidth Percent
- tunnel_
bandwidth_ strpercent_ variable - Variable name
- tunnel_
interface bool - Tunnel Interface on/off
- tunnel_
interface_ boolallow_ all - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnel_
interface_ strallow_ all_ variable - Variable name
- tunnel_
interface_ boolallow_ bfd - Allow/Deny BFD
- tunnel_
interface_ strallow_ bfd_ variable - Variable name
- tunnel_
interface_ boolallow_ bgp - Allow/deny BGP
- tunnel_
interface_ strallow_ bgp_ variable - Variable name
- tunnel_
interface_ boolallow_ dhcp - Allow/Deny DHCP
- tunnel_
interface_ strallow_ dhcp_ variable - Variable name
- tunnel_
interface_ boolallow_ dns - Allow/Deny DNS
- tunnel_
interface_ strallow_ dns_ variable - Variable name
- tunnel_
interface_ boolallow_ fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- tunnel_
interface_ strallow_ fragmentation_ variable - Variable name
- tunnel_
interface_ boolallow_ https - Allow/Deny HTTPS
- tunnel_
interface_ strallow_ https_ variable - Variable name
- tunnel_
interface_ boolallow_ icmp - Allow/Deny ICMP
- tunnel_
interface_ strallow_ icmp_ variable - Variable name
- tunnel_
interface_ boolallow_ netconf - Allow/Deny NETCONF
- tunnel_
interface_ strallow_ netconf_ variable - Variable name
- tunnel_
interface_ boolallow_ ntp - Allow/Deny NTP
- tunnel_
interface_ strallow_ ntp_ variable - Variable name
- tunnel_
interface_ boolallow_ ospf - Allow/Deny OSPF
- tunnel_
interface_ strallow_ ospf_ variable - Variable name
- tunnel_
interface_ boolallow_ snmp - Allow/Deny SNMP
- tunnel_
interface_ strallow_ snmp_ variable - Variable name
- tunnel_
interface_ boolallow_ ssh - Allow/Deny SSH
- tunnel_
interface_ strallow_ ssh_ variable - Variable name
- tunnel_
interface_ boolallow_ stun - Allow/Deny STUN
- tunnel_
interface_ strallow_ stun_ variable - Variable name
- tunnel_
interface_ strbind_ loopback_ tunnel - Bind loopback tunnel interface to a physical interface
- tunnel_
interface_ strbind_ loopback_ tunnel_ variable - Variable name
- tunnel_
interface_ boolborder - Set TLOC as border TLOC
- tunnel_
interface_ strborder_ variable - Variable name
- tunnel_
interface_ strcarrier - Set carrier for TLOC
- tunnel_
interface_ strcarrier_ variable - Variable name
- tunnel_
interface_ boolclear_ dont_ fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnel_
interface_ strclear_ dont_ fragment_ variable - Variable name
- tunnel_
interface_ strcolor - Set color for TLOC
- tunnel_
interface_ boolcolor_ restrict - Restrict this TLOC behavior
- tunnel_
interface_ strcolor_ restrict_ variable - Variable name
- tunnel_
interface_ strcolor_ variable - Variable name
- tunnel_
interface_ boolcts_ sgt_ propagation - CTS SGT Propagation configuration
- tunnel_
interface_ strcts_ sgt_ propagation_ variable - Variable name
- tunnel_
interface_ Sequence[Getencapsulations Transport Wan Vpn Interface Ethernet Feature Tunnel Interface Encapsulation] - Encapsulation for TLOC
- tunnel_
interface_ strexclude_ controller_ group_ list_ variable - Variable name
- tunnel_
interface_ Sequence[int]exclude_ controller_ group_ lists - Exclude the following controller groups defined in this list.
- tunnel_
interface_ strgre_ tunnel_ destination_ ip - GRE tunnel destination IP
- tunnel_
interface_ strgre_ tunnel_ destination_ ip_ variable - Variable name
- tunnel_
interface_ intgroups - List of groups
- tunnel_
interface_ strgroups_ variable - Variable name
- tunnel_
interface_ inthello_ interval - Set time period of control hello packets \n\n milli seconds
- tunnel_
interface_ strhello_ interval_ variable - Variable name
- tunnel_
interface_ inthello_ tolerance - Set tolerance of control hello packets \n\n seconds
- tunnel_
interface_ strhello_ tolerance_ variable - Variable name
- tunnel_
interface_ boollast_ resort_ circuit - Set TLOC as last resort
- tunnel_
interface_ strlast_ resort_ circuit_ variable - Variable name
- tunnel_
interface_ boollow_ bandwidth_ link - Set the interface as a low-bandwidth circuit
- tunnel_
interface_ strlow_ bandwidth_ link_ variable - Variable name
- tunnel_
interface_ intmax_ control_ connections - Maximum Control Connections
- tunnel_
interface_ strmax_ control_ connections_ variable - Variable name
- tunnel_
interface_ intnat_ refresh_ interval - Set time period of nat refresh packets \n\n seconds
- tunnel_
interface_ strnat_ refresh_ interval_ variable - Variable name
- tunnel_
interface_ boolnetwork_ broadcast - Accept and respond to network-prefix-directed broadcasts
- tunnel_
interface_ strnetwork_ broadcast_ variable - Variable name
- tunnel_
interface_ boolport_ hop - Disallow port hopping on the tunnel interface
- tunnel_
interface_ strport_ hop_ variable - Variable name
- tunnel_
interface_ boolset_ sdwan_ tunnel_ mtu_ to_ max - Set current tunnel mtu to 9k
- tunnel_
interface_ strset_ sdwan_ tunnel_ mtu_ to_ max_ variable - Variable name
- tunnel_
interface_ inttunnel_ tcp_ mss - Tunnel TCP MSS on SYN packets, in bytes
- tunnel_
interface_ strtunnel_ tcp_ mss_ variable - Variable name
- tunnel_
interface_ boolvbond_ as_ stun_ server - Put this wan interface in STUN mode only
- tunnel_
interface_ strvbond_ as_ stun_ server_ variable - Variable name
- tunnel_
interface_ intvmanage_ connection_ preference - Set interface preference for control connection to vManage \n\n
- tunnel_
interface_ strvmanage_ connection_ preference_ variable - Variable name
- tunnel_
qos_ strmode - Set tunnel QoS mode
- tunnel_
qos_ strmode_ variable - Variable name
- version int
- The version of the Feature
- xconnect str
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- xconnect_
variable str - Variable name
- acl
Ipv4Egress StringFeature Id - acl
Ipv4Ingress StringFeature Id - acl
Ipv6Egress StringFeature Id - acl
Ipv6Ingress StringFeature Id - arp
Timeout Number - Timeout value for dynamically learned ARP entries, \n\n seconds
- arp
Timeout StringVariable - Variable name
- arps List<Property Map>
- Configure ARP entries
- auto
Detect BooleanBandwidth - Interface auto detect bandwidth
- auto
Detect StringBandwidth Variable - Variable name
- autonegotiate Boolean
- Link autonegotiation
- autonegotiate
Variable String - Variable name
- bandwidth
Downstream Number - Interface downstream bandwidth capacity, in kbps
- bandwidth
Downstream StringVariable - Variable name
- bandwidth
Upstream Number - Interface upstream bandwidth capacity, in kbps
- bandwidth
Upstream StringVariable - Variable name
- block
Non BooleanSource Ip - Block packets originating from IP address that is not from this source
- block
Non StringSource Ip Variable - Variable name
- description String
- The description of the Feature
- duplex String
- Duplex mode
- duplex
Variable String - Variable name
- enable
Dhcpv6 Boolean - Enable DHCPv6
- feature
Profile StringId - Feature Profile ID
- gre
Tunnel StringSource Ip - GRE tunnel source IP
- gre
Tunnel StringSource Ip Variable - Variable name
- icmp
Redirect BooleanDisable - ICMP/ICMPv6 Redirect Disable
- icmp
Redirect StringDisable Variable - Variable name
- id String
- The id of the Feature
- interface
Description String - interface
Description StringVariable - Variable name
- interface
Mtu Number - Interface MTU GigabitEthernet0 \n\n, Other GigabitEthernet \n\n in bytes
- interface
Mtu StringVariable - Variable name
- interface
Name String - interface
Name StringVariable - Variable name
- ip
Directed BooleanBroadcast - IP Directed-Broadcast
- ip
Directed StringBroadcast Variable - Variable name
- ip
Mtu Number - IP MTU for GigabitEthernet main \n\n, GigabitEthernet subinterface \n\n, Other Interfaces \n\n in bytes
- ip
Mtu StringVariable - Variable name
- iperf
Server String - Iperf server for auto bandwidth detect
- iperf
Server StringVariable - Variable name
- ipv4Address String
- IP Address
- ipv4Address
Variable String - Variable name
- ipv4Configuration
Type String - IPv4 Configuration Type
- ipv4Dhcp
Distance Number - DHCP Distance
- ipv4Dhcp
Distance StringVariable - Variable name
- ipv4Dhcp
Helper StringVariable - Variable name
- ipv4Dhcp
Helpers List<String> - List of DHCP IPv4 helper addresses (min 1, max 8)
- ipv4Secondary
Addresses List<Property Map> - Secondary IpV4 Addresses
- ipv4Subnet
Mask String - Subnet Mask
- ipv4Subnet
Mask StringVariable - Variable name
- ipv6Address String
- IPv6 Address Secondary
- ipv6Address
Variable String - Variable name
- ipv6Configuration
Type String - IPv6 Configuration Type
- ipv6Dhcp
Secondary List<Property Map>Addresses - secondary IPv6 addresses
- ipv6Secondary
Addresses List<Property Map> - Static secondary IPv6 addresses
- load
Interval Number - Interval for interface load calculation
- load
Interval StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- media
Type String - Media type
- media
Type StringVariable - Variable name
- mrf
Core StringRegion Type - Core Region
- mrf
Enable BooleanCore Region - Enable Core Region
- name String
- The name of the Feature
- nat64 Boolean
- NAT64 on this interface
- nat66 Boolean
- NAT66 on this interface
- nat
Ipv4 Boolean - enable Network Address Translation on this interface
- nat
Ipv4Loopbacks List<Property Map> - NAT Multiple Loopback
- nat
Ipv4Pools List<Property Map> - NAT Multiple Pool
- nat
Ipv4Variable String - Variable name
- nat
Ipv6 Boolean - enable Network Address Translation ipv6 on this interface
- nat
Ipv6Variable String - Variable name
- nat
Loopback String - NAT Inside Source Loopback Interface
- nat
Loopback StringVariable - Variable name
- nat
Match BooleanInterface - NAT Match Interface
- nat
Match StringInterface Variable - Variable name
- nat
Overload Boolean - NAT Overload
- nat
Overload StringVariable - Variable name
- nat
Prefix NumberLength - NAT Pool Prefix Length
- nat
Prefix StringLength Variable - Variable name
- nat
Range StringEnd - NAT Pool Range End
- nat
Range StringEnd Variable - Variable name
- nat
Range StringStart - NAT Pool Range Start
- nat
Range StringStart Variable - Variable name
- nat
Tcp NumberTimeout - Set NAT TCP session timeout, in minutes
- nat
Tcp StringTimeout Variable - Variable name
- nat
Type String - NAT Type
- nat
Udp NumberTimeout - Set NAT UDP session timeout, in minutes
- nat
Udp StringTimeout Variable - Variable name
- new
Static List<Property Map>Nats - static NAT
- per
Tunnel BooleanQos - Per-tunnel Qos
- per
Tunnel StringQos Variable - Variable name
- port
Channel BooleanInterface - Port-Channel interface on/off
- port
Channel BooleanLacp Fast Switchover - Eanble lacp fast switchover
- port
Channel StringLacp Fast Switchover Variable - Variable name
- port
Channel StringLacp Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Load Balance Variable - Variable name
- port
Channel NumberLacp Max Bundle - Set LACP max bundle
- port
Channel StringLacp Max Bundle Variable - Variable name
- port
Channel List<Property Map>Lacp Member Links - Configure Port-Channel member links
- port
Channel NumberLacp Min Bundle - Set LACP min bundle
- port
Channel StringLacp Min Bundle Variable - Variable name
- port
Channel BooleanLacp Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringLacp Qos Aggregate Variable - Variable name
- port
Channel BooleanMember Interface - Port-Channel member interface on/off
- port
Channel StringMode - Port Channel Mode
- port
Channel StringStatic Load Balance - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Load Balance Variable - Variable name
- port
Channel List<Property Map>Static Member Links - Configure Port-Channel member links
- port
Channel BooleanStatic Qos Aggregate - Enable QoS Port-Channel aggregate
- port
Channel StringStatic Qos Aggregate Variable - Variable name
- port
Channel BooleanSubinterface - qos
Adaptive Boolean - Adaptive QoS
- qos
Adaptive BooleanBandwidth Downstream - Shaping Rate Downstream
- qos
Adaptive BooleanBandwidth Upstream - Shaping Rate Upstream
- qos
Adaptive NumberDefault Downstream - Adaptive QoS default downstream bandwidth (kbps)
- qos
Adaptive StringDefault Downstream Variable - Variable name
- qos
Adaptive NumberDefault Upstream - Adaptive QoS default upstream bandwidth (kbps)
- qos
Adaptive StringDefault Upstream Variable - Variable name
- qos
Adaptive NumberMax Downstream - Downstream max bandwidth limit (kbps)
- qos
Adaptive StringMax Downstream Variable - Variable name
- qos
Adaptive NumberMax Upstream - Upstream max bandwidth limit (kbps)
- qos
Adaptive StringMax Upstream Variable - Variable name
- qos
Adaptive NumberMin Downstream - Downstream min bandwidth limit (kbps)
- qos
Adaptive StringMin Downstream Variable - Variable name
- qos
Adaptive NumberMin Upstream - Upstream min bandwidth limit (kbps)
- qos
Adaptive StringMin Upstream Variable - Variable name
- qos
Adaptive NumberPeriod - Adapt Period(Minutes)
- qos
Adaptive StringPeriod Variable - Variable name
- qos
Shaping NumberRate - Shaping Rate (Kbps)
- qos
Shaping StringRate Variable - Variable name
- service
Provider String - Service Provider Name
- service
Provider StringVariable - Variable name
- shutdown Boolean
- shutdown
Variable String - Variable name
- speed String
- Set interface speed
- speed
Variable String - Variable name
- static
Nat66s List<Property Map> - static NAT66
- static
Port List<Property Map>Forwards - Configure Port Forward entries
- tcp
Mss Number - TCP MSS on SYN packets, in bytes
- tcp
Mss StringVariable - Variable name
- tloc
Extension String - Extends a local TLOC to a remote node only for vpn 0
- tloc
Extension StringVariable - Variable name
- tracker String
- Enable tracker for this interface
- tracker
Variable String - Variable name
- transport
Wan StringVpn Feature Id - Transport WAN VPN Feature ID
- tunnel
Bandwidth NumberPercent - Tunnels Bandwidth Percent
- tunnel
Bandwidth StringPercent Variable - Variable name
- tunnel
Interface Boolean - Tunnel Interface on/off
- tunnel
Interface BooleanAllow All - Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnel
Interface StringAllow All Variable - Variable name
- tunnel
Interface BooleanAllow Bfd - Allow/Deny BFD
- tunnel
Interface StringAllow Bfd Variable - Variable name
- tunnel
Interface BooleanAllow Bgp - Allow/deny BGP
- tunnel
Interface StringAllow Bgp Variable - Variable name
- tunnel
Interface BooleanAllow Dhcp - Allow/Deny DHCP
- tunnel
Interface StringAllow Dhcp Variable - Variable name
- tunnel
Interface BooleanAllow Dns - Allow/Deny DNS
- tunnel
Interface StringAllow Dns Variable - Variable name
- tunnel
Interface BooleanAllow Fragmentation - Allow Fragmentation and will clear DF bit in outer IP
- tunnel
Interface StringAllow Fragmentation Variable - Variable name
- tunnel
Interface BooleanAllow Https - Allow/Deny HTTPS
- tunnel
Interface StringAllow Https Variable - Variable name
- tunnel
Interface BooleanAllow Icmp - Allow/Deny ICMP
- tunnel
Interface StringAllow Icmp Variable - Variable name
- tunnel
Interface BooleanAllow Netconf - Allow/Deny NETCONF
- tunnel
Interface StringAllow Netconf Variable - Variable name
- tunnel
Interface BooleanAllow Ntp - Allow/Deny NTP
- tunnel
Interface StringAllow Ntp Variable - Variable name
- tunnel
Interface BooleanAllow Ospf - Allow/Deny OSPF
- tunnel
Interface StringAllow Ospf Variable - Variable name
- tunnel
Interface BooleanAllow Snmp - Allow/Deny SNMP
- tunnel
Interface StringAllow Snmp Variable - Variable name
- tunnel
Interface BooleanAllow Ssh - Allow/Deny SSH
- tunnel
Interface StringAllow Ssh Variable - Variable name
- tunnel
Interface BooleanAllow Stun - Allow/Deny STUN
- tunnel
Interface StringAllow Stun Variable - Variable name
- tunnel
Interface StringBind Loopback Tunnel - Bind loopback tunnel interface to a physical interface
- tunnel
Interface StringBind Loopback Tunnel Variable - Variable name
- tunnel
Interface BooleanBorder - Set TLOC as border TLOC
- tunnel
Interface StringBorder Variable - Variable name
- tunnel
Interface StringCarrier - Set carrier for TLOC
- tunnel
Interface StringCarrier Variable - Variable name
- tunnel
Interface BooleanClear Dont Fragment - Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnel
Interface StringClear Dont Fragment Variable - Variable name
- tunnel
Interface StringColor - Set color for TLOC
- tunnel
Interface BooleanColor Restrict - Restrict this TLOC behavior
- tunnel
Interface StringColor Restrict Variable - Variable name
- tunnel
Interface StringColor Variable - Variable name
- tunnel
Interface BooleanCts Sgt Propagation - CTS SGT Propagation configuration
- tunnel
Interface StringCts Sgt Propagation Variable - Variable name
- tunnel
Interface List<Property Map>Encapsulations - Encapsulation for TLOC
- tunnel
Interface StringExclude Controller Group List Variable - Variable name
- tunnel
Interface List<Number>Exclude Controller Group Lists - Exclude the following controller groups defined in this list.
- tunnel
Interface StringGre Tunnel Destination Ip - GRE tunnel destination IP
- tunnel
Interface StringGre Tunnel Destination Ip Variable - Variable name
- tunnel
Interface NumberGroups - List of groups
- tunnel
Interface StringGroups Variable - Variable name
- tunnel
Interface NumberHello Interval - Set time period of control hello packets \n\n milli seconds
- tunnel
Interface StringHello Interval Variable - Variable name
- tunnel
Interface NumberHello Tolerance - Set tolerance of control hello packets \n\n seconds
- tunnel
Interface StringHello Tolerance Variable - Variable name
- tunnel
Interface BooleanLast Resort Circuit - Set TLOC as last resort
- tunnel
Interface StringLast Resort Circuit Variable - Variable name
- tunnel
Interface BooleanLow Bandwidth Link - Set the interface as a low-bandwidth circuit
- tunnel
Interface StringLow Bandwidth Link Variable - Variable name
- tunnel
Interface NumberMax Control Connections - Maximum Control Connections
- tunnel
Interface StringMax Control Connections Variable - Variable name
- tunnel
Interface NumberNat Refresh Interval - Set time period of nat refresh packets \n\n seconds
- tunnel
Interface StringNat Refresh Interval Variable - Variable name
- tunnel
Interface BooleanNetwork Broadcast - Accept and respond to network-prefix-directed broadcasts
- tunnel
Interface StringNetwork Broadcast Variable - Variable name
- tunnel
Interface BooleanPort Hop - Disallow port hopping on the tunnel interface
- tunnel
Interface StringPort Hop Variable - Variable name
- tunnel
Interface BooleanSet Sdwan Tunnel Mtu To Max - Set current tunnel mtu to 9k
- tunnel
Interface StringSet Sdwan Tunnel Mtu To Max Variable - Variable name
- tunnel
Interface NumberTunnel Tcp Mss - Tunnel TCP MSS on SYN packets, in bytes
- tunnel
Interface StringTunnel Tcp Mss Variable - Variable name
- tunnel
Interface BooleanVbond As Stun Server - Put this wan interface in STUN mode only
- tunnel
Interface StringVbond As Stun Server Variable - Variable name
- tunnel
Interface NumberVmanage Connection Preference - Set interface preference for control connection to vManage \n\n
- tunnel
Interface StringVmanage Connection Preference Variable - Variable name
- tunnel
Qos StringMode - Set tunnel QoS mode
- tunnel
Qos StringMode Variable - Variable name
- version Number
- The version of the Feature
- xconnect String
- Extend remote TLOC over a GRE tunnel to a local WAN interface
- xconnect
Variable String - Variable name
Supporting Types
GetTransportWanVpnInterfaceEthernetFeatureArp
- Ip
Address string - IP V4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- Ip
Address string - IP V4 Address
- Ip
Address stringVariable - Variable name
- Mac
Address string - MAC Address
- Mac
Address stringVariable - Variable name
- ip
Address String - IP V4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
- ip
Address string - IP V4 Address
- ip
Address stringVariable - Variable name
- mac
Address string - MAC Address
- mac
Address stringVariable - Variable name
- ip_
address str - IP V4 Address
- ip_
address_ strvariable - Variable name
- mac_
address str - MAC Address
- mac_
address_ strvariable - Variable name
- ip
Address String - IP V4 Address
- ip
Address StringVariable - Variable name
- mac
Address String - MAC Address
- mac
Address StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureIpv4SecondaryAddress
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- Address string
- IpV4 Address
- Address
Variable string - Variable name
- Subnet
Mask string - Subnet Mask
- Subnet
Mask stringVariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
- address string
- IpV4 Address
- address
Variable string - Variable name
- subnet
Mask string - Subnet Mask
- subnet
Mask stringVariable - Variable name
- address str
- IpV4 Address
- address_
variable str - Variable name
- subnet_
mask str - Subnet Mask
- subnet_
mask_ strvariable - Variable name
- address String
- IpV4 Address
- address
Variable String - Variable name
- subnet
Mask String - Subnet Mask
- subnet
Mask StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureIpv6DhcpSecondaryAddress
- 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
GetTransportWanVpnInterfaceEthernetFeatureIpv6SecondaryAddress
- 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
GetTransportWanVpnInterfaceEthernetFeatureNatIpv4Loopback
- Loopback
Interface string - NAT Inside Source Loopback Interface
- Loopback
Interface stringVariable - Variable name
- Loopback
Interface string - NAT Inside Source Loopback Interface
- Loopback
Interface stringVariable - Variable name
- loopback
Interface String - NAT Inside Source Loopback Interface
- loopback
Interface StringVariable - Variable name
- loopback
Interface string - NAT Inside Source Loopback Interface
- loopback
Interface stringVariable - Variable name
- loopback_
interface str - NAT Inside Source Loopback Interface
- loopback_
interface_ strvariable - Variable name
- loopback
Interface String - NAT Inside Source Loopback Interface
- loopback
Interface StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureNatIpv4Pool
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Name int
- NAT Pool Name
- Name
Variable string - Variable name
- Overload bool
- NAT Overload
- Overload
Variable string - Variable name
- Prefix
Length int - NAT Pool Prefix Length
- Prefix
Length stringVariable - Variable name
- Range
End string - NAT Pool Range End
- Range
End stringVariable - Variable name
- Range
Start string - NAT Pool Range Start
- Range
Start stringVariable - Variable name
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Name int
- NAT Pool Name
- Name
Variable string - Variable name
- Overload bool
- NAT Overload
- Overload
Variable string - Variable name
- Prefix
Length int - NAT Pool Prefix Length
- Prefix
Length stringVariable - Variable name
- Range
End string - NAT Pool Range End
- Range
End stringVariable - Variable name
- Range
Start string - NAT Pool Range Start
- Range
Start stringVariable - Variable name
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- name Integer
- NAT Pool Name
- name
Variable String - Variable name
- overload Boolean
- NAT Overload
- overload
Variable String - Variable name
- prefix
Length Integer - NAT Pool Prefix Length
- prefix
Length StringVariable - Variable name
- range
End String - NAT Pool Range End
- range
End StringVariable - Variable name
- range
Start String - NAT Pool Range Start
- range
Start StringVariable - Variable name
- enable
Dual booleanRouter Ha Mapping - Enable DualRouter HA Mapping
- name number
- NAT Pool Name
- name
Variable string - Variable name
- overload boolean
- NAT Overload
- overload
Variable string - Variable name
- prefix
Length number - NAT Pool Prefix Length
- prefix
Length stringVariable - Variable name
- range
End string - NAT Pool Range End
- range
End stringVariable - Variable name
- range
Start string - NAT Pool Range Start
- range
Start stringVariable - Variable name
- enable_
dual_ boolrouter_ ha_ mapping - Enable DualRouter HA Mapping
- name int
- NAT Pool Name
- name_
variable str - Variable name
- overload bool
- NAT Overload
- overload_
variable str - Variable name
- prefix_
length int - NAT Pool Prefix Length
- prefix_
length_ strvariable - Variable name
- range_
end str - NAT Pool Range End
- range_
end_ strvariable - Variable name
- range_
start str - NAT Pool Range Start
- range_
start_ strvariable - Variable name
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- name Number
- NAT Pool Name
- name
Variable String - Variable name
- overload Boolean
- NAT Overload
- overload
Variable String - Variable name
- prefix
Length Number - NAT Pool Prefix Length
- prefix
Length StringVariable - Variable name
- range
End String - NAT Pool Range End
- range
End StringVariable - Variable name
- range
Start String - NAT Pool Range Start
- range
Start StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureNewStaticNat
- Direction string
- Direction of static NAT translation
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translated
Ip string - Statically translated source IP address
- Translated
Ip stringVariable - Variable name
- Direction string
- Direction of static NAT translation
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translated
Ip string - Statically translated source IP address
- Translated
Ip stringVariable - Variable name
- direction String
- Direction of static NAT translation
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Integer - Source VPN ID
- source
Vpn StringVariable - Variable name
- translated
Ip String - Statically translated source IP address
- translated
Ip StringVariable - Variable name
- direction string
- Direction of static NAT translation
- enable
Dual booleanRouter Ha Mapping - Enable DualRouter HA Mapping
- source
Ip string - Source IP address to be translated
- source
Ip stringVariable - Variable name
- source
Vpn number - Source VPN ID
- source
Vpn stringVariable - Variable name
- translated
Ip string - Statically translated source IP address
- translated
Ip stringVariable - Variable name
- direction str
- Direction of static NAT translation
- enable_
dual_ boolrouter_ ha_ mapping - Enable DualRouter HA Mapping
- source_
ip str - Source IP address to be translated
- source_
ip_ strvariable - Variable name
- source_
vpn int - Source VPN ID
- source_
vpn_ strvariable - Variable name
- translated_
ip str - Statically translated source IP address
- translated_
ip_ strvariable - Variable name
- direction String
- Direction of static NAT translation
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Vpn Number - Source VPN ID
- source
Vpn StringVariable - Variable name
- translated
Ip String - Statically translated source IP address
- translated
Ip StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeaturePortChannelLacpMemberLink
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Lacp
Rate stringVariable - Variable name
- Interface
Id string - Lacp
Mode string - Set lacp mode
- Lacp
Mode stringVariable - Variable name
- Lacp
Port intPriority - Set lacp port priority
- Lacp
Port stringPriority Variable - Variable name
- Lacp
Rate string - Set lacp rate
- Lacp
Rate stringVariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- lacp
Mode StringVariable - Variable name
- lacp
Port IntegerPriority - Set lacp port priority
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- lacp
Rate StringVariable - Variable name
- interface
Id string - lacp
Mode string - Set lacp mode
- lacp
Mode stringVariable - Variable name
- lacp
Port numberPriority - Set lacp port priority
- lacp
Port stringPriority Variable - Variable name
- lacp
Rate string - Set lacp rate
- lacp
Rate stringVariable - Variable name
- interface_
id str - lacp_
mode str - Set lacp mode
- lacp_
mode_ strvariable - Variable name
- lacp_
port_ intpriority - Set lacp port priority
- lacp_
port_ strpriority_ variable - Variable name
- lacp_
rate str - Set lacp rate
- lacp_
rate_ strvariable - Variable name
- interface
Id String - lacp
Mode String - Set lacp mode
- lacp
Mode StringVariable - Variable name
- lacp
Port NumberPriority - Set lacp port priority
- lacp
Port StringPriority Variable - Variable name
- lacp
Rate String - Set lacp rate
- lacp
Rate StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeaturePortChannelStaticMemberLink
- Interface
Id string
- Interface
Id string
- interface
Id String
- interface
Id string
- interface_
id str
- interface
Id String
GetTransportWanVpnInterfaceEthernetFeatureStaticNat66
- Egress
Interface bool - Egress Interface
- Egress
Interface stringVariable - Variable name
- Source
Prefix string - Source Prefix
- Source
Prefix stringVariable - Variable name
- Source
Vpn intId - Source VPN ID
- Source
Vpn stringId Variable - Variable name
- Translated
Source stringPrefix - Translated Source Prefix
- Translated
Source stringPrefix Variable - Variable name
- Egress
Interface bool - Egress Interface
- Egress
Interface stringVariable - Variable name
- Source
Prefix string - Source Prefix
- Source
Prefix stringVariable - Variable name
- Source
Vpn intId - Source VPN ID
- Source
Vpn stringId Variable - Variable name
- Translated
Source stringPrefix - Translated Source Prefix
- Translated
Source stringPrefix Variable - Variable name
- egress
Interface Boolean - Egress Interface
- egress
Interface StringVariable - Variable name
- source
Prefix String - Source Prefix
- source
Prefix StringVariable - Variable name
- source
Vpn IntegerId - Source VPN ID
- source
Vpn StringId Variable - Variable name
- translated
Source StringPrefix - Translated Source Prefix
- translated
Source StringPrefix Variable - Variable name
- egress
Interface boolean - Egress Interface
- egress
Interface stringVariable - Variable name
- source
Prefix string - Source Prefix
- source
Prefix stringVariable - Variable name
- source
Vpn numberId - Source VPN ID
- source
Vpn stringId Variable - Variable name
- translated
Source stringPrefix - Translated Source Prefix
- translated
Source stringPrefix Variable - Variable name
- egress_
interface bool - Egress Interface
- egress_
interface_ strvariable - Variable name
- source_
prefix str - Source Prefix
- source_
prefix_ strvariable - Variable name
- source_
vpn_ intid - Source VPN ID
- source_
vpn_ strid_ variable - Variable name
- translated_
source_ strprefix - Translated Source Prefix
- translated_
source_ strprefix_ variable - Variable name
- egress
Interface Boolean - Egress Interface
- egress
Interface StringVariable - Variable name
- source
Prefix String - Source Prefix
- source
Prefix StringVariable - Variable name
- source
Vpn NumberId - Source VPN ID
- source
Vpn StringId Variable - Variable name
- translated
Source StringPrefix - Translated Source Prefix
- translated
Source StringPrefix Variable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureStaticPortForward
- Direction string
- Direction of static NAT translation
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Protocol string
- Protocol
- Protocol
Variable string - Variable name
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Port int - source port to be translated
- Source
Port stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translated
Ip string - Statically translated source IP address
- Translated
Ip stringVariable - Variable name
- Translated
Port int - Statically translated source IP address
- Translated
Port stringVariable - Variable name
- Direction string
- Direction of static NAT translation
- Enable
Dual boolRouter Ha Mapping - Enable DualRouter HA Mapping
- Protocol string
- Protocol
- Protocol
Variable string - Variable name
- Source
Ip string - Source IP address to be translated
- Source
Ip stringVariable - Variable name
- Source
Port int - source port to be translated
- Source
Port stringVariable - Variable name
- Source
Vpn int - Source VPN ID
- Source
Vpn stringVariable - Variable name
- Translated
Ip string - Statically translated source IP address
- Translated
Ip stringVariable - Variable name
- Translated
Port int - Statically translated source IP address
- Translated
Port stringVariable - Variable name
- direction String
- Direction of static NAT translation
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- protocol String
- Protocol
- protocol
Variable String - Variable name
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Port Integer - source port to be translated
- source
Port StringVariable - Variable name
- source
Vpn Integer - Source VPN ID
- source
Vpn StringVariable - Variable name
- translated
Ip String - Statically translated source IP address
- translated
Ip StringVariable - Variable name
- translated
Port Integer - Statically translated source IP address
- translated
Port StringVariable - Variable name
- direction string
- Direction of static NAT translation
- enable
Dual booleanRouter Ha Mapping - Enable DualRouter HA Mapping
- protocol string
- Protocol
- protocol
Variable string - Variable name
- source
Ip string - Source IP address to be translated
- source
Ip stringVariable - Variable name
- source
Port number - source port to be translated
- source
Port stringVariable - Variable name
- source
Vpn number - Source VPN ID
- source
Vpn stringVariable - Variable name
- translated
Ip string - Statically translated source IP address
- translated
Ip stringVariable - Variable name
- translated
Port number - Statically translated source IP address
- translated
Port stringVariable - Variable name
- direction str
- Direction of static NAT translation
- enable_
dual_ boolrouter_ ha_ mapping - Enable DualRouter HA Mapping
- protocol str
- Protocol
- protocol_
variable str - Variable name
- source_
ip str - Source IP address to be translated
- source_
ip_ strvariable - Variable name
- source_
port int - source port to be translated
- source_
port_ strvariable - Variable name
- source_
vpn int - Source VPN ID
- source_
vpn_ strvariable - Variable name
- translated_
ip str - Statically translated source IP address
- translated_
ip_ strvariable - Variable name
- translated_
port int - Statically translated source IP address
- translated_
port_ strvariable - Variable name
- direction String
- Direction of static NAT translation
- enable
Dual BooleanRouter Ha Mapping - Enable DualRouter HA Mapping
- protocol String
- Protocol
- protocol
Variable String - Variable name
- source
Ip String - Source IP address to be translated
- source
Ip StringVariable - Variable name
- source
Port Number - source port to be translated
- source
Port StringVariable - Variable name
- source
Vpn Number - Source VPN ID
- source
Vpn StringVariable - Variable name
- translated
Ip String - Statically translated source IP address
- translated
Ip StringVariable - Variable name
- translated
Port Number - Statically translated source IP address
- translated
Port StringVariable - Variable name
GetTransportWanVpnInterfaceEthernetFeatureTunnelInterfaceEncapsulation
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- Preference
Variable string - Variable name
- Weight int
- Set weight for TLOC
- Weight
Variable string - Variable name
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- Preference
Variable string - Variable name
- Weight int
- Set weight for TLOC
- Weight
Variable string - Variable name
- encapsulation String
- Encapsulation
- preference Integer
- Set preference for TLOC
- preference
Variable String - Variable name
- weight Integer
- Set weight for TLOC
- weight
Variable String - Variable name
- encapsulation string
- Encapsulation
- preference number
- Set preference for TLOC
- preference
Variable string - Variable name
- weight number
- Set weight for TLOC
- weight
Variable string - Variable name
- encapsulation str
- Encapsulation
- preference int
- Set preference for TLOC
- preference_
variable str - Variable name
- weight int
- Set weight for TLOC
- weight_
variable str - Variable name
- encapsulation String
- Encapsulation
- preference Number
- Set preference for TLOC
- preference
Variable String - Variable name
- weight Number
- Set weight for TLOC
- weight
Variable String - Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwanTerraform Provider.
Viewing docs for Cisco Catalyst SD-WAN v0.7.0
published on Tuesday, Feb 24, 2026 by Pulumi
published on Tuesday, Feb 24, 2026 by Pulumi
