The sh ip route command is entered on RouterA in the campus LAN shown in Figure 9-18. The LAN has been fully configured to run EIGRP. How many EIGRP subnets are running on the network? Identify the connected C and EIGRP D subnets.

Figure 9-18


7 subnets
RouterA#sh ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B -
BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate
default
U - per-user static route, o - ODR
T - traffic engineered route
Gateway of last resort is not set
10.0.0.0/24 is subnetted, 7 subnets
D 10.10.5.0 [90/2195456] via 10.10.100.2, 00:01:39, Serial0
D 10.10.10.0 [90/2195456] via 10.10.200.2, 00:01:38, Serial1
D 10.10.1.0 [90/2195456] via 10.10.200.2, 00:01:38, Serial1
C 10.10.20.0 is directly connected, Ethernet0
C 10.10.100.0 is directly connected, Serial0
D 10.10.150.0 [90/2681856] via 10.10.200.2, 00:01:39, Serial1
[90/2681856] via 10.10.100.2, 00:01:39, Serial0
C 10.10.200.0 is directly connected, Serial1

Computer Science & Information Technology

You might also like to view...

A depth-first tree is always different from a breadth-first tree rooted at the same vertex for the same graph G.

a. True b. False

Computer Science & Information Technology

The act of transferring data from a bus to a peripheral device or from a peripheral device to a bus involves such logical tasks as counting and synchronization. The necessary intelligence is provided by a(n) __________, a chip mounted on the interface board that controls the transfer process.

a. controller b. clock c. access method d. The premise of this question is false.

Computer Science & Information Technology

Suppose a template function is defined as follows:

``` template T maxValue(const T &value1, const T &value2) { if (value1 > value2) return value1; else return value2; } ``` Which of the following statements are correct? A. cout << maxValue(1.5, 2) B. cout << maxValue('A', 'B') C. cout << maxValue(1, 2) D. cout << maxValue("AB", "AB") E. cout << maxValue(1.5, 2.5)

Computer Science & Information Technology

The RANK.EQ function returns ________

A) the rank of a value within a dataset, throwing out ties B) the rank of a value within a dataset, giving the same ranking to tied values C) the rank of a value within a dataset, giving an average ranking to tied values D) the rank of a value within a dataset, giving the highest ranking possible to ties

Computer Science & Information Technology