C 22
C 22
)
A. Static routing is more secure because it does not advertise over the
network.
B. Static routing scales well with expanding networks.
C. Static routing requires very little knowledge of the network for correct
implementation.
D. Static routing uses fewer router resources than dynamic routing.
E. Static routing is relatively easy to configure for large networks.
Static routing requires a thorough understanding of the entire network for proper
implementation. It can be prone to errors and does not scale well for large
networks. Static routing uses fewer router resources, because no computing is
required for updating routes. Static routing can also be more secure because it
does not advertise over the network.
2. Refer to the exhibit. What routing solution will allow both PC A and PC B to access
the Internet with the minimum amount of router CPU and network bandwidth
utilization?
A. Configure a static route from R1 to Edge and a dynamic route from Edge to
R1.
B. Configure a static default route from R1 to Edge, a default route from Edge
to the Internet, and a static route from Edge to R1.
C. Configure a dynamic route from R1 to Edge and a static route from Edge to
R1.
D. Configure a dynamic routing protocol between R1 and Edge and advertise all
routes.
Two routes have to be created: a default route in R1 to reach Edge and a static
route in Edge to reach R1 for the return traffic. This is a best solution once PC A
and PC B belong to stub networks. Moreover, static routing consumes less
bandwidth than dynamic routing.
3. What is the correct syntax of a floating static route?
A. ip route 209.165.200.228 255.255.255.248 serial 0/0/0
B. ip route 209.165.200.228 255.255.255.248 10.0.0.1 120
C. ip route 0.0.0.0 0.0.0.0 serial 0/0/0
D. ip route 172.16.0.0 255.248.0.0 10.0.0.1
Floating static routes are used as backup routes, often to routes learned from
dynamic routing protocols. To be a floating static route, the configured route must
have a higher administrative distance than the primary route. For example, if the
primary route is learned through OSPF, then a floating static route that serves as
a backup to the OSPF route must have an administrative distance greater than
110. The administrative distance on a floating static route is put at the end of the
static route: ip route 209.165.200.228 255.255.255.248 10.0.0.1 120.
4. What is a characteristic of a static route that matches all packets?
A. It backs up a route already discovered by a dynamic routing protocol.
B. It uses a single network address to send multiple static routes to one
destination address.
C. It identifies the gateway IP address to which the router sends all IP packets
for which it does not have a learned or static route.
D. It is configured with a higher administrative distance than the original
dynamic routing protocol has.
A default static route is a route that matches all packets. It identifies the gateway
IP address to which the router sends all IP packets for which it does not have a
learned or static route. A default static route is simply a static route with
0.0.0.0/0 as the destination IPv4 address. Configuring a default static route
creates a gateway of last resort.
5. What type of route allows a router to forward packets even though its routing
table contains no specific route to the destination network?
A. dynamic route
B. default route
C. destination route
D. generic route
6. 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?
A. to be used as a backup route
B. to load-balance the traffic
C. to act as a gateway of last resort
D. to be the priority route in the routing table
By default, dynamic routing protocols have a higher administrative distance than
static routes. Configuring a static route with a higher administrative distance than
that of the dynamic routing protocol will result in the dynamic route being used
instead of the static route. However, should the dynamically learned route fail,
then the static route will be used as a backup.
7. A company has several networks with the following IP address requirements:
IP phones – 50
PCs – 70
IP cameras – 10
network printers – 10
network scanners – 2
A# show ip route
Refer to the exhibit. What two commands will change the next-hop address for
the 10.0.0.0/8 network from 172.16.40.2 to 192.168.1.2? (Choose two.)