0% found this document useful (0 votes)
133 views

CCNA Training IP Routing Questions 2

The document contains a series of questions and explanations about IP routing. It tests the reader's knowledge on topics like route selection process, static and default routes, and floating static routes. The questions cover concepts like administrative distance, route prefixes, next hop selection, and using static routes as backups when dynamic routing protocols fail.

Uploaded by

huyitmc2
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
133 views

CCNA Training IP Routing Questions 2

The document contains a series of questions and explanations about IP routing. It tests the reader's knowledge on topics like route selection process, static and default routes, and floating static routes. The questions cover concepts like administrative distance, route prefixes, next hop selection, and using static routes as backups when dynamic routing protocols fail.

Uploaded by

huyitmc2
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Type text to search here...


Home > IP Routing Questions 2

IP Routing Questions 2
January 20th, 2021 Go to comments

Premium Member: You can test your knowledge with these questions first via this link (via HTML).

Question 1

Refer to the exhibit. A router reserved these five routes from different routing information sources. Which two
routes does the router install in its routing table? (Choose two)

IBGP route 10.0.0.0/30


RIP route 10.0.0.0/30
OSPF route 10.0.0.0/16
OSPF route 10.0.0.0/30
EIGRP route 10.0.0.1/32

A. RIP route 10.0.0.0/30


B. iBGP route 10.0.0.0/30
C. OSPF route 10.0.0.0/30
D. EIGRP route 10.0.0.1/32
E. OSPF route 10.0.0.0/16

Answer: C D

Explanation

In the five above routes, there are only three different routes which are 10.0.0.0/30 and 10.0.0.0/16 and
10.0.0.1/32. Since each of these routes has a different prefix length (subnet mask), they’re considered different
destinations, and they will all be installed in the routing table.

The prefix 10.0.0.0/30 was learned from three different routing protocols IBGP, RIP and OSPF so the route with
lowest AD would be chosen. The AD of IBGP is 200 and the AD of RIP is 120 so for the prefix 10.0.0.0/30,
only the OSPF route has the lowest AD (110) and it would be chosen to install into the routing table.

Reference: https://www.cisco.com/c/en/us/support/docs/ip/enhanced-interior-gateway-routing-protocol-
eigrp/8651-21.html

In fact this question should have three answers (including answer E), not sure why it only allows to choose two.

Question 2

A packet is destined for 10.10.1.22. Which static route does the router choose to forward the packet?
https://www.9tut.com/ip-routing-questions-2 1/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

A. ip route 10.10.1.0 255.255.255.240 10.10.255.1


B. ip route 10.10.1.16 255.255.255.252 10.10.255.1
C. ip route 10.10.1.20 255.255.255.252 10.10.255.1
D. ip route 10.10.1.20 255.255.255.254 10.10.255.1

Answer: C

Explanation

The subnet 10.10.1.20/30 covers the destination 10.10.1.22 as this subnet ranges from 10.10.1.20 to 10.10.1.23
so it is the correct answer.

Question 3

Refer to the exhibit. Router R1 Fa0/0 cannot ping router R3 Fa0/1. Which action must be taken in router R1 to
help resolve the configuration issue?

R2#show ip route
R1#show ip route <output omitted>
<output omitted> Gateway of last resort is not set
Gateway of last resort is not set
20.0.0.0/24 is subnetted, 1 subnets
10.0.0.0/24 is subnetted, 1 subnets C 20.20.20.0 is directly connected, FastEthernet0/1
C 10.10.10.0 is directly connected, FastEthernet0/0 10.0.0.0/24 is subnetted, 1 subnets
C 10.10.10.0 is directly connected, FastEthernet0/0

R3#show ip route
<output omitted>
Gateway of last resort is not set

20.0.0.0/24 is subnetted, 1 subnets


C 20.20.20.0 is directly connected, FastEthernet0/1
10.0.0.0/24 is subnetted, 1 subnets
S 10.10.10.0 [1/0] via 20.20.20.1

A. set the default network as 20.20.20.0/24


