🆔 MAC Address (Media Access Control)

📌 Overview

A MAC Address (Media Access Control Address) is a unique identifier assigned to a Network Interface Controller (NIC) for use as a network address in communications within a network segment.

Example: 00:1A:2B:3C:4D:5E


🏗️ Structure of a MAC Address

A MAC address is 48 bits (6 Bytes) long.

  1. OUI (Organizationally Unique Identifier): The first 3 bytes. Identifies the Manufacturer (e.g., Dell, Apple, Cisco).
  2. NIC Controller: The last 3 bytes. Unique serial number assigned by the manufacturer.
      [  00 : 1A : 2B  ]  :  [  3C : 4D : 5E  ]
      \_______________/     \_______________/
         Vendor ID             Unique ID
          (OUI)

⚔️ MAC Address vs IP Address

FeatureMAC Address 🆔IP Address 🌍
TypePhysical AddressLogical Address
LayerData Link Layer (Layer 2)Network Layer (Layer 3)
Changeable?No (Hardcoded in hardware)Yes (Changes with network)
Format48-bit Hex (00-1A...)32-bit (192.168...) or 128-bit
ReachLocal Network onlyGlobal Internet

☁️ Azure Context


💡 Hinglish Explanation (Fingerprint vs Address)

1. MAC Address (Fingerprint)

2. IP Address (Home Address)


⚡ Exam Tips for AZ-900

  1. Communication: Devices talk to each other on a local network using MAC addresses.
  2. ARP (Address Resolution Protocol): This protocol is used to find the MAC address if you only know the IP address. (Who has 10.0.0.1? Tell 00:1A...).