IEEE Standards (Ethernet and Wireless Standards)

There's IEEE 802 Standards, which are Local Access Network (LAN) and Wide Area Network (WAN) standards. It specifies the first 2 layers of the protocol stack. Namely the physical and data link layer.

The data link layer specifically has a Medium Access Control (MAC) and Logical Link Control (LLC) control.

Pasted image 20250116152922.png

Really the MAC deals with the physical layer, and these layers change often over time (while things like the TCP, IP (and UDP) Protocol Suite haven't changed).

The Logical Link Control Layer has:

The Medium Access Control (MAC) has:

Pasted image 20250116153138.png
(an ethernet frame) (address + type + payload + FCS)

Here:

Note

There's no check for if the receiver is ready. The data just will get sent immediately.

The Ethernet PDU - Protocol Data Unit is a layer 2 PDU called a frame. It is Connection-Less (Protocol), unreliable, but includes error detection.

The max payload length is normally 1500 bytes, but the jumbo size (used primarily in datacenters) is 9000 bytes (as links go faster and faster we might send more data).

Each transmit and receive wires are a twisted pair, connected like we discussed in 2 Ethernet Switches.

Pasted image 20250116154156.png