B. set the default gateway as 20.20.20.2
C. configure a static route with Fa0/1 as the egress interface to reach the 20.20.20.0/24 network
D. configure a static route with 10.10.10.2 as the next hop to reach the 20.20.20.0/24 network

Answer: D

Question 4
https://www.9tut.com/ip-routing-questions-2 2/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Refer to the exhibit. Router R1 is running three different routing protocols. Which route characteristic is used by
the router to forward the packet that it receives for destination IP 172.16.32.1?

A. longest prefix
B. metric
C. cost
D. administrative distance

Answer: A

Explanation

A router evaluates routes in the following order.


1. Prefix Length – The longest-matching route is preferred first. Prefix length trumps all other route attributes.
2. Administrative Distance – In the event there are multiple routes to a destination with the same prefix length,
the route learned by the protocol with the lowest administrative distance is preferred.
3. Metric – In the event there are multiple routes learned by the same protocol with same prefix length, the route
with the lowest metric is preferred. (If two or more of these routes have equal metrics, load balancing across
them may occur.)

Question 5

Router R1 must send all traffic without a matching routing-table entry to 192.168.1.1. Which configuration
accomplishes this task?

A.
R1#config t
R1(config)#ip routing
R1(config)#ip route default-route 192.168.1.1

B.
R1#config t
R1(config)#ip routing
R1(config)#ip route 192.168.1.1 0.0.0.0 0.0.0.0

C.
R1#config t
R1(config)#ip routing
R1(config)#ip route 0.0.0.0 0.0.0.0 192.168.1.1

D.
R1#config t
R1(config)#ip routing
R1(config)#ip default-gateway 192.168.1.1

Answer: C

https://www.9tut.com/ip-routing-questions-2 3/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Question 6

Refer to the exhibit. How does router R1 handle traffic to 192.168.12.16?

EIGRP: 192.168.12.0/24
RIP: 192.168.12.0/27
OSPF: 192.168.12.0/26

A. It selects the IS-IS route because it has the shortest prefix inclusive of the destination address
B. It selects the EIGRP route because it has the lowest administrative distance
C. It selects the OSPF route because it has the lowest cost
D. It selects the RIP route because it has the longest prefix inclusive of the destination address

Answer: D

Question 7

R1 has learned route 10.10.10.0/24 via numerous routing protocols. Which route is installed?

A. route with the lowest cost


B. route with the next hop that has the highest IP
C. route with the shortest prefix length
D. route with the lowest administrative distance

Answer: D

Question 8

What are two reasons for an engineer to configure a floating static route? (Choose two)

A. to automatically route traffic on a secondary path when the primary path goes down
B. to route traffic differently based on the source IP of the packet
C. to enable fallback static routing when the dynamic routing protocol fails
D. to support load balancing via static routing
E. to control the return path of traffic that is sent from the router

Answer: A C

Explanation

Floating static routes are static routes that have an administrative distance greater than the administrative
distance (AD) of another static route or dynamic routes. By default a static route has an AD of 1 then floating
static route must have the AD greater than 1. Floating static route has a manually configured administrative
distance greater than that of the primary route and therefore would not be in the routing table until the primary
route fails.

Question 9

Refer to the exhibit. A packet is being sent across router R1 to host 172.16.3.14. To which destination does the
router send the packet?
https://www.9tut.com/ip-routing-questions-2 4/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

A. 207.165.200.246 via Serial0/1/0


B. 207.165.200.254 via Serial0/0/0
C. 207.165.200.254 via Serial0/0/1
D. 207.165.200.250 via Serial0/0/0

Answer: C

Question 10

Refer to the exhibit. Which route type is configured to reach the internet?

R1#show ip route
Gateway of last resort is 10.10.10.18 to network 0.0.0.0

10.0.0.0/8 is variably subnetted, 4 subnets. 3 Masks


