M7: Address Resolution

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/19

flashcard set

Earn XP

Description and Tags

M7 CISCO NET DEV: Explain how ARP enables communication on a local area network.

Last updated 8:23 PM on 4/11/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

20 Terms

1
New cards

Address Resolution Protocol

An IPv4 network protocol use to discover the MAC address of a device when you only know its IPv4 address.

2
New cards

MAC Address

A unique Layer 2 hardware address assigned to a network interface. Required for sending Ethernet frames on a local network.

3
New cards

Default Gateway’s MAC

If the destination IP is remote, you are looking for this Layer 2 hardware address.

4
New cards

Source MAC Address

The MAC address of the sender’s NIC.

5
New cards

ARP Request

A broadcast message sent when a device does not know the MAC address for a target IPv4 address and cannot find it in its ARP table. It asks: “Who has this IPv4 address? Tell me your MAC.”

6
New cards

ARP Reply

A unicast response sent only by the device whose IPv4 address matches the ARP Request. It provides its MAC address so the requester can update its ARP table and send frames correctly.

7
New cards

ARP Table

A temporary local table storing IPv4 → MAC mappings learned through ARP. Prevents repeated broadcasts. It is stored in RAM.

8
New cards

ARP Functions

  1. Resolve IPv4 → MAC address

  2. Maintain IPv4 → MAC mappings

9
New cards

ARP Lookup

When a device needs to send a frame, it checks the ARP table to find the MAC address that corresponds to the destination IPv4 address.

10
New cards

ARP Mapping

Each ARP table entry binds an IPv4 address to a MAC address. This binding lets the device know which MAC address to use when building the Ethernet frame.

11
New cards

ARP Cache Timeout

The time limit for how long an ARP entry stays in the table before being removed. This prevents outdated MAC mappings from causing communication failures.

12
New cards

Default Gateway ARP Resolution

When sending to a device outside the local network, the sender must know the MAC address of the default gateway. If it’s not in the ARP table, the device sends an ARP request for the gateway’s IPv4 address.

13
New cards

ARP Table Update

After receiving an ARP reply, the device stores the new mapping in the ARP table so future traffic can be sent without repeating the ARP request.

14
New cards

ARP Encapsulation

ARP messages are placed directly inside an Ethernet frame (Layer 2). There is no IPv4 header because ARP operates below IP.

15
New cards

EtherType 0×806

A special value in the Ethernet header that tells the receiving NIC: “This frame contains an ARP message.” This ensures the frame is passed to the ARP process, not IP or another protocol.

16
New cards

Static ARP Entry

A manually configured IPv4-to-MAC mapping that never expires. Rarely used because it must be manually added and removed.

17
New cards

Off-Network Traffic

When a host determines that the destination IPv4 address is not on the same Layer 3 network, it must send the packet to the default gateway, not directly to the destination device.

18
New cards

Gateway MAC Resolution

To send a frame to the default gateway, the host needs the MAC address of the router’s interface. If the ARP table does not contain this mapping, the host uses ARP to discover it.

19
New cards

ARP Spoofing

A security Risk. A malicious technique where a threat actor sends fake ARP Replies to trick a device into storing the wrong MAC address for a legitimate IPv4 address (often the default gateway).

20
New cards

Dynamic ARP Inspection

A security feature on enterprise switches that validates ARP messages and blocks spoofed ARP Replies.