Vxlan是什么

VXLAN(Virtual eXtensible Local Area Network)虚拟可扩展局域网。
Vxlan是传输于跨越三层路由网络传输的第二层连接扩展。

CiscoNexus 9000交换机是为基于硬件的VXLAN功能而设计的.
它提供跨第三层边界的第二层连接扩展,
并在VXLAN和非VXLAN基础设施之间集成。
这可以在共享的公共物理基础结构上启用虚拟化和多租户数据中心的设计。VXLAN提供了一种在第三层基础设施上扩展第二层网络的方法,
使用的是在UDP中的MAC封装和隧道。
VXLAN使用第二层扩展支持灵活的工作负载放置。
它还可以通过将租户层2层与共享传输网络分离来构建多租户数据中心。当作为VXLAN网关部署时,Cisco Nexus 9000交换机可以连接VXLAN和经典VLAN段以创建公共转发域,
以便租户设备可以驻留在这两种环境中。

Vxlan有以下优点

VXLAN有以下优点:
•   在整个数据中心中灵活地放置多租户段。
它提供了一种在底层共享网络基础设施上扩展第二层(layer 2)的方法,以便租户工作负载可以跨数据中心的物理节点放置。
•   更高的可伸缩性,以解决更多的第二层段。
VXLAN使用24位段ID,即VXLAN网络标识符(VNID).这允许最多1600万VXLAN段在同一管理域中共存。
(相比之下,传统的VLAN使用12位段ID,最多支持4096个VLAN。)
•   基础架构中可用网络路径的利用。
VXLAN包通过底层网络根据其第3层报头进行传输。它使用等成本多径(ECMP)路由和链路聚合协议来使用所有可用路径.

Vxlan封装和数据包格式

VXLAN是第三层网络上的第二层覆盖方案。它使用MAC地址在用户数据报协议(MAC-in-UDP)封装提供了一种方法,
以扩展第二层段跨越数据中心网络。VXLAN是一种解决方案,可以在共享的公共物理基础设施上支持灵活的、
大规模的多租户环境。物理数据中心网络上的传输协议是IP+UDP。VXLAN定义了一种MAC in UDP封装方案,其中原始的第二层帧中添加了一个VXLAN报头,
然后将其放置在UDP-IP数据包中。通过这种在UDP中的MAC封装,VXLAN在第三层网络上穿越了第二层网络.VXLAN使用一个8字节的VXLAN头,它由一个24位的VNID和几个保留位组成。
VXLAN报头和原始以太网帧一起进入UDP有效负载。24位VNID用于识别第二层段和保持第二层段之间的隔离。
由于VNID中有24位,VXLAN可以支持1600万个LAN段。

Vxlan隧道端点 VTEP

VTEP(Vxlan Tunnel End Point)vxlan虚拟隧道端点。VXLAN使用VXLAN隧道端点(VTEP)设备将租户的终端设备映射到VXLAN段,
并执行VXLAN封装和解封装。每个VTEP功能都有两个接口:
一个是本地局域网段上的交换机接口,通过桥接支持本地端点通信;另一个是传输IP网络的IP接口。IP接口具有唯一的IP地址,用于标识传输IP网络上的VTEP设备,称为基础设施VLAN。
VTEP设备使用此IP地址封装以太网帧,并通过IP接口将封装的数据包发送到传输网络。
VTEP设备还发现其VXLAN段的远程VTEP,并通过其IP接口学习远程MAC地址到VTEP的映射。VXLAN段独立于底层网络拓扑;相反,VTEP之间的底层IP网络独立于VXLAN覆盖。
它基于外部IP地址报头对封装的数据包进行路由,其中以起始的VTEP作为源IP地址,
以终止的VTEP作为目标IP地址。

Vxlan包转发流程

VXLAN使用VTEP之间的无状态隧道通过第三层传输网络(IP网络层)传输覆盖层第二层网络的通信量。

实验拓扑

配置单播 入口复制Vxlan

配置N9K-1

