任务3:利用三层交换机实现不同VLAN间的通信1、实验目的通过三层交换机实现VLAN间互相通信。2、背景描述假设某企业有2个主要部门:销售部和技术部,其中销售部门的个人计算机系统分散连接在2台交换机上,他们之间需要互相进行通信,销售部和技术部也需要进行互相通讯,现在要在狡猾今年机上做适当配置来实现这一目标。3、实现功能使在同一VLAN里的计算机系统能跨交换机继续拧互相通信,而在不同VLAN里的计算机系统也能进行互相通信。4、实验拓扑5、实验设备S126G(1台),S3550-24(1台),PC机(3台),直通线(4根)。1、实验步骤步骤1:在交换机switchA上创建VLAN10,并将0/5端可划分到VLAN10中。switchA#configuerterminal!进入全局配置模式switchA(config)#vlan10!创建VLAN10SwitchA(config-vlan)#namesales!将其命名为salesSwitchA(config-vlan)#exitswitchA(config)#interfacefastethernet0/5!进入接口配置模式switchA(config-if)#switchportaccessvlan10!将fastethernet0/5端口加入VLAN10中switchA(config-if)#exitSwitchA#showvlanid10步骤2:在交换机SwitchA上创建VLAN20,并将0/15端口划分到VLAN20中。SwitchA#configureterminal!进入交换机全局配置模式SwitchA(config)#vlan20!创建VLAN20SwitchA(config-vlan)#namesales!将其命名为technicalSwitchA(config-vlan)#exitswitchA(config)#interfacefastethernet0/15!进入接口配置模式switchA(config-if)#switchportaccessvlan20!将fastethernet0/15端口加入VLAN20中switchA(config-if)#exit验证测试:验证已创建了VLAN20,并将0/15端口已划分到VLAN20中。Switch#showvlan步骤3:把交换机SwichA与SwitchB相连接的端口(假设为0/24端口)定义为tagvlan模式。switchA(config)#interfacefastethernet0/24!进入接口配置模式switchA(config-if)#switchportmodetrunk!将fastethernet0/24端口设为tagvlan模式步骤4:在交换机SwitchB上创建VLAN10,并将0/5端口划分到VLAN10中。Switch#configureterminal!进入交换机全局配置模式Switch(config)#vlan10!创建VLAN10Switch(config-vlan)#namesales!将其命名为salesSwitch(config-vlan)#exitswitch(config)#interfacefastethernet0/5!进入接口配置模式switch(config-if)#switchportaccessvlan10!将fastethernet0/5端口加入VLAN10中switch(config-if)#exit验证测试:验证在switchB上创建了VLAN10,并将0/5端口已划分到VLAN10中。Switch#showvlanid10步骤5:把交换机switchB与switchB相连的端口(假设为0/24端口)定义为tagvlan模式。switchB(config)#interfacefastethernet0/24!进入接口配置模式switchB(config-if)#switchportmodetrunk!将fastethernet0/24端口设为tagvlan模式验证测试:验证fastethernet0/24端口已被设置为tagvlan模式。switchB#showinterfacesfastethernet0/24sweitchport步骤6:验证PC1与PC3能互相通信,但PC2与PC3不能互相通信。C:\ping192.168.10.30!在PC1的命令模式下验证能ping通PC3C:\ping192.168.10.30!在PC2的命令模式下验证不能ping通PC3步骤7:设置三层交换机VLAN间的通讯。switchA(config)#interfacevlan10!创建虚拟接口VLAN10switchA(config-if)#ipaddress192.168.10.254255.255.255.0!配置虚拟接口VLAN10的地址为192.168.10.254switchA(config-if)#noshutdown!开启端口switchA(config)#exitswitchA(config)#interfacevlan20!创建虚拟接口VLAN20switchA(config-if)#ipaddress192.168.20.254255.255.255.0!配置虚拟接口VLAN10的地址为192.168.20.254switchA(config-if)#noshutdown!开启端口switchA(config)#exit验证测试:察看S3550路由接口的状态。switchA#showipinterface步骤8:将PC1和PC3的默认网关设置为192.168.10.254,IP地址设置为192.168.10.x;将PC2的默认网关设置为192.168.20.254,IP地址设置为192.168.20.x;将PC2的默认网关设置为192.168.20.254,IP地址设置为192.168.20.x.测试结果:不同的VLAN内的主机可以互相PING通。【注意事项】(1)两台交互之间相连接的端口应该设置为tagvlan模式;(2)需要设置PC的网关