C 10.10.10.0/30 is directly connected. FastEthernet0/1
O 10.10.13.0/25 [110/4576] via 10.10.10.1, 02:53:11, FastEthernet0/1
C 10.10.10.16/30 is directly connected, FastEthernet0/24
0 10.10.13.144/28 [110/110] via 10.10.10.1, 03:51:21, FastEthernet0/1
B* 0.0.0.0/0 [20/0] via 10.10.10.18, 02:17:53

https://www.9tut.com/ip-routing-questions-2 5/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

A. host route
B. default route
C. floating static route
D. network route

Answer: B

Explanation

R1 uses the last entry (B* 0.0.0.0/0 …) to reach the Internet. The symbol * means this is a default route.

Question 11

Refer to the exhibit. Router R2 is configured with multiple routes to reach network 10 1.1 0/24 from router R1.
What protocol is chosen by router R2 to reach the destination network 10.1 1 0/24?

A. OSPF
B. static
C. EIGRP
D. eBGP

Answer: B

Explanation

The static route has the Administrative Distance of 1 so it is preferred over other popular routing protocols.

Question 12

Refer to the exhibit.

https://www.9tut.com/ip-routing-questions-2 6/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Which command configures a floating static route to provide a backup to the primary link?

A. ip route 0.0.0.0 0.0.0.0 209.165.202.131


B. ip route 209.165.201.0 255.255.255.224 209.165.202.130
C. ip route 0.0.0.0 0.0.0.0 209.165.200.224
D. ip route 209.165.200.224 255.255.255.224 209.165.202.129 254

Answer: D

Explanation

Floating static routes are static routes that have an administrative distance greater than the administrative
distance (AD) of another static route or dynamic routes. By default a static route has an AD of 1 then floating
static route must have the AD greater than 1. Floating static route has a manually configured administrative
distance greater than that of the primary route and therefore would not be in the routing table until the primary
route fails.

In this question, the floating static route to subnet 209.165.200.224/27 is manually assigned the AD of 254.

Comments (13) Comments

1. Haji gu
January 20th, 2021

can you plz explain qestion 2

2. Haji gu
January 22nd, 2021

any one plz explain


qestion 2

3. 9tut
January 23rd, 2021

https://www.9tut.com/ip-routing-questions-2 7/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

@Haji gu: The subnet 10.10.1.20/30 covers the destination 10.10.1.22 as this subnet ranges from
10.10.1.20 to 10.10.1.24 so it is the correct answer.

4. Anonymous
February 5th, 2021

How can I view the questions. All I can see are the explanations. Thank you for the reply.

5. Ad
March 2nd, 2021

Can someone please explain question 11, how do you recognise a static route to R1 and where is the AD
defined?

6. Leonardo
April 11th, 2021

Question 2 in the explanation “the network this subnet ranges from 10.10.1.20 to 10.10.1.24 so it is the
correct answer” / the network ranges from 10.10.1.20 to 10.10.1.23 it jumps in 4 steps.

7. Marcelo
July 30th, 2021

can someone explain question 4 to me.


what do we mean by the longest prefix /27?
WHY?

8. noko
August 9th, 2021

Question 2
10.10.1.20 to 10.10.1.23 so it is the correct answer.

9. ashu
December 10th, 2021

please explain Q4. Why AD is not used and why longer prefix rule is right answer?

10. 9tut
December 10th, 2021

@ashu: We have just added explanation for Q4 so please check again.

11. A19
January 11th, 2022

@9tut how can I contact you? Please write your email

12. glorious_estefan
May 17th, 2022

slight typo on question 2 explanation that may cause confusion

10.10.1.24 would be the subnet ID for the following subnet, so the subnet range would be 10.10.1.20 –
10.10.1.23, and NOT 10.10.1.20 – 10.10.1.24. See below..

https://www.9tut.com/ip-routing-questions-2 8/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

10.10.1.0 – 10.10.1.3 (using zero network)


10.10.1.4 – 10.10.1.7
10.10.1.8 – 10.10.1.11
10.10.1.12 – 10.10.1.15
10.10.1.16 – 10.10.1.19
10.10.1.20 – 10.10.1.23
10.10.1.24 – 10.10.1.27

