华为交换机VLAN聚合配置实验

一、实验拓扑图:

                华为交换机VLAN聚合配置实验_第1张图片

二、实验要求:

公司内部两大部门,左边A部门规划了VLAN10、20,右边B部门规划了VLAN30、40,由于IP地址段有限,使用VLAN聚合技术完成网络规划。

1.A部门使用SUPER VLAN55来聚合VLAN10和20,B部门使用SUPER VLAN88来聚合VLAN30和40,VLANIF的IP见图示。
2.两台交换机SW1和SW2之间使用VLAN111来完成通信,VLANIF的IP分别为192.168.111.1/24和192.168.111.2/24。
3.在两台交换机配置默认路由,下一跳指向对方的VLANIF111接口。
4.完成其它所有配置,使得8台PC能够互相通信。

三、配置命令:

S1交换机上配置:

sysname S1
#
vlan batch 10 20 55 111
#
vlan 55
 aggregate-vlan
 access-vlan 10 20
#
interface Vlanif55
 ip address 192.168.55.99 255.255.255.0
 arp-proxy inter-sub-vlan-proxy enable
#
interface Vlanif111
 ip address 192.168.111.1 255.255.255.0
 arp-proxy inter-sub-vlan-proxy enable
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 10
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 10
#
interface Ethernet0/0/3
 port link-type access
 port default vlan 20
#
interface Ethernet0/0/4
 port link-type access
 port default vlan 20
#
interface Ethernet0/0/5
 port link-type trunk
 port trunk allow-pass vlan 10 20 30 40 111
#
ip route-static 0.0.0.0 0.0.0.0 192.168.88.99

S2交换机上配置:

sysname S2
#
vlan batch 30 40 88 111
#
vlan 88
 aggregate-vlan
 access-vlan 30 40
#
interface Vlanif88
 ip address 192.168.88.99 255.255.255.0
 arp-proxy inter-sub-vlan-proxy enable
#
interface Vlanif111
 ip address 192.168.111.2 255.255.255.0
 arp-proxy inter-sub-vlan-proxy enable
#
interface Ethernet0/0/1
 port link-type access
 port default vlan 30
#
interface Ethernet0/0/2
 port link-type access
 port default vlan 30
#
interface Ethernet0/0/3
 port link-type access
 port default vlan 40
#
interface Ethernet0/0/4
 port link-type access
 port default vlan 40
#
interface Ethernet0/0/5
 port link-type trunk
 port trunk allow-pass vlan 10 20 30 40 111
#
ip route-static 0.0.0.0 0.0.0.0 192.168.55.99

四、验证截图:

①PC1 ping PC3:(VLAN10 与VLAN20能互相通信)

华为交换机VLAN聚合配置实验_第2张图片

②PC1 ping PC5:(VLAN10 与VLAN40能互相通信)

华为交换机VLAN聚合配置实验_第3张图片

③PC1 ping PC7:(VLAN10 与VLAN30能互相通信)

华为交换机VLAN聚合配置实验_第4张图片

同理其它vlan之间也能够互相通信,这里就不一一列举了

你可能感兴趣的:(华为HCIP交换机部分,网络,交换机,经验分享,华为)