Has anyone got VXLAN with multicast working? (no EVPN). The configuration should be straightforward. This is the topology:
Based on this example:
https://docs.vyos.io/en/latest/configuration/interfaces/vxlan.html
Configs:
set system host-name SPINE1
set interfaces dummy dum0 address '1.1.1.1/32'
set interfaces ethernet eth1 address '192.168.12.1/24'
set interfaces ethernet eth1 mtu '2000'
set interfaces ethernet eth2 address '192.168.13.1/24'
set interfaces ethernet eth2 mtu '2000'
set protocols ospf area 0 network '1.1.1.1/32'
set protocols ospf area 0 network '192.168.12.0/24'
set protocols ospf area 0 network '192.168.13.0/24'
set protocols ospf interface eth1 network 'point-to-point'
set protocols ospf interface eth2 network 'point-to-point'
set protocols ospf parameters router-id '1.1.1.1'
set protocols pim interface eth1
set protocols pim interface eth2
set protocols pim interface dum0
set protocols pim rp address 1.1.1.1 group '224.0.0.0/4'
set system host-name LEAF1
set interfaces bridge br10 member interface eth2
set interfaces bridge br10 member interface vxlan10
set interfaces ethernet eth1 address '192.168.12.2/24'
set interfaces ethernet eth1 mtu '2000'
set interfaces dummy dum0 address '2.2.2.2/32'
set interfaces vxlan vxlan10 group '239.1.1.1'
set interfaces vxlan vxlan10 source-interface 'dum0'
set interfaces vxlan vxlan10 vni '10010'
set protocols ospf area 0 network '2.2.2.2/32'
set protocols ospf area 0 network '192.168.12.0/24'
set protocols ospf interface eth1 network 'point-to-point'
set protocols ospf parameters router-id '2.2.2.2'
set protocols pim interface eth1
set protocols pim interface dum0
set protocols pim rp address 1.1.1.1 group '224.0.0.0/4'
set system host-name LEAF2
set interfaces bridge br10 member interface eth2
set interfaces bridge br10 member interface vxlan10
set interfaces ethernet eth1 address '192.168.13.3/24'
set interfaces ethernet eth1 mtu '2000'
set interfaces dummy dum0 address '3.3.3.3/32'
set interfaces vxlan vxlan10 group '239.1.1.1'
set interfaces vxlan vxlan10 source-interface 'dum0'
set interfaces vxlan vxlan10 vni '10010'
set protocols ospf area 0 network '3.3.3.3'
set protocols ospf area 0 network '192.168.13.0/24'
set protocols ospf interface eth1 network 'point-to-point'
set protocols ospf parameters router-id '3.3.3.3'
set protocols pim interface eth1
set protocols pim interface dum0
set protocols pim rp address 1.1.1.1 group '224.0.0.0/4'
The endpoints are simple Ubuntu containers with an IP address in the same subnet.
The leafs can reach each other, PIM neighbors are up.
When I send a ping from S1 to the IP of S2, an ARP request is encapsulated with VXLAN and destined to 239.1.1.1.
However, I never see any PIM register or join messages. The leafs never create these. Am I missing anything?