Which command can you use to specify that network 208.15.208.0 belongs to OSPF area 0?

Which command can you use to specify that network 208.15.208.0 belongs to OSPF area 0?

  • router(config)# network 208.15.208.0 area 0
  • router(config-if)# ip ospf area 0
  • router(config)# network 208.15.208.0 255.255.255.0 area 0
  • router(config-router)# network 208.15.208.0 0.0.0.255 area 0
Explanation:
You identify the area to which a network belongs with the network area command issued from router configuration mode:

router(config-router)# network address wildcard-mask area area-id

To enter router configuration mode, enter the command router ospf process ID in global configuration mode. For this command to be accepted and acted upon by the router, at least one interface on the router must have an IP address assigned and be up.

The command router(config)# network 208.15.208.0 area 0 is incorrect because it is executed in global configuration mode, as evidenced by the prompt router(config)#.

The command router(config-if)# ip ospf area 0 is incorrect. This command would be used to configure the router for OSPF and its area. It would also enter configuration mode for that particular process of OSPF so the user can enter additional commands that affect that process. However, this command is missing the process ID.

The command router(config)# network 208.15.208.0 255.255.255.0 area 0 is incorrect because it is executed in the wrong mode. It is entered in global configuration mode instead of OSPF configuration mode. It also has an incorrect mask. You must use a wildcard mask instead of a regular mask in the network statements for OSPF. In this case, the mask should be 0.0.0.255 instead of 255.255.255.0.

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify OSPF operations

 

Which of the following statements is TRUE about the communication occurring between rtrA and rtrB in the given exhibit?

Which of the following statements is TRUE about the communication occurring between rtrA and rtrB in the given exhibit?

300-410 Part 05 Q20 073

300-410 Part 05 Q20 073

  • The only loopback interface used in the communication is the loopback 0 interface of rtrA.
  • The only loopback interface used in the communication is the loopback 1 interface of rtrB.
  • Both loopback 0 and loopback 1 interfaces are used for the communication between rtrA and rtrB.
  • Neither loopback 0 nor loopback 1 interface is used for the communication between rtrA and rtrB.
Explanation:
The only loopback interface used in the communication is the loopback 0 interface of rtrA. The configuration on the rtrA router indicates that BGP is enabled on rtrA in the autonomous system number (ASN) 450. The neighbor 131.78.45.2 remote-as 450 command establishes a connection with the rtrB interface having the 131.78.45.2 address. The Gi0/1 interface of rtrB has the address 131.78.45.2, which is directly connected to the Gi0/0 interface (132.78.45.1) of rtrA. The next line, neighbor 131.78.45.2 update-source loopback 0, specifies that the 131.78.45.2 interface (Gi0/1) of rtrB communicates with the loopback 0 interface on rtrA.

In the configuration of rtrB, the neighbor 10.144.1.1 remote-as 450 command establishes a neighboring relationship with the interface having the address10.144.1.1. The loopback 0 interface of rtrA has the address 10.144.1.1. The loopback 1 interface on rtrB is assigned an IP address but not used in establishing BGP connections between rtrA and rtrB

Loopback 1 interface of rtrB only would only be used in the communication between rtrA and rtrB if you configured rtrA and rtrB as follows:

rtrA(config)#router bgp 450
rtrA(config-router)# neighbor 131.78.1.1 remote-as 450
rtrB(config)#router bgp 450
rtrB(config-router)# neighbor 131.78.45.1 remote-as 450
rtrB(config-router)# neighbor 131.78.45.1 update-source loopback 1

Both loopback 0 and loopback 1 interfaces are NOT used for communication between rtrA and rtrB. Only the loopback 0 interface of rtrA is used. Both of the loopback interfaces would be used in the communication between rtrA and rtrB only if you changed the configuration of rtrA and rtrB, as given below:

rtrA(config)# router bgp 450
rtrA(config-router)# neighbor 131.78.1.1 remote-as 450
rtrA(config-router)# neighbor 131.78.1.1 update-source loopback 0
rtrB(config)#router bgp 450
rtrB(config-router)# neighbor 10.144.1.1 remote-as 450
rtrB(config-router)# neighbor 10.144.1.1 update-source loopback 1