#激活ospf
N9K-1(config)# feature ospf
#启动ospf
N9K-1(config)# router ospf 1
N9K-1(config-router)# router-id 2.2.2.1
N9K-1(config-router)# exit
#配置loopback接口,并宣告路由
N9K-1(config)# interface loopback 0
N9K-1(config-if)# ip add 2.2.2.1 255.255.255.255
N9K-1(config-if)# ip router ospf 1 area 0
N9K-1(config-if)# exit
#配置e1/1接口ip,并宣告ospf路由
N9K-1(config)# interface ethernet 1/1
N9K-1(config-if)# no switchport
N9K-1(config-if)# ip add 1.1.1.1 255.255.255.0
N9K-1(config-if)# ip router ospf 1 area 0
N9K-1(config-if)# no shutdown
N9K-1(config-if)# exit#启用vxlan
N9K-1(config)# feature nv overlay
#全局启动vxlan桥域
N9K-1(config)# feature vn-segment-vlan-based #配置下联host1接口
N9K-1(config)# interface ethernet 1/2
N9K-1(config-if)# switchport
N9K-1(config-if)# switchport mode access
N9K-1(config-if)# switchport access vlan 11
N9K-1(config-if)# no shutdown
N9K-1(config-if)# exit#设置vlan11
N9K-1(config)# vlan 11
#配置vxlan vnid
N9K-1(config-vlan)# vn-segment 10011
N9K-1(config-vlan)# exit#创建Vxlan nve接口
#用于传输vxlan隧道
N9K-1(config)# interface nve 1
#启动接口
N9K-1(config-if-nve)# no shutdown
#配置用于去和对端互联的接口,且cisco要求必须是loopback接口。
N9K-1(config-if-nve)# source-interface loopback 0
#绑定nve接口和vni,可以绑定多个。
N9K-1(config-if-nve)# member vni 10011
#激活static ingress replication for the VNI
N9K-1(config-if-nve-vni)# ingress-replication protocol static
#配置Vxlan peer,ip最好是对端loopback接口
N9K-1(config-if-nve-vni-ingr-rep)# peer-ip 2.2.2.3
N9K-1(config-if-nve-vni-ingr-rep)# exit
N9K-1(config-if-nve-vni)# exit
N9K-1(config-if-nve)# exit#查看vxlan nve接口状态
N9K-1(config)# sh nve vni ingress-replication
Interface VNI      Replication List  Source  Up Time
--------- -------- ----------------- ------- -------      nve1      10011    2.2.2.3           CLI     Down

配置N9K-2

#激活ospf
N9K-2(config)# feature ospf
#启动ospf
N9K-2(config)# router ospf 1
N9K-2(config-router)# router-id 2.2.2.3
N9K-2(config-router)# exit
#配置loopback接口,并宣告路由
N9K-2(config)# interface loopback 0
N9K-2(config-if)# ip add 2.2.2.3 255.255.255.255
N9K-2(config-if)# ip router ospf 1 area 0
N9K-2(config-if)# exit
#配置e1/1接口ip,并宣告ospf路由
N9K-2(config)# interface ethernet 1/1
N9K-2(config-if)# no switchport
N9K-2(config-if)# ip add 2.1.1.1 255.255.255.0
N9K-2(config-if)# ip router ospf 1 area 0
N9K-2(config-if)# no shutdown
N9K-2(config-if)# exit#启用vxlan
N9K-2(config)# feature nv overlay
#全局启动vxlan桥域
N9K-2(config)# feature vn-segment-vlan-based #配置下联host1接口
N9K-2(config)# interface ethernet 1/2
N9K-2(config-if)# switchport
N9K-2(config-if)# switchport mode access
N9K-2(config-if)# switchport access vlan 11
N9K-2(config-if)# no shutdown
N9K-2(config-if)# exit#设置vlan11
N9K-2(config)# vlan 11
#配置vxlan vnid
N9K-2(config-vlan)# vn-segment 10011
N9K-2(config-vlan)# exit#创建Vxlan nve接口
#用于传输vxlan隧道
N9K-2(config)# interface nve 1
#启动接口
N9K-2(config-if-nve)# no shutdown
#配置用于去和对端互联的接口,且cisco要求必须是loopback接口。
N9K-2(config-if-nve)# source-interface loopback 0
#绑定nve接口和vni,可以绑定多个。
N9K-2(config-if-nve)# member vni 10011
#激活static ingress replication for the VNI
N9K-2(config-if-nve-vni)# ingress-replication protocol static
#配置Vxlan peer,ip最好是对端loopback接口
N9K-2(config-if-nve-vni-ingr-rep)# peer-ip 2.2.2.1
N9K-2(config-if-nve-vni-ingr-rep)# exit
N9K-2(config-if-nve-vni)# exit
N9K-2(config-if-nve)# exit#查看vxlan nve接口状态
N9K-2(config)# sh nve vni ingress-replication
Interface VNI      Replication List  Source  Up Time
--------- -------- ----------------- ------- -------      nve1      10011    2.2.2.1           CLI     Down