13. 9tut
May 18th, 2022

@glorious_estefan: Thank you for your detection, we updated Q2 explanation.

Add a Comment
Name

Tôi không phải là người


máy reCAPTCHA
Bảo mật - Điều khoản

Submit Comment
Subscribe to comments feed
IP Routing Questions OSPF Questions

Premium Member Zone


Welcome Hai Minh!

Welcome Premium Member


CCNA – New Questions Part 5
CCNA – New Questions Part 6
CCNA – New Questions Part 7
CCNA – New Questions Part 8
CCNA – New Questions Part 9
CCNA – New Questions Part 10
Composite Quizzes
IP Services Sim
Static Routing Configuration Sim
Static Routing Configuration Sim 2
OSPF Configuration Sim

Logout

CCNA 200-301
Basic Questions
https://www.9tut.com/ip-routing-questions-2 9/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Topology Architecture Questions


Cloud & Virtualization Questions
CDP & LLDP Questions
Switch Questions
VLAN & Trunking Questions
VLAN & Trunking Questions 2
STP & VTP Questions
EtherChannel Questions
TCP & UDP Questions
IP Address & Subnetting Questions
IP Routing Questions
IP Routing Questions 2
OSPF Questions
OSPF Questions 2
EIGRP Questions
NAT Questions
NTP Questions
Syslog Questions
HSRP Questions
Access-list Questions
AAA Questions
Security Questions
Security Questions 2
DAI Questions
IPv6 Questions
DNS Questions
QoS Questions
Port Security Questions
Wireless Questions
Wireless Questions 2
SDN Questions
DNA Center Questions
Drag Drop Questions
Drag Drop Questions 2
Drag Drop Questions 3
VPN Questions
DHCP Questions
Automation Questions
Miscellaneous Questions
CCNA FAQs & Tips
Share your new CCNA Experience

CCNA Self-Study
Practice CCNA GNS3 Labs
CCNA Knowledge
CCNA Lab Challenges
Puppet Tutorial
Chef Tutorial
Ansible Tutorial
JSON Tutorial
Layer 2 Threats and Security Features
AAA TACACS+ and RADIUS Tutorial
https://www.9tut.com/ip-routing-questions-2 10/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

STP Root Port Election Tutorial


GRE Tunnel Tutorial
Basic MPLS Tutorial
TCP and UDP Tutorial
Border Gateway Protocol BGP Tutorial
Point to Point Protocol (PPP) Tutorial
WAN Tutorial
DHCP Tutorial
Simple Network Management Protocol SNMP Tutorial
Syslog Tutorial
Gateway Load Balancing Protocol GLBP Tutorial
EtherChannel Tutorial
Hot Standby Router Protocol HSRP Tutorial
InterVLAN Routing Tutorial
Cisco Command Line Interface CLI
Cisco Router Boot Sequence Tutorial
OSI Model Tutorial
Subnetting Tutorial – Subnetting Made Easy
Frame Relay Tutorial
Wireless Tutorial
Virtual Local Area Network VLAN Tutorial
VLAN Trunking Protocol VTP Tutorial
IPv6 Tutorial
Rapid Spanning Tree Protocol RSTP Tutorial
Spanning Tree Protocol STP Tutorial
Network Address Translation NAT Tutorial
Access List Tutorial
RIP Tutorial
EIGRP Tutorial
OSPF Tutorial

Network Resources
Free Router Simulators
CCNA Website
ENCOR Website
ENSDWI Website
ENARSI Website
DevNet Website
CCIE R&S Website
Security Website
Wireless Website
Design Website
Data Center Website
Service Provider Website
Collaboration Website

Top

https://www.9tut.com/ip-routing-questions-2 11/12
11:02, 16/06/2022 CCNA Training » IP Routing Questions 2

Copyright © 2021 CCNA Training


Site Privacy Policy. Valid XHTML 1.1 and CSS 3.H

https://www.9tut.com/ip-routing-questions-2 12/12

You might also like