Because the loopback 0 interface of rtrA is used in communication, is incorrect to state that neither loopback 0 nor loopback 1 interface is used. To ensure that neither of the loopback interfaces are be used for communication, you would configure rtrA and rtrB as follows:

rtrA(config)# router bgp 450
rtrA(config-router)# neighbor 131.78.45.2 remote-as 450
rtrB(config)# router bgp 450
rtrB(config-router)# neighbor 131.78.45.1 remote-as 450

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify eBGP (IPv4 and IPv6 address families)

 

Which commands will display the other routers with which the local router has established an adjacency with, including hold time and uptime parameters?

Which commands will display the other routers with which the local router has established an adjacency with, including hold time and uptime parameters?

  • show ip eigrp neighbors
  • show ip route
  • show adjacencies
  • show eigrp neighbors
Explanation:
The show ip eigrp neighbors command will display the neighboring EIGRP routers with which the local router has established an adjacency. It will also display hold time and uptime statistics. In this case, the uptime statistic refers to how long the adjacency has been established. A sample output of the show ip eigrp neighbors command is below.

Router2# show ip eigrp neigh
IP-EIGRP neighbors for process 100
H Address Interface Hold Uptime SRTT RTO Q Seq
(sec) (ms) Cnt Num
1 10.20.0.1 Se1 11 22:37:26 28 200 0 2
0 10.10.0.1 Se0 13 22:38:09 19 200 0 4

The show ip route command simply displays the routing table and does not provide neighbor information.

The other commands are not valid IOS commands.

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify EIGRP neighbor relationship and authentication

 

Which command can be used to view the number of times the SPF algorithm has been executed?

Which command can be used to view the number of times the SPF algorithm has been executed?

  • show ip ospf
  • show ip ospf interface
  • show ip ospf database
  • show ip ospf neighbor
Explanation:
The show ip ospf command can be used to view the number of times the SPF algorithm has been executed, as shown in the last line of the following output:

300-410 Part 05 Q18 069

300-410 Part 05 Q18 069

The show ip ospf interface command can be used to view neighbor adjacencies. A partial output of the command is shown below. It will not show the number of times the SPF algorithm has been executed.

300-410 Part 05 Q18 070

300-410 Part 05 Q18 070

The show ip ospf neighbor command can also be used to view neighbor adjacencies, although its output is slightly different from the show ip ospf interface command. A partial output of the show ip ospf neighbor command is shown below. It also does not show the number of times the SPF algorithm was executed.

300-410 Part 05 Q18 071

300-410 Part 05 Q18 071

The show ip ospf database command does not show the number of times the SPF algorithm has executed. It shows the contents of OSPF database. Partial output is shown below:

300-410 Part 05 Q18 072

300-410 Part 05 Q18 072

You can make the command output more specific by using parameters with the show ip ospf database command. For example, to view only Type 5 LSAs in the database, you would execute the show ip ospf database external command. Since all Type 5 LSAs are from external networks, this keyword will trim the output to only those types of LSAs. When Type 5 (or external) routes are placed in the database, the next hop address will be 0.0.0.0, which makes it appear as if it is a default route. What this really means is that any traffic that needs to go to that external network will be sent to the router that originated the advertisement (the ASBR).

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify OSPF operations

 

Which command can you use to display the topological database maintained by an OSPF router?

Which command can you use to display the topological database maintained by an OSPF router?

  • show ip ospf topology
  • show ip ospf database
  • show ip ospf [process-id]
  • show ip ospf border-routers
Explanation:
The correct answer is show ip ospf database. Partial output is shown below:

300-410 Part 05 Q17 068

300-410 Part 05 Q17 068

Issuing the show ip ospf database command will show you a summary of the database; however, to obtain details you must use a keyword with the command, such as router, network, summary, or external.

The following commands are available to verify OSPF configurations:

