N9K配置Vxlan

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段。

N9K配置Vxlan

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地址。

N9K配置Vxlan

Vxlan包轉發流程

VXLAN使用VTEP之間的無狀態隧道經過第三層傳輸網絡(IP網絡層)傳輸覆蓋層第二層網絡的通訊量。

實驗拓撲

N9K配置Vxlan

配置單播 入口複製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)#exit

R3(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)#exit

R3(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)#exit

R3(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 host1

host1> ip 11.1.1.1/24
Checking for duplicate address...
PC1 : 11.1.1.1 255.255.255.0
VPCS> set pcname host2

host2> 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.2

84 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 ARP

Interface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    UnicastStatic     Up    DP   L2 [11]

配置基於組播Vxlan

網絡拓撲

N9K配置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 ARP

Interface 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 ARP

Interface VNI      Multicast-group   State Mode Type [BD/VRF]      Flags
--------- -------- ----------------- ----- ---- ------------------ -----
nve1      10011    230.1.1.1         Up    DP   L2 [11]

注意:架構

這時候看NVE 1接口是已經up了,可是外部中間設備R3並無配置組播轉發,因此vxlan尚未完成。app

配置R3

#激活組播
R3(config)#ip multicast-routing

R3(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)#exit

R3(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)#exit

R3(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)#exit

R3(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:ide

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         : 1500

host1> ping 11.1.1.2

84 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接口狀態:oop

N9K-1# sh nve vni 
Codes: CP - Control Plane        DP - Data Plane          
       UC - Unconfigured         SA - Suppress ARP

Interface 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.3
    NVE Interface       : nve1
    Peer State          : Up
    Peer Uptime         : 00:11:28
    Router-Mac          : n/a
    Peer First VNI      : 10011
    Time since Create   : 00:13:03
    Configured VNIs     : 10011
    Provision State     : add-complete
    Route-Update        : Yes
    Peer Flags          : None
    Learnt CP VNIs      : --
    Peer-ifindex-resp   : Yes
----------------------------------------

網絡加入一個H3C設備,如何配置

N9K配置Vxlan

這裏主要說明H3C是如何開啓組播,並轉發的。spa

H3C設備配置以下:設計

#全局啓用組播:
multicast routing 

ospf 1 router-id 2.2.2.4
 area 0.0.0.0
  network 2.1.1.0 0.0.0.255
  network 2.2.2.4 0.0.0.0
  network 3.1.1.0 0.0.0.255

interface LoopBack0
 ip address 2.2.2.4 255.255.255.0
 pim sm

interface GigabitEthernet1/0
 port link-mode route
 ip address 2.1.1.2 255.255.255.0
 pim sm

interface GigabitEthernet2/0
 port link-mode route
 ip address 3.1.1.2 255.255.255.0
 pim sm

R1也就是圖中的3725配置有更改的地方:3d

interface FastEthernet1/1
 no switchport
 ip address 3.1.1.1 255.255.255.0
 ip pim sparse-mode

 router ospf 1
 router-id 2.2.2.2
 log-adjacency-changes
 network 1.1.1.0 0.0.0.255 area 0
 network 2.2.2.2 0.0.0.0 area 0
 network 3.1.1.0 0.0.0.255 area 0

驗證VXLAN 其餘方式配置

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

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.
相關文章
相關標籤/搜索