TCP/IP Model·Lesson 6 of 8
Network Access Layer
Onto the Actual Wire
The network access layer is the bottom layer of the TCP/IP model, and it's where the abstract finally becomes physical. Its job is to take the data handed down from above and actually put it onto the medium — a copper cable, a fibre-optic strand, or a wireless signal — and move it to the next device on the local network. You'll also hear it called the or the network interface layer; they all mean the same bottom tier.
Two jobs rolled into one
This single TCP/IP layer does two things: it frames data and addresses it locally (using MAC addresses), and it turns that frame into the actual electrical, light, or radio signals that travel over the medium.
The delivery truck and the road
Higher layers decide the destination and make sure the parcel is correct — but something still has to physically carry it down the street to the next stop. The network access layer is the truck and the road combined: it handles the real, physical movement of data from one device to the one next to it on the local network. Without it, all the addressing above is just plans on paper.
What It Handles
The network access layer bundles together everything needed to get bits across a single physical link to the next device. Its responsibilities are:
Jobs of the network access layer
- Framing — wrapping the data into a structured unit called a frame
- Local addressing — using MAC addresses to identify the sender and receiver on the local network
- Signalling — converting the frame into electrical, light, or radio signals for the medium
- Moving data to the next device on the same local link (not across the whole internet)
MAC Addresses: Local Delivery
To deliver data on the local network, this layer uses a (Media Access Control address) — a unique hardware address built into every device's network card at the factory. It's usually written as six pairs of hex digits, like 00:1A:2B:3C:4D:5E. The key contrast to remember: a MAC address is physical, permanent, and only used for delivery within one local network, while the IP address from the is logical, changeable, and used to travel across networks. The two work together — IP gets a packet to the right network, and MAC gets it to the right device on that network.
Frames and Physical Signals
The unit of data at this layer is the — a packet from the internet layer wrapped with a header (holding the source and destination MAC addresses) and usually a trailer (an error-check that lets the receiver spot a corrupted frame). Once the frame is built, the layer converts it into raw bits and sends those bits as signals: pulses of electricity on copper, flashes of light in fibre, or radio waves through the air. This is the only layer that touches the physical world directly.
Common Technologies Here
The technologies you use to connect every day live at this layer. Some define how wired or wireless links carry frames; others help the local network function:
Ethernet
The dominant wired standard for local networks. Defines how frames are formatted and sent over cables.
Wi-Fi (802.11)
The wireless standard that carries frames over radio waves instead of a cable.
ARP
The Address Resolution Protocol finds the MAC address that goes with a known IP address on the local network.
PPP
The Point-to-Point Protocol carries frames over a direct link between just two devices, such as some dial-up and WAN connections.
One Layer, Two OSI Layers
The TCP/IP network access layer combines what the seven-layer splits into two: the Data Link layer (framing and MAC addressing) and the Physical layer (the actual signals and cabling). TCP/IP merges them because, in practice, the two are handled together by the same hardware — your network card and its driver.
“"A MAC address and an IP address are basically the same thing."”
Q:What does the network access layer do?
A: It's the bottom layer. It wraps packets into frames using MAC addresses, then converts them into physical signals (electrical, light, or radio) and moves them to the next device on the local link. It maps to the OSI Data Link and Physical layers combined, and uses technologies like Ethernet and Wi-Fi.
Quick Revision Cheat Sheet
Position: Bottom layer — touches the physical medium
Job: Frame data, address locally, and send signals
Addressing: MAC address (physical, factory-set)
Maps to OSI: Data Link + Physical (bottom 2)
Technologies: Ethernet, Wi-Fi, ARP, PPP
Data unit: Frame