As developers and DevOps engineers, we usually live above the physical layer. But the moment you deploy to a colo, connect a GPU cluster, or debug a flaky 100G link, fiber becomes your problem.
One of the first decisions you will face is single mode vs multimode fiber. Pick wrong, and you either blow your budget or hit distance limits you cannot fix with software.
This guide gives you a practical, no-nonsense framework for choosing the right fiber in 2026.
The 30-second summary
- Single mode fiber (SMF) = long distance, high bandwidth, laser optics, 1310/1550 nm. More expensive transceivers, but excellent upgrade path.
- Multimode fiber (MMF) = short distance, cheaper optics, VCSEL-based, 850/1300 nm. Limited by modal dispersion.
If you are connecting buildings or running long-haul links, choose SMF. If you are inside a data center hall or a campus building, MMF is often enough.
Core differences
| Factor | Single Mode Fiber (SMF) | Multimode Fiber (MMF) |
|---|---|---|
| Core size | ~9 µm | 50 µm or 62.5 µm |
| Light source | Laser (DFB / EML) | VCSEL (850 nm), legacy LED |
| Wavelength | 1310 nm / 1550 nm | 850 nm / 1300 nm |
| Distance | Kilometers to tens of kilometers | Typically up to a few hundred meters |
| Bandwidth | Virtually unlimited bandwidth-distance product | Limited by modal dispersion |
| Transceiver cost | Higher for equivalent speed/reach | Lower for short-reach optics |
| Cable cost | Usually lower per meter | Usually higher per meter |
| Upgrade path | Excellent | Limited; may need new cable for higher speeds |
Transceiver cheat sheet
This is where most confusion happens. The transceiver type tells you which fiber to use.
| Transceiver | Fiber | Typical Reach | Wavelength |
|---|---|---|---|
| 1000BASE-SX | MMF | 550 m | 850 nm |
| 10GBASE-SR | MMF | 300–400 m | 850 nm |
| 10GBASE-LR | SMF | 10 km | 1310 nm |
| 40GBASE-SR4 | MMF | 100–150 m | 850 nm |
| 100GBASE-SR4 | MMF | 70–100 m | 850 nm |
| 100GBASE-LR4 | SMF | 10 km | 1310 nm |
| 400GBASE-SR8 | MMF | 100 m | 850 nm |
| 400GBASE-LR8 | SMF | 10 km | 1310 nm |
Rule of thumb: if the optic ends with SR, it is short reach and usually MMF. If it ends with LR, ER, or ZR, it is long reach and usually SMF.
Always check the vendor datasheet. Reach varies with OM grade, connector loss, and splice quality.
Multimode grades: OM1 to OM5
Not all MMF is equal.
- OM1 / OM2 — Legacy. Do not use for new deployments.
- OM3 — Minimum for 10G over short distances.
- OM4 — Better for 40G/100G inside the data center.
- OM5 — Supports shortwave wavelength division multiplexing (SWDM) for higher capacity.
For new builds, OM4 or OM5 are the practical choices.
How to choose: a decision framework
1. Distance first
If your link is longer than a few hundred meters, SMF is almost always the answer. If everything is inside one data center hall, MMF can save money on optics.
2. Speed and upgrade path
SMF lets you upgrade speeds without replacing the cable. MMF has a limited bandwidth-distance product, so future upgrades may force a re-cabling project.
3. Budget: optics vs cable
MMF transceivers are cheaper. But MMF cable can cost more per meter. For long-distance, high-density deployments, SMF often wins on total cost of ownership.
4. Environment
- Data center ToR / intra-rack: MMF OM4/OM5.
- Campus backbone / building interconnect: SMF.
- AI/GPU cluster: MMF for short intra-rack, SMF for inter-building or long runs.
- Colo cross-connect: SMF is often required by carriers.
DevOps: checking fiber links from Linux
You do not need a fancy network analyzer to sanity-check a fiber link. These commands help:
bash
# Show link speed, duplex, and port type
ethtool eth0
# Show transceiver diagnostics (if supported)
ethtool -m eth0
# Show interface stats and errors
ip -s link show eth0
# List network controllers
lspci | grep -i ethernet
Top comments (0)