I am trying to set up a very simple multicast VXLAN configuration on CentOS8 and encounter a lack of information on how to do this.
As far as i see, in CentOS8 there are two big changes - an unconditional moving to NM and bridge-utils replacement.
I can not find a configuration analog for these two commands:
Code: Select all
% ip link add vxlan100 type vxlan id 100 dstport 4789 local 10.0.0.1 group 224.0.2.6 dev eno0
% brctl addif br100 vxlan100
nmcli connection add type vxlan id 100 ifname vxlan100 vxlan.ttl 5 vxlan.destination-port 4789 vxlan.local 10.0.0.1 remote 224.0.2.6 ?
Another issue: my bridge always in NO-CARRIER state. I try to add member for br100:
Code: Select all
% nmcli connection add type bridge-slave ifname vxlan100 master br100
There is no problem with this configuration on CentOS7, Debian, and FreeBSD: on these operating systems, setup takes 1 minute.
Are there any examples for VXLAN (multicast, not unicast) + CentOS8? Thank!