您当前的位置:首页 > 电脑百科 > 网络技术 > 网络知识

BGP EVPN方式VXLAN实验

时间:2020-12-23 09:57:07  来源:  作者:

组网需求

企业在不同的数据中心中都拥有自己的VM,服务器1上的VM1属于VLAN 30,服务器2上的VM1属于VLAN 20,服务器1和服务器2位于相同网段。现需要配置通过VXLAN实现相同网段用户通信。

  • 通过配置VXLAN实现相同网段用户通信组网图
BGP EVPN方式VXLAN实验

 

配置思路

采用如下思路配置通过VXLAN实现相同网段用户通信:

  1. 分别配置路由协议,保证网络三层互通。
  2. 分别配置业务接入点实现区分业务流量。
  3. 使用EVPN作VXLAN控制平面功能。
  4. 配置BGP EVPN对等体关系。
  5. 配置EVPN实例。
  6. 配置头端复制功能。

数据准备

为完成此配置例,需准备如下的数据:

  • VM所属的VLAN ID分别是VLAN 20和VLAN 30。
  • 网络中设备互连的接口IP地址。
  • 网络中使用的IGP(Internal Gateway Protocol)路由类型是OSPF(Open Shortest Path First)。
  • 广播域BD 20,30
  • VXLAN网络标识VNI 5020。
  • EVPN实例的RD值为1111:1111,RT值为1111:1111。RD值为2222:2222,RT值为2222:2222。

 

  • 操作步骤
  • Spine1配置

sysname spine1

 

#

evpn-overlay enable

#

interface GE1/0/0

undo portswitch

undo shutdown

ip address 10.1.13.1 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/1

undo portswitch

undo shutdown

ip address 10.1.14.1 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/2

undo portswitch

undo shutdown

ip address 10.1.15.1 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/3

undo portswitch

undo shutdown

ip address 10.1.16.1 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/4

undo portswitch

undo shutdown

ip address 10.1.12.1 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface LoopBack0

ip address 1.1.1.1 255.255.255.255

ospf enable 1 area 0.0.0.0

#

interface Nve1

#

interface NULL0

#

bgp 100

peer 2.2.2.2 as-number 100

peer 2.2.2.2 connect-interface LoopBack0

peer 3.3.3.3 as-number 100

peer 3.3.3.3 connect-interface LoopBack0

peer 4.4.4.4 as-number 100

peer 4.4.4.4 connect-interface LoopBack0

peer 5.5.5.5 as-number 100

peer 5.5.5.5 connect-interface LoopBack0

peer 6.6.6.6 as-number 100

peer 6.6.6.6 connect-interface LoopBack0

#

ipv4-family unicast

undo peer 2.2.2.2 enable

undo peer 3.3.3.3 enable

undo peer 4.4.4.4 enable

undo peer 5.5.5.5 enable

undo peer 6.6.6.6 enable

#

l2vpn-family evpn

undo policy vpn-target

peer 2.2.2.2 enable

peer 2.2.2.2 advertise irb

peer 2.2.2.2 reflect-client

peer 3.3.3.3 enable

peer 3.3.3.3 advertise irb

peer 3.3.3.3 reflect-client

peer 4.4.4.4 enable

peer 4.4.4.4 advertise irb

peer 4.4.4.4 reflect-client

peer 5.5.5.5 enable

peer 5.5.5.5 advertise irb

peer 5.5.5.5 reflect-client

peer 6.6.6.6 enable

peer 6.6.6.6 advertise irb

peer 6.6.6.6 reflect-client

#

ospf 1

area 0.0.0.0

Commit

  • Span2配置

sysname spain2

#

device board 17 board-type CE-MPUB

device board 1 board-type CE-LPUE

#

evpn-overlay enable

#

#

interface GE1/0/0

undo portswitch

undo shutdown

ip address 10.1.23.2 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/1

undo portswitch

undo shutdown

ip address 10.1.24.2 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/2

undo portswitch

undo shutdown

ip address 10.1.25.2 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/3

undo portswitch

undo shutdown

ip address 10.1.26.2 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/4

undo portswitch

undo shutdown

