Skip to main content

VxLAN Testing


VxLAN
group-address: Specifies a multicast address in the range of 224.0.1.0 to 239.255.255.255.
source source-address: Specifies a source IP address for multicast VXLAN packets.

Server 1:
=======
ip link add vxlan100 type vxlan id 100 group 239.1.1.1 dev eno3
ip addr add 10.20.1.4/24 dev vxlan100
ip link set vxlan100 up

Server 2:
=======
ip link add vxlan100 type vxlan id 100 group 239.1.1.1 dev eno4
ip addr add 10.20.1.3/24 dev vxlan100
ip link set vxlan100 up

Ping each other, 

Comments