Page MenuHomeVyOS Platform

Disable VXLAN bridge learning and enable neigh_suppress when using EVPN
Closed, ResolvedPublicFEATURE REQUEST

Description

In FRR's guide, we could consider to stop bridge learning on VXLAN interface to let EVPN control it.
And enable neigh_suppress to cut ARP broadcast traffic into VXLAN tunnel.
https://docs.frrouting.org/en/latest/evpn.html#linux-interface-configuration

ip link set vni100 type bridge_slave neigh_suppress on learning off

Details

Difficulty level
Normal (likely a few hours)
Version
-
Why the issue appeared?
Will be filled on close
Is it a breaking change?
Behavior change
Issue type
Improvement (missing useful functionality)

Event Timeline

Is vni100 the vxlan interface or the bridge interface?

vni100 should be the bridge slave here.
So those options could be in the same level of "allowed-vlan" and "native-vlan"

c-po changed the task status from Open to In progress.Oct 28 2023, 6:49 AM
c-po triaged this task as Low priority.
c-po changed Difficulty level from Unknown (require assessment) to Normal (likely a few hours).
c-po changed Is it a breaking change? from Unspecified (possibly destroys the router) to Behavior change.
c-po changed Issue type from Unspecified (please specify) to Improvement (missing useful functionality).

PR for 1.5 current https://github.com/vyos/vyos-1x/pull/2413 which will then also be backported to 1.4

c-po moved this task from Need Triage to Finished on the VyOS 1.4 Sagitta board.

@c-po It seems you only implement the "type bridge_slave neigh_suppress on"
And "type bridge_slave learning on" is not implemented in this PR.
Will you add this also?
Thank you