Modem
Module 1 traced a packet from your laptop out to the wider internet and mentioned, in passing, a box that "converts pulses of light arriving on the fiber into electrical signals your router can understand, and back again." That box is a modem, and the conversion it does is worth understanding on its own, because it's the one device in your home network that isn't really speaking Ethernet or Wi-Fi at all.
Modulator, demodulator
The name is a contraction of modulator-demodulator, and it's one of the rare pieces of networking jargon that describes exactly what the device does. A modem takes digital data — the 0s and 1s your devices produce — and modulates it onto a signal suited to whatever physical medium connects you to your ISP: a specific pattern of voltage on copper telephone wire, a particular range of radio frequencies on coaxial cable, or a wavelength of light on fiber. In the other direction, it demodulates an incoming analog signal back into digital data your equipment can use.
This is a fundamentally different job from what a router does. A router operates entirely on data that's already digital, deciding where an IP packet should go next. A modem operates at the boundary between that digital world and the physical medium a specific access technology uses to carry a signal over distance. Put another way: a modem doesn't care about IP addresses or which device on your LAN a packet is for — it only cares about getting a bitstream on and off the wire correctly. That job belongs entirely to the Physical layer, Layer 1 of the OSI model.
Three physical mediums, three different modems
There's no single "modem protocol." What a modem does depends entirely on what's arriving at your building, and ISPs deploy three technologies that dominate residential access today.
DSL (Digital Subscriber Line) reuses the same copper telephone wiring that's been in the ground for decades. It works by pushing data over frequencies well above the range human voice uses, which is why a DSL line can (with a filter) carry a phone call and an internet connection at the same time without one interfering with the other. The current generation, ADSL2+, is standardized in ITU-T Recommendation G.992.5 and can theoretically reach around 24 Mbps downstream — but DSL's defining weakness is that its usable speed drops sharply as the copper run from your building to the phone company's exchange gets longer. A connection a few hundred meters from the exchange might hit close to the theoretical maximum; one three kilometers away might struggle to reach a fraction of it, because signal attenuation over copper is a function of distance.
Cable modems use the coaxial cable originally run to carry television. The technology that makes this work is DOCSIS (Data Over Cable Service Interface Specification), maintained by CableLabs, which carves out frequency bands on the coax for internet traffic alongside the TV channels. Unlike DSL, where your copper pair is dedicated to your building alone, coax capacity in a neighborhood is shared among everyone connected to the same segment — which is why cable speeds can dip during peak evening hours when many households are active simultaneously, something that doesn't happen on a dedicated DSL line.
Fiber replaces copper entirely with glass and carries data as pulses of light rather than electrical signals. Strictly, the device terminating a fiber connection at your home is usually called an ONT (Optical Network Terminal) rather than a modem, since it's converting light to electricity rather than demodulating an analog electrical signal — but in casual use, and often on the box itself, "fiber modem" and "ONT" get used interchangeably. Fiber's advantage over both DSL and cable is that light in glass suffers far less attenuation than electricity in copper, so speed doesn't degrade with distance the way DSL does, and a fiber connection is typically symmetric — upload and download speeds are similar — where DSL and cable are usually asymmetric, favoring download heavily because that's what residential traffic patterns have historically demanded.
| DSL | Cable (DOCSIS) | Fiber (FTTH) | |
|---|---|---|---|
| Medium | Copper telephone wire | Coaxial cable | Glass fiber |
| Signal | Electrical, high-frequency | Electrical, RF bands | Light pulses |
| Shared with neighbors | No — dedicated pair | Yes — shared segment | No — dedicated fiber (typically) |
| Speed vs. distance | Drops sharply with distance | Mostly distance-independent | Distance-independent |
| Typical symmetry | Asymmetric | Asymmetric | Often symmetric |
Where the modem sits, and why order matters
ISP network ── last-mile medium (copper, coax, or fiber) ── Modem/ONT ── Ethernet ── Router ── LAN devices
The modem is the translation point between the ISP's access medium and ordinary Ethernet. Once a signal comes out of the modem, it's a standard Ethernet frame like any other, and everything downstream — your router, your switch, your laptop — no longer needs to know or care whether the original signal traveled as light, voltage, or radio waves. That's the entire point of layering: the modem absorbs the physical-medium complexity so nothing above it has to.
This also explains a detail that trips people up the first time they set up a home network: the modem connects to the internet side, and the router connects to everything else. If you plug your laptop directly into a modem in bridge mode, you generally get exactly one IP address from your ISP and nothing to share it with. The router is what takes that single ISP-assigned address and, through NAT, gives every device on your LAN a way to use it.
Note
Some equipment combines both functions into a single box — a "gateway" or "modem-router combo" that your ISP hands you at signup. Internally it's still doing two distinct jobs (demodulating the access-line signal, then routing and NAT'ing for your LAN); the combination is a matter of convenience and cost, not a sign that the two functions have somehow merged into one.
Reading a modem's own status page
Modems (and combo gateways) almost always expose a local web interface, typically at an address like 192.168.100.1, separate from your router's admin page. On a cable modem this page usually reports the signal quality on each DOCSIS channel:
Downstream
Channel Frequency Power SNR Modulation
1 549000000 2.1 dBmV 40.2 dB 256QAM
2 555000000 1.8 dBmV 39.8 dB 256QAM
3 561000000 2.3 dBmV 40.5 dB 256QAM
Upstream
Channel Frequency Power Modulation
1 23700000 45.0 dBmV 64QAM
Two numbers matter most for troubleshooting a flaky connection: power and SNR (signal-to-noise ratio). Downstream power outside roughly -7 to +7 dBmV, or SNR below about 33 dB for 256QAM, points at a problem in the cable plant — a bad splitter, a loose connector, or too many splits between the street and your outlet — rather than anything wrong with your router or Wi-Fi. This is genuinely useful to check before calling an ISP, because it tells you whether the fault is on their side of the modem or yours.
Practical scenario: intermittent drops that "fix themselves"
A home connection disconnects for a few seconds every hour or so, then reconnects on its own. Restarting the router doesn't help — the drops keep happening on the same rough schedule. Restarting the modem doesn't help either, at least not for long.
The instinct is to blame Wi-Fi, since that's the layer people notice first. But intermittent, self-recovering drops with no obvious pattern in device count or traffic load are a classic symptom of a marginal physical-layer connection: a corroded connector, a coax splitter that's past its rated bandwidth, or a DSL line picking up noise from another wire in the same bundle. Checking the modem's own signal statistics — the power and SNR readings above — before touching anything upstream of it usually shows the real cause: an SNR that's borderline, or a power level that drifts outside the healthy range at certain times of day, often correlating with temperature changes affecting the outdoor cable plant. At that point the fix isn't a router setting at all; it's a technician replacing a connector or re-terminating the line — physical-layer problems need physical-layer fixes, and no amount of router reconfiguration reaches them.
The modem only handles the conversion between your ISP's medium and Ethernet. Everything after that — assigning addresses to devices on your LAN, deciding where traffic goes next, keeping your private network private — is the router's job, and that's where this module goes next.
Sources
- ITU-T, Recommendation G.992.5 — Asymmetric Digital Subscriber Line 2 transceivers (ADSL2) – Extended bandwidth ADSL2 (ADSL2plus)
- CableLabs, Technologies overview, including DOCSIS 3.1 and DOCSIS 4.0
- Federal Communications Commission, Getting Broadband Q&A