vxlan集中式网关实验案例

vxlan集中式网关实验案例_第1张图片

Underlay通过OSPF互联,Overlay通过BGP EVPN建立隧道

Leaf1和Leaf2分别与Spine建立IBGP邻居关系,Spine作为路由反射器RR

Leaf1,Leaf2和Spine分别使用lo b接口地址作为VTEP地址和BGP EVPN源地址

Leaf1的VTEP地址为1.1.1.1/32
Leaf2的VTEP地址为2.2.2.2/32
Spine的VTEP地址为3.3.3.3/32

Vlan10的子网范围为192.168.10.0/24,网关地址为192.168.10.1
Vlan20的子网范围为192.168.20.0/24,网关地址为192.168.20.1
网关部署在spine上

Vlan10子网对应的VNI为10
Vlan20子网对应的VNI为20

双方Vlan20子网设备(PC2和PC3)能够直接通过Leaf1和Leaf2建立的VXLAN隧道通信

vlan10中的pc可以ping通vlan 20中的pc,vlan10和20的网关都在最上面核心上面。

spine配置:

e-overlay enable

bridge-domain 10
vxlan vni 10
e
route-distinguisher 10:3
-target 10:3 export-extcommunity
-target 10:1 import-extcommunity

bridge-domain 20
vxlan vni 20
e
route-distinguisher 20:3
-target 20:3 export-extcommunity
-target 20:2 import-extcommunity

interface Vbdif10
ip address 192.168.10.1 255.255.255.0

interface Vbdif20
ip address 192.168.20.1

你可能感兴趣的:(网络工程,服务器,运维)