IPv4 Routing Flashcards

1
Q

What are two types of rounting protocols?

A

Link State and Distante Vector

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

What is the metric used by RIP routing protocol?

A

Hop Count

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

Why RIP is a poorly designed routing protocol? Think about the metric it uses.

A

It uses only hop count as the metric but it does not take into account other factors like bandwidth or delay

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

Which rounting protocol type (Link State vs Distance Vector) has higher visibility on the network? Why

A

Link State.
Routers using Link State protocols have the full visibility over the network whereas Distance Vector use so called ‘routing by rumour’ which means that they only know what they are told by the neighbouring routers but cannot verify information themselves.

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

What are the advantages and disadvantages for Link State routing protocols?

A

Advantages:
- Better visibility of the network. Rounters can make better forwrding decisions

Disadvantages:

  • Difficult to configure
  • Require more memory and processing power
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Adminisrative Distance?

A

It’s an indicator of how ‘believable’ a given route/path is

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

The higher the administratie distance, the better or worse it is?

A

Worse

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

What are the Administratie Distance default values?

A
Connected Interface: 0
Static Route: 1
EIGRP: 90
OSPF: 110
RIP: 120
Unknown: 255
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Why classless rounting protocols are preferred over classful rounting protocols?

A

Because classless protocols advertise network masks

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

What is VLSM

A

Variable Length Subnet Mask

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

When is Administrative Distance used as a tie breaker?

A

When two different routing protocols advertise different routes for the same destination IP address

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

If the same route is advertised twice on the same router, but with different outgoing interfaces, what will the tie breaker be?

A

Administrative distance

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

There is a message that Link State routing protocols flood the network with to build their topological databases.
How are those messages calles

A

LSA (Link State Advertisement)

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

List two examples of a LInk State routing protocol

A

OSPF - Open Shortest Path First

IS-IS - Intermediate System - Intermediate System

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

OSPF is able to split whole AS (autonomous systems) into smaller groupings. How are those groups called?

A

Areas

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

In OSPF, how do we call a router in between areas?

A

ABR (Area Border Router)

17
Q

What is an ASBR?

A

Autonomous System Border Router. It connects AS to the Internet.

18
Q

What is a rounting table?

A

List of networks that the router knows about and information how to link those networks.
Each entry contains a destination network (with subnet mask), out-going interface and the next hop router

19
Q

What happens with an entry in the routing table if its outgoing interface goes down?

A

It’s removed from the routing table

20
Q

What is a Default Route in a routing table?

A

It’s an optional route that is used when no explicit path to a destination is found

21
Q

What is a Default Gateway?

A

It’s an IP address that devices send traffic to if they don’t have the destination IP address in their routing tables

22
Q

How can you create a default route on a layer 3 device? [There’s a command for that]

A

IF ‘ip routing’ command is enabled use:
ip route 0.0.0.0 0.0.0.0 [ip address of the default gateway]
if it’s disabled, use:
ip default-gateway [ip address of the default gateway]

23
Q

Can you have multiple default gateways on one Layer 3 device?
If not. why not?
If yes, what would the consequences be?

A

Yes.
The device will load-balance traffic among all default routes if the administrative distance is the same. If not, the route with lowest administrative distance wins.

24
Q

Why would ‘show running-config’ command show 3 different routes to the same destination when ‘show ip route’ shows only 1 route to the given destination?

A

IP Routing Tables pull only the best route available with Administrative Distance being the tie breaker

25
Q

What is VSLM?

A

Variable Length Subnet Mask

26
Q

What is CIDR

A

Classless Inter Domain Routing

27
Q

What are the advantages of VLSM?

A
  1. More efficient use of IP addresses
  2. Fewer updates
  3. Hide topology changes
  4. Hierarchical levels for better route sumarization