CiscoDevNet / terraform-provider-iosxe

Terraform Cisco IOS-XE Provider
https://registry.terraform.io/providers/CiscoDevNet/iosxe
Mozilla Public License 2.0
50 stars 22 forks source link

missing attributes in resource iosxe_interface_tunnel #130

Open thomasnoppe opened 3 months ago

thomasnoppe commented 3 months ago

Hi,

The following attributes are missing in the resource iosxe_interface_tunnel. In the context of ipsec protected tunnels these are important.

ip mtu 1400 tunnel vrf X

kind regards

swarudka commented 2 months ago

Can you please provide complete CLI commands? As MTU support is already added in config.

Sikhi commented 1 month ago
cisco(config-if)#tunnel vrf ?
  WORD          vrf table name
  multiplexing  multiple VRFs multiplexing

cisco(config-if)#tunnel vrf GLOBAL

last line just example with VRF name "GLOBAL" full interface config:

interface Tunnel0
 vrf forwarding client
 ip address 169.254.16.0 255.255.255.254
 tunnel source 172.16.0.0
 tunnel destination 10.128.0.5
 tunnel vrf GLOBAL
end

without this command it's not allow to use source address in vrf. router looking for tunnel source in global table.