配置R3

R3(config)#interface loopback 0
R3(config-if)#ip add 2.2.2.2 255.255.255.255
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#interface ethernet 0/0
R3(config-if)#no switchport
R3(config-if)#ip add 1.1.1.2 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#interface ethernet 0/1
R3(config-if)#no swi
R3(config-if)#ip add 2.1.1.2 255.255.255.0
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#router ospf 1
R3(config-router)#router-id 2.2.2.2
R3(config-router)#network 2.2.2.2 0.0.0.0 area 0
R3(config-router)#network 1.1.1.0 0.0.0.255 area 0
R3(config-router)#network 2.1.1.0 0.0.0.255 area 0
R3(config-router)#exit

配置两个hosts

VPCS> set pcname host1host1> ip 11.1.1.1/24
Checking for duplicate address...
PC1 : 11.1.1.1 255.255.255.0
VPCS> set pcname host2host2> ip 11.1.1.2/24
Checking for duplicate address...
PC1 : 11.1.1.2 255.255.255.0

验证

查看ospf邻居

R3#sh ip ospf neighbor Neighbor ID     Pri   State           Dead Time   Address         Interface
2.2.2.3           1   FULL/DR         00:00:38    2.1.1.1         Ethernet0/1
2.2.2.1           1   FULL/DR         00:00:31    1.1.1.1         Ethernet0/0

查看vxlan nve接口状态:

N9K-1(config)# sh nve vni ingress-replication
Interface VNI      Replication List  Source  Up Time
--------- -------- ----------------- ------- -------      nve1      10011    2.2.2.3           CLI     00:11:16 
N9K-2(config)# sh nve vni ingress-replication
Interface VNI      Replication List  Source  Up Time
--------- -------- ----------------- ------- -------      nve1      10011    2.2.2.1           CLI     00:11:35

从host1pinghost2:

host1> ping 11.1.1.284 bytes from 11.1.1.2 icmp_seq=1 ttl=64 time=47.067 ms
84 bytes from 11.1.1.2 icmp_seq=2 ttl=64 time=31.118 ms
84 bytes from 11.1.1.2 icmp_seq=3 ttl=64 time=28.959 ms
84 bytes from 11.1.1.2 icmp_seq=4 ttl=64 time=15.407 ms
84 bytes from 11.1.1.2 icmp_seq=5 ttl=64 time=23.401 ms

查看Vxlan vni状态

N9K-1# sh nve vni 10011
Codes: CP - Control Plane        DP - Data Plane          UC - Unconfigured         SA - Suppress ARPInterface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    UnicastStatic     Up    DP   L2 [11]   

配置基于组播Vxlan

网络拓扑

配置N9K-1