ip address 10.1.12.2 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface LoopBack0

ip address 2.2.2.2 255.255.255.255

ospf enable 1 area 0.0.0.0

#

interface NULL0

#

bgp 100

peer 1.1.1.1 as-number 100

peer 1.1.1.1 connect-interface LoopBack0

peer 3.3.3.3 as-number 100

peer 3.3.3.3 connect-interface LoopBack0

peer 4.4.4.4 as-number 100

peer 4.4.4.4 connect-interface LoopBack0

peer 5.5.5.5 as-number 100

peer 5.5.5.5 connect-interface LoopBack0

peer 6.6.6.6 as-number 100

peer 6.6.6.6 connect-interface LoopBack0

#

ipv4-family unicast

undo peer 1.1.1.1 enable

undo peer 3.3.3.3 enable

undo peer 4.4.4.4 enable

undo peer 5.5.5.5 enable

undo peer 6.6.6.6 enable

#

l2vpn-family evpn

undo policy vpn-target

peer 1.1.1.1 enable

peer 1.1.1.1 advertise irb

peer 1.1.1.1 reflect-client

peer 3.3.3.3 enable

peer 3.3.3.3 advertise irb

peer 3.3.3.3 reflect-client

peer 4.4.4.4 enable

peer 4.4.4.4 advertise irb

peer 4.4.4.4 reflect-client

peer 5.5.5.5 enable

peer 5.5.5.5 advertise irb

peer 5.5.5.5 reflect-client

peer 6.6.6.6 enable

peer 6.6.6.6 advertise irb

peer 6.6.6.6 reflect-client

#

ospf 1

area 0.0.0.0

  • Leaf1配置

sysname leaf1

#

evpn-overlay enable

#

ip vpn-instance vpna

ipv4-family

route-distinguisher 1111:1111

vpn-target 1111:1111 export-extcommunity evpn

vpn-target 1111:1111 import-extcommunity evpn

vxlan vni 5010

#

bridge-domain 10

vxlan vni 10

evpn

route-distinguisher 10:10

vpn-target 1111:1111 export-extcommunity

vpn-target 10:10 import-extcommunity

arp broadcast-suppress mismatch-discard enable

#

#

interface Vbdif10

ip address 10.1.1.1 255.255.255.0

mac-address 00e0-1010-0001

vxlan anycast-gateway enable

arp collect host enable

#

#

interface GE1/0/0

undo portswitch

undo shutdown

ip address 10.1.13.3 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/1

undo portswitch

undo shutdown

ip address 10.1.23.3 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/3.10 mode l2

encapsulation dot1q vid 10

bridge-domain 10

#

#

interface LoopBack0

ip address 3.3.3.3 255.255.255.255

ospf enable 1 area 0.0.0.0

#

interface Nve1

source 3.3.3.3

vni 10 head-end peer-list protocol bgp

#

interface NULL0

#

bgp 100

peer 1.1.1.1 as-number 100

peer 1.1.1.1 connect-interface LoopBack0

peer 2.2.2.2 as-number 100

peer 2.2.2.2 connect-interface LoopBack0

#

ipv4-family unicast

undo peer 1.1.1.1 enable

undo peer 2.2.2.2 enable

#

l2vpn-family evpn

policy vpn-target

peer 1.1.1.1 enable

peer 1.1.1.1 advertise irb

peer 2.2.2.2 enable

peer 2.2.2.2 advertise irb

#

ospf 1

area 0.0.0.0

#

  • Leaf2 配置

#

sysname leaf2

#

evpn-overlay enable

#

ip vpn-instance vpna

ipv4-family

route-distinguisher 1111:1111

vpn-target 1111:1111 export-extcommunity evpn

vpn-target 1111:1111 import-extcommunity

vpn-target 1111:1111 import-extcommunity evpn

vxlan vni 5010

#

ip vpn-instance vpnb

ipv4-family

route-distinguisher 2222:2222

vpn-target 2222:2222 export-extcommunity evpn

vpn-target 2222:2222 import-extcommunity evpn

vxlan vni 5020

#

bridge-domain 20

vxlan vni 20

evpn

route-distinguisher 20:20

vpn-target 20:20 export-extcommunity

vpn-target 1111:1111 export-extcommunity

vpn-target 20:20 import-extcommunity

arp broadcast-suppress mismatch-discard enable

#

bridge-domain 30

vxlan vni 30

evpn

route-distinguisher 30:30

vpn-target 30:30 export-extcommunity

vpn-target 1111:1111 export-extcommunity

vpn-target 30:30 import-extcommunity

arp broadcast-suppress mismatch-discard enable

#

#

interface Vbdif20

ip binding vpn-instance vpna

ip address 20.1.1.1 255.255.255.0

mac-address 00e0-2020-0001

vxlan anycast-gateway enable

arp collect host enable

#

interface Vbdif30

ip binding vpn-instance vpnb

ip address 30.1.1.1 255.255.255.0

mac-address 00e0-3030-0001

vxlan anycast-gateway enable

arp collect host enable

#

interface GE1/0/0

undo portswitch

undo shutdown

ip address 10.1.14.4 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/1

undo portswitch

undo shutdown

ip address 10.1.24.4 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

#

interface GE1/0/2.20 mode l2

encapsulation dot1q vid 20

bridge-domain 20

#

interface GE1/0/2.30 mode l2

encapsulation dot1q vid 30

bridge-domain 30

#

i#

interface LoopBack0

ip address 4.4.4.4 255.255.255.255

ospf enable 1 area 0.0.0.0

#

interface Nve1

source 4.4.4.4

vni 20 head-end peer-list protocol bgp

vni 30 head-end peer-list protocol bgp

#

interface NULL0

#

bgp 100

peer 1.1.1.1 as-number 100

peer 1.1.1.1 connect-interface LoopBack0

peer 2.2.2.2 as-number 100

peer 2.2.2.2 connect-interface LoopBack0

#

ipv4-family unicast

undo peer 1.1.1.1 enable

undo peer 2.2.2.2 enable

#

l2vpn-family evpn

policy vpn-target

peer 1.1.1.1 enable

peer 1.1.1.1 advertise irb

peer 2.2.2.2 enable

peer 2.2.2.2 advertise irb

#

ospf 1

area 0.0.0.0

#

  • Leaf3配置

sysname leaf3

#

device board 17 board-type CE-MPUB

device board 1 board-type CE-LPUE

#

vlan batch 30

#

evpn-overlay enable

#

ip vpn-instance vpna

ipv4-family

route-distinguisher 1111:1111

vpn-target 1111:1111 export-extcommunity evpn

vpn-target 1111:1111 import-extcommunity evpn

vxlan vni 5010

#

ip vpn-instance vpnb

ipv4-family

route-distinguisher 2222:2222

vpn-target 2222:2222 export-extcommunity evpn

vpn-target 2222:2222 import-extcommunity evpn

vxlan vni 5020

#

bridge-domain 20

vxlan vni 20

evpn

route-distinguisher 20:20

vpn-target 20:20 export-extcommunity

vpn-target 1111:1111 export-extcommunity

vpn-target 20:20 import-extcommunity

arp broadcast-suppress mismatch-discard enable

#

bridge-domain 30

vxlan vni 30

evpn

route-distinguisher 30:30

vpn-target 30:30 export-extcommunity

vpn-target 1111:1111 export-extcommunity

vpn-target 30:30 import-extcommunity

arp broadcast-suppress mismatch-discard enable

#

#

interface Vbdif20

ip binding vpn-instance vpna

ip address 20.1.1.1 255.255.255.0

mac-address 00e0-2020-0001

vxlan anycast-gateway enable

arp collect host enable

#

interface Vbdif30

ip binding vpn-instance vpnb

ip address 30.1.1.1 255.255.255.0

mac-address 00e0-3030-0001

vxlan anycast-gateway enable

arp collect host enable

#

#

interface GE1/0/0

undo portswitch

undo shutdown

ip address 10.1.15.5 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/1

undo portswitch

undo shutdown

ip address 10.1.25.5 255.255.255.0

ospf network-type p2p

ospf enable 1 area 0.0.0.0

#

interface GE1/0/2

undo shutdown

#

interface GE1/0/2.20 mode l2

encapsulation dot1q vid 20

bridge-domain 20

#

#

interface GE1/0/2.30 mode l2

encapsulation dot1q vid 30

bridge-domain 30

#

ii#

interface LoopBack0

ip address 5.5.5.5 255.255.255.255

ospf enable 1 area 0.0.0.0

#

interface Nve1

source 5.5.5.5

vni 20 head-end peer-list protocol bgp

vni 30 head-end peer-list protocol bgp

#

interface NULL0

#

bgp 100

peer 1.1.1.1 as-number 100

peer 1.1.1.1 connect-interface LoopBack0

peer 2.2.2.2 as-number 100

peer 2.2.2.2 connect-interface LoopBack0

#

ipv4-family unicast

undo peer 1.1.1.1 enable

undo peer 2.2.2.2 enable

#

l2vpn-family evpn

policy vpn-target

peer 1.1.1.1 enable

peer 1.1.1.1 advertise irb

peer 2.2.2.2 enable

peer 2.2.2.2 advertise irb

#

ospf 1

area 0.0.0.0

  • Sw1,sw2,sw3配置

sysname sw1

#

vlan batch 10 20

#

interface GigabitEthernet0/0/1

port link-type trunk

port trunk allow-pass vlan 2 to 4094

#

interface GigabitEthernet0/0/2

port link-type access

port default vlan 10

#

interface GigabitEthernet0/0/3

port link-type access

port default vlan 10

#

  • 查看 在Spine设备查看EVPN邻居关系
BGP EVPN方式VXLAN实验

 


BGP EVPN方式VXLAN实验

 

  • 查看每个leaf上的vxlan隧道
BGP EVPN方式VXLAN实验

 


BGP EVPN方式VXLAN实验

 


BGP EVPN方式VXLAN实验

 


BGP EVPN方式VXLAN实验

 


BGP EVPN方式VXLAN实验


Tags:VXLAN   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
采用VXLAN实现不同站点主机跨三层网络实现二层互通:PCA和PCB分别模拟两个不同站点的主机; PCA和PCB处在不同VLAN,但处于同一个VXLAN; 通过配置VXLAN实现PCA和PCB之间跨三层的二...【详细内容】
2021-11-05  Tags: VXLAN  点击:(49)  评论:(0)  加入收藏
前段时间刚部署好了eNSP,紧接着又看了VXLAN的文档,现在我们大概已经知道VXLAN隧道的建立方式分为手工创建和自动创建,放在华为设备上,配置方式可以分为静态方式和EVPN的方式。那...【详细内容】
2021-07-06  Tags: VXLAN  点击:(111)  评论:(0)  加入收藏
组网需求企业在不同的数据中心中都拥有自己的VM,服务器1上的VM1属于VLAN 30,服务器2上的VM1属于VLAN 20,服务器1和服务器2位于相同网段。现需要配置通过VXLAN实现相同网段用户...【详细内容】
2020-12-23  Tags: VXLAN  点击:(435)  评论:(0)  加入收藏
1.两张图区分VLAN与VXLAN的功能实现区别1.1 VLANVLAN的 物理与逻辑关系如上图所示,VLAN的实现是通过二层trunk接口互联,通过802.1Q标签区分不同VLAN二层接口,形成逻辑上的两台...【详细内容】
2020-10-29  Tags: VXLAN  点击:(1133)  评论:(0)  加入收藏
VxLAN概念 VxLAN(Virtual eXtensible Local Area Network):虚拟扩展LAN网络,将VLAN技术进行了延伸。VxLAN术语VNI(VXLAN Network Identifier ):用于区分VXLAN段,不同VXLAN段的租户...【详细内容】
2020-04-18  Tags: VXLAN  点击:(96)  评论:(0)  加入收藏
VXLAN 通信过程对于处于同一个VXLAN的两台虚拟终端,其通信过程可以概括为如下的步骤:1. 发送方向接收方发送数据帧,帧中包含了发送方和接收方的虚拟MAC地址。2. 发送方连接的VT...【详细内容】
2020-04-16  Tags: VXLAN  点击:(87)  评论:(0)  加入收藏
VXLAN概述作为云计算核心技术之一的“服务器虚拟化”已经被数据中心普遍应用。随着企业业务的发展,虚拟机数量的快速增长和虚拟机迁移已成为一个常态性业务。由此也给传统网...【详细内容】
2019-07-30  Tags: VXLAN  点击:(263)  评论:(0)  加入收藏
▌简易百科推荐
HTTP 报文是在应用程序之间发送的数据块,这些数据块将通过以文本形式的元信息开头,用于 HTTP 协议交互。请求端(客户端)的 HTTP 报文叫做请求报文,响应端(服务器端)的叫做响应...【详细内容】
2021-12-27  程序员蛋蛋    Tags:HTTP 报文   点击:(0)  评论:(0)  加入收藏
一 网络概念:1.带宽: 标识网卡的最大传输速率,单位为 b/s,比如 1Gbps,10Gbps,相当于马路多宽2.吞吐量: 单位时间内传输数据量大小单位为 b/s 或 B/s ,吞吐量/带宽,就是网络的使用率...【详细内容】
2021-12-27  码农世界    Tags:网络   点击:(2)  评论:(0)  加入收藏
1.TCP/IP 网络模型有几层?分别有什么用? TCP/IP网络模型总共有五层 1.应用层:我们能接触到的就是应用层了,手机,电脑这些这些设备都属于应用层。 2.传输层:就是为应用层提供网络...【详细内容】
2021-12-22  憨猪哥08    Tags:TCP/IP   点击:(29)  评论:(0)  加入收藏
TCP握手的时候维护的队列 半连接队列(SYN队列) 全连接队列(accepted队列)半连接队列是什么?服务器收到客户端SYN数据包后,Linux内核会把该连接存储到半连接队列中,并响应SYN+ACK报...【详细内容】
2021-12-21  DifferentJava    Tags:TCP   点击:(9)  评论:(0)  加入收藏
你好,这里是科技前哨。 随着“元宇宙”概念的爆火,下一代互联网即将到来,也成了互联网前沿热议的话题,12月9日美国众议院的听证会上,共和党议员Patrick McHenry甚至宣称,要调整现...【详细内容】
2021-12-17  王煜全    Tags:Web3   点击:(14)  评论:(0)  加入收藏
一、demopublic static void main(String[] args) throws Exception { RetryPolicy retryPolicy = new ExponentialBackoffRetry( 1000, 3);...【详细内容】
2021-12-15  程序员阿龙    Tags:Curator   点击:(20)  评论:(0)  加入收藏
一、计算机网络概述 1.1 计算机网络的分类按照网络的作用范围:广域网(WAN)、城域网(MAN)、局域网(LAN);按照网络使用者:公用网络、专用网络。1.2 计算机网络的层次结构 TCP/IP四层模...【详细内容】
2021-12-14  一口Linux    Tags:网络知识   点击:(30)  评论:(0)  加入收藏
无论是在外面还是在家里,许多人都习惯了用手机连接 WiFi 进行上网。不知道大家有没有遇到过这样一种情况, 明明已经显示成功连接 WiFi,却仍然提示“网络不可用”或“不可上网”...【详细内容】
2021-12-14  UGREEN绿联    Tags:WiFi   点击:(25)  评论:(0)  加入收藏
拉了千兆宽带,买了标称 1300Mbps 的无线路由器,为什么 WiFi 还是跑不满千兆?要回答这个问题,我们先得知道这个 1300Mbps 是怎么来的。开始回答之前先说明一下,这期只讲 802.11ac,...【详细内容】
2021-12-14  Ubiquiti优倍快    Tags:WiFi   点击:(83)  评论:(0)  加入收藏
问题背景IPv6环境下,在浏览器中通过http://[vip:port]访问web业务,提示无法访问此网站,[vip]的响应时间过长。分析过程之前碰到过多次在PC浏览器上无法访问vip的情况,排查方法也...【详细内容】
2021-12-13  云原生知识星球    Tags:网络问题   点击:(27)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条