Ethernet.html


* created: 2026-04-17T16:41
* modified: 2026-06-08T00:17

title

Ethernet

description

A layer 2 technology used to transmit data over the wire.

Ethernet

A technology that establishes a frame format and handles media access control, though the latter became less relevant with the introduction of more sophisticated switches.

Frame format

Each frame can encapsulate a 1500 byte payload. The maximum frame size is 1518 bytes.

Ethernet II:

  1. Destination Address
  2. Source Address
  3. Type
  4. Data
  5. CRC

CSMA/CD

This stands for Carrier Sense Multiple Access / Collision Detection and refers to the process where a host checks if the medium is already in use before sending a data packet. If two hosts try sending a data packet at the same time, the first to register the collision will send a jam signal, which triggers a backoff routine.