#激活组播pim
N9K-1(config)# feature pim
#配置处理组播的路由处理器地址,可以省略
N9K-1(config)# ip pim rp-address 2.2.2.2 group-list 224.0.0.0/4##route processor (RP)路由处理器#激活ospf
N9K-1(config)# feature ospf
#启动ospf
N9K-1(config)# router ospf 1
N9K-1(config-router)# router-id 2.2.2.1
N9K-1(config-router)# exit
#配置loopback接口,并宣告路由
N9K-1(config)# interface loopback 0
N9K-1(config-if)# ip add 2.2.2.1 255.255.255.255
N9K-1(config-if)# ip router ospf 1 area 0
#接口启用pim
N9K-1(config-if)# ip pim sparse-mode
N9K-1(config-if)# exit
#配置e1/1接口ip,并宣告ospf路由
N9K-1(config)# interface ethernet 1/1
N9K-1(config-if)# no switchport
N9K-1(config-if)# ip add 1.1.1.1 255.255.255.0
N9K-1(config-if)# ip router ospf 1 area 0
N9K-1(config-if)# ip pim sparse-mode
N9K-1(config-if)# no shutdown
N9K-1(config-if)# exit#启用vxlan
N9K-1(config)# feature nv overlay
#全局启动vxlan桥域
N9K-1(config)# feature vn-segment-vlan-based #配置下联host1接口
N9K-1(config)# interface ethernet 1/2
N9K-1(config-if)# switchport
N9K-1(config-if)# switchport mode access
N9K-1(config-if)# switchport access vlan 11
N9K-1(config-if)# no shutdown
N9K-1(config-if)# exit#设置vlan11
N9K-1(config)# vlan 11
#配置vxlan vnid
N9K-1(config-vlan)# vn-segment 10011
N9K-1(config-vlan)# exit#创建Vxlan nve接口
#用于传输vxlan隧道
N9K-1(config)# interface nve 1
#启动接口
N9K-1(config-if-nve)# no shutdown
#配置用于去和对端互联的接口,且cisco要求必须是loopback接口。
N9K-1(config-if-nve)# source-interface loopback 0
#绑定nve接口和vni,可以绑定多个。
N9K-1(config-if-nve)# member vni 10011
#配置NVE组播地址
N9K-1(config-if-nve)# mcast-group 230.1.1.1
N9K-1(config-if-nve)# exit注意:
member vni 10011
mcast-group 230.1.1.1
也可以直接写成一条命令
member vni 10011 mcast-group 230.1.1.1#查看vxlan nve接口状态
N9K-1(config)# sh nve vni
Codes: CP - Control Plane        DP - Data Plane          UC - Unconfigured         SA - Suppress ARPInterface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    230.1.1.1         Up    DP   L2 [11]

配置N9K-2

#激活组播pim
N9K-2(config)# feature pim
#配置处理组播的路由处理器地址,可以省略
N9K-2(config)# ip pim rp-address 2.2.2.2 group-list 224.0.0.0/4##route processor (RP)路由处理器#激活ospf
N9K-2(config)# feature ospf
#启动ospf
N9K-2(config)# router ospf 1
N9K-2(config-router)# router-id 2.2.2.3
N9K-2(config-router)# exit
#配置loopback接口,并宣告路由
N9K-2(config)# interface loopback 0
N9K-2(config-if)# ip add 2.2.2.3 255.255.255.255
N9K-2(config-if)# ip router ospf 1 area 0
#接口启用pim
N9K-2(config-if)# ip pim sparse-mode
N9K-2(config-if)# exit
#配置e1/1接口ip,并宣告ospf路由
N9K-2(config)# interface ethernet 1/1
N9K-2(config-if)# no switchport
N9K-2(config-if)# ip add 2.1.1.1 255.255.255.0
N9K-2(config-if)# ip router ospf 1 area 0
N9K-2(config-if)# ip pim sparse-mode
N9K-2(config-if)# no shutdown
N9K-2(config-if)# exit#启用vxlan
N9K-2(config)# feature nv overlay
#全局启动vxlan桥域
N9K-2(config)# feature vn-segment-vlan-based #配置下联host1接口
N9K-2(config)# interface ethernet 1/2
N9K-2(config-if)# switchport
N9K-2(config-if)# switchport mode access
N9K-2(config-if)# switchport access vlan 11
N9K-2(config-if)# no shutdown
N9K-2(config-if)# exit#设置vlan11
N9K-2(config)# vlan 11
#配置vxlan vnid
N9K-2(config-vlan)# vn-segment 10011
N9K-2(config-vlan)# exit#创建Vxlan nve接口
#用于传输vxlan隧道
N9K-2(config)# interface nve 1
#启动接口
N9K-2(config-if-nve)# no shutdown
#配置用于去和对端互联的接口,且cisco要求必须是loopback接口。
N9K-2(config-if-nve)# source-interface loopback 0
#绑定nve接口和vni,可以绑定多个。
N9K-2(config-if-nve)# member vni 10011
#配置VNI组播地址
N9K-2(config-if-nve)# mcast-group 230.1.1.1
N9K-2(config-if-nve)# exit#查看vxlan nve接口状态
N9K-2# sh nve vni
Codes: CP - Control Plane        DP - Data Plane          UC - Unconfigured         SA - Suppress ARPInterface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    230.1.1.1         Up    DP   L2 [11]  

