1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. InterfaceTunnel
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.InterfaceTunnel

Explore with Pulumi AI

iosxe logo
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

    This resource can manage the Interface Tunnel configuration.

    Example Usage

    Coming soon!

    Coming soon!

    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.iosxe.InterfaceTunnel;
    import com.pulumi.iosxe.InterfaceTunnelArgs;
    import com.pulumi.iosxe.inputs.InterfaceTunnelHelperAddressArgs;
    import com.pulumi.iosxe.inputs.InterfaceTunnelIpv6AddressArgs;
    import com.pulumi.iosxe.inputs.InterfaceTunnelIpv6LinkLocalAddressArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new InterfaceTunnel("example", InterfaceTunnelArgs.builder()        
                .arpTimeout(300)
                .cryptoIpsecDfBit("clear")
                .description("My Interface Description")
                .helperAddresses(InterfaceTunnelHelperAddressArgs.builder()
                    .address("10.10.10.10")
                    .global(false)
                    .vrf("VRF1")
                    .build())
                .ipAccessGroupIn("1")
                .ipAccessGroupInEnable(true)
                .ipAccessGroupOut("1")
                .ipAccessGroupOutEnable(true)
                .ipDhcpRelaySourceInterface("Loopback100")
                .ipProxyArp(false)
                .ipRedirects(false)
                .ipUnreachables(false)
                .ipv4Address("10.1.1.1")
                .ipv4AddressMask("255.255.255.0")
                .ipv6AddressDhcp(true)
                .ipv6Addresses(InterfaceTunnelIpv6AddressArgs.builder()
                    .eui_64(true)
                    .prefix("2005:DB8::/32")
                    .build())
                .ipv6Enable(true)
                .ipv6LinkLocalAddresses(InterfaceTunnelIpv6LinkLocalAddressArgs.builder()
                    .address("fe80::9656:d028:8652:66ba")
                    .link_local(true)
                    .build())
                .ipv6Mtu(1300)
                .ipv6NdRaSuppressAll(true)
                .shutdown(false)
                .tunnelDestinationIpv4("2.2.2.2")
                .vrfForwarding("VRF1")
                .build());
    
        }
    }
    

    Coming soon!

    Coming soon!

    resources:
      example:
        type: iosxe:InterfaceTunnel
        properties:
          arpTimeout: 300
          cryptoIpsecDfBit: clear
          description: My Interface Description
          helperAddresses:
            - address: 10.10.10.10
              global: false
              vrf: VRF1
          ipAccessGroupIn: '1'
          ipAccessGroupInEnable: true
          ipAccessGroupOut: '1'
          ipAccessGroupOutEnable: true
          ipDhcpRelaySourceInterface: Loopback100
          ipProxyArp: false
          ipRedirects: false
          ipUnreachables: false
          ipv4Address: 10.1.1.1
          ipv4AddressMask: 255.255.255.0
          ipv6AddressDhcp: true
          ipv6Addresses:
            - eui_64: true
              prefix: 2005:DB8::/32
          ipv6Enable: true
          ipv6LinkLocalAddresses:
            - address: fe80::9656:d028:8652:66ba
              link_local: true
          ipv6Mtu: 1300
          ipv6NdRaSuppressAll: true
          shutdown: false
          tunnelDestinationIpv4: 2.2.2.2
          vrfForwarding: VRF1
    

    Create InterfaceTunnel Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new InterfaceTunnel(name: string, args?: InterfaceTunnelArgs, opts?: CustomResourceOptions);
    @overload
    def InterfaceTunnel(resource_name: str,
                        args: Optional[InterfaceTunnelArgs] = None,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def InterfaceTunnel(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        arp_timeout: Optional[int] = None,
                        bfd_echo: Optional[bool] = None,
                        bfd_enable: Optional[bool] = None,
                        bfd_interval: Optional[int] = None,
                        bfd_interval_min_rx: Optional[int] = None,
                        bfd_interval_multiplier: Optional[int] = None,
                        bfd_local_address: Optional[str] = None,
                        bfd_template: Optional[str] = None,
                        crypto_ipsec_df_bit: Optional[str] = None,
                        delete_mode: Optional[str] = None,
                        description: Optional[str] = None,
                        device: Optional[str] = None,
                        helper_addresses: Optional[Sequence[InterfaceTunnelHelperAddressArgs]] = None,
                        ip_access_group_in: Optional[str] = None,
                        ip_access_group_in_enable: Optional[bool] = None,
                        ip_access_group_out: Optional[str] = None,
                        ip_access_group_out_enable: Optional[bool] = None,
                        ip_dhcp_relay_source_interface: Optional[str] = None,
                        ip_proxy_arp: Optional[bool] = None,
                        ip_redirects: Optional[bool] = None,
                        ip_unreachables: Optional[bool] = None,
                        ipv4_address: Optional[str] = None,
                        ipv4_address_mask: Optional[str] = None,
                        ipv6_address_autoconfig_default: Optional[bool] = None,
                        ipv6_address_dhcp: Optional[bool] = None,
                        ipv6_addresses: Optional[Sequence[InterfaceTunnelIpv6AddressArgs]] = None,
                        ipv6_enable: Optional[bool] = None,
                        ipv6_link_local_addresses: Optional[Sequence[InterfaceTunnelIpv6LinkLocalAddressArgs]] = None,
                        ipv6_mtu: Optional[int] = None,
                        ipv6_nd_ra_suppress_all: Optional[bool] = None,
                        name: Optional[int] = None,
                        shutdown: Optional[bool] = None,
                        tunnel_destination_ipv4: Optional[str] = None,
                        tunnel_mode_ipsec_ipv4: Optional[bool] = None,
                        tunnel_protection_ipsec_profile: Optional[str] = None,
                        tunnel_source: Optional[str] = None,
                        unnumbered: Optional[str] = None,
                        vrf_forwarding: Optional[str] = None)
    func NewInterfaceTunnel(ctx *Context, name string, args *InterfaceTunnelArgs, opts ...ResourceOption) (*InterfaceTunnel, error)
    public InterfaceTunnel(string name, InterfaceTunnelArgs? args = null, CustomResourceOptions? opts = null)
    public InterfaceTunnel(String name, InterfaceTunnelArgs args)
    public InterfaceTunnel(String name, InterfaceTunnelArgs args, CustomResourceOptions options)
    
    type: iosxe:InterfaceTunnel
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args InterfaceTunnelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InterfaceTunnelArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InterfaceTunnelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InterfaceTunnelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InterfaceTunnelArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var interfaceTunnelResource = new Iosxe.InterfaceTunnel("interfaceTunnelResource", new()
    {
        ArpTimeout = 0,
        BfdEcho = false,
        BfdEnable = false,
        BfdInterval = 0,
        BfdIntervalMinRx = 0,
        BfdIntervalMultiplier = 0,
        BfdLocalAddress = "string",
        BfdTemplate = "string",
        CryptoIpsecDfBit = "string",
        DeleteMode = "string",
        Description = "string",
        Device = "string",
        HelperAddresses = new[]
        {
            new Iosxe.Inputs.InterfaceTunnelHelperAddressArgs
            {
                Address = "string",
                Global = false,
                Vrf = "string",
            },
        },
        IpAccessGroupIn = "string",
        IpAccessGroupInEnable = false,
        IpAccessGroupOut = "string",
        IpAccessGroupOutEnable = false,
        IpDhcpRelaySourceInterface = "string",
        IpProxyArp = false,
        IpRedirects = false,
        IpUnreachables = false,
        Ipv4Address = "string",
        Ipv4AddressMask = "string",
        Ipv6AddressAutoconfigDefault = false,
        Ipv6AddressDhcp = false,
        Ipv6Addresses = new[]
        {
            new Iosxe.Inputs.InterfaceTunnelIpv6AddressArgs
            {
                Prefix = "string",
                Eui64 = false,
            },
        },
        Ipv6Enable = false,
        Ipv6LinkLocalAddresses = new[]
        {
            new Iosxe.Inputs.InterfaceTunnelIpv6LinkLocalAddressArgs
            {
                Address = "string",
                LinkLocal = false,
            },
        },
        Ipv6Mtu = 0,
        Ipv6NdRaSuppressAll = false,
        Name = 0,
        Shutdown = false,
        TunnelDestinationIpv4 = "string",
        TunnelModeIpsecIpv4 = false,
        TunnelProtectionIpsecProfile = "string",
        TunnelSource = "string",
        Unnumbered = "string",
        VrfForwarding = "string",
    });
    
    example, err := iosxe.NewInterfaceTunnel(ctx, "interfaceTunnelResource", &iosxe.InterfaceTunnelArgs{
    	ArpTimeout:            pulumi.Int(0),
    	BfdEcho:               pulumi.Bool(false),
    	BfdEnable:             pulumi.Bool(false),
    	BfdInterval:           pulumi.Int(0),
    	BfdIntervalMinRx:      pulumi.Int(0),
    	BfdIntervalMultiplier: pulumi.Int(0),
    	BfdLocalAddress:       pulumi.String("string"),
    	BfdTemplate:           pulumi.String("string"),
    	CryptoIpsecDfBit:      pulumi.String("string"),
    	DeleteMode:            pulumi.String("string"),
    	Description:           pulumi.String("string"),
    	Device:                pulumi.String("string"),
    	HelperAddresses: iosxe.InterfaceTunnelHelperAddressArray{
    		&iosxe.InterfaceTunnelHelperAddressArgs{
    			Address: pulumi.String("string"),
    			Global:  pulumi.Bool(false),
    			Vrf:     pulumi.String("string"),
    		},
    	},
    	IpAccessGroupIn:              pulumi.String("string"),
    	IpAccessGroupInEnable:        pulumi.Bool(false),
    	IpAccessGroupOut:             pulumi.String("string"),
    	IpAccessGroupOutEnable:       pulumi.Bool(false),
    	IpDhcpRelaySourceInterface:   pulumi.String("string"),
    	IpProxyArp:                   pulumi.Bool(false),
    	IpRedirects:                  pulumi.Bool(false),
    	IpUnreachables:               pulumi.Bool(false),
    	Ipv4Address:                  pulumi.String("string"),
    	Ipv4AddressMask:              pulumi.String("string"),
    	Ipv6AddressAutoconfigDefault: pulumi.Bool(false),
    	Ipv6AddressDhcp:              pulumi.Bool(false),
    	Ipv6Addresses: iosxe.InterfaceTunnelIpv6AddressArray{
    		&iosxe.InterfaceTunnelIpv6AddressArgs{
    			Prefix: pulumi.String("string"),
    			Eui64:  pulumi.Bool(false),
    		},
    	},
    	Ipv6Enable: pulumi.Bool(false),
    	Ipv6LinkLocalAddresses: iosxe.InterfaceTunnelIpv6LinkLocalAddressArray{
    		&iosxe.InterfaceTunnelIpv6LinkLocalAddressArgs{
    			Address:   pulumi.String("string"),
    			LinkLocal: pulumi.Bool(false),
    		},
    	},
    	Ipv6Mtu:                      pulumi.Int(0),
    	Ipv6NdRaSuppressAll:          pulumi.Bool(false),
    	Name:                         pulumi.Int(0),
    	Shutdown:                     pulumi.Bool(false),
    	TunnelDestinationIpv4:        pulumi.String("string"),
    	TunnelModeIpsecIpv4:          pulumi.Bool(false),
    	TunnelProtectionIpsecProfile: pulumi.String("string"),
    	TunnelSource:                 pulumi.String("string"),
    	Unnumbered:                   pulumi.String("string"),
    	VrfForwarding:                pulumi.String("string"),
    })
    
    var interfaceTunnelResource = new InterfaceTunnel("interfaceTunnelResource", InterfaceTunnelArgs.builder()
        .arpTimeout(0)
        .bfdEcho(false)
        .bfdEnable(false)
        .bfdInterval(0)
        .bfdIntervalMinRx(0)
        .bfdIntervalMultiplier(0)
        .bfdLocalAddress("string")
        .bfdTemplate("string")
        .cryptoIpsecDfBit("string")
        .deleteMode("string")
        .description("string")
        .device("string")
        .helperAddresses(InterfaceTunnelHelperAddressArgs.builder()
            .address("string")
            .global(false)
            .vrf("string")
            .build())
        .ipAccessGroupIn("string")
        .ipAccessGroupInEnable(false)
        .ipAccessGroupOut("string")
        .ipAccessGroupOutEnable(false)
        .ipDhcpRelaySourceInterface("string")
        .ipProxyArp(false)
        .ipRedirects(false)
        .ipUnreachables(false)
        .ipv4Address("string")
        .ipv4AddressMask("string")
        .ipv6AddressAutoconfigDefault(false)
        .ipv6AddressDhcp(false)
        .ipv6Addresses(InterfaceTunnelIpv6AddressArgs.builder()
            .prefix("string")
            .eui64(false)
            .build())
        .ipv6Enable(false)
        .ipv6LinkLocalAddresses(InterfaceTunnelIpv6LinkLocalAddressArgs.builder()
            .address("string")
            .linkLocal(false)
            .build())
        .ipv6Mtu(0)
        .ipv6NdRaSuppressAll(false)
        .name(0)
        .shutdown(false)
        .tunnelDestinationIpv4("string")
        .tunnelModeIpsecIpv4(false)
        .tunnelProtectionIpsecProfile("string")
        .tunnelSource("string")
        .unnumbered("string")
        .vrfForwarding("string")
        .build());
    
    interface_tunnel_resource = iosxe.InterfaceTunnel("interfaceTunnelResource",
        arp_timeout=0,
        bfd_echo=False,
        bfd_enable=False,
        bfd_interval=0,
        bfd_interval_min_rx=0,
        bfd_interval_multiplier=0,
        bfd_local_address="string",
        bfd_template="string",
        crypto_ipsec_df_bit="string",
        delete_mode="string",
        description="string",
        device="string",
        helper_addresses=[iosxe.InterfaceTunnelHelperAddressArgs(
            address="string",
            global_=False,
            vrf="string",
        )],
        ip_access_group_in="string",
        ip_access_group_in_enable=False,
        ip_access_group_out="string",
        ip_access_group_out_enable=False,
        ip_dhcp_relay_source_interface="string",
        ip_proxy_arp=False,
        ip_redirects=False,
        ip_unreachables=False,
        ipv4_address="string",
        ipv4_address_mask="string",
        ipv6_address_autoconfig_default=False,
        ipv6_address_dhcp=False,
        ipv6_addresses=[iosxe.InterfaceTunnelIpv6AddressArgs(
            prefix="string",
            eui64=False,
        )],
        ipv6_enable=False,
        ipv6_link_local_addresses=[iosxe.InterfaceTunnelIpv6LinkLocalAddressArgs(
            address="string",
            link_local=False,
        )],
        ipv6_mtu=0,
        ipv6_nd_ra_suppress_all=False,
        name=0,
        shutdown=False,
        tunnel_destination_ipv4="string",
        tunnel_mode_ipsec_ipv4=False,
        tunnel_protection_ipsec_profile="string",
        tunnel_source="string",
        unnumbered="string",
        vrf_forwarding="string")
    
    const interfaceTunnelResource = new iosxe.InterfaceTunnel("interfaceTunnelResource", {
        arpTimeout: 0,
        bfdEcho: false,
        bfdEnable: false,
        bfdInterval: 0,
        bfdIntervalMinRx: 0,
        bfdIntervalMultiplier: 0,
        bfdLocalAddress: "string",
        bfdTemplate: "string",
        cryptoIpsecDfBit: "string",
        deleteMode: "string",
        description: "string",
        device: "string",
        helperAddresses: [{
            address: "string",
            global: false,
            vrf: "string",
        }],
        ipAccessGroupIn: "string",
        ipAccessGroupInEnable: false,
        ipAccessGroupOut: "string",
        ipAccessGroupOutEnable: false,
        ipDhcpRelaySourceInterface: "string",
        ipProxyArp: false,
        ipRedirects: false,
        ipUnreachables: false,
        ipv4Address: "string",
        ipv4AddressMask: "string",
        ipv6AddressAutoconfigDefault: false,
        ipv6AddressDhcp: false,
        ipv6Addresses: [{
            prefix: "string",
            eui64: false,
        }],
        ipv6Enable: false,
        ipv6LinkLocalAddresses: [{
            address: "string",
            linkLocal: false,
        }],
        ipv6Mtu: 0,
        ipv6NdRaSuppressAll: false,
        name: 0,
        shutdown: false,
        tunnelDestinationIpv4: "string",
        tunnelModeIpsecIpv4: false,
        tunnelProtectionIpsecProfile: "string",
        tunnelSource: "string",
        unnumbered: "string",
        vrfForwarding: "string",
    });
    
    type: iosxe:InterfaceTunnel
    properties:
        arpTimeout: 0
        bfdEcho: false
        bfdEnable: false
        bfdInterval: 0
        bfdIntervalMinRx: 0
        bfdIntervalMultiplier: 0
        bfdLocalAddress: string
        bfdTemplate: string
        cryptoIpsecDfBit: string
        deleteMode: string
        description: string
        device: string
        helperAddresses:
            - address: string
              global: false
              vrf: string
        ipAccessGroupIn: string
        ipAccessGroupInEnable: false
        ipAccessGroupOut: string
        ipAccessGroupOutEnable: false
        ipDhcpRelaySourceInterface: string
        ipProxyArp: false
        ipRedirects: false
        ipUnreachables: false
        ipv4Address: string
        ipv4AddressMask: string
        ipv6AddressAutoconfigDefault: false
        ipv6AddressDhcp: false
        ipv6Addresses:
            - eui64: false
              prefix: string
        ipv6Enable: false
        ipv6LinkLocalAddresses:
            - address: string
              linkLocal: false
        ipv6Mtu: 0
        ipv6NdRaSuppressAll: false
        name: 0
        shutdown: false
        tunnelDestinationIpv4: string
        tunnelModeIpsecIpv4: false
        tunnelProtectionIpsecProfile: string
        tunnelSource: string
        unnumbered: string
        vrfForwarding: string
    

    InterfaceTunnel Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The InterfaceTunnel resource accepts the following input properties:

    ArpTimeout int
    Set ARP cache timeout - Range: 0-2147483
    BfdEcho bool
    Use echo adjunct as bfd detection mechanism
    BfdEnable bool
    Enable BFD under the interface
    BfdInterval int
    • Range: 50-9999
    BfdIntervalMinRx int
    Minimum receive interval capability - Range: 50-9999
    BfdIntervalMultiplier int
    Multiplier value used to compute holddown - Range: 3-50
    BfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    BfdTemplate string
    BFD template
    CryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Description string
    Interface specific description
    Device string
    A device name from the provider configuration.
    HelperAddresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelHelperAddress>
    Specify a destination address for UDP broadcasts
    IpAccessGroupIn string
    IpAccessGroupInEnable bool
    inbound packets
    IpAccessGroupOut string
    IpAccessGroupOutEnable bool
    outbound packets
    IpDhcpRelaySourceInterface string
    Set source interface for relayed messages
    IpProxyArp bool
    Enable proxy ARP
    IpRedirects bool
    Enable sending ICMP Redirect messages
    IpUnreachables bool
    Enable sending ICMP Unreachable messages
    Ipv4Address string
    Ipv4AddressMask string
    Ipv6AddressAutoconfigDefault bool
    Insert default route
    Ipv6AddressDhcp bool
    Obtain IPv6 address from DHCP server
    Ipv6Addresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelIpv6Address>
    Ipv6Enable bool
    Enable IPv6 on interface
    Ipv6LinkLocalAddresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelIpv6LinkLocalAddress>
    Ipv6Mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    Ipv6NdRaSuppressAll bool
    Suppress all IPv6 RA
    Name int
    • Range: 0-4294967295
    Shutdown bool
    Shutdown the selected interface
    TunnelDestinationIpv4 string
    ip address or host name
    TunnelModeIpsecIpv4 bool
    over IPv4
    TunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    TunnelSource string
    source of tunnel packets
    Unnumbered string
    Enable IP processing without an explicit address
    VrfForwarding string
    Configure forwarding table
    ArpTimeout int
    Set ARP cache timeout - Range: 0-2147483
    BfdEcho bool
    Use echo adjunct as bfd detection mechanism
    BfdEnable bool
    Enable BFD under the interface
    BfdInterval int
    • Range: 50-9999
    BfdIntervalMinRx int
    Minimum receive interval capability - Range: 50-9999
    BfdIntervalMultiplier int
    Multiplier value used to compute holddown - Range: 3-50
    BfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    BfdTemplate string
    BFD template
    CryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Description string
    Interface specific description
    Device string
    A device name from the provider configuration.
    HelperAddresses []InterfaceTunnelHelperAddressArgs
    Specify a destination address for UDP broadcasts
    IpAccessGroupIn string
    IpAccessGroupInEnable bool
    inbound packets
    IpAccessGroupOut string
    IpAccessGroupOutEnable bool
    outbound packets
    IpDhcpRelaySourceInterface string
    Set source interface for relayed messages
    IpProxyArp bool
    Enable proxy ARP
    IpRedirects bool
    Enable sending ICMP Redirect messages
    IpUnreachables bool
    Enable sending ICMP Unreachable messages
    Ipv4Address string
    Ipv4AddressMask string
    Ipv6AddressAutoconfigDefault bool
    Insert default route
    Ipv6AddressDhcp bool
    Obtain IPv6 address from DHCP server
    Ipv6Addresses []InterfaceTunnelIpv6AddressArgs
    Ipv6Enable bool
    Enable IPv6 on interface
    Ipv6LinkLocalAddresses []InterfaceTunnelIpv6LinkLocalAddressArgs
    Ipv6Mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    Ipv6NdRaSuppressAll bool
    Suppress all IPv6 RA
    Name int
    • Range: 0-4294967295
    Shutdown bool
    Shutdown the selected interface
    TunnelDestinationIpv4 string
    ip address or host name
    TunnelModeIpsecIpv4 bool
    over IPv4
    TunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    TunnelSource string
    source of tunnel packets
    Unnumbered string
    Enable IP processing without an explicit address
    VrfForwarding string
    Configure forwarding table
    arpTimeout Integer
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho Boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable Boolean
    Enable BFD under the interface
    bfdInterval Integer
    • Range: 50-9999
    bfdIntervalMinRx Integer
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier Integer
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress String
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate String
    BFD template
    cryptoIpsecDfBit String
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description String
    Interface specific description
    device String
    A device name from the provider configuration.
    helperAddresses List<InterfaceTunnelHelperAddress>
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn String
    ipAccessGroupInEnable Boolean
    inbound packets
    ipAccessGroupOut String
    ipAccessGroupOutEnable Boolean
    outbound packets
    ipDhcpRelaySourceInterface String
    Set source interface for relayed messages
    ipProxyArp Boolean
    Enable proxy ARP
    ipRedirects Boolean
    Enable sending ICMP Redirect messages
    ipUnreachables Boolean
    Enable sending ICMP Unreachable messages
    ipv4Address String
    ipv4AddressMask String
    ipv6AddressAutoconfigDefault Boolean
    Insert default route
    ipv6AddressDhcp Boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses List<InterfaceTunnelIpv6Address>
    ipv6Enable Boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses List<InterfaceTunnelIpv6LinkLocalAddress>
    ipv6Mtu Integer
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll Boolean
    Suppress all IPv6 RA
    name Integer
    • Range: 0-4294967295
    shutdown Boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 String
    ip address or host name
    tunnelModeIpsecIpv4 Boolean
    over IPv4
    tunnelProtectionIpsecProfile String
    Determine the ipsec policy profile to use.
    tunnelSource String
    source of tunnel packets
    unnumbered String
    Enable IP processing without an explicit address
    vrfForwarding String
    Configure forwarding table
    arpTimeout number
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable boolean
    Enable BFD under the interface
    bfdInterval number
    • Range: 50-9999
    bfdIntervalMinRx number
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier number
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate string
    BFD template
    cryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description string
    Interface specific description
    device string
    A device name from the provider configuration.
    helperAddresses InterfaceTunnelHelperAddress[]
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn string
    ipAccessGroupInEnable boolean
    inbound packets
    ipAccessGroupOut string
    ipAccessGroupOutEnable boolean
    outbound packets
    ipDhcpRelaySourceInterface string
    Set source interface for relayed messages
    ipProxyArp boolean
    Enable proxy ARP
    ipRedirects boolean
    Enable sending ICMP Redirect messages
    ipUnreachables boolean
    Enable sending ICMP Unreachable messages
    ipv4Address string
    ipv4AddressMask string
    ipv6AddressAutoconfigDefault boolean
    Insert default route
    ipv6AddressDhcp boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses InterfaceTunnelIpv6Address[]
    ipv6Enable boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses InterfaceTunnelIpv6LinkLocalAddress[]
    ipv6Mtu number
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll boolean
    Suppress all IPv6 RA
    name number
    • Range: 0-4294967295
    shutdown boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 string
    ip address or host name
    tunnelModeIpsecIpv4 boolean
    over IPv4
    tunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    tunnelSource string
    source of tunnel packets
    unnumbered string
    Enable IP processing without an explicit address
    vrfForwarding string
    Configure forwarding table
    arp_timeout int
    Set ARP cache timeout - Range: 0-2147483
    bfd_echo bool
    Use echo adjunct as bfd detection mechanism
    bfd_enable bool
    Enable BFD under the interface
    bfd_interval int
    • Range: 50-9999
    bfd_interval_min_rx int
    Minimum receive interval capability - Range: 50-9999
    bfd_interval_multiplier int
    Multiplier value used to compute holddown - Range: 3-50
    bfd_local_address str
    The Source IP address to be used for BFD sessions over this interface.
    bfd_template str
    BFD template
    crypto_ipsec_df_bit str
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    delete_mode str
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description str
    Interface specific description
    device str
    A device name from the provider configuration.
    helper_addresses Sequence[InterfaceTunnelHelperAddressArgs]
    Specify a destination address for UDP broadcasts
    ip_access_group_in str
    ip_access_group_in_enable bool
    inbound packets
    ip_access_group_out str
    ip_access_group_out_enable bool
    outbound packets
    ip_dhcp_relay_source_interface str
    Set source interface for relayed messages
    ip_proxy_arp bool
    Enable proxy ARP
    ip_redirects bool
    Enable sending ICMP Redirect messages
    ip_unreachables bool
    Enable sending ICMP Unreachable messages
    ipv4_address str
    ipv4_address_mask str
    ipv6_address_autoconfig_default bool
    Insert default route
    ipv6_address_dhcp bool
    Obtain IPv6 address from DHCP server
    ipv6_addresses Sequence[InterfaceTunnelIpv6AddressArgs]
    ipv6_enable bool
    Enable IPv6 on interface
    ipv6_link_local_addresses Sequence[InterfaceTunnelIpv6LinkLocalAddressArgs]
    ipv6_mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6_nd_ra_suppress_all bool
    Suppress all IPv6 RA
    name int
    • Range: 0-4294967295
    shutdown bool
    Shutdown the selected interface
    tunnel_destination_ipv4 str
    ip address or host name
    tunnel_mode_ipsec_ipv4 bool
    over IPv4
    tunnel_protection_ipsec_profile str
    Determine the ipsec policy profile to use.
    tunnel_source str
    source of tunnel packets
    unnumbered str
    Enable IP processing without an explicit address
    vrf_forwarding str
    Configure forwarding table
    arpTimeout Number
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho Boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable Boolean
    Enable BFD under the interface
    bfdInterval Number
    • Range: 50-9999
    bfdIntervalMinRx Number
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier Number
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress String
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate String
    BFD template
    cryptoIpsecDfBit String
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description String
    Interface specific description
    device String
    A device name from the provider configuration.
    helperAddresses List<Property Map>
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn String
    ipAccessGroupInEnable Boolean
    inbound packets
    ipAccessGroupOut String
    ipAccessGroupOutEnable Boolean
    outbound packets
    ipDhcpRelaySourceInterface String
    Set source interface for relayed messages
    ipProxyArp Boolean
    Enable proxy ARP
    ipRedirects Boolean
    Enable sending ICMP Redirect messages
    ipUnreachables Boolean
    Enable sending ICMP Unreachable messages
    ipv4Address String
    ipv4AddressMask String
    ipv6AddressAutoconfigDefault Boolean
    Insert default route
    ipv6AddressDhcp Boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses List<Property Map>
    ipv6Enable Boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses List<Property Map>
    ipv6Mtu Number
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll Boolean
    Suppress all IPv6 RA
    name Number
    • Range: 0-4294967295
    shutdown Boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 String
    ip address or host name
    tunnelModeIpsecIpv4 Boolean
    over IPv4
    tunnelProtectionIpsecProfile String
    Determine the ipsec policy profile to use.
    tunnelSource String
    source of tunnel packets
    unnumbered String
    Enable IP processing without an explicit address
    vrfForwarding String
    Configure forwarding table

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing InterfaceTunnel Resource

    Get an existing InterfaceTunnel resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InterfaceTunnelState, opts?: CustomResourceOptions): InterfaceTunnel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arp_timeout: Optional[int] = None,
            bfd_echo: Optional[bool] = None,
            bfd_enable: Optional[bool] = None,
            bfd_interval: Optional[int] = None,
            bfd_interval_min_rx: Optional[int] = None,
            bfd_interval_multiplier: Optional[int] = None,
            bfd_local_address: Optional[str] = None,
            bfd_template: Optional[str] = None,
            crypto_ipsec_df_bit: Optional[str] = None,
            delete_mode: Optional[str] = None,
            description: Optional[str] = None,
            device: Optional[str] = None,
            helper_addresses: Optional[Sequence[InterfaceTunnelHelperAddressArgs]] = None,
            ip_access_group_in: Optional[str] = None,
            ip_access_group_in_enable: Optional[bool] = None,
            ip_access_group_out: Optional[str] = None,
            ip_access_group_out_enable: Optional[bool] = None,
            ip_dhcp_relay_source_interface: Optional[str] = None,
            ip_proxy_arp: Optional[bool] = None,
            ip_redirects: Optional[bool] = None,
            ip_unreachables: Optional[bool] = None,
            ipv4_address: Optional[str] = None,
            ipv4_address_mask: Optional[str] = None,
            ipv6_address_autoconfig_default: Optional[bool] = None,
            ipv6_address_dhcp: Optional[bool] = None,
            ipv6_addresses: Optional[Sequence[InterfaceTunnelIpv6AddressArgs]] = None,
            ipv6_enable: Optional[bool] = None,
            ipv6_link_local_addresses: Optional[Sequence[InterfaceTunnelIpv6LinkLocalAddressArgs]] = None,
            ipv6_mtu: Optional[int] = None,
            ipv6_nd_ra_suppress_all: Optional[bool] = None,
            name: Optional[int] = None,
            shutdown: Optional[bool] = None,
            tunnel_destination_ipv4: Optional[str] = None,
            tunnel_mode_ipsec_ipv4: Optional[bool] = None,
            tunnel_protection_ipsec_profile: Optional[str] = None,
            tunnel_source: Optional[str] = None,
            unnumbered: Optional[str] = None,
            vrf_forwarding: Optional[str] = None) -> InterfaceTunnel
    func GetInterfaceTunnel(ctx *Context, name string, id IDInput, state *InterfaceTunnelState, opts ...ResourceOption) (*InterfaceTunnel, error)
    public static InterfaceTunnel Get(string name, Input<string> id, InterfaceTunnelState? state, CustomResourceOptions? opts = null)
    public static InterfaceTunnel get(String name, Output<String> id, InterfaceTunnelState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ArpTimeout int
    Set ARP cache timeout - Range: 0-2147483
    BfdEcho bool
    Use echo adjunct as bfd detection mechanism
    BfdEnable bool
    Enable BFD under the interface
    BfdInterval int
    • Range: 50-9999
    BfdIntervalMinRx int
    Minimum receive interval capability - Range: 50-9999
    BfdIntervalMultiplier int
    Multiplier value used to compute holddown - Range: 3-50
    BfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    BfdTemplate string
    BFD template
    CryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Description string
    Interface specific description
    Device string
    A device name from the provider configuration.
    HelperAddresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelHelperAddress>
    Specify a destination address for UDP broadcasts
    IpAccessGroupIn string
    IpAccessGroupInEnable bool
    inbound packets
    IpAccessGroupOut string
    IpAccessGroupOutEnable bool
    outbound packets
    IpDhcpRelaySourceInterface string
    Set source interface for relayed messages
    IpProxyArp bool
    Enable proxy ARP
    IpRedirects bool
    Enable sending ICMP Redirect messages
    IpUnreachables bool
    Enable sending ICMP Unreachable messages
    Ipv4Address string
    Ipv4AddressMask string
    Ipv6AddressAutoconfigDefault bool
    Insert default route
    Ipv6AddressDhcp bool
    Obtain IPv6 address from DHCP server
    Ipv6Addresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelIpv6Address>
    Ipv6Enable bool
    Enable IPv6 on interface
    Ipv6LinkLocalAddresses List<Lbrlabs.PulumiPackage.Iosxe.Inputs.InterfaceTunnelIpv6LinkLocalAddress>
    Ipv6Mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    Ipv6NdRaSuppressAll bool
    Suppress all IPv6 RA
    Name int
    • Range: 0-4294967295
    Shutdown bool
    Shutdown the selected interface
    TunnelDestinationIpv4 string
    ip address or host name
    TunnelModeIpsecIpv4 bool
    over IPv4
    TunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    TunnelSource string
    source of tunnel packets
    Unnumbered string
    Enable IP processing without an explicit address
    VrfForwarding string
    Configure forwarding table
    ArpTimeout int
    Set ARP cache timeout - Range: 0-2147483
    BfdEcho bool
    Use echo adjunct as bfd detection mechanism
    BfdEnable bool
    Enable BFD under the interface
    BfdInterval int
    • Range: 50-9999
    BfdIntervalMinRx int
    Minimum receive interval capability - Range: 50-9999
    BfdIntervalMultiplier int
    Multiplier value used to compute holddown - Range: 3-50
    BfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    BfdTemplate string
    BFD template
    CryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    DeleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    Description string
    Interface specific description
    Device string
    A device name from the provider configuration.
    HelperAddresses []InterfaceTunnelHelperAddressArgs
    Specify a destination address for UDP broadcasts
    IpAccessGroupIn string
    IpAccessGroupInEnable bool
    inbound packets
    IpAccessGroupOut string
    IpAccessGroupOutEnable bool
    outbound packets
    IpDhcpRelaySourceInterface string
    Set source interface for relayed messages
    IpProxyArp bool
    Enable proxy ARP
    IpRedirects bool
    Enable sending ICMP Redirect messages
    IpUnreachables bool
    Enable sending ICMP Unreachable messages
    Ipv4Address string
    Ipv4AddressMask string
    Ipv6AddressAutoconfigDefault bool
    Insert default route
    Ipv6AddressDhcp bool
    Obtain IPv6 address from DHCP server
    Ipv6Addresses []InterfaceTunnelIpv6AddressArgs
    Ipv6Enable bool
    Enable IPv6 on interface
    Ipv6LinkLocalAddresses []InterfaceTunnelIpv6LinkLocalAddressArgs
    Ipv6Mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    Ipv6NdRaSuppressAll bool
    Suppress all IPv6 RA
    Name int
    • Range: 0-4294967295
    Shutdown bool
    Shutdown the selected interface
    TunnelDestinationIpv4 string
    ip address or host name
    TunnelModeIpsecIpv4 bool
    over IPv4
    TunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    TunnelSource string
    source of tunnel packets
    Unnumbered string
    Enable IP processing without an explicit address
    VrfForwarding string
    Configure forwarding table
    arpTimeout Integer
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho Boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable Boolean
    Enable BFD under the interface
    bfdInterval Integer
    • Range: 50-9999
    bfdIntervalMinRx Integer
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier Integer
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress String
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate String
    BFD template
    cryptoIpsecDfBit String
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description String
    Interface specific description
    device String
    A device name from the provider configuration.
    helperAddresses List<InterfaceTunnelHelperAddress>
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn String
    ipAccessGroupInEnable Boolean
    inbound packets
    ipAccessGroupOut String
    ipAccessGroupOutEnable Boolean
    outbound packets
    ipDhcpRelaySourceInterface String
    Set source interface for relayed messages
    ipProxyArp Boolean
    Enable proxy ARP
    ipRedirects Boolean
    Enable sending ICMP Redirect messages
    ipUnreachables Boolean
    Enable sending ICMP Unreachable messages
    ipv4Address String
    ipv4AddressMask String
    ipv6AddressAutoconfigDefault Boolean
    Insert default route
    ipv6AddressDhcp Boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses List<InterfaceTunnelIpv6Address>
    ipv6Enable Boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses List<InterfaceTunnelIpv6LinkLocalAddress>
    ipv6Mtu Integer
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll Boolean
    Suppress all IPv6 RA
    name Integer
    • Range: 0-4294967295
    shutdown Boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 String
    ip address or host name
    tunnelModeIpsecIpv4 Boolean
    over IPv4
    tunnelProtectionIpsecProfile String
    Determine the ipsec policy profile to use.
    tunnelSource String
    source of tunnel packets
    unnumbered String
    Enable IP processing without an explicit address
    vrfForwarding String
    Configure forwarding table
    arpTimeout number
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable boolean
    Enable BFD under the interface
    bfdInterval number
    • Range: 50-9999
    bfdIntervalMinRx number
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier number
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress string
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate string
    BFD template
    cryptoIpsecDfBit string
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode string
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description string
    Interface specific description
    device string
    A device name from the provider configuration.
    helperAddresses InterfaceTunnelHelperAddress[]
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn string
    ipAccessGroupInEnable boolean
    inbound packets
    ipAccessGroupOut string
    ipAccessGroupOutEnable boolean
    outbound packets
    ipDhcpRelaySourceInterface string
    Set source interface for relayed messages
    ipProxyArp boolean
    Enable proxy ARP
    ipRedirects boolean
    Enable sending ICMP Redirect messages
    ipUnreachables boolean
    Enable sending ICMP Unreachable messages
    ipv4Address string
    ipv4AddressMask string
    ipv6AddressAutoconfigDefault boolean
    Insert default route
    ipv6AddressDhcp boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses InterfaceTunnelIpv6Address[]
    ipv6Enable boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses InterfaceTunnelIpv6LinkLocalAddress[]
    ipv6Mtu number
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll boolean
    Suppress all IPv6 RA
    name number
    • Range: 0-4294967295
    shutdown boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 string
    ip address or host name
    tunnelModeIpsecIpv4 boolean
    over IPv4
    tunnelProtectionIpsecProfile string
    Determine the ipsec policy profile to use.
    tunnelSource string
    source of tunnel packets
    unnumbered string
    Enable IP processing without an explicit address
    vrfForwarding string
    Configure forwarding table
    arp_timeout int
    Set ARP cache timeout - Range: 0-2147483
    bfd_echo bool
    Use echo adjunct as bfd detection mechanism
    bfd_enable bool
    Enable BFD under the interface
    bfd_interval int
    • Range: 50-9999
    bfd_interval_min_rx int
    Minimum receive interval capability - Range: 50-9999
    bfd_interval_multiplier int
    Multiplier value used to compute holddown - Range: 3-50
    bfd_local_address str
    The Source IP address to be used for BFD sessions over this interface.
    bfd_template str
    BFD template
    crypto_ipsec_df_bit str
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    delete_mode str
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description str
    Interface specific description
    device str
    A device name from the provider configuration.
    helper_addresses Sequence[InterfaceTunnelHelperAddressArgs]
    Specify a destination address for UDP broadcasts
    ip_access_group_in str
    ip_access_group_in_enable bool
    inbound packets
    ip_access_group_out str
    ip_access_group_out_enable bool
    outbound packets
    ip_dhcp_relay_source_interface str
    Set source interface for relayed messages
    ip_proxy_arp bool
    Enable proxy ARP
    ip_redirects bool
    Enable sending ICMP Redirect messages
    ip_unreachables bool
    Enable sending ICMP Unreachable messages
    ipv4_address str
    ipv4_address_mask str
    ipv6_address_autoconfig_default bool
    Insert default route
    ipv6_address_dhcp bool
    Obtain IPv6 address from DHCP server
    ipv6_addresses Sequence[InterfaceTunnelIpv6AddressArgs]
    ipv6_enable bool
    Enable IPv6 on interface
    ipv6_link_local_addresses Sequence[InterfaceTunnelIpv6LinkLocalAddressArgs]
    ipv6_mtu int
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6_nd_ra_suppress_all bool
    Suppress all IPv6 RA
    name int
    • Range: 0-4294967295
    shutdown bool
    Shutdown the selected interface
    tunnel_destination_ipv4 str
    ip address or host name
    tunnel_mode_ipsec_ipv4 bool
    over IPv4
    tunnel_protection_ipsec_profile str
    Determine the ipsec policy profile to use.
    tunnel_source str
    source of tunnel packets
    unnumbered str
    Enable IP processing without an explicit address
    vrf_forwarding str
    Configure forwarding table
    arpTimeout Number
    Set ARP cache timeout - Range: 0-2147483
    bfdEcho Boolean
    Use echo adjunct as bfd detection mechanism
    bfdEnable Boolean
    Enable BFD under the interface
    bfdInterval Number
    • Range: 50-9999
    bfdIntervalMinRx Number
    Minimum receive interval capability - Range: 50-9999
    bfdIntervalMultiplier Number
    Multiplier value used to compute holddown - Range: 3-50
    bfdLocalAddress String
    The Source IP address to be used for BFD sessions over this interface.
    bfdTemplate String
    BFD template
    cryptoIpsecDfBit String
    Handling of encapsulated DF bit. - Choices: clear, copy, set
    deleteMode String
    Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
    description String
    Interface specific description
    device String
    A device name from the provider configuration.
    helperAddresses List<Property Map>
    Specify a destination address for UDP broadcasts
    ipAccessGroupIn String
    ipAccessGroupInEnable Boolean
    inbound packets
    ipAccessGroupOut String
    ipAccessGroupOutEnable Boolean
    outbound packets
    ipDhcpRelaySourceInterface String
    Set source interface for relayed messages
    ipProxyArp Boolean
    Enable proxy ARP
    ipRedirects Boolean
    Enable sending ICMP Redirect messages
    ipUnreachables Boolean
    Enable sending ICMP Unreachable messages
    ipv4Address String
    ipv4AddressMask String
    ipv6AddressAutoconfigDefault Boolean
    Insert default route
    ipv6AddressDhcp Boolean
    Obtain IPv6 address from DHCP server
    ipv6Addresses List<Property Map>
    ipv6Enable Boolean
    Enable IPv6 on interface
    ipv6LinkLocalAddresses List<Property Map>
    ipv6Mtu Number
    Set IPv6 Maximum Transmission Unit - Range: 1280-9976
    ipv6NdRaSuppressAll Boolean
    Suppress all IPv6 RA
    name Number
    • Range: 0-4294967295
    shutdown Boolean
    Shutdown the selected interface
    tunnelDestinationIpv4 String
    ip address or host name
    tunnelModeIpsecIpv4 Boolean
    over IPv4
    tunnelProtectionIpsecProfile String
    Determine the ipsec policy profile to use.
    tunnelSource String
    source of tunnel packets
    unnumbered String
    Enable IP processing without an explicit address
    vrfForwarding String
    Configure forwarding table

    Supporting Types

    InterfaceTunnelHelperAddress, InterfaceTunnelHelperAddressArgs

    Address string
    Global bool
    Vrf string
    Address string
    Global bool
    Vrf string
    address String
    global Boolean
    vrf String
    address string
    global boolean
    vrf string
    address str
    global_ bool
    vrf str
    address String
    global Boolean
    vrf String

    InterfaceTunnelIpv6Address, InterfaceTunnelIpv6AddressArgs

    Prefix string
    Eui64 bool
    Prefix string
    Eui64 bool
    prefix String
    eui64 Boolean
    prefix string
    eui64 boolean
    prefix str
    eui64 bool
    prefix String
    eui64 Boolean

    InterfaceTunnelIpv6LinkLocalAddress, InterfaceTunnelIpv6LinkLocalAddressArgs

    Address string
    LinkLocal bool
    Address string
    LinkLocal bool
    address String
    linkLocal Boolean
    address string
    linkLocal boolean
    address String
    linkLocal Boolean

    Import

     $ pulumi import iosxe:index/interfaceTunnel:InterfaceTunnel example "Cisco-IOS-XE-native:native/interface/Tunnel=90"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    iosxe lbrlabs/pulumi-iosxe
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the iosxe Terraform Provider.
    iosxe logo
    Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs