Address Resolution Flashcards

1
Q

What are the two primary addresses assigned to a device on an Ethernet LAN?

A

1) Physical address (the MAC address)– Used for NIC to-NIC communications on the same Ethernet network.
2) Logical address (the IP address)– Used to send the packet from the source device to the destination device. The destination IP address may be on the same IP network as the source or it may be on a remote network.

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

What’s the function of ARP?

A

A device uses Address Resolution Protocol to determine the destination MAC address of a local device when it knows its IPv4 address.

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

What are the two basic functions that ARP provides?

A

1) Resolving IPv4 addresses to MAC addresses
2) Maintaining a table of IPv4 to MAC address mappings

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

When is an ARP request sent?

A

When a device needs to determine the MAC address that is associated with an IPv4 address, and it does not have an entry for the IPv4 address in its ARP table.

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

The ARP request is encapsulated in an Ethernet frame using the following header information:

A

1) Destination MAC address – This is a broadcast address FF-FF-FF-FF-FF-FF requiring all Ethernet NICs on the LAN to accept and process the ARP request.
2) Source MAC address – This is MAC address of the sender of the ARP request.
3) Type

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

ARP requests are what?

A

Broadcasts, they are flooded out of all ports by the switch, except the receiving port. All Ethernet NICs on the LAN process broadcast and must deliver the ARP request to its operating system for processing. Every device must process the ARP request to see if the target IPv4 address matches its own. A router will not forward broadcasts out of other interfaces.
Only one device on the LAN will have an IPv4 address that matches the target IPv4 address in the ARP request. All other devices will not reply.

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

Talk about ARP reply

A

Only the device with the target IPv4 address associated with the ARP request will respond with an ARP reply. The ARP reply is encapsulated in an Ethernet frame using the following header information:
1) Destination MAC address: This is the MAC address of the sender of the ARP request.
2) Source MAC address: This is the MAC address of the sender of the ARP reply.
3) Type
Only the device that originally sent the ARP request will receive the unicast ARP reply. After the ARP reply is received, the device will add the IPv4 address and the corresponding MAC address to its ARP table. Packets destined for that IPv4 address can now be encapsulated in frames using its corresponding MAC address.

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

What happens if no device responds to the ARP request?

A

The packet is dropped because a frame cannot be created.

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

Explain this sentence “Entries in the ARP table are time stamped”.

A

If a device does not receive a frame from a particular device before the timestamp expires, the entry for this device is removed from the ARP table.

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

Talk about ARP Role in Remote Communications

A

When the destination IPv4 address is not on the same network as the source IPv4 address, the source device needs to send the frame to its default gateway. This is the interface of the local router. Whenever a source device has a packet with an IPv4 address on another network, it will encapsulate that packet in a frame using the destination MAC address of the router.

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

Talk about removing entries from an ARP Table

A

For each device, an ARP cache timer removes ARP entries that have not been used for a specified period of time. The times differ depending on the operating system of the device.

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

What are the commands used to display the ARP table?

A

1) On a Cisco router, the show ip arp
2) On a Windows 10 PC, the arp –a command

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

What are ARP issues?

A

1) ARP broadcasts
2) ARP spoofing

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

Talk about ARP broadcasts issue

A

As a broadcast frame, an ARP request is received and processed by every device on the local network, if a large number of devices were to be powered up and all start accessing network services at the same time, there could be some reduction in performance for a short period of time

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

Talk about ARP spoofing

A

In some cases, the use of ARP can lead to a potential security risk. A threat actor can use ARP spoofing to perform an ARP poisoning attack. This is a technique used by a threat actor to reply to an ARP request for an IPv4 address that belongs to another device, such as the default gateway. The threat actor sends an ARP reply with its own MAC address. The receiver of the ARP reply will add the wrong MAC address to its ARP table and send these packets to the threat actor.

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