填空题

虚拟局域网(Virtual LAN)是与地理位置无关的局域网的一个广播域,由一个工作站发送的广播信息帧只能发送到具有相同虚拟网号的其他站点,可以形象地认为,VLAN是在物理局域网中划分出的独立通讯区域。在以交换机为核心的交换式局域网络中,VLAN技术应用广泛,其优势在于控制了网络上的广播风暴,增加了网络的安全性,利于采用集中化的管理控制。其中,基于端口的VLAN划分方式较为常见,通过将网络设备的端口划归不同的VLAN实现广播帧的隔离。
以下为Cisco以太网交换机Catalyst 2924(WS-C2924XL-A,拥有24个10/100M自适应端口)的VLAN划分命令,请解释[1]~[3]处的标有下划线部分配置命令的含义。(“//”后为注释内容)。
switch>en //进入特权执行态
switch#config term //进入通用配置状态
switch(config)#interface vlan 1 //配置vlan 1(ID为1的Vlan)
[1]
switch(config-if)#ip address 202.112.111.23 255.255.255.0 (8)
switch(config-if)#management (9)
switch(config-if)#exit //退出对vlan的配置状态
switch(config)#interface fa0/1 //配置第一模块的第2个端口
[2]
switch(config-if)#switchport mode access (10)
switch(config-if)#switchport acess vlan (11)
switch(conflg-if)#exit //退出对端口的配置状态
switch(config)#interface fa0/2 //配置第一模块的第3个端口
[3]
switch(config-if)#switchport mode multi (12)
switch(config-if)#switchport multi vlan add 2,3 (13)
switch(config-if)#exit //退出对端口的配置状态

【参考答案】

(8)配置该设备在Management VLAN中的IP地址
(9)设置该设备VLAN的ID为1的VLAN为......

(↓↓↓ 点击下方‘点击查看答案’看完整答案、解析 ↓↓↓)