Section 8: Routing Flashcards

1
Q

Split Horizon

A

Prevents a route learned on one interface from being advertised on the same interface.

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

Poison Reverse

A

Causes a route received on one interface to be advertised back out the same interface with a metric considered infinite. (High cost.)

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

IGP

A

▪ Interior Gateway Protocol - Operate within an autonomous system.
▪ Specifies how routers within an autonomous system (AS) exchange routing information with other routers within the same autonomous system.
Examples: RIP, OSPF, EIGRP

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

EGP

A

▪ Exterior Gateway Protocols - Operate between autonomous systems.
▪ A type of routing protocol used to distribute routing information between different autonomous systems in large internetworks (the internet) based on the TCP/IP protocol.
Examples: BGP (Border Gateway Protocol)

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

Distance Vector

A

▪ Uses hop count as a metric (Number of routers from source to destination) does not consider speed.
▪ Sends full copy of routing table to its directly connected neighbors at regular intervals
▪ Slow convergence time - Time it takes for all routers to update their routing tables in response to a topology change
▪ Holding-down timers speeds up convergence
- Prevents updates for a specific period of time

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

Link State

A

Information passed between nodes (routers) is connectivity related.
Examples: OSPF (Open Shortest Path First) and IS-IS (Intermediate System to Intermediate System)
▪ All routers know about the paths all other routers can reach in the network
▪ Information is flooded throughout the link-state domain (OSPF or IS-IS) to ensure routers have synchronized information
▪ Faster convergence time than distance vectors and uses cost or other factors as a metric
▪ Each router constructs its own relative shortest-path tree with itself as the root for all known routes in the network

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

RIP

A

Routing Information Protocol
▪ Classful Interior Gateway Protocol
(RIPv2 and greater are classless)
▪ Is a distance-vector protocol (uses hop count)
▪ Maximum hops of 15, 16 is considered infinite (dead)
▪ Provides updates every 30 seconds
▪ Easy to configure and runs over UDP

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

OSPF

A

Open Shortest Path First
▪ Classless, Link-State, Interior Gateway Protocol
- Classless (supports VLSM-Variable Length Subnet Mask)
- Link-state protocol (using cost based on link speed between routers)

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

IS-IS

A

Intermediate System to Intermediate System
▪ Interior Gateway Protocol
▪ Link-state protocol
(Functions like OSPF protocol, but not as popular or widely utilized)

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

EIGRP

A

Enhanced Interior Gateway Routing Protocol (Classless)
▪ Interior Gateway Protocol
▪ Advanced distance-vector protocol.
(A hybrid of distance-vector and link-state)
▪ Proprietary Cisco protocol

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

BGP

A

Border Gateway Protocol
▪ External Gateway Protocol (The only one.)
▪ Path vector

▪ This protocol runs the backbone of the Internet
▪ Does not converge quickly, though, when the topology changes

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

Route Believability

A

Administrative Distance (AD) - If a router is using multiple protocols the protocol with the lowest AD is used to make routing decisions.
Protocol believability Most to Least:
a) Direct Connect; b) Static Connected; c) EIGRP; d) OSPF; e) RIP; f) External EIGRP

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

NAT

A

Network Address Translation
Translates private IP address to public IP address

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

PAT

A

Port Address Translation -
Sharing one public IP with multiple private IP addresses which gives a many-to-one translation

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

DNAT

A

Dynamic Network Address Translation -
Automatically assigns an IP address from a pool and gives a one-to-one translation.

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

SNAT

A

Static Network Address Translation -
Manually Assigns an IP Address

17
Q

NAT IP Address Names to know for exam

A

▪ Inside local
- Private IP address referencing an inside device
▪ Inside global
- Public IP address referencing an inside device
▪ Outside local
- Private IP address referencing an outside device
▪ Outside global
- Public IP address referencing an outside device

18
Q

Multicast Routing

A

Sends traffic to a Class D IP Address, known as a multicast group
▪ Goal
- Send the traffic only to the devices that want it
▪ Two primary protocols
- Internet Group Management Protocol (IGMP)
- Protocol Independent Multicast (PIM)

19
Q

IGMP (3 Variants)

A

Internet Group Management Protocol (IGMP)
Used by hosts and adjacent routers on IPv4 networks to establish multicast group memberships.
▪ IGMPv1: Client requests to join the group and is asked every 60 seconds if it wants to remain in the group
▪ IGMPv2: Client can send a leave message to exit multicast group
▪ IGMPv3: Client can request multicast from only specific server
- IGMPv3 is a requirement for Source-Specific Multicast (SSM)
- Allows multiple video streams to single multicast

20
Q

PIM

A

Protocol Independent Multicast
▪ Routes multicast traffic between multicast-enabled routers
▪ Multicast routing protocol forms a multicast distribution tree
● PIM Dense Mode (PIM-DM)
o Uses periodic flood and prune behavior to form optimal distribution tree
o Causes a negative performance impact on the network
o Rarely used in modern networks

● PIM Sparse Mode (PIM-SM)
o Initially uses a shared distribution tree, which may be suboptimal, but…
o Eventually creates an optimal distribution tree through shortest path tree (SPT) switchover

21
Q

IGRP

A

Interior Gateway Routing Protocol (IGRP) - Classful
A Classful distance vector interior gateway protocol (IGP) developed by Cisco.

22
Q

Classful Versus Classless Routing Protocols

A

Classful routing protocols do not carry subnet masks; classless routing protocols do.
Classful Protocols: RIP and IGRP
Classless Protocols: RIP-2, EIGRP, and OSPF