Carrier Sense Multiple Access with Collision Detection (CSMA/CD) is the medium-access method that governed classic, shared-medium Ethernet. It describes how many stations connected to one shared cable can take turns transmitting without a central scheduler, relying instead on each station observing the channel and reacting to conflicts on its own.
The method breaks down into its name. “Carrier Sense” means a station listens to the medium before transmitting and waits if it hears another transmission in progress. “Multiple Access” means many stations share the same channel as equals. “Collision Detection” means that even after a station begins sending, it keeps listening; if two stations happened to start at nearly the same instant, their signals overlap and corrupt each other, and both detect this collision. On detecting a collision, a station stops transmitting, sends a brief jam signal so everyone notices, and waits a randomized interval before trying again. Repeated collisions lengthen the random backoff window, an approach known as exponential backoff, which keeps a busy network from collapsing into endless collisions.
CSMA/CD grew directly out of the work Robert Metcalfe and David Boggs described in their 1976 Ethernet paper, where they called the underlying idea controlled statistical arbitration. The intellectual ancestor was the ALOHAnet radio system, which used randomized retransmission to share a channel; Ethernet’s refinement was that on a wired cable a station could actually sense the carrier and detect collisions while they were happening, dramatically improving efficiency over pure random transmission.
The IEEE 802.3 standard, whose original 1985 title was “Carrier Sense Multiple Access with Collision Detection (CSMA/CD) Access Method and Physical Layer Specifications,” formalized the algorithm and made it the canonical Ethernet access method. For more than a decade, understanding Ethernet meant understanding CSMA/CD, and it served as the textbook example of distributed, contention-based channel sharing.
CSMA/CD matters because of the medium it assumes: a single shared collision domain where everyone can hear everyone. As Ethernet evolved to point-to-point twisted-pair links joined by switches and to full-duplex operation, where each link carries traffic in both directions at once, collisions no longer occur and CSMA/CD became unnecessary. Modern switched Ethernet retains the standard’s framing and addressing while leaving the collision-handling machinery dormant, a quiet sign of how completely the network’s physical model has changed since 1976.