本帖最后由 林原静羽 于 2010-7-31 19:18 编辑
本次专题讲解的是和路由相关知识(题目从V.31中抽取)。先上题目和解析,图以后补齐。
4. Refer to the exhibit. Which two statements are true about the loopback address that is configured on
RouterB? (Choose two.)
A. It ensures that data will be forwarded by RouterB.
B. It provides stability for the OSPF process on RouterB.
C. It specifies that the router ID for RouterB should be 10.0.0.1.
D. It decreases the metric for routes that are advertised ** RouterB.
E. It indicates that RouterB should be elected the DR for the LAN.
翻译:参考图,关于RouterB的环回口哪两个描述是正确的?
A.它确保数据将会被RouterB转发。
B.它为RouterB的OSPF进程提供稳定性。
C.它指定了RouterB的router ID为10.0.0.1。
D.它减少了RouterB通告路由的度量值。
E.它表明RouterB应该是这个LAN的DR。
解析:涉及的知识点,运行OSPF进程的路由器自动选举router ID时,若有环回口则选择最高的环回口IP,B中只有一个环回口,即10.0.0.1为router ID.由于环回口是逻辑接口,保证了OSPF进程的稳定性。选项A、D、E不符合。一个LAN中选择DR,先比较优先级再比较 router-id,越大越优先。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9. Refer to the exhibit. The router has been configured with these commands:
hostname Gateway
interface FastEthernet 0/0
ip address 198.133.219.14 255.255.255.248
no shutdown
interface FastEthernet 0/1
ip address 192.168.10.254 255.255.255.0
no shutdown
interface Serial 0/0
ip address 64.100.0.2 255.255.255.252
no shutdown
ip route 0.0.0.0 0.0.0.0 64.100.0.1
What are the two results of this configuration? (Choose two.)
A. The default route should have a next hop address of 64.100.0.3.
B. Hosts on the LAN that is connected to FastEthernet 0/1 are using public IP addressing.
C. The address of the subnet segment with the WWW server will support seven more servers.
D. The addressing scheme allows users on the Internet to access the WWW server.
E. Hosts on the LAN that is connected to FastEthernet 0/1 will not be able to access the Internet without
address translation.
翻译:路由器上配置下列命令,这些配置会出现哪两个结果?
A.默认路由下一跳IP为64.100.0.3
B.LAN中与f0/1直连的主机使用公有IP地址。
C.WWW服务器所在子网的地址将支持多于7种的服务。
D.该地址方案允许Internet上的用户访问WWW服务器。
E.LAN中与f0/1直连的主机在没有地址转换时无法访问Internet.
解析:此题考察的是私有、公有地址识别(见专题一)以及默认路由的语法格式。ip route 0.0.0.0 0.0.0.0 64.100.0.1这条命令表示默认路由下一跳IP为64.100.0.1。A错。
interface FastEthernet 0/1
ip address 192.168.10.254 255.255.255.0
这两条命令表示f0/1使用地址192.168.10.254,为私有地址,所以直连的主机也为私有地址,需要NAT才能访问Internet.故B错,E对。WWW服务器提供http服务,无所谓7种服务等。故C错。WWW服务器的地址为198.133.219.14,为公有地址,故可以被Internet上的用户访问。故D对。选项为DE。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12. Which two statements are true about the command ip route 172.16.3.0 255.255.255.0 192.168.2.4?
(Choose two.)
A. It establishes a static route to the 172.16.3.0 network.
B. It establishes a static route to the 192.168.2.0 network.
C. It configures the router to send any traffic for an unknown destination to the 172.16.3.0 network.
D. It configures the router to send any traffic for an unknown destination out the interface with the address
192.168.2.4.
E. It uses the default administrative distance.
F. It is a route that would be used last if other routes to the same destination exist.
翻译:关于命令ip route 172.16.3.0 255.255.255.0 192.168.2.4哪两个描述是正确的?
A.它建立去往172.16.3.0网段的静态路由。
B.它建立去往192.168.2.0网段的静态路由。
C.配置使得路由器发送未知目的IP的流量去往172.16.3.0网段。
D.配置使得路由器将未知目的地的流量从IP地址为192.168.2.4的接口发送出去。
E.它使用默认的AD值。
F.去往同一个目的地有其他路由时,这条路由会被最后使用。
解析:考察对静态路由的理解。这条命令表示去往172.16.3.0 网段的流量发往192.168.2.4的下一跳。使用的是默认的AD值1。正确选项为AE。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16. Refer to the exhibit. Assume that the routing protocol referenced in each choice below is configured with
its default settings and the given routing protocol is running on all the routers. Which two conditional
statements accurately state the path that will be chosen between networks 10.1.0.0 and 10.3.2.0 for the
routing protocol mentioned? (Choose two.)
A. If OSPF is the routing protocol, the path will be ** R1 to R3 to R4 to R5.
B. If OSPF is the routing protocol, the path will be ** R1 to R2 to R5.
C. If OSPF is the routing protocol, the path will be ** R1 to R5.
D. If RIPv2 is the routing protocol, the path will be ** R1 to R3 to R4 to R5.
E. If RIPv2 is the routing protocol, the path will be ** R1 to R5.
翻译:参考图,各个选项中假设路由器上运行不同的路由协议,关于去往网段10.1.0.0和10.3.2.0的选路哪两个是正确的?
解析:此题考察的是各个路由协议的metric度量值计算方式。OSPF协议的metric值为cost,cost=10^8/带宽,cost与带宽成反比,选R1-R3-R4-R5。RIPv2的metric值为hop,跳数,选R1-R5。正确选项为AE。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21. Refer to the exhibit. Which three statements are true about how router JAX will choose a path to the 10.1.3.0/24 network when different routing rotocols are configured? (Choose three.)
A. By default, if RIPv2 is the routing protocol, only the path JAX-ORL will be installed into the routing table.
B. The equal cost paths JAX-CHI-ORL and JAX-NY-ORL will be installed in the routing table if RIPv2 is the
routing protocol.
C. When EIGRP is the routing protocol, only the path JAX-ORL will be installed in the routing table by
default.
D. When EIGRP is the routing protocol, the equal cost paths JAX-CHI-ORL, and JAX-NY-ORL will be
installed in the routing table by default.
E. With EIGRP and OSPF both running on the network with their default configurations, the EIGRP paths
will be installed in the routing table.
F. The OSPF paths will be installed in the routing table, if EIGRP and OSPF are both running on the
network with their default configurations.
翻译:参考图,当配置不同路由协议时,路由器JAX去往10.1.3.0/24网段是怎么选路的?
解析:考察点同上题,不同协议的metric值,以及同时使用不同协议时根据AD值选路。使用RIPv2,选择JAX-ORL。EIGRP metric为五个复合值,与带宽成反比,支持等价负载均衡,即JAX-NY-ORL和JAX-CHI-ORL两条形成等价负载均衡。同时使用EIGRP和OSPF时,由于EIGRP AD为90,OSPF AD值为110,故选择EIGRP。正确选项为ADE。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22. Refer to the exhibit. Which three statements correctly describe Network Device A? (Choose three.)
A. With a network wide mask of 255.255.255.128, each interface does not require an IP address.
B. With a network wide mask of 255.255.255.128, each interface does require an IP address on a unique IP
subnet.
C. With a network wide mask of 255.255.255.0, must be a Layer 2 device for the PCs to communicate with
each other.
D. With a network wide mask of 255.255.255.0, must be a Layer 3 device for the PCs to communicate with
each other.
E. With a network wide mask of 255.255.254.0, each interface does not require an IP address.
翻译:参考图,关于网络设备A哪三个描述是正确的?
A.若掩码为255.255.255.128,则每个接口不需要配置IP。
B.若掩码为255.255.255.128,则每个接口需要配置IP。
C.若掩码为255.255.255.0,一定是使用二层设备连接两PC。
D.C.若掩码为255.255.255.0,一定是使用三层设备连接两PC。
E.若掩码为255.255.254.0,每个接口需要配置IP地址。
解析:考察VLSM,不同子网的判断方法。若两PC是在同一个网段,不需要另外配置IP地址,中间的设备为二层设备,若两PC在不同的网段,则中间的设备为三层设备,需要配置IP地址。当掩码为255.255.255.128/255.255.255.0,两PC均属于不同的网段,故中间设备为三层设备,且需要IP地址。为掩码为255.255.254.0,两PC位于同一个子网10.1.0.0/23(范围:10.1.0.1——10.1.1.254,具体计算方法参考专题一),中间设备为二层设备即可,不需要配置IP。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25. Refer to the exhibit. The network administrator must establish a route by which London workstations
can forward traffic to the Manchester workstations. What is the simplest way to accomplish this?
A. Configure a dynamic routing protocol on London to advertise all routes to Manchester.
B. Configure a dynamic routing protocol on London to advertise summarized routes to Manchester.
C. Configure a dynamic routing protocol on Manchester to advertise a default route to the London router.
D. Configure a static default route on London with a next hop of 10.1.1.1.
E. Configure a static route on London to direct all traffic destined for 172.16.0.0/22 to 10.1.1.2.
F. Configure Manchester to advertise a static default route to London.
翻译:参考图,网络管理员建立路由条目确定London工作站可以转发流量到Manchester 工作站。下列哪个是最简单的方法?
A.在London上配置动太路由协议通告所有的路由条目给Manchester。
B.在London上配置动太路由协议通告汇总路由条目给Manchester。
C.在Manchester上配置动太路由协议通告默认路由条目给London。
D.在London上配置下一跳为10.1.1.1的默认路由。
E.在London上配置静态路由将去往172.16.0.0/22网段的流量发到10.1.1.2。
解析:考察静态路由的优点:简单。故排除掉ABC。在London上配置静态路由,下一跳为10.1.1.2,故选 E.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
103. Your ISP has given you the address 223.5.14.6/29 to assign to your router's interface. They have also given you the default gateway address of 223.5.14.7. After you have configured the address, the router is unable to ping any remote devices. What is preventing the router ** pinging remote devices?
A. The default gateway is not an address on this subnet.
B. The default gateway is the broadcast address for this subnet.
C. The IP address is the broadcast address for this subnet.
D. The IP address is an invalid class D multicast address.
翻译:ISP为你的路由器接口分配地址223.5.14.6/29,并告诉你的网关地址为223.5.14.7,配置后发现路由器无法ping通远端设备,哪些原因防止路由器ping通远端设备?
A.默认网关不在同一个子网。
B.默认网关是该子网的广播地址。
C.接口IP地址为子网的广播地址。
D.接口IP地址为D类组播地址。
解析:考察IP地址。接口IP地址属于子网223.5.14.0/29,该子网的范围:223.5.14.0——223.5.14.7,223.5.14.7为广播地址。D类地址从224.0.0.0开始。故选项为B。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
107. Which command is used to configure a default route?
A. ip route 172.16.1.0 255.255.255.0 0.0.0.0
B. ip route 172.16.1.0 255.255.255.0 172.16.2.1
C. ip route 0.0.0.0 255.255.255.0 172.16.2.1
D. ip route 0.0.0.0 0.0.0.0 172.16.2.1
翻译:配置默认路由的是哪条命令?
考察:默认路由的配置,选D。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
108. If IP routing is enabled, which two commands set the gateway of last resort to the default gateway?
(Choose two.)
A. ip default-gateway 0.0.0.0
B. ip route 172.16.2.1 0.0.0.0 0.0.0.0
C. ip default-network 0.0.0.0
D. ip default-route 0.0.0.0 0.0.0.0 172.16.2.1
E. ip route 0.0.0.0 0.0.0.0 172.16.2.1
翻译:如果配置IP路由,哪两条命令可以设置默认网关?
解析:考察路由器默认网关的设置。对于路由器来说,默认路由中指明的下一跳即为路由器的网关,选项为CE。
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^低调的分割线^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
114. What must be set correctly when configuring a serial interface so that higher-level protocols calculate
the best route?
A. bandwidth
B. delay
C. load
D. reliability
翻译:serial接口下,高级路由协议如何计算最优路由?
解析:带宽。 |