show ip route – displays known routes and from which protocol the routes were discovered for all routing protocols.
show ip ospf – displays the number of times the SPF algorithm has run and the default Link State Update (LSU) interval.
show ip ospf database – displays the router ID, the OSPF process ID, and the contents of the topological database.There is no show ip ospf topology command.The show ip ospf [process-id] command can be used to view the number of times the SPF algorithm has been executed, but not to view the database.The show ip ospf border-routers command display the ABRs and the routes to them, but not the contents of the database.
Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify OSPF path preference

 

Consider the partial output of the show ip route eigrp command:

Consider the partial output of the show ip route eigrp command:

300-410 Part 05 Q16 067

300-410 Part 05 Q16 067

Which of the following destination subnets have equally load-balanced routes? (Choose all that apply.)

  • 172.161.4.47/30
  • 172.161.11.0/27
  • 15.200.16.0/24
  • 15.11.78.0/24
  • 0.0.0.0/0
Explanation:
The 172.161.11.0/27 and 15.200.16.0/24 networks have equally load-balanced routes. A default route, 0.0.0.0/0, has been configured for load balancing as well. These three subnets are each load balanced on multiple routes. The output entry for the 172.161.11.0/27 subnet is as follows:

D 172.161.11.0/27 [90/1723695] via 10.10.19.45, 00:56:17, S0/1
[90/1723695] via 10.10.19.40, 00:50:58, S0/1

This subnet can be reached by rtrA through two routes: 10.10.19.45 and 10.10.19.40 next-hop addresses. Both these routes have the same metric (1723695), and so are equally load balanced.

In the output, the 15.200.16.0/24 subnet has three equal-metric routes: 10.10.78.23, 10.10.19.40, and 10.10.70.41. These three routes are equally used to balance the load from rtrA to the 15.200.16.0/24 subnet.

The default route 0.0.0.0/0 is load balanced through two interfaces, as shown in the output:

D*EX 0.0.0.0/0 [170/2645987] via 10.10.70.41, 00:05:12, Ethernet0/0
[170/2645987] via 10.10.70.23, 00:05:12, Ethernet0/0

This load balancing of the default route could be tested by using traceroute to any IP address not represented in the routing table and verifying the path taken.

Subnets 172.161.4.47/30 and 15.11.78.0/24 are not participating in load balancing. In the given output, there is a single route (line) for both of these subnets. The rtrA router uses the route through the next-hop 10.10.78.23 to reach the 172.161.4.47/30 destination subnet. Similarly, rtrA uses the next-hop 10.10.70.41 to transmit packets to the 15.11.78.0/24 subnet.

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify EIGRP load balancing

 

Which command shows a list of neighboring routers, their priorities, and their current state?

Which command shows a list of neighboring routers, their priorities, and their current state?

  • show ip ospf
  • show ip protocol
  • show ip ospf database
  • show ip ospf neighbor [detail]
Explanation:
The show ip ospf neighbor [detail] command will display the OSPF information that is known about OSPF neighbors and the OSPF operating state with them.

The commands below can be used to monitor and verify OSPF operation:
show ip ospf – shows the number of times the SPF algorithm has run and the default LSU interval.
show ip protocol – displays information about timers, filters, metric, etc. for the entire router.
show ip ospf database – shows the router ID, the OSPF process ID, and the contents of the topological database.

These commands do not show details about OSPF neighbors.

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify OSPF neighbor relationship and authentication

 

Which statements about BGP policy-based routing are true? (Choose two.)

Which statements about BGP policy-based routing are true? (Choose two.)

  • BGP policy-based routing is performed on a router’s inbound interface.
  • A BGP administrator can use policy-based routing to alter the final destination of the packet.
  • BGP policy-based routing will select the next-hop of the packet based on its source address.
  • BGP policy-based routing can be used to alter the path selection for a packet in a downstream AS.
Explanation:
BGP policy-based routing is performed on a router’s inbound interface. BGP policy-based routing will select the next-hop of the packet based on its source address. It does this through the use of route maps.

Below is a partial output of the show run command executed on a router that has a BGP configuration that uses a route map to alter the local preference of a route (172.16.0.0/16) to 90 if it is advertised from the BGP neighbor at 10.5.5.1:

300-410 Part 05 Q14 066

300-410 Part 05 Q14 066

