0% found this document useful (0 votes)
696 views17 pages

M2 Quiz 15.6.4

Module 15 covers the configuration of static, default, and floating static routes for IPv4 and IPv6 protocols. It includes practical lab exercises and quizzes to reinforce the learning of static routing concepts, commands, and configurations. Key topics include the types of static routes, their syntax, and verification commands for both IPv4 and IPv6.

Uploaded by

Asad Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
696 views17 pages

M2 Quiz 15.6.4

Module 15 covers the configuration of static, default, and floating static routes for IPv4 and IPv6 protocols. It includes practical lab exercises and quizzes to reinforce the learning of static routing concepts, commands, and configurations. Key topics include the types of static routes, their syntax, and verification commands for both IPv4 and IPv6.

Uploaded by

Asad Ali
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6.

Module Practice and Quiz

15.6 Module Practice


and Quiz

Scroll to begin

15.6.1 Packet Tracer - Configure IPv4 and


IPv6 Static and Default Routes

In this Packet Tracer summary activity, you will configure static, default, and floating static
routes for both the IPv4 and IPv6 protocols.

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 1/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Configure IPv4 and IPv6 Static and Configure IPv4 and IPv6 Static and
description Default Routes file_download Default Routes

15.6.2 Lab - Configure IPv4 and IPv6 Static


and Default Routes

In this lab, you will complete the following objectives:

Part 1: Build the Network and Configure Basic Device Settings


Part 2: Configure and Verify IP and IPv6 Addressing on R1 and R2
Part 3: Configure and Verify Static and Default Routing for IPv4 on R1 and R2

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 2/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Part 4: Configure and Verify Static and Default Routing for IPv6 on R1 and R2

description Configure IPv4 and IPv6 Static and Default Routes

15.6.3 What did I learn in this module?

Static Routes

Static routes can be configured for IPv4 and IPv6. Both protocols support the following types of
static routes: standard static route, default static route, floating static route, and summary static
route. Static routes are configured using the ip route and ipv6 route global configuration
commands. When configuring a static route, the next hop can be identified by an IP address,
exit interface, or both. How the destination is specified creates one of the three following types

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 3/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

of static route: next-hop, directly connected, and fully specified. IPv4 static routes are
configured using the following global configuration command: ip route network-address subnet-
mask { ip-address | exit-intf [ip=address] } [distance]. IPv6 static routes are configured using
the following global configuration command: ipv6 route ipv6-prefix/prefix-length { ipv6-address
| exit-intf [ipv6-address]} [distance]. The command to start an IPv4 routing table is show ip
route | begin Gateway. The command to start an IPv6 routing table is show ipv6 route |
begin C.

Configure IP Static Routes

In a next-hop static route, only the next-hop IP address is specified. The exit interface is derived
from the next hop. When configuring a static route, another option is to use the exit interface to
specify the next-hop address. Directly connected static routes should only be used with point-
to-point serial interfaces. In a fully specified static route, both the exit interface and the next-hop
IP address are specified. This form of static route is used when the exit interface is a multi-
access interface and it is necessary to explicitly identify the next hop. The next hop must be
directly connected to the specified exit interface. In a fully specified IPv6 static route, both the
exit interface and the next-hop IPv6 address are specified. Along with show ip route, show
ipv6 route, ping and traceroute, other useful commands to verify static routes include: show
ip route static, show ip route network, and show running-config | section ip route. Replace
ip with ipv6 for the IPv6 versions of the command.

Configure IP Default Static Routes

A default route is a static route that matches all packets. A default route does not require any
far-left bits to match between the default route and the destination IP address. Default static
routes are commonly used when connecting an edge router to a service provider network, and
a stub router. The command syntax for an IPv4 default static route is similar to any other IPv4
static route, except that the network address is 0.0.0.0 and the subnet mask is 0.0.0.0. The
0.0.0.0 0.0.0.0 in the route will match any network address. The command syntax for an IPv6
default static route is similar to any other IPv6 static route, except that the ipv6-prefix/prefix-
length is ::/0, which matches all routes. To verify an IPv4 default static route, use the show ip
route static command. For IPV6 use the show ipv6 route static command.

Configure Floating Static Routes

Floating static routes are static routes that are used to provide a backup path to a primary static
or dynamic route in the event of a link failure. The floating static route is configured with a
higher administrative distance than the primary route. By default, static routes have an
administrative distance of 1, making them preferable to routes learned from dynamic routing
protocols. The administrative distances of some common interior gateway dynamic routing
protocols are EIGRP = 90, OSPF = 110, and IS-IS = 115. IP floating static routes are configured

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 4/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

by using the distance argument to specify an administrative distance. If no administrative


distance is configured, the default value (1) is used. The show ip route and show ipv6 route
output verifies that the default routes to a router are installed in the routing table.

Configure Static Host Routes

A host route is an IPv4 address with a 32-bit mask or an IPv6 address with a 128-bit mask.
There are three ways a host route can be added to the routing table: automatically installed
when an IP address is configured on the router, configured as a static host route, or
automatically obtained through other methods not covered in this module. Cisco IOS
automatically installs a host route, also known as a local host route, when an interface address
is configured on the router. A host route can be a manually configured static route to direct
traffic to a specific destination device. For IPv6 static routes, the next-hop address can be the
link-local address of the adjacent router; however, you must specify an interface type and an
interface number when using a link-local address as the next hop. To do this, the original IPv6
static host route is removed, then a fully specified route is configured with the IPv6 address of
the server and the IPv6 link-local address of the ISP router.

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 5/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

15.6.4 Module Quiz - IP Static Routing

Question 1

A network administrator configures a router by the command ip route 0.0.0.0 0.0.0.0


209.165.200.226. What is the purpose of this command?

To forward all packets to the device with IP address 209.165.200.226

