Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi
sdwan.getTransportWanVpnInterfaceT1E1SerialFeature
Explore with Pulumi AI
This data source can read the Transport WAN VPN Interface T1 E1 Serial Feature.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = sdwan.getTransportWanVpnInterfaceT1E1SerialFeature({
    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_t1_e1_serial_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.LookupTransportWanVpnInterfaceT1E1SerialFeature(ctx, &sdwan.LookupTransportWanVpnInterfaceT1E1SerialFeatureArgs{
			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.GetTransportWanVpnInterfaceT1E1SerialFeature.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.GetTransportWanVpnInterfaceT1E1SerialFeatureArgs;
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.getTransportWanVpnInterfaceT1E1SerialFeature(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs.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:getTransportWanVpnInterfaceT1E1SerialFeature
      arguments:
        id: f6b2c44c-693c-4763-b010-895aa3d236bd
        featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
        transportWanVpnFeatureId: 140331f6-5418-4755-a059-13c77eb96037
Using getTransportWanVpnInterfaceT1E1SerialFeature
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 getTransportWanVpnInterfaceT1E1SerialFeature(args: GetTransportWanVpnInterfaceT1E1SerialFeatureArgs, opts?: InvokeOptions): Promise<GetTransportWanVpnInterfaceT1E1SerialFeatureResult>
function getTransportWanVpnInterfaceT1E1SerialFeatureOutput(args: GetTransportWanVpnInterfaceT1E1SerialFeatureOutputArgs, opts?: InvokeOptions): Output<GetTransportWanVpnInterfaceT1E1SerialFeatureResult>def get_transport_wan_vpn_interface_t1_e1_serial_feature(feature_profile_id: Optional[str] = None,
                                                         id: Optional[str] = None,
                                                         transport_wan_vpn_feature_id: Optional[str] = None,
                                                         opts: Optional[InvokeOptions] = None) -> GetTransportWanVpnInterfaceT1E1SerialFeatureResult
def get_transport_wan_vpn_interface_t1_e1_serial_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[GetTransportWanVpnInterfaceT1E1SerialFeatureResult]func LookupTransportWanVpnInterfaceT1E1SerialFeature(ctx *Context, args *LookupTransportWanVpnInterfaceT1E1SerialFeatureArgs, opts ...InvokeOption) (*LookupTransportWanVpnInterfaceT1E1SerialFeatureResult, error)
func LookupTransportWanVpnInterfaceT1E1SerialFeatureOutput(ctx *Context, args *LookupTransportWanVpnInterfaceT1E1SerialFeatureOutputArgs, opts ...InvokeOption) LookupTransportWanVpnInterfaceT1E1SerialFeatureResultOutput> Note: This function is named LookupTransportWanVpnInterfaceT1E1SerialFeature in the Go SDK.
public static class GetTransportWanVpnInterfaceT1E1SerialFeature 
{
    public static Task<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> InvokeAsync(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs args, InvokeOptions? opts = null)
    public static Output<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> Invoke(GetTransportWanVpnInterfaceT1E1SerialFeatureInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> getTransportWanVpnInterfaceT1E1SerialFeature(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs args, InvokeOptions options)
public static Output<GetTransportWanVpnInterfaceT1E1SerialFeatureResult> getTransportWanVpnInterfaceT1E1SerialFeature(GetTransportWanVpnInterfaceT1E1SerialFeatureArgs args, InvokeOptions options)
fn::invoke:
  function: sdwan:index/getTransportWanVpnInterfaceT1E1SerialFeature:getTransportWanVpnInterfaceT1E1SerialFeature
  arguments:
    # arguments dictionaryThe following arguments are supported:
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- transportWan 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
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
getTransportWanVpnInterfaceT1E1SerialFeature Result
The following output properties are available:
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- Bandwidth int
- Interface bandwidth capacity, in kbps
- BandwidthDownstream int
- Interface downstream bandwidth capacity, in kbps
- BandwidthDownstream stringVariable 
- Variable name
- BandwidthVariable string
- Variable name
- ClockRate string
- Set preference for interface Clock speed
- ClockRate stringVariable 
- Variable name
- Description string
- The description of the Feature
- Encapsulation string
- Configure Encapsulation for interface
- EncapsulationVariable string
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceName string
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Set ip mtu
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv6Address string
- Assign IPv6 address
- Ipv6AddressVariable string
- Variable name
- Mtu int
- Interface MTU \n\n, in bytes
- MtuVariable string
- Variable name
- Name string
- The name of the Feature
- PerTunnel boolQos 
- Per-tunnel Qos
- PerTunnel boolQos Aggregator 
- Per-tunnel QoS Aggregator
- PerTunnel stringQos Aggregator Variable 
- Variable name
- PerTunnel stringQos Variable 
- Variable name
- QosShaping intRate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- QosShaping stringRate Variable 
- Variable name
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- TlocExtension stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelInterface bool
- Tunnel Interface
- TunnelInterface boolAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- TunnelInterface stringAllow All Variable 
- Variable name
- TunnelInterface boolAllow Bfd 
- Allow/Deny BFD
- TunnelInterface stringAllow Bfd Variable 
- Variable name
- TunnelInterface boolAllow Bgp 
- Allow/deny BGP
- TunnelInterface stringAllow Bgp Variable 
- Variable name
- TunnelInterface boolAllow Dhcp 
- Allow/Deny DHCP
- TunnelInterface stringAllow Dhcp Variable 
- Variable name
- TunnelInterface boolAllow Dns 
- Allow/Deny DNS
- TunnelInterface stringAllow Dns Variable 
- Variable name
- TunnelInterface boolAllow Https 
- Allow/Deny Https
- TunnelInterface stringAllow Https Variable 
- Variable name
- TunnelInterface boolAllow Icmp 
- Allow/Deny ICMP
- TunnelInterface stringAllow Icmp Variable 
- Variable name
- TunnelInterface boolAllow Netconf 
- Allow/Deny NETCONF
- TunnelInterface stringAllow Netconf Variable 
- Variable name
- TunnelInterface boolAllow Ntp 
- Allow/Deny NTP
- TunnelInterface stringAllow Ntp Variable 
- Variable name
- TunnelInterface boolAllow Ospf 
- Allow/Deny OSPF
- TunnelInterface stringAllow Ospf Variable 
- Variable name
- TunnelInterface boolAllow Snmp 
- Allow/Deny SNMP
- TunnelInterface stringAllow Snmp Variable 
- Variable name
- TunnelInterface boolAllow Ssh 
- Allow/Deny SSH
- TunnelInterface stringAllow Ssh Variable 
- Variable name
- TunnelInterface boolAllow Stun 
- Allow/Deny STUN
- TunnelInterface stringAllow Stun Variable 
- Variable name
- TunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- TunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- TunnelInterface boolBorder 
- Set TLOC as border TLOC
- TunnelInterface stringBorder Variable 
- Variable name
- TunnelInterface stringCarrier 
- Set carrier for TLOC
- TunnelInterface stringCarrier Variable 
- Variable name
- TunnelInterface boolClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- TunnelInterface stringClear Dont Fragment Variable 
- Variable name
- TunnelInterface boolClear Network Broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- TunnelInterface stringClear Network Broadcast Variable 
- Variable name
- TunnelInterface stringColor 
- Set color for TLOC
- TunnelInterface stringColor Variable 
- Variable name
- TunnelInterface List<GetEncapsulations Transport Wan Vpn Interface T1E1Serial Feature Tunnel Interface Encapsulation> 
- Encapsulation for TLOC
- TunnelInterface stringExclude Controller Group List Variable 
- Variable name
- TunnelInterface List<int>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list
- TunnelInterface intGroups 
- List of groups
- TunnelInterface stringGroups Variable 
- Variable name
- TunnelInterface intHello Interval 
- Set time period of control hello packets \n\n milli seconds
- TunnelInterface stringHello Interval Variable 
- Variable name
- TunnelInterface intHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- TunnelInterface stringHello Tolerance Variable 
- Variable name
- TunnelInterface boolLast Resort Circuit 
- Set TLOC as last resort
- TunnelInterface stringLast Resort Circuit Variable 
- Variable name
- TunnelInterface boolLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- TunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- TunnelInterface intMax Control Connections 
- Set the maximum number of control connections for this TLOC
- TunnelInterface stringMax Control Connections Variable 
- Variable name
- TunnelInterface intNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- TunnelInterface stringNat Refresh Interval Variable 
- Variable name
- TunnelInterface boolPort Hop 
- Disallow port hopping on the tunnel interface
- TunnelInterface stringPort Hop Variable 
- Variable name
- TunnelInterface boolRestrict 
- Restrict this TLOC behavior
- TunnelInterface stringRestrict Variable 
- Variable name
- TunnelInterface intTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- TunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- TunnelInterface boolVbond As Stun Server 
- Put this wan interface in STUN mode only
- TunnelInterface stringVbond As Stun Server Variable 
- Variable name
- TunnelInterface intVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- TunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- TunnelQos stringMode 
- Set tunnel QoS mode
- TunnelQos stringMode Variable 
- Variable name
- Version int
- The version of the Feature
- AclIpv4Egress stringFeature Id 
- AclIpv4Ingress stringFeature Id 
- AclIpv6Egress stringFeature Id 
- AclIpv6Ingress stringFeature Id 
- Bandwidth int
- Interface bandwidth capacity, in kbps
- BandwidthDownstream int
- Interface downstream bandwidth capacity, in kbps
- BandwidthDownstream stringVariable 
- Variable name
- BandwidthVariable string
- Variable name
- ClockRate string
- Set preference for interface Clock speed
- ClockRate stringVariable 
- Variable name
- Description string
- The description of the Feature
- Encapsulation string
- Configure Encapsulation for interface
- EncapsulationVariable string
- Variable name
- FeatureProfile stringId 
- Feature Profile ID
- Id string
- The id of the Feature
- InterfaceName string
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- InterfaceName stringVariable 
- Variable name
- IpMtu int
- Set ip mtu
- IpMtu stringVariable 
- Variable name
- Ipv4Address string
- Ipv4AddressVariable string
- Variable name
- Ipv4SubnetMask string
- Ipv4SubnetMask stringVariable 
- Variable name
- Ipv6Address string
- Assign IPv6 address
- Ipv6AddressVariable string
- Variable name
- Mtu int
- Interface MTU \n\n, in bytes
- MtuVariable string
- Variable name
- Name string
- The name of the Feature
- PerTunnel boolQos 
- Per-tunnel Qos
- PerTunnel boolQos Aggregator 
- Per-tunnel QoS Aggregator
- PerTunnel stringQos Aggregator Variable 
- Variable name
- PerTunnel stringQos Variable 
- Variable name
- QosShaping intRate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- QosShaping stringRate Variable 
- Variable name
- Shutdown bool
- Administrative state
- ShutdownVariable string
- Variable name
- TcpMss int
- TCP MSS on SYN packets, in bytes
- TcpMss stringVariable 
- Variable name
- TlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- TlocExtension stringVariable 
- Variable name
- TransportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- TunnelInterface bool
- Tunnel Interface
- TunnelInterface boolAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- TunnelInterface stringAllow All Variable 
- Variable name
- TunnelInterface boolAllow Bfd 
- Allow/Deny BFD
- TunnelInterface stringAllow Bfd Variable 
- Variable name
- TunnelInterface boolAllow Bgp 
- Allow/deny BGP
- TunnelInterface stringAllow Bgp Variable 
- Variable name
- TunnelInterface boolAllow Dhcp 
- Allow/Deny DHCP
- TunnelInterface stringAllow Dhcp Variable 
- Variable name
- TunnelInterface boolAllow Dns 
- Allow/Deny DNS
- TunnelInterface stringAllow Dns Variable 
- Variable name
- TunnelInterface boolAllow Https 
- Allow/Deny Https
- TunnelInterface stringAllow Https Variable 
- Variable name
- TunnelInterface boolAllow Icmp 
- Allow/Deny ICMP
- TunnelInterface stringAllow Icmp Variable 
- Variable name
- TunnelInterface boolAllow Netconf 
- Allow/Deny NETCONF
- TunnelInterface stringAllow Netconf Variable 
- Variable name
- TunnelInterface boolAllow Ntp 
- Allow/Deny NTP
- TunnelInterface stringAllow Ntp Variable 
- Variable name
- TunnelInterface boolAllow Ospf 
- Allow/Deny OSPF
- TunnelInterface stringAllow Ospf Variable 
- Variable name
- TunnelInterface boolAllow Snmp 
- Allow/Deny SNMP
- TunnelInterface stringAllow Snmp Variable 
- Variable name
- TunnelInterface boolAllow Ssh 
- Allow/Deny SSH
- TunnelInterface stringAllow Ssh Variable 
- Variable name
- TunnelInterface boolAllow Stun 
- Allow/Deny STUN
- TunnelInterface stringAllow Stun Variable 
- Variable name
- TunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- TunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- TunnelInterface boolBorder 
- Set TLOC as border TLOC
- TunnelInterface stringBorder Variable 
- Variable name
- TunnelInterface stringCarrier 
- Set carrier for TLOC
- TunnelInterface stringCarrier Variable 
- Variable name
- TunnelInterface boolClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- TunnelInterface stringClear Dont Fragment Variable 
- Variable name
- TunnelInterface boolClear Network Broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- TunnelInterface stringClear Network Broadcast Variable 
- Variable name
- TunnelInterface stringColor 
- Set color for TLOC
- TunnelInterface stringColor Variable 
- Variable name
- TunnelInterface []GetEncapsulations Transport Wan Vpn Interface T1E1Serial Feature Tunnel Interface Encapsulation 
- Encapsulation for TLOC
- TunnelInterface stringExclude Controller Group List Variable 
- Variable name
- TunnelInterface []intExclude Controller Group Lists 
- Exclude the following controller groups defined in this list
- TunnelInterface intGroups 
- List of groups
- TunnelInterface stringGroups Variable 
- Variable name
- TunnelInterface intHello Interval 
- Set time period of control hello packets \n\n milli seconds
- TunnelInterface stringHello Interval Variable 
- Variable name
- TunnelInterface intHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- TunnelInterface stringHello Tolerance Variable 
- Variable name
- TunnelInterface boolLast Resort Circuit 
- Set TLOC as last resort
- TunnelInterface stringLast Resort Circuit Variable 
- Variable name
- TunnelInterface boolLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- TunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- TunnelInterface intMax Control Connections 
- Set the maximum number of control connections for this TLOC
- TunnelInterface stringMax Control Connections Variable 
- Variable name
- TunnelInterface intNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- TunnelInterface stringNat Refresh Interval Variable 
- Variable name
- TunnelInterface boolPort Hop 
- Disallow port hopping on the tunnel interface
- TunnelInterface stringPort Hop Variable 
- Variable name
- TunnelInterface boolRestrict 
- Restrict this TLOC behavior
- TunnelInterface stringRestrict Variable 
- Variable name
- TunnelInterface intTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- TunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- TunnelInterface boolVbond As Stun Server 
- Put this wan interface in STUN mode only
- TunnelInterface stringVbond As Stun Server Variable 
- Variable name
- TunnelInterface intVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- TunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- TunnelQos stringMode 
- Set tunnel QoS mode
- TunnelQos stringMode Variable 
- Variable name
- Version int
- The version of the Feature
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- bandwidth Integer
- Interface bandwidth capacity, in kbps
- bandwidthDownstream Integer
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream StringVariable 
- Variable name
- bandwidthVariable String
- Variable name
- clockRate String
- Set preference for interface Clock speed
- clockRate StringVariable 
- Variable name
- description String
- The description of the Feature
- encapsulation String
- Configure Encapsulation for interface
- encapsulationVariable String
- Variable name
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceName String
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- interfaceName StringVariable 
- Variable name
- ipMtu Integer
- Set ip mtu
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- ipv4SubnetMask StringVariable 
- Variable name
- ipv6Address String
- Assign IPv6 address
- ipv6AddressVariable String
- Variable name
- mtu Integer
- Interface MTU \n\n, in bytes
- mtuVariable String
- Variable name
- name String
- The name of the Feature
- perTunnel BooleanQos 
- Per-tunnel Qos
- perTunnel BooleanQos Aggregator 
- Per-tunnel QoS Aggregator
- perTunnel StringQos Aggregator Variable 
- Variable name
- perTunnel StringQos Variable 
- Variable name
- qosShaping IntegerRate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- qosShaping StringRate Variable 
- Variable name
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Integer
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tlocExtension String
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelInterface Boolean
- Tunnel Interface
- tunnelInterface BooleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface StringAllow All Variable 
- Variable name
- tunnelInterface BooleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface StringAllow Bfd Variable 
- Variable name
- tunnelInterface BooleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface StringAllow Bgp Variable 
- Variable name
- tunnelInterface BooleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface StringAllow Dhcp Variable 
- Variable name
- tunnelInterface BooleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface StringAllow Dns Variable 
- Variable name
- tunnelInterface BooleanAllow Https 
- Allow/Deny Https
- tunnelInterface StringAllow Https Variable 
- Variable name
- tunnelInterface BooleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface StringAllow Icmp Variable 
- Variable name
- tunnelInterface BooleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface StringAllow Netconf Variable 
- Variable name
- tunnelInterface BooleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface StringAllow Ntp Variable 
- Variable name
- tunnelInterface BooleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface StringAllow Ospf Variable 
- Variable name
- tunnelInterface BooleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface StringAllow Snmp Variable 
- Variable name
- tunnelInterface BooleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface StringAllow Ssh Variable 
- Variable name
- tunnelInterface BooleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface StringAllow Stun Variable 
- Variable name
- tunnelInterface StringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface StringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface BooleanBorder 
- Set TLOC as border TLOC
- tunnelInterface StringBorder Variable 
- Variable name
- tunnelInterface StringCarrier 
- Set carrier for TLOC
- tunnelInterface StringCarrier Variable 
- Variable name
- tunnelInterface BooleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface StringClear Dont Fragment Variable 
- Variable name
- tunnelInterface BooleanClear Network Broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- tunnelInterface StringClear Network Broadcast Variable 
- Variable name
- tunnelInterface StringColor 
- Set color for TLOC
- tunnelInterface StringColor Variable 
- Variable name
- tunnelInterface List<GetEncapsulations Transport Wan Vpn Interface T1E1Serial Feature Tunnel Interface Encapsulation> 
- Encapsulation for TLOC
- tunnelInterface StringExclude Controller Group List Variable 
- Variable name
- tunnelInterface List<Integer>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list
- tunnelInterface IntegerGroups 
- List of groups
- tunnelInterface StringGroups Variable 
- Variable name
- tunnelInterface IntegerHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface StringHello Interval Variable 
- Variable name
- tunnelInterface IntegerHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface StringHello Tolerance Variable 
- Variable name
- tunnelInterface BooleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface StringLast Resort Circuit Variable 
- Variable name
- tunnelInterface BooleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface StringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface IntegerMax Control Connections 
- Set the maximum number of control connections for this TLOC
- tunnelInterface StringMax Control Connections Variable 
- Variable name
- tunnelInterface IntegerNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface StringNat Refresh Interval Variable 
- Variable name
- tunnelInterface BooleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface StringPort Hop Variable 
- Variable name
- tunnelInterface BooleanRestrict 
- Restrict this TLOC behavior
- tunnelInterface StringRestrict Variable 
- Variable name
- tunnelInterface IntegerTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface StringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface BooleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface StringVbond As Stun Server Variable 
- Variable name
- tunnelInterface IntegerVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface StringVmanage Connection Preference Variable 
- Variable name
- tunnelQos StringMode 
- Set tunnel QoS mode
- tunnelQos StringMode Variable 
- Variable name
- version Integer
- The version of the Feature
- aclIpv4Egress stringFeature Id 
- aclIpv4Ingress stringFeature Id 
- aclIpv6Egress stringFeature Id 
- aclIpv6Ingress stringFeature Id 
- bandwidth number
- Interface bandwidth capacity, in kbps
- bandwidthDownstream number
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream stringVariable 
- Variable name
- bandwidthVariable string
- Variable name
- clockRate string
- Set preference for interface Clock speed
- clockRate stringVariable 
- Variable name
- description string
- The description of the Feature
- encapsulation string
- Configure Encapsulation for interface
- encapsulationVariable string
- Variable name
- featureProfile stringId 
- Feature Profile ID
- id string
- The id of the Feature
- interfaceName string
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- interfaceName stringVariable 
- Variable name
- ipMtu number
- Set ip mtu
- ipMtu stringVariable 
- Variable name
- ipv4Address string
- ipv4AddressVariable string
- Variable name
- ipv4SubnetMask string
- ipv4SubnetMask stringVariable 
- Variable name
- ipv6Address string
- Assign IPv6 address
- ipv6AddressVariable string
- Variable name
- mtu number
- Interface MTU \n\n, in bytes
- mtuVariable string
- Variable name
- name string
- The name of the Feature
- perTunnel booleanQos 
- Per-tunnel Qos
- perTunnel booleanQos Aggregator 
- Per-tunnel QoS Aggregator
- perTunnel stringQos Aggregator Variable 
- Variable name
- perTunnel stringQos Variable 
- Variable name
- qosShaping numberRate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- qosShaping stringRate Variable 
- Variable name
- shutdown boolean
- Administrative state
- shutdownVariable string
- Variable name
- tcpMss number
- TCP MSS on SYN packets, in bytes
- tcpMss stringVariable 
- Variable name
- tlocExtension string
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension stringVariable 
- Variable name
- transportWan stringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelInterface boolean
- Tunnel Interface
- tunnelInterface booleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface stringAllow All Variable 
- Variable name
- tunnelInterface booleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface stringAllow Bfd Variable 
- Variable name
- tunnelInterface booleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface stringAllow Bgp Variable 
- Variable name
- tunnelInterface booleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface stringAllow Dhcp Variable 
- Variable name
- tunnelInterface booleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface stringAllow Dns Variable 
- Variable name
- tunnelInterface booleanAllow Https 
- Allow/Deny Https
- tunnelInterface stringAllow Https Variable 
- Variable name
- tunnelInterface booleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface stringAllow Icmp Variable 
- Variable name
- tunnelInterface booleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface stringAllow Netconf Variable 
- Variable name
- tunnelInterface booleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface stringAllow Ntp Variable 
- Variable name
- tunnelInterface booleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface stringAllow Ospf Variable 
- Variable name
- tunnelInterface booleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface stringAllow Snmp Variable 
- Variable name
- tunnelInterface booleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface stringAllow Ssh Variable 
- Variable name
- tunnelInterface booleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface stringAllow Stun Variable 
- Variable name
- tunnelInterface stringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface stringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface booleanBorder 
- Set TLOC as border TLOC
- tunnelInterface stringBorder Variable 
- Variable name
- tunnelInterface stringCarrier 
- Set carrier for TLOC
- tunnelInterface stringCarrier Variable 
- Variable name
- tunnelInterface booleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface stringClear Dont Fragment Variable 
- Variable name
- tunnelInterface booleanClear Network Broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- tunnelInterface stringClear Network Broadcast Variable 
- Variable name
- tunnelInterface stringColor 
- Set color for TLOC
- tunnelInterface stringColor Variable 
- Variable name
- tunnelInterface GetEncapsulations Transport Wan Vpn Interface T1E1Serial Feature Tunnel Interface Encapsulation[] 
- Encapsulation for TLOC
- tunnelInterface stringExclude Controller Group List Variable 
- Variable name
- tunnelInterface number[]Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list
- tunnelInterface numberGroups 
- List of groups
- tunnelInterface stringGroups Variable 
- Variable name
- tunnelInterface numberHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface stringHello Interval Variable 
- Variable name
- tunnelInterface numberHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface stringHello Tolerance Variable 
- Variable name
- tunnelInterface booleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface stringLast Resort Circuit Variable 
- Variable name
- tunnelInterface booleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface stringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface numberMax Control Connections 
- Set the maximum number of control connections for this TLOC
- tunnelInterface stringMax Control Connections Variable 
- Variable name
- tunnelInterface numberNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface stringNat Refresh Interval Variable 
- Variable name
- tunnelInterface booleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface stringPort Hop Variable 
- Variable name
- tunnelInterface booleanRestrict 
- Restrict this TLOC behavior
- tunnelInterface stringRestrict Variable 
- Variable name
- tunnelInterface numberTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface stringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface booleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface stringVbond As Stun Server Variable 
- Variable name
- tunnelInterface numberVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface stringVmanage Connection Preference Variable 
- Variable name
- tunnelQos stringMode 
- Set tunnel QoS mode
- tunnelQos stringMode Variable 
- Variable name
- version number
- The version of the Feature
- acl_ipv4_ stregress_ feature_ id 
- acl_ipv4_ stringress_ feature_ id 
- acl_ipv6_ stregress_ feature_ id 
- acl_ipv6_ stringress_ feature_ id 
- bandwidth int
- Interface bandwidth capacity, in kbps
- bandwidth_downstream int
- Interface downstream bandwidth capacity, in kbps
- bandwidth_downstream_ strvariable 
- Variable name
- bandwidth_variable str
- Variable name
- clock_rate str
- Set preference for interface Clock speed
- clock_rate_ strvariable 
- Variable name
- description str
- The description of the Feature
- encapsulation str
- Configure Encapsulation for interface
- encapsulation_variable str
- Variable name
- feature_profile_ strid 
- Feature Profile ID
- id str
- The id of the Feature
- interface_name str
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- interface_name_ strvariable 
- Variable name
- ip_mtu int
- Set ip mtu
- ip_mtu_ strvariable 
- Variable name
- ipv4_address str
- ipv4_address_ strvariable 
- Variable name
- ipv4_subnet_ strmask 
- ipv4_subnet_ strmask_ variable 
- Variable name
- ipv6_address str
- Assign IPv6 address
- ipv6_address_ strvariable 
- Variable name
- mtu int
- Interface MTU \n\n, in bytes
- mtu_variable str
- Variable name
- name str
- The name of the Feature
- per_tunnel_ boolqos 
- Per-tunnel Qos
- per_tunnel_ boolqos_ aggregator 
- Per-tunnel QoS Aggregator
- per_tunnel_ strqos_ aggregator_ variable 
- Variable name
- per_tunnel_ strqos_ variable 
- Variable name
- qos_shaping_ intrate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- qos_shaping_ strrate_ variable 
- Variable name
- shutdown bool
- Administrative state
- shutdown_variable str
- Variable name
- 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
- transport_wan_ strvpn_ feature_ id 
- Transport WAN VPN Feature ID
- tunnel_interface bool
- Tunnel Interface
- 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_ 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_ boolclear_ network_ broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- tunnel_interface_ strclear_ network_ broadcast_ variable 
- Variable name
- tunnel_interface_ strcolor 
- Set color for TLOC
- tunnel_interface_ strcolor_ variable 
- Variable name
- tunnel_interface_ Sequence[Getencapsulations Transport Wan Vpn Interface T1E1Serial 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_ 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 
- Set the maximum number of control connections for this TLOC
- 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_ boolport_ hop 
- Disallow port hopping on the tunnel interface
- tunnel_interface_ strport_ hop_ variable 
- Variable name
- tunnel_interface_ boolrestrict 
- Restrict this TLOC behavior
- tunnel_interface_ strrestrict_ 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
- aclIpv4Egress StringFeature Id 
- aclIpv4Ingress StringFeature Id 
- aclIpv6Egress StringFeature Id 
- aclIpv6Ingress StringFeature Id 
- bandwidth Number
- Interface bandwidth capacity, in kbps
- bandwidthDownstream Number
- Interface downstream bandwidth capacity, in kbps
- bandwidthDownstream StringVariable 
- Variable name
- bandwidthVariable String
- Variable name
- clockRate String
- Set preference for interface Clock speed
- clockRate StringVariable 
- Variable name
- description String
- The description of the Feature
- encapsulation String
- Configure Encapsulation for interface
- encapsulationVariable String
- Variable name
- featureProfile StringId 
- Feature Profile ID
- id String
- The id of the Feature
- interfaceName String
- Serial Interface Name - slot/subslot/port:channel-group for T1/E1, slot/subslot/port for NIM-1T
- interfaceName StringVariable 
- Variable name
- ipMtu Number
- Set ip mtu
- ipMtu StringVariable 
- Variable name
- ipv4Address String
- ipv4AddressVariable String
- Variable name
- ipv4SubnetMask String
- ipv4SubnetMask StringVariable 
- Variable name
- ipv6Address String
- Assign IPv6 address
- ipv6AddressVariable String
- Variable name
- mtu Number
- Interface MTU \n\n, in bytes
- mtuVariable String
- Variable name
- name String
- The name of the Feature
- perTunnel BooleanQos 
- Per-tunnel Qos
- perTunnel BooleanQos Aggregator 
- Per-tunnel QoS Aggregator
- perTunnel StringQos Aggregator Variable 
- Variable name
- perTunnel StringQos Variable 
- Variable name
- qosShaping NumberRate 
- 1ge interfaces: [0..1000000]kbps; 10ge interfaces: [0..10000000]kbps
- qosShaping StringRate Variable 
- Variable name
- shutdown Boolean
- Administrative state
- shutdownVariable String
- Variable name
- tcpMss Number
- TCP MSS on SYN packets, in bytes
- tcpMss StringVariable 
- Variable name
- tlocExtension String
- Extends a local TLOC to a remote node only for vpn 0
- tlocExtension StringVariable 
- Variable name
- transportWan StringVpn Feature Id 
- Transport WAN VPN Feature ID
- tunnelInterface Boolean
- Tunnel Interface
- tunnelInterface BooleanAllow All 
- Allow all traffic. Overrides all other allow-service options if allow-service all is set
- tunnelInterface StringAllow All Variable 
- Variable name
- tunnelInterface BooleanAllow Bfd 
- Allow/Deny BFD
- tunnelInterface StringAllow Bfd Variable 
- Variable name
- tunnelInterface BooleanAllow Bgp 
- Allow/deny BGP
- tunnelInterface StringAllow Bgp Variable 
- Variable name
- tunnelInterface BooleanAllow Dhcp 
- Allow/Deny DHCP
- tunnelInterface StringAllow Dhcp Variable 
- Variable name
- tunnelInterface BooleanAllow Dns 
- Allow/Deny DNS
- tunnelInterface StringAllow Dns Variable 
- Variable name
- tunnelInterface BooleanAllow Https 
- Allow/Deny Https
- tunnelInterface StringAllow Https Variable 
- Variable name
- tunnelInterface BooleanAllow Icmp 
- Allow/Deny ICMP
- tunnelInterface StringAllow Icmp Variable 
- Variable name
- tunnelInterface BooleanAllow Netconf 
- Allow/Deny NETCONF
- tunnelInterface StringAllow Netconf Variable 
- Variable name
- tunnelInterface BooleanAllow Ntp 
- Allow/Deny NTP
- tunnelInterface StringAllow Ntp Variable 
- Variable name
- tunnelInterface BooleanAllow Ospf 
- Allow/Deny OSPF
- tunnelInterface StringAllow Ospf Variable 
- Variable name
- tunnelInterface BooleanAllow Snmp 
- Allow/Deny SNMP
- tunnelInterface StringAllow Snmp Variable 
- Variable name
- tunnelInterface BooleanAllow Ssh 
- Allow/Deny SSH
- tunnelInterface StringAllow Ssh Variable 
- Variable name
- tunnelInterface BooleanAllow Stun 
- Allow/Deny STUN
- tunnelInterface StringAllow Stun Variable 
- Variable name
- tunnelInterface StringBind Loopback Tunnel 
- Bind loopback tunnel interface to a physical interface
- tunnelInterface StringBind Loopback Tunnel Variable 
- Variable name
- tunnelInterface BooleanBorder 
- Set TLOC as border TLOC
- tunnelInterface StringBorder Variable 
- Variable name
- tunnelInterface StringCarrier 
- Set carrier for TLOC
- tunnelInterface StringCarrier Variable 
- Variable name
- tunnelInterface BooleanClear Dont Fragment 
- Enable clear dont fragment (Currently Only SDWAN Tunnel Interface)
- tunnelInterface StringClear Dont Fragment Variable 
- Variable name
- tunnelInterface BooleanClear Network Broadcast 
- Accept and respond to network-prefix-directed broadcasts)
- tunnelInterface StringClear Network Broadcast Variable 
- Variable name
- tunnelInterface StringColor 
- Set color for TLOC
- tunnelInterface StringColor Variable 
- Variable name
- tunnelInterface List<Property Map>Encapsulations 
- Encapsulation for TLOC
- tunnelInterface StringExclude Controller Group List Variable 
- Variable name
- tunnelInterface List<Number>Exclude Controller Group Lists 
- Exclude the following controller groups defined in this list
- tunnelInterface NumberGroups 
- List of groups
- tunnelInterface StringGroups Variable 
- Variable name
- tunnelInterface NumberHello Interval 
- Set time period of control hello packets \n\n milli seconds
- tunnelInterface StringHello Interval Variable 
- Variable name
- tunnelInterface NumberHello Tolerance 
- Set tolerance of control hello packets \n\n seconds
- tunnelInterface StringHello Tolerance Variable 
- Variable name
- tunnelInterface BooleanLast Resort Circuit 
- Set TLOC as last resort
- tunnelInterface StringLast Resort Circuit Variable 
- Variable name
- tunnelInterface BooleanLow Bandwidth Link 
- Set the interface as a low-bandwidth circuit
- tunnelInterface StringLow Bandwidth Link Variable 
- Variable name
- tunnelInterface NumberMax Control Connections 
- Set the maximum number of control connections for this TLOC
- tunnelInterface StringMax Control Connections Variable 
- Variable name
- tunnelInterface NumberNat Refresh Interval 
- Set time period of nat refresh packets \n\n seconds
- tunnelInterface StringNat Refresh Interval Variable 
- Variable name
- tunnelInterface BooleanPort Hop 
- Disallow port hopping on the tunnel interface
- tunnelInterface StringPort Hop Variable 
- Variable name
- tunnelInterface BooleanRestrict 
- Restrict this TLOC behavior
- tunnelInterface StringRestrict Variable 
- Variable name
- tunnelInterface NumberTunnel Tcp Mss 
- Tunnel TCP MSS on SYN packets, in bytes
- tunnelInterface StringTunnel Tcp Mss Variable 
- Variable name
- tunnelInterface BooleanVbond As Stun Server 
- Put this wan interface in STUN mode only
- tunnelInterface StringVbond As Stun Server Variable 
- Variable name
- tunnelInterface NumberVmanage Connection Preference 
- Set interface preference for control connection to vManage \n\n
- tunnelInterface StringVmanage Connection Preference Variable 
- Variable name
- tunnelQos StringMode 
- Set tunnel QoS mode
- tunnelQos StringMode Variable 
- Variable name
- version Number
- The version of the Feature
Supporting Types
GetTransportWanVpnInterfaceT1E1SerialFeatureTunnelInterfaceEncapsulation         
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- PreferenceVariable string
- Variable name
- Weight int
- Set weight for TLOC
- WeightVariable string
- Variable name
- Encapsulation string
- Encapsulation
- Preference int
- Set preference for TLOC
- PreferenceVariable string
- Variable name
- Weight int
- Set weight for TLOC
- WeightVariable string
- Variable name
- encapsulation String
- Encapsulation
- preference Integer
- Set preference for TLOC
- preferenceVariable String
- Variable name
- weight Integer
- Set weight for TLOC
- weightVariable String
- Variable name
- encapsulation string
- Encapsulation
- preference number
- Set preference for TLOC
- preferenceVariable string
- Variable name
- weight number
- Set weight for TLOC
- weightVariable 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
- preferenceVariable String
- Variable name
- weight Number
- Set weight for TLOC
- weightVariable String
- Variable name
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
