天天看點

華為ensp 二層交換機的基礎配置

實驗一:

使用一台交換機通過VLAN來隔離不同網段之間的通信

華為ensp 二層交換機的基礎配置

提前配置好IP及端口位址

LSW1配置:

#
vlan batch 10 20
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 10
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 20
#
interface Ethernet0/0/3
 port link-type access
 port default vlan 10
#
           

pc1隻能ping通pc3 ,pc2被隔離無法ping通

華為ensp 二層交換機的基礎配置

 實驗二:

使用兩台交換機實作相同vlan互通,不同vlan不通。

華為ensp 二層交換機的基礎配置

提前配置好ip位址及端口位址

LSW1配置:

#
sysname LSW1
#
vlan batch 10 20
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 10
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 20
#
interface Ethernet0/0/3
 port link-type trunk
 port trunk allow-pass vlan 10 20
#
           

LSW2配置:

#
sysname LSW2
#
vlan batch 10 20
#
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 10
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 20
#
interface Ethernet0/0/3
 port link-type trunk
 port trunk allow-pass vlan 10 20
#
           

pc1 ping pc3 互通

華為ensp 二層交換機的基礎配置

 pc2 ping pc4 互通

華為ensp 二層交換機的基礎配置