[svc]linux上vxlan实战

Posted 毛台

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[svc]linux上vxlan实战相关的知识,希望对你有一定的参考价值。

linux vxlan实现2台机器的通往段ip互通

- 在n1上
ip l a vxlan0 type vxlan id 42 dstport 4789 remote 192.168.1.12 local 192.168.1.11 dev eth0
ip -d l show dev vxlan0
ip a a 12.1.1.1/24 dev vxlan0
ip l s vxlan0 up
ip route   # 去12.1.1.0/24的数据丢给了vxlan0口


- 在n2上
ip l a vxlan0 type vxlan id 42 dstport 4789 remote 192.168.1.11 local 192.168.1.12 dev eth0
ip -d l show dev vxlan0
ip a a 12.1.1.2/24 dev vxlan0
ip l s vxlan0 up
ip route
[root@n1 ~]# bridge fdb
00:00:00:00:00:00 dev vxlan0 dst 192.168.1.12 via eth0 self permanent

https://github.com/lannyMa/scripts/blob/master/pkgs/vxlan.pcap

vxlan多播实现多台互通

- n1
ip link add vxlan0 type vxlan \\
    id 42 \\
    dstport 4789 \\
    group 239.1.1.1 \\
    dev eth0

ip addr add 12.1.1.1/24 dev vxlan0
ip link set vxlan0 up



-n2
ip link add vxlan0 type vxlan \\
    id 42 \\
    dstport 4789 \\
    group 239.1.1.1 \\
    dev eth0

ip addr add 12.1.1.2/24 dev vxlan0
ip link set vxlan0 up


-n3
ip link add vxlan0 type vxlan \\
    id 42 \\
    dstport 4789 \\
    group 239.1.1.1 \\
    dev eth0

ip addr add 12.1.1.3/24 dev vxlan0
ip link set vxlan0 up

以上是关于[svc]linux上vxlan实战的主要内容,如果未能解决你的问题,请参考以下文章

VXLAN学习之路-结合VRF在Linux中实践VXLAN网络

SDN实战:Build a VXLAN Tunnel by Making Python-based API Calls for DCI

Linux Vxlan

基于Linux的点对点VXLAN通信

VXLAN与Linux服务架构

VXLAN与Linux服务架构