如图所示,一台Cisco3500系列交换机上连接2台计算机,它们分别划分在VLAN10(ID号为10)和VLAN11(ID号为11)中。交换机的千兆以太网端口(g0/1)连接一台路由器,使2个VLAN之间能够通信,交换机管理地址为167.11.45.2/24,默认路由地址为167.11.45.1/24。
请阅读以下交换机的配置信息,并补充(6)~(10)空白处的配置命令或参数,按题目要求完成交换机的配置(注:填写答案时,配置语句的关键字要求拼写完整)。
Switch-3548>enabel
Password:***********
Switch-3548#
Switch-3548 # configure terminal
Switch-lib(config) # hostname Switch-lib
Switch-lib(config) # interface vlan 1
Switch-lib(config-if) # no shutdown
Switch-lib(config-if) # ip address (6)
配置交换机管理地址
Switch-lib(config-if) # exit
Switch-lib(config) # ip default-gateway 167.11.45.1
Switch-lib(config) # vtp domain lib
Switch-lib(config) # vtp mode transparent
Switch-lib(config) # exit
Switch-lib # vlan data
Switch-lib(vlan) # vlan (7)
建立 VLAN10
建立 VLAN11(省略)
Switch-lib(vlan) # exit
Switch-lib # configure terminal
Switch-lib(config) # interface f0/1
Switch-lib(config-if) # no shutdown
Switch-lib(config-if) # switchport (8)
为端口 f0/1分配VLAN
Switch-lib(config-if) # exit
Switch-lib(config) # interface g0/1
Switch-lib(config-if) # switchport (9)
设置VLAN trunk模式
Switch-lib(config-if) # switchport trunk encapsulation dotlq
Switch-lib(config-if) # switchport trunk (10)
配置允许中继的VLAN
Switch-lib(config-if) # exit
Switch-lib(config) # exit
Switch-lib #
(10)是()
参考答案:allowed vlan 10,11
解析:
本题考查交换机以及VLAN的命令行配置,这需要学生加强动手能力的训练,平时多参与实际的配置,在应用中逐渐熟悉命令的使用。
(6) 因为交换机管理地址为167.11.45.2/24,可知前24位为网络地址,所以子网掩码必须是255.255.255.0。配置IP地址的格式为ip address ip_addr ip_mask,所以配置交换机管理地址的语句为Switch-1ib(config-if) # ip address 167.11.45.2 255.255.255.0。
(7) 建立VLAN的命令格式为vlan<land_ID>name<vlan_name>。因此建立VLAN10的语句为Switch-lib(vlan) # vlan10 name VLAN10。
(8) 为端口分配VLAN时首先进入端口配置模式,命令为interface f0/1,然后为端口分配VLAN,命令格式为:switchport access vlan<vlan-num>,由题目知端口f0/1划分在10号VLAN中。
(9) 进入端口配置模式后,可以使用switchport mode truck语句设置VLAN的Trunk模式。
(10) 设置允许中继的VLAN的命令格式为switchport truck allowed vlan vlan_ID,其中vlan_ID可以是某些vlan号,如switchport truck allowed vlan 11,15,表示11号和15号VLAN允许中继;vlan_ID也可以连续的vlan号,如switchport truck allowed vlan 11-16,表示11~16号VLAN都允许中继。本题中允许中继的VLAN的VLAN10,VLAN11。