Chapter 27 Flashcards

1
Q

Does router have an IP address and does every interface of router have different IP address

A

Yes

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

What is multi home host

A

A host with multiple connections. If one path collapses then host can access to another path. Multi home host have multiple IP addresses on multiple connection.

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

What is binding protocol addresses

A

Converting IP addresses to hardware addresses

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

What is address resolution (binding)

A

The process of conversion of IP addresses to hardware addresses is called address resolution.

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

Can a host on one physical network do address resolution of machine on another physical network

A

No. Physical network should be the same. Router do this job.

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

What are 3 address resolution techniques

A
  1. Table lookup
  2. Closed-form computation
  3. Message exchange
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is table lookup address resolution technique

A

A table on every host contains mapping of all IP addresses. IP software search in table and find the right value.

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

What is closed-form computation address resolution technique

A

It works for configurable hardware addresses. Whenever an IP addresses arrives, simple mathematical operation done and by doing that it can recover the hardware address.

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

What is message exchange address resolution technique

A

Computer broadcast messages to network. The intended recipient do the required processing.

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

Does table lookup and closed-form computation are local techniques whereas message exchange a distributed technique

A

Yes

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

What are 2 parts of array of table lookup

A
  1. IP address

2. Corresponding Hardware address

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

What are 2 standard implementations of address resolution with table lookup

A
  1. Hashing

2. Direct Indexing

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

What is hashing

A

We convert strings into fixed length value

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

What is Direct indexing

A

Direct indexing works when IP addresses are, from a compact range.

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

What is the formula of closed-form computation for converting IP address to hardware address

A

Hardware address = ip_address & 0xff

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

What are 2 sub methods for message exchange

A
  1. Centralized approach (for binding and address resolution, central servers are used and central servers do the processing)
  2. Distributed (binding request broadcast to all computers on network and intended computer response with corresponding hardware address)