Day 15 - Static and Default Route Configuration Flashcards

1
Q

What are some the reasons you would use a static route?

A

In a small network that only requires simple routing
In a hub and spoke network topology
When you want to create a quick ad hoc route
As a backup route when the primary route fails

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Static routes are commonly used when you are routing from a larger network to a __________ network (a network accessed by a single link)

A

Stub

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the basic first part of the command for a static route?

A

ip route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define each of these subsets of a static ip route

                  1                    2                      3 ip route 192.168.1.0 255.255.255.0 192.168.2.1
A
  1. Destination network address
  2. Subnet mask of the remote network to be added to the routing table
  3. Next hop router’s IP address
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In lieu of a next hop IP address, what could you could use to tell the router where to forward the packet?

A

exit interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Based on the topology, create static routes for all networks that R1 isn’t directly connected to

A

ip route 172.16.1.0 255.255.255.0 172.16.2.1
ip route 192.168.0.0 255.255.255.0 172.16.2.1
ip route 192.168.1.0 255.255.255.0 172.16.2.1
ip route 10.10.10.0 255.255.255.0 172.16.2.1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Configuring a next hop address requires the router to perform a what?

A

A recursive lookup to find the exit interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

To avoid a recursive lookup in a ip route, what could you use instead?

A

Use the exit interface instead of the next hop IP address

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What would an exit interface being included in an ip route command look like? For example: Gi1/0/1

A

ip route 172.16.0.0 255.255.255.0 gi1/0/1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What letter represents a static route in the routing table?

A

S

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

When you use the exit interface command instead of the next hop address in a static ip route, what is different in the routing table?

A

It will show the route as directly connected instead of showing “via {next-hop-address}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A default route is a route that matches what?

A

All packets

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is another name for a default route?

A

Quad zero route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Give R2 a default route with it’s exit interface pointing towards HQ

A

ip route 0.0.0.0 0.0.0.0 serial 0/1/0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does S* stand for in the routing table?

A

A static route that is a candidate for a default route

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Summarize these IPs into what one summary route

172.16.1.0/24
172.16.2.0/24
172.16.3.0/24

A

Find where the IP address differentiates. Third octet

1 = 00000001
2 = 00000010
3 = 00000011

All three share 22 bits so the summary route would be 172.16.0.0/22

17
Q

What is the basic first command for initiating an ipv6 static route?

A

ipv6 route

18
Q

Write an ipv6 static route for for a remote ipv6 network in 2001:db8:1:3::/64 going out serial 0/0/0

A

ipv6 route 2001:db8:1:3::/64 serial 0/0/0

19
Q

What commands can you use to verify an ipv4 and an ipv6 route?

A

show ip route
show ipv6 route