The above output indicates that the local preference for the route to 172.16.0.0/16 is 90 ONLY if it comes from 10.5.5.1, but not if the same route is advertised from 10.5.5.35.

Route maps can be used to influence a part of the routing table without affecting the rest of the table. Consider an example where a router had two routes to every network in the table, and it prefers Neighbor A as the next hop for all routes. If you desired to change the next hop for one of the routes to Neighbor B without affecting the others, you could use route maps to take two different approaches, altering different attributes, which would arrive at the same result. The approaches would be:
Apply a route map to Neighbor B incoming that would set the local preference to 200 (default is 100) for the route. Local preference values determine the path used to exit the AS. A higher value is preferred.
Apply a route map to Neighbor A such that it advertises the route with a MED of 200. Med values determine the preferred path into the AS. A lower value is preferred. The default is 0.

Either of these approaches would result in the next hop for the network hanging to Neighbor B without affecting the others,

Policy-based routing does not alter the destination address of the packet. It can only alter the path to that final destination.

The BGP routing policy in one AS cannot determine the BGP routing policy in another AS.

Objective:
Layer 3 Technologies
Sub-Objective:
Identify suboptimal routing

 

Which of the following commands allows a Cisco router to obtain an IP address from a DHCP server?

Which of the following commands allows a Cisco router to obtain an IP address from a DHCP server?

  • Router(config-if)# ip address dhcp
  • Router(config)# ip address dhcp
  • Router(dhcp-config)# ip address dhcp
  • Router(config)# address dhcp
  • Router(dhcp-config)# address dhcp
Explanation:
The ip address dhcp command when issued from interface configuration mode will allow a router to obtain an IP address for that interface from a DHCP server.

In this scenario, the router is acting as a DHCP client, not a server, so the command would not be issued from dhcp-config mode. In addition, the IP address is being assigned to an interface on the router, not the router as a whole so the command would not be entered at global config mode.

The most common situation in which a router interface might be set as a DHCP client is to enable one DHCP router to obtain configuration options from another router providing this service.

Consider an example where RouterA is connected to RouterB. RouterA contains a complete DHCP configuration including the options (DNS server, domain name). RouterB is connected to RouterA through its FastEthernet0 interface. The following configuration would allow RouterB to issue a different set of addresses than RouterA while importing the options from Router A. The configuration of RouterB is below as shown in the partial output of the show run command:

300-410 Part 05 Q13 065

300-410 Part 05 Q13 065

Note that for this configuration to function properly, the FastEthernet0 interface on RouterB must be set as a DHCP client.

The command router(config)# ip address dhcp is incorrect because it is executed at the global configuration prompt. The command must be executed in interface configuration mode.

The command router(dhcp-config)# ip address dhcp is incorrect because it is executed at the DHCP configuration prompt. The command must be executed in interface configuration mode.

The command router(config)# address dhcp is incorrect because it is missing the ip part of the command.

The command router(dhcp-config)# address dhcp is incorrect because it is missing the ip part of the command and it is executed at the DHCP configuration prompt. It must be executed in interface configuration mode.

Objective:
Layer 3 Technologies
Sub-Objective:
Identify, configure, and verify IPv4 addressing and subnetting

 

By default, how often are EIGRP hello packets sent on a LAN?

By default, how often are EIGRP hello packets sent on a LAN?

  • 5 seconds
  • 10 seconds
  • 30 seconds
  • 60 seconds
Explanation:
The EIGRP default hello time over a LAN or high-speed dedicated WAN link is five seconds.

On multipoint circuits with less than T1 bandwidth, EIGRP hello packets are sent every 60 seconds.
EIGRP sets the default hello interval to five seconds to ensure that it can quickly sense if connectivity to a neighboring router has been cut. If a router does not hear from a neighboring EIGRP router in 15 seconds, it will declare that neighbor as no longer reachable.

The five-second hello interval is shorter than the default values for OSPF hellos (10 seconds), RIP updates (30), or IGRP updates (90). As a result, EIGRP senses network faults faster by default than do other protocols.

Objective:
Layer 3 Technologies
Sub-Objective:
Configure and verify EIGRP neighbor relationship and authentication