PROJECT
PROJECT
Solution:
A MAC (Media Access Control) address is a unique identifier assigned to a device’s network
interface card (NIC). It ensures devices can be distinctly recognised on a local network. The
primary functions of a MAC address include:
• Facilitating device identification in a network.
• Enabling data transmission within a local network (LAN).
• Ensuring secure communication by preventing unauthorised access through MAC filtering.
2.1B - How MAC Address Uniqueness is Maintained & Its Role in Communication
Maintaining Uniqueness:
• Manufacturers assign MAC addresses to each NIC at production, using a globally unique
48-bit address format.
• The first 24 bits represent the Organisationally Unique Identifier (OUI) assigned by the
IEEE, while the last 24 bits are a unique serial number.
• Address conflicts are rare but can be manually modified if necessary.
Role in Communication:
• When a device sends data, it encapsulates the destination MAC address in the frame header.
• Switches use MAC addresses to forward frames to the correct recipient within a LAN.
• ARP (Address Resolution Protocol) helps map IP addresses to MAC addresses for proper
routing.
Windows Command:
ipconfig /all
• Look for “Physical Address” under the active network adapter.
Linux/macOS Command:
ifconfig | grep ether
or
ip link show
• Look for the “link/ether” entry.
Screenshot Requirement:
Take a screenshot of the output displaying the MAC address and include it in your answer.
2.2 - Collision Domain & Hubs vs. Switches
A collision domain is a network segment where data packets can collide when sent
simultaneously.
Comparison:
• Hubs: All connected devices share a single collision domain, leading to frequent data
collisions.
• Switches: Each connected device gets its own collision domain, eliminating collisions and
improving network efficiency.
Managed Switches:
• Offer advanced configuration, VLANs, QoS, and security settings.
• Used in enterprise environments requiring network control and optimisation.