To add a dynamic route for the destination network 0.0.0.0 to the routing
table

To forward packets destined for the network 0.0.0.0 to the device with IP
address 209.165.200.226

signal_cellular_4_bar
To provide a route to forward packets for which there is no route in the
done routing table

Question 2

Which type of static route that is configured on a router uses only the exit interface?

Recursive static route

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 6/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

signal_cellular_4_bar
done Directly connected static route

Fully specified static route

Default static route

Question 3

A network administrator uses the command ip route 172.18.0.0 255.255.0.0 S0/0/1 to


configure a floating static route on a router. That route will function as a backup route to reach
the EIGRP learned network 172.18.0.0/16. After this configuration, the EIGRP route is removed
from the routing table even though EIGRP is still functioning properly. Why is the static route
not functioning as intended?

The next hop neighbor IP address is not configured.

done The administrative distance value is not high enough on the static route. signal_cellular_4_bar
The destination network is incorrectly configured.

The network mask is incorrectly configured.

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 7/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Question 4

What type of static route is created when the next-hop IP address and exit interface are
specified?

Recursive static route

Directly connected static route

signal_cellular_4_bar
done Fully specified static route

Floating static route

Question 5

What is the correct syntax of a floating static route?

ip route 209.165.200.228 255.255.255.248 serial 0/0/0

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 8/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

signal_cellular_4_bar
done ip route 209.165.200.228 255.255.255.248 10.0.0.1 120

ip route 0.0.0.0 0.0.0.0 serial 0/0/0

ip route 172.16.0.0 255.248.0.0 10.0.0.1

Question 6

Which static route statement shows a recursive IPv6 static route?

Ipv6 route 0::/0 S0/0/0

Ipv6 route 0::/0 S0/0/0 254

Ipv6 route 2001:db8:cafe:1::/56 S0/0/0


signal_cellular_4_bar
done Ipv6 route 2001:db8:cafe:1::/56 2001:db8:1000:10::1

Ipv6 route 2001:db8:cafe:1::/56 S0/0/0 2001:db8:1000:10::1

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 9/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Question 7

A network administrator is configuring a route to forward packets to a specific web server. What
type of route should be configured by the administrator?

signal_cellular_4_bar
done A host route

An OSPF route

An EIGRP route

A default route

A static route with an administrative distance higher than 1

Question 8

Which command would create a valid IPv6 default route?

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 10/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

ipv6 route ::/0 fe80::1

ipv6 route 2001:db8:acad:1::/64 ::1

signal_cellular_4_bar
done ipv6 route ::/0 2001:db8:acad:2::a

ipv6 route ::/128 2001:db8:acad:1::1

Question 9

What is a characteristic of a default static route? ​

It backs up a route already discovered by a dynamic routing protocol.

It uses a single network address to send multiple static routes to one


destination address. signal_cellular_4_bar
It identifies the gateway IP address to which the router sends all IP packets
done for which it does not have a learned or static route.

It is configured with a higher administrative distance than is the original


dynamic routing protocol.

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 11/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Question 10

What is the purpose of a floating static route?

It allows summarization of contiguous networks.

signal_cellular_4_bar
done It allows an alternate connection to be used when the preferred link fails.

It is commonly used when a dynamic routing protocol is not being used.

It allows connectivity to remote destinations that are not contained in the


routing table.

Question 11

Which IPv6 static route would serve as a backup route to a dynamic route learned through
OSPF?

Router1(config)# ipv6 route 2001:db8:acad:1::/32 2001:db8:acad:6::2


100

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 12/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Router1(config)# ipv6 route 2001:db8:acad:1::/32 2001:db8:acad:6::100

signal_cellular_4_bar
Router1(config)# ipv6 route 2001:db8:acad:1::/32 2001:db8:acad:6::2
done 200

Router1(config)# ipv6 route 2001:db8:acad:1::/32 gigabitethernet0/0


2001:db8:acad:6::100 100

Question 12

What command, or set of commands, would be used to determine if the following configuration
on router HQ works as designed?

ip route 0.0.0.0 0.0.0.0 serial 0/0/0 10


ip route 0.0.0.0 0.0.0.0 serial 0/1/0

signal_cellular_4_bar
HQ(config)# interface serial 0/1/0
HQ(config-if)# shutdown
done HQ(config-if)# end
HQ# show ip route

HQ# traceroute 128.107.0.99

HQ# show ip interface brief

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 13/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

HQ# ping 128.107.0.99


HQ# ping 64.100.0.5

HQ# show ip route

Question 13

Which type of static route typically uses the distance parameter in the ip route global
configuration command?

Summary static route

Default static route

signal_cellular_4_bar
done Floating static route

Standard static route

Question 14
https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 14/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

Why would a floating static route be configured with an administrative distance that is higher
than the administrative distance of a dynamic routing protocol that is running on the same
router?

signal_cellular_4_bar
done To be used as a backup route

To load-balance the traffic

To act as a gateway of last resort

To be the priority route in the routing table

Question 15

What network address and subnet mask combination would be used to create a default static
route that matches any IPv4 destination?
signal_cellular_4_bar
done 0.0.0.0 0.0.0.0

0.0.0.0 255.255.255.255

255.255.255.255 255.255.255.255

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 15/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

255.255.255.255 0.0.0.0

You've submitted your answers!

Reset done

Review Assessment

100%

You've scored 100%.

Congratulations, you have passed the test!

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 16/17
10/30/24, 11:53 PM Module 15: IP Static Routing | 15.6. Module Practice and Quiz

https://www.netacad.com/launch?id=9572256d-2453-42e4-a3a5-bddf7a3fdb87&tab=curriculum&view=a9e47d8e-0312-5df1-a3d5-974df2141b8a 17/17

You might also like