【说明】某公司有 1 个总部和 2 个分部,各个部门都有自己的局域网。该公司申请了 4 个 C 类 IP 地址块 202.114.10.0/24~202.114.13.0/24 。公司各部门通过帧中继网络进行互联,网络拓扑结构如图 1-1 所示。 图 1-1 【问题 1 】 请根据图 1-1 完成 R0 路由器的配置: R0 (config)#interface s0/0 (进入串口配置模式) R0 (config-if)# ip address 202.114.13.1 ( 1 ) (设置 IP 地址和掩码) R0(config) # encapsulation ( 2 ) (设置串口工作模式) 【问题 2 】 Switch0 、 Switch1 、 Switch2 和 Switch3 均为二层交换机。总部拥有的 IP 地址块为 202.114.12.0/24 。 Switch0 的端口 e0/24 与路由器 R2 的端口 e0/0 相连,请根据图 1-1 完成路由器 R2 及 Switch0 的配置。 R2(config)#interface fastethernet 0/0.1 R2(config-subif)#encapsulation dot1q ( 3 ) R2(config-subif)#ip address 202.114.12.1 255.255.255.192 R2(config-subif)#no shutdown R2(config-subif)#exit R2(config)#interface fastethernet 0/0.2 R2(config-subif)#encapsulation dot1q ( 4 ) R2(config-subif)#ip address 202.114.12.65 255.255.255.192 R2(config-subif)#no shutdown R2(config-subif)#exit R2(config)#interface fastethernet 0/0.3 R2(config-subif)#encapsulation dot1q ( 5 ) R2(config-subif)#ip address 202.114.12.129 255.255.255.192 R2(config-subif)#no shutdown R2(config-subif)#exit R2(config)#interface fastether0/0 R2(config-if)#no shutdown Switch0(config)#interface f0/24 Switch0(config-if)# switchport mode ( 6 ) Switch0 (config-if)#switchport trunk encapsulation ( 7 ) Switch0(config-if)# switchport trunk allowed all Switch0(config-if)#exit 【问题 3 】 若主机 A 与 Switch1 的 e0/2 端口相连,请完成 Switch1 相应端口设置。 Switch1(config)#interface e0/2 Switch1(config-if)# ( 8 ) (设置端口为接入链路模式) Switch1(config-if)# ( 9 ) (把 e0/2 分配给 VLAN 100 ) Switch1(config-if)#exit 若主机 A 与主机 D 通信,请填写主机 A 与 D 之间的数据转发顺序。 主机 A → ( 10 ) → 主机 D 。 ( 10 )备选答案 A . Switch1 → Switch0 → R2(s0/0) → Switch0 → Switch2 B . Switch1 → Switch0 → R2(e0/0) → Switch0 → Switch2 C . Switch1 → Switch0 → R2(e0/0) → R2(s0/0) → R2(e0/0) → Switch0 → Switch2 D . Switch1 → Switch0 → Switch2 【问题 4 】 为了部门 A 中用户能够访问服务器 Server1 ,请在 R0 上配置一条特定主机路由。 R0(config)#ip route 202.114.10.253 ( 11 ) ( 12 ) 【试题解答】