Lesson 6 - Routing Packets Flashcards

1
Q

Address Resolution Protocol (ARP)

A

An ARP request is a broadcast asking for the MAC address corresponding to a known IP address. An ARP reply contains the requested MAC address.

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

Time To Live (TTL)

A

The TTL field in an IP header is decremented once for each router hop. Therefore, if the value in a TTL field is reduced to 0, a router discards the frame and sends a time exceeded Internet Control Message Protocol (ICMP) message back to the source.

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

default static route

A

A default static route is an administratively configured entry in a router’s routing table that specifies where traffic for all unknown networks should be sent.

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

next hop

A

An IP address on the next router to which traffic should be forwarded.

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

routed protocol

A

A protocol with an addressing scheme (for example, IP) that defines different network addresses.

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

routing protocol

A

A routing protocol (for example, RIP, OSPF, or EIGRP) that advertises route information between routers, which describes how to reach specified destination networks.

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

administrative distance (AD)

A

A routing protocol’s index of believability. Routing protocols with a smaller AD are considered more believable than routing protocols with a higher AD.

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

metric

A

A value assigned to a route. Lower metrics are preferred over higher metrics.

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

Interior Gateway Protocol (IGP)

A

A routing protocol that operates within an autonomous system, which is a network under a single administrative control. OSPF and EIGRP are popular examples of IGPs.

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

Exterior Gateway Protocol (EGP)

A

A routing protocol that operates between autonomous systems, which are networks under different administrative control. Border Gateway Protocol (BGP) is the only EGP in widespread use today.

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

distance vector

A

A category of routing protocol that sends a full copy of its routing table to its directly attached neighbors.

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

link state

A

A category of routing protocol that maintains a topology of a network and uses an algorithm to determine the shortest path to a destination network.

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

hold-down timers

A

Can speed the convergence process of a routing protocol. After a router makes a change to a route entry, the hold-down timer prevents subsequent updates for a specified period of time. This approach can help stop flapping routes (which are routes that oscillate between being available and unavailable) from preventing convergence.

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

split horizon

A

This feature of a distance-vector routing protocol prevents a route learned on one interface from being advertised back out of that same interface.

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

poison reverse

A

This feature of a distance-vector routing protocol causes a route received on one interface to be advertised back out of that same interface with a metric considered to be infinite.

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

link-state advertisement (LSA)

A

Sent by routers in a network to advertise the networks the routers know how to reach. Routers use those LSAs to construct a topological map of a network. The algorithm run against this topological map is Dijkstra’s shortest path first algorithm.

17
Q

Routing Information Protocol (RIP)

A

A distance-vector routing protocol that uses a metric of hop count. The maximum number of hops between two routers in an RIP-based network is 15. Therefore, a hop count of 16 is considered to be infinite. RIP is considered to be an IGP.

18
Q

Open Shortest Path First (OSPF)

A

A link-state routing protocol that uses a metric of cost, which is based on the link speed between two routers. OSPF is a popular IGP because of its scalability, fast convergence, and vendor interoperability.

19
Q

Intermediate System-to-Intermediate System (IS-IS)

A

A link-state routing protocol similar in its operation to OSPF. IS-IS uses a configurable-yet-dimensionless metric associated with an interface and runs Dijkstra’s shortest path first algorithm. Although using IS-IS as an IGP offers the scalability, fast convergence, and vendor-interoperability benefits of OSPF, it has not been deployed as widely as OSPF.

20
Q

Enhanced Interior Gateway Routing Protocol (EIGRP)

A

A Cisco proprietary protocol. Although EIGRP is popular in Cisco-only networks, it is less popular in mixed-vendor networks. Like OSPF, EIGRP is an IGP with very fast convergence and high scalability. EIGRP is considered to be an advanced distance vector or a hybrid routing protocol.

21
Q

Border Gateway Protocol (BGP)

A

The only EGP in widespread use today. In fact, BGP is considered to be the routing protocol that runs the Internet, which is an interconnection of multiple autonomous systems. BGP is a path-vector routing protocol, meaning that it can use as its metric the number of autonomous system hops that must be transited to reach a destination network, as opposed to the number of required router hops.

22
Q

route redistribution

A

Allows routes learned by one routing protocol to be injected into the routing process of another routing protocol.

23
Q

network address translation (NAT)

A

Allows private IP addresses (as defined in RFC 1918) to be translated into Internet-routable IP addresses (public IP addresses).

24
Q

Dynamic NAT (DNAT)

A

A variant of NAT in which inside local addresses are automatically assigned an inside global address from a pool of available addresses.

25
Q

static NAT (SNAT)

A

A variant of NAT in which an inside local IP address is statically mapped to an inside global IP address. SNAT is useful for servers inside a network that need to be accessible from an outside network.

26
Q

port address translation (PAT)

A

A variant of NAT in which multiple inside local IP addresses share a single inside global IP address. PAT can distinguish between different flows based on port numbers.

27
Q

Internet Group Management Protocol (IGMP)

A

A multicast protocol used between clients and routers to let routers know which of their interfaces has a multicast receiver attached.

28
Q

Protocol Independent Multicast (PIM)

A

A multicast protocol used between multicast-enabled routers to construct a multicast distribution tree.