Question
At which OSI layers does Ethernet operate, and what IEEE standards define it?
Answer
The Data Link Layer (L2) and the Physical Layer (L1); defined by IEEE 802.2 (LLC sublayer) and IEEE 802.3 (MAC sublayer plus physical signalling).
Ethernet is unusual in that it spans the bottom two OSI layers rather than just one. At the Physical Layer (Layer 1) it specifies the cabling, connectors, and how bits become electrical or light signals; at the Data Link Layer (Layer 2) it defines how those bits are framed and addressed. That is why an "Ethernet standard" name like 1000BASE-T describes both the wire and the framing.
Two IEEE working groups split the job:
- IEEE 802.2 defines the LLC (Logical Link Control) sublayer — the upper part of Layer 2 that identifies which network-layer protocol the frame carries (e.g. IPv4 vs IPv6).
- IEEE 802.3 defines the MAC (Media Access Control) sublayer plus the Physical Layer signalling — addressing, framing, and putting bits on the wire.
This layering is why Ethernet has been the dominant wired LAN technology since the 1990s: the same Layer 2 framing rides over many different Layer 1 media (copper, fiber) without the upper layers needing to care.
Go deeper:
-
Ethernet (Wikipedia) — overview of the standard family, its history, and how it maps to the OSI physical and data-link layers.
-
IEEE 802.3 (Wikipedia) — the working group defining the MAC sublayer and physical layer, from 10BASE5 to 400-Gigabit Ethernet.
Note saved — thanks!
Question
What are the two sublayers of the Data Link Layer in Ethernet, and what does each do?
Answer
The LLC (IEEE 802.2) identifies which network-layer protocol the frame carries and talks to the upper layers; the MAC (IEEE 802.3) handles encapsulation, addressing and media access, talking to the physical layer.
| Sublayer | Standard | Function |
|---|---|---|
| LLC (Logical Link Control) | IEEE 802.2 | Places information in the frame to identify which Network Layer protocol is being used (e.g., IPv4, IPv6) |
| MAC (Media Access Control) | IEEE 802.3, 802.11, 802.15 | Responsible for data encapsulation and media access control; provides Data Link layer addressing |
Key insight: The LLC sublayer communicates with the upper layers (Network), while the MAC sublayer communicates with the lower layer (Physical).
Go deeper:
-
IEEE 802.2 / LLC (Wikipedia) — the upper data-link sublayer, including the DSAP/SSAP fields it uses to identify the carried protocol.
-
Medium access control (Wikipedia) — the lower data-link sublayer: framing, addressing, and arbitrating access to the medium.
Note saved — thanks!