如下图所示,某校园网使用三台Catalyst 6 500交换机构成万兆以太网的主干,其中交换机S1使用千兆以太网技术下连到学生宿舍楼的一台Catalyst 3 548交换机S4,S4下连的用户被划分在VLANID为2~5,VLAN名为jszx2--jszx5的四个VLAN中,要求S1和S4之间使用IEEE 802.1Q国际标准,且在S1和S4之间只允许传输jszx2--jszx5的信息。
请阅读下列关于交换机S4的VLAN配置信息,并补充空白处的配置命令或参数,按题目要求完成交换机S4的相关配置。
Switch-S4-3548#vlan data
Switch-S4-3548(vlan) #vlan2 name iszx2
Switch-S4-3548(vlan) #vlan3 name iszx3
Switch-S4-3548(vlan) #vlan4 name iszx4
Switch-S4-3548(vlan) #vlan5 name iszx5
Switch-S4-3548(vlan) #exit
Switch-S4-3548#configure terminal
Switch-S4-3548(config) #interface (6) (进入端口配置模式)
Switch-S4-3548(config-if) #switchport (7) (配置VLANtrunk模式)
Switch-S4-3548(config-if) #switchport trunk encapsulation (8) (封装协议)
Switch-S4-3548(config-if) #switchport truck allowed (9) (设置可中继的VLAN)
Switch-S4-3548(config-if) #switchport truck allowed (10) (去除不允许中继的VLAN)
Switch-S4-3548(config-if) #exit
Switch-S4-3548(config) #exit
Switch-S4-3548#
参考答案:[6]g2/2
[7] mode trunk
[8] dotlq
[9] Vlan 2-5
[10] Vlan except 1
解析: except是从允许的VLAN列表中去掉一些VLAN号,也就是参数中给出的是不允许中继的VLAN。