📖 What is MAC Address?
A Media Access Control (MAC) address is a unique 48-bit hardware identifier assigned to a network interface card (NIC). It operates at the Data Link Layer (Layer 2) and is used for communication within a local network segment, enabling frame delivery to specific devices.
"MAC addresses are physically burned into the NIC, though they can be spoofed. Understand the difference between MAC and IP addresses. Exam questions may involve identifying MAC address ranges or troubleshooting Layer 2 connectivity issues. Note the hexadecimal format and colon separation."
📚 Certification: CompTIA Network+ Certification Exam (N10-009)
🔑 What are the Key Concepts of MAC Address?
- ▸ MAC addresses are 48-bit hexadecimal values, typically represented with colon separators (e.g., 00:1A:2B:3C:4D:5E), and are unique to each NIC.
- ▸ The first six digits (OUI - Organizationally Unique Identifier) identify the NIC manufacturer, while the last six digits are assigned by the manufacturer.
- ▸ MAC addresses are used for local network communication; they are not routable and do not traverse network boundaries like IP addresses.
- ▸ MAC address spoofing is possible, changing the NIC's reported address, often used for security testing or bypassing access controls.
- ▸ Understanding MAC address tables (CAM tables) is crucial for comprehending how switches learn and forward frames efficiently within a LAN.
🎯 How does MAC Address appear on the N10-009 Exam?
You may be asked to identify the correct tool to discover the MAC address associated with a specific IP address on a local network, such as using `arp -a`.
A scenario might describe a network connectivity issue where a device cannot communicate on the LAN; you'll need to determine if a MAC address conflict or incorrect CAM table entry is the cause.
Expect questions about how switches use MAC addresses to forward frames, including concepts like flooding, learning, and forwarding within a VLAN.
❓ Frequently Asked Questions
What's the difference between a MAC address and an IP address?
MAC addresses are Layer 2 hardware addresses used for local communication, while IP addresses are Layer 3 logical addresses used for global routing. A MAC address identifies a device, an IP address identifies a network location.
Can two devices on the same network have the same MAC address?
No, MAC addresses *should* be unique. A duplicate MAC address will cause significant network conflicts and communication failures. However, spoofing can temporarily create this situation.
How do switches use MAC addresses to forward traffic?
Switches build a CAM table mapping MAC addresses to ports. When a frame arrives, the switch looks up the destination MAC in the table and forwards the frame only to the corresponding port, improving efficiency.