注意:

这时候看NVE 1接口是已经up了,但是外部中间设备R3并没有配置组播转发,所以vxlan还没有完成。

配置R3

#激活组播
R3(config)#ip multicast-routingR3(config)#interface loopback 0
R3(config-if)#ip add 2.2.2.2 255.255.255.255
R3(config-if)#ip pim sparse-mode
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#interface ethernet 0/0
R3(config-if)#no switchport
R3(config-if)#ip add 1.1.1.2 255.255.255.0
R3(config-if)#ip pim sparse-mode
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#interface ethernet 0/1
R3(config-if)#no swi
R3(config-if)#ip add 2.1.1.2 255.255.255.0
R3(config-if)#ip pim sparse-mode
R3(config-if)#no shutdown
R3(config-if)#exitR3(config)#router ospf 1
R3(config-router)#router-id 2.2.2.2
R3(config-router)#network 2.2.2.2 0.0.0.0 area 0
R3(config-router)#network 1.1.1.0 0.0.0.255 area 0
R3(config-router)#network 2.1.1.0 0.0.0.255 area 0
R3(config-router)#exit#指定组播rp-address,可以省略
ip pim rp-address 2.2.2.2

验证

Host1 ping Host2:

host1> sh ip NAME        : host1[1]
IP/MASK     : 11.1.1.1/24
GATEWAY     : 0.0.0.0
DNS         :
MAC         : 00:50:79:66:68:04
LPORT       : 20000
RHOST:PORT  : 127.0.0.1:30000
MTU         : 1500host1> ping 11.1.1.284 bytes from 11.1.1.2 icmp_seq=1 ttl=64 time=16.761 ms
84 bytes from 11.1.1.2 icmp_seq=2 ttl=64 time=23.309 ms
84 bytes from 11.1.1.2 icmp_seq=3 ttl=64 time=33.010 ms
84 bytes from 11.1.1.2 icmp_seq=4 ttl=64 time=27.178 ms
84 bytes from 11.1.1.2 icmp_seq=5 ttl=64 time=40.473 ms

查看nve接口状态:

N9K-1# sh nve vni
Codes: CP - Control Plane        DP - Data Plane          UC - Unconfigured         SA - Suppress ARPInterface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    230.1.1.1         Up    DP   L2 [11]

查看nve对端设备:

N9K-1# sh nve peers
Interface Peer-IP          State LearnType Uptime   Router-Mac
--------- ---------------  ----- --------- -------- -----------------
nve1      2.2.2.3          Up    DP        00:10:13 n/a          
N9K-1# sh nve peers detail
Details of nve Peers:
----------------------------------------
Peer-Ip: 2.2.2.3NVE Interface       : nve1Peer State          : UpPeer Uptime         : 00:11:28Router-Mac          : n/aPeer First VNI      : 10011Time since Create   : 00:13:03Configured VNIs     : 10011Provision State     : add-completeRoute-Update        : YesPeer Flags          : NoneLearnt CP VNIs      : --Peer-ifindex-resp   : Yes
----------------------------------------

网络加入一个H3C设备,如何配置

这里主要说明H3C是如何开启组播,并转发的。

H3C设备配置如下:

#全局启用组播:
multicast routing ospf 1 router-id 2.2.2.4area 0.0.0.0network 2.1.1.0 0.0.0.255network 2.2.2.4 0.0.0.0network 3.1.1.0 0.0.0.255interface LoopBack0ip address 2.2.2.4 255.255.255.0pim sminterface GigabitEthernet1/0port link-mode routeip address 2.1.1.2 255.255.255.0pim sminterface GigabitEthernet2/0port link-mode routeip address 3.1.1.2 255.255.255.0pim sm

R1也就是图中的3725配置有更改的地方:

interface FastEthernet1/1no switchportip address 3.1.1.1 255.255.255.0ip pim sparse-moderouter ospf 1router-id 2.2.2.2log-adjacency-changesnetwork 1.1.1.0 0.0.0.255 area 0network 2.2.2.2 0.0.0.0 area 0network 3.1.1.0 0.0.0.255 area 0

验证VXLAN 其他方式配置

To display the VXLAN configuration information, enter one of the following commands:

Command Purpose
show tech-support vxlan [platform ] Displays related VXLAN tech-support information.
show logging level nve Displays logging level.
show tech-support nve Displays related NVE tech-support information.
show run interface nve x Displays NVE overlay interface configuration.
show nve interface Displays NVE overlay interface status.
show nve peers Displays NVE peer status.
show nve peers peer_IP_address interfaceinterface_ID counters Displays per NVE peer statistics.
clear nve peers peer_IP_address interfaceinterface_ID counters Clears per NVE peer statistics.
clear nve peer-ip peer-ip-address Clears stale NVE peers. Stale NVE peers are peers that do not have MAC addresses learnt behind them.
show nve vni Displays VXLAN VNI status.
show nve vni ingress-replication Displays the mapping of VNI to ingress-replication peer list and uptime for each peer.
show nve vni vni_number counters Displays per VNI statistics.
clear nve vni vni_number counters Clears per VNI statistics.
show nve vxlan-params Displays VXLAN parameters, such as VXLAN destination or UDP port.
Command Purpose
show tech-support vxlan [platform ] Displays related VXLAN tech-support information.
show interface {ethernet slot/port \ port-channel port} vlan mapping Displays VLAN mapping information for a specific interface or port channel.
show logging level nve Displays logging level.
show tech-support nve Displays related NVE tech-support information.
show run interface nve x Displays NVE overlay interface configuration.
show nve interface Displays NVE overlay interface status.
show nve peers Displays NVE peer status.
show nve peers peer_IP_address interfaceinterface_ID counters Displays per NVE peer statistics.
clear nve peers peer_IP_address interfaceinterface_ID counters Clears per NVE peer statistics.
clear nve peer-ip peer-ip-address Clears stale NVE peers. Stale NVE peers are peers that do not have MAC addresses learnt behind them.
show nve vni Displays VXLAN VNI status.
show nve vni ingress-replication Displays the mapping of VNI to ingress-replication peer list and uptime for each peer.
show nve vni vni_number counters Displays per VNI statistics.
clear nve vni vni_number counters Clears per VNI statistics.
show nve vxlan-params Displays VXLAN parameters, such as VXLAN destination or UDP port.
show mac address-table static interface nve 1 Displays static MAC information.
show vxlan interface Displays VXLAN interface status for 9200 platform switches. .
show vxlan interface \ count Displays VXLAN VLAN logical port VP count.
Command Purpose
show run track Displays tracking information for running-config.
show track Displays tracking information for IP prefix for an endpoint.

转载于:https://blog.51cto.com/506554897/2354834

N9K配置Vxlan相关推荐

  1. ENSPLAB笔记:配置VXLAN(分布式网关,BGP EVPN方式)(Part1)

    目录 1.实验目的 2.实验环境 2.1 实验拓扑 2.2 数据准备 2.3 设备型号 3.实验内容 4.配置步骤 4.1 基础配置 4.2 配置业务接入点 4.3 配置BGP EVPN Peer 4 ...

  2. 实验 - BGP EVPN配置VXLAN分布式网关

    采用如下思路配置VXLAN分布式网关: 1. 配置接口和IGP 4. 分别在Device2. Device3和Device4上配置业务接入点实现区分业务流量. 5. 使能EVPN作VXLAN控制平面. ...

  3. vxlan报文 wireshark_配置 VXLAN

    简介 本文档简要概述虚拟可扩展局域网 (VXLAN),并提供了几个配置示例以及验证命令和输出. Cisco 建议您了解以下主题: 组播路由概念,例如交汇点 (RP) 和平台无关组播 (PIM). 虚拟 ...

  4. ENSPLAB笔记:配置VXLAN(分布式网关,BGP EVPN方式)(Part2)

    (继续上一篇的5.结果验证) 5.3.同网段,不同Leaf服务器Ping测试 执行操作:172.16.1.10 Ping 172.16.1.20,并在Leaf1连Spine1端口抓包. 在Serv1上 ...

  5. 在CentOS7上配置Open vSwitch和VXLAN

    在CentOS7上配置Open vSwitch和VXLAN 环境 实验环境 主机环境 [yuwh@node0 ~]$ uname -a Linux node0 3.10.0-123.9.3.el7.x ...

  6. ensp查看历史配置命令_网络工程师 | 手把手教你用华为ensp模拟器玩vxlan实验(静态方式)...

    一.背景 随着云计算.虚拟化技术的发展,业务有时需要再不同地方同网段进行通信,即大二层网络.比如虚机迁移,从A数据中心迁移到异地数据中心. 首先,我们都知道,路由器是用来隔离广播域的,同网段通信都在一 ...

  7. 动态建立Vxlan隧道实现跨子网互访实验配置(分布式网关单租户多子网场景)

    目录 基础配置 配置E-V-P-N 在CE1.CE3开启E-V-P-N功能 建立CE1.CE3的E-V-P-N对等体 配置二层广播域,并在其下配置二层VNI 配置Vxlan业务接入点 配置VTEP接口 ...

  8. 动态建立Vxlan隧道实现租户访问外网实验配置(分布式网关单租户多子网场景)

    目录 基础配置 配置E V P N动态建立Vxlan隧道 在CE1.CE2.CE3开启EVPN功能 建立CE1.CE2.CE3的EVPN对等体(路由反射器方式) 配置二层广播域,并在其下配置二层VNI ...

  9. VXLAN数据中心互联典型配置举例

    组网需求 Switch B.Switch D为ED.虚拟机VM 1.VM 3属于VXLAN 10,VM 2属于VXLAN 20.通过VXLAN数据中心互联实现不同数据中心.不同VXLAN网络的互联. ...

最新文章

  1. 《C++游戏编程入门(第4版)》——1.12 习题
  2. 业界丨AI公司魅力榜:谷歌最慷慨排第二,最抠门的你应该能想到
  3. 2012_02_07
  4. Css3-锚链接和伪类tartet
  5. 送书福利 | 哈工大SCIR倾力打造NLP新书,详解预训练语言模型
  6. 洛谷P3952 时间复杂度【字符串】【模拟】
  7. react usecontext_Vue3原理实战运用,我用40行代码把他装进了React做状态管理
  8. CIF进口货物流程图_上海关区对外承包工程货物进口报关公司【清关代理吧】
  9. ajax前端实时获取数据
  10. std::map的使用
  11. android 入门-android Studio 配置
  12. Xcode Developer Tools
  13. 一位大牛架构师的经验总结
  14. 微信H5扫码支付 java
  15. 程序员面试逻辑题解析
  16. 下载 Flash Player 强制跳转至 flash.cn,无法下载国际版 Flash 解决方法
  17. BASE16、BASE32、BASE64编码特征及正则匹配
  18. 臀部无论大小,翘起才是王道。
  19. 浅谈基于过程与基于对象
  20. 【随笔1】石榴红,依旧。

热门文章

  1. 西安100w就可以财务自由?靠工资如何崛起!
  2. CSDN 数据访问可视化,写给CSDN 群友们用用
  3. ps制作人物抠图,给人物自拍照进行精细抠图
  4. 坦克大战java(章程)
  5. 在fedora 15 中安装汉语拼音输入法
  6. 外语学习应试教育时如何高效的背单词?
  7. Activiti源码解读之TaskService
  8. 博士后的那些套路,那些坑
  9. 2022-2028年中国珠宝电子商务行业市场需求分析及投资方向研究报告
  10. Primavera P6或项目管理站点/论坛地址,交流群组