Static VXLAN tunnels are simple/easy deployment but comes with associated limitations.
Here, it seems to me that the dual remote VTEP set-up that you tried, simply created a L2 loop, as VLANs are trunked between core01 and core02.
Native split-horizon rule on VXLAN is performed between VXLAN tunnels ending on same switch. When broadcast arrives on core01 from VXLAN sourced by edge01, this broadcast is forwarded to regular trunked ports, to core02. Core02 forward this back to edge01, as there is no way this packet can be identified as coming from edge01.
1) The redundancy can be set-up by merging core01 and core02 into a single VSF stack.
2) spanning-tree over VXLAN is not supported.
3) You may think about other alternative like using an anycast IP from core01 and core02 for VXLAN interface, that anycast IP being advertised to edge01 with different cost (like OSPF cost), so that you may have a active core01 VTEP and a standby core02 VTEP. This anycast IP being the one used on edge01 as unique remote VTEP IP. But it does not prevent L2 loop from core02 to edge01.
VSF VTEP or VSX VTEP are, for time being, the only redundancy options we can propose.
For roadmap please contact your local Aruba contact.
------------------------------
Vincent Giles
------------------------------
Original Message:
Sent: Mar 21, 2022 12:34 PM
From: David King
Subject: Redundant VTEPs for L2 VxLAN setup
This is a simplified diagram of my network:
Edge-01:
vlan 30,96interface vxlan 1 source ip 10.3.0.1 no shutdown vni 30 vlan 30 vtep-peer 10.1.0.1 vni 96 vlan 96 vtep-peer 10.1.0.1interface 1/1/47 no shutdown no routing vlan access 30interface 1/1/48 no shutdown no routing vlan acces 96
Everything works. On Edge-01 I can even change the vtep-peers to be 10.2.0.1 to connect to Core-02 instead of Core-01. What I want to be able to do is connect to BOTH so that I have a redundant connection. As soon as I change the configuration on Edge-01 to connect to both cores the clients connected to 1/1/47 and 1/1/48 on Edge-01 start getting excessive packet loss. How do I get redundant vtep-peers in a situation like this?
Edge-01 (with redundant vtep-peers):
vlan 30,96interface vxlan 1 source ip 10.3.0.1 no shutdown vni 30 vlan 30 vtep-peer 10.1.0.1 vtep-peer 10.2.0.1 vni 96 vlan 96 vtep-peer 10.1.0.1 vtep-peer 10.2.0.1interface 1/1/47 no shutdown no routing vlan access 30interface 1/1/48 no shutdown no routing vlan acces 96
------------------------------
David King
------------------------------