Switch1#configure terminal
Switch1(config)# ① #创建vlan102
Switch1(config-vlan)# ② #将该vlan命名为grp1
Switch1(config-vlan)#exit
……
#创建vlan103~107
Switch1(config)#interface fastethernet0/2
Switch1(config-if)# ③ #将fe0/2配置为access口
Switch1(config-if)#switchport ④ #将fe0/2分配给vlan102
Switch1(config-if)#exit
……
#将fe0/3~fe0/7分配给vlan103~107
Switch1(config)#interface fastethernet0/0
Switch1(config-if)#switchport trunk ⑤ #配置封装方式为dot1q
Switch1(config-if)# ⑥ #将fe0/0配置为trunk口
Switch1(config-if)#spanning-tree vlan 102-104 ⑦ #修改优先级为16,使VLAN102、103和104的用户间通信时使用fe0/0
Switch1(config-if)#exit
……
#配置fe0/1,使VLAN105~107的用户间通信时使用fe0/1
【问题2】(3分)
写出两种VLAN的划分方法。问题1中交换机的VLAN配置中采用的是哪种VLAN划分方法?
【问题3】(4分)
常用的VLAN交换机互连方式有哪三种?问题1中交换机的VLAN配置中,Switch1和Switch2互连方式是哪种?