An optical fiber looks deceptively simple — a thin strand of glass thinner than a human hair. But that thin strand is actually a precisely engineered structure with multiple layers, each serving a specific purpose. This article explains the physical structure of optical fiber from first principles: the core, the cladding, and the coating — and why each layer exists.
The Three Fundamental Layers
graph TD
A[Optical Fiber Cross-Section] --> B[Core<br/>Carries the light signal]
A --> C[Cladding<br/>Reflects light back into core]
A --> D[Coating/Buffer<br/>Protects the glass physically]1. The Core
The core is the central part of the fiber, made of ultra-pure glass (silica) or, less commonly, plastic. This is where the actual light signal travels.
- Typical diameter:
- Single-mode fiber core: ~8-10 microns (µm)
- Multimode fiber core: 50 or 62.5 microns (µm)
- Material: Ultra-pure silica glass, sometimes doped with germanium to slightly raise its refractive index relative to the cladding.
- Purpose: Guide light along the fiber length with minimal loss and distortion.
To put the size in perspective: a human hair is roughly 70-100 microns in diameter. A single-mode fiber core (8-10 microns) is about one-tenth the width of a human hair.
2. The Cladding
The cladding surrounds the core and is also made of glass, but with a slightly lower refractive index than the core.
- Typical diameter: 125 microns (µm) — standardized across almost all telecom fiber, regardless of core size
- Purpose: Create the refractive index boundary needed for total internal reflection, which keeps light confined to the core as it travels.
This difference in refractive index between core and cladding is the entire physical mechanism that allows fiber optics to work: light hitting the core-cladding boundary at a shallow enough angle reflects entirely back into the core instead of escaping.
graph LR
A[Light Ray Enters Core] --> B{Angle of Incidence vs Critical Angle}
B -->|Angle > Critical Angle| C[Total Internal Reflection<br/>Stays in Core]
B -->|Angle < Critical Angle| D[Refracts into Cladding<br/>Signal Lost]
C --> E[Light propagates down fiber length]3. The Coating (Buffer)
The coating, sometimes called the primary buffer coating, is a layer of protective plastic (usually acrylate) applied directly over the cladding during manufacturing.
- Typical diameter: 250 microns (µm), sometimes extended to 900 microns with an additional “tight buffer” layer
- Purpose:
- Protects the delicate glass from micro-cracks and moisture
- Provides mechanical strength and flexibility
- Prevents micro-bending losses (tiny, invisible bends that can leak light out of the core)
Unlike the core and cladding, the coating plays no role in guiding light — it’s purely a protective mechanical and environmental layer.
Beyond the Three Core Layers: Cable Construction
In a real-world fiber optic cable, additional protective layers exist outside the basic fiber structure:
| Layer | Purpose |
|---|---|
| Core | Carries the light signal |
| Cladding | Provides total internal reflection boundary |
| Coating (buffer) | Protects glass from moisture and micro-bending |
| Strength member (e.g., aramid yarn/Kevlar) | Provides tensile strength, protects against pulling stress |
| Outer jacket | Provides overall protection against abrasion, UV, chemicals, and fire (with fire-rated jackets like OFNP/OFNR) |
graph TD
A[Outer Jacket] --> B[Strength Members - Aramid Yarn]
B --> C[Coating/Buffer - 250um]
C --> D[Cladding - 125um]
D --> E[Core - 8-10um single-mode or 50/62.5um multimode]Standard Fiber Dimensions Reference Table
| Fiber Type | Core Diameter | Cladding Diameter | Typical Coating Diameter |
|---|---|---|---|
| Single-mode (OS1/OS2) | 8-10 µm | 125 µm | 250 µm |
| Multimode OM1 | 62.5 µm | 125 µm | 250 µm |
| Multimode OM2/OM3/OM4/OM5 | 50 µm | 125 µm | 250 µm |
Why the Core-Cladding Refractive Index Difference Matters
The refractive index difference between core and cladding is usually very small — typically less than 1%. This small but precise difference is what determines the fiber’s numerical aperture (NA), a measure of how much light the fiber can accept and guide.
NA = √(n_core² - n_cladding²)A higher NA means the fiber can accept light over a wider range of angles (easier to couple light into it, common in multimode fiber), while a lower NA is typical of single-mode fiber, which is designed to carry only a single light path.
Real-World Networking Example: Why Structure Affects Deployment Choices
- Data center short-reach links: Multimode fiber (larger core, higher NA) is easier and cheaper to terminate and couples light from lower-cost LEDs or VCSEL lasers efficiently — ideal for short 850 nm links (like 10GBASE-SR).
- Long-haul telecom links: Single-mode fiber (small core) eliminates a distortion effect called modal dispersion (explained in a later article), making it the only practical choice for long-distance, high-speed transmission.
Cisco Example: Fiber Type Awareness in Interface Configuration
Cisco switches often report expected fiber type compatibility for a given transceiver:
Switch# show interface TenGigabitEthernet1/0/1 transceiver detail
Transceiver Detail Info (A0 Dump):
Name: 10GBASE-SR
Connector Type: LC
Cable Type: Multimode
Link Length (50um): 300 m
Link Length (62.5um): 33 mNotice how the maximum supported distance changes drastically depending on the exact core diameter (50 µm vs. 62.5 µm) — a direct real-world consequence of fiber structure.
Linux Example: Verifying Cable/Fiber Type Reported by Optics
# Query transceiver EEPROM data, including cable/fiber type
ethtool -m eth0 | grep -i -E "cable|fiber|core"
# Example output:
# Transceiver type : SFP/SFP+/SFP28 (1)
# Fibre Channel transmission media : Multi-mode 50um (M5)This confirms, at the operating system level, what physical fiber structure the connected optic expects — useful for catching mismatches before a technician spends hours troubleshooting a “broken” link that’s actually a fiber-type mismatch.
Python Example: Calculating Numerical Aperture from Refractive Indices
import math
def numerical_aperture(n_core, n_cladding):
"""Calculate the numerical aperture of an optical fiber"""
return math.sqrt(n_core**2 - n_cladding**2)
def acceptance_angle(na):
"""Calculate the maximum acceptance angle in degrees from NA"""
return math.degrees(math.asin(na))
# Typical single-mode fiber refractive indices
n_core = 1.4677
n_cladding = 1.4624
na = numerical_aperture(n_core, n_cladding)
angle = acceptance_angle(na)
print(f"Numerical Aperture: {na:.4f}")
print(f"Maximum Acceptance Angle: {angle:.2f} degrees")
Output:
Numerical Aperture: 0.1246
Maximum Acceptance Angle: 7.16 degreesThis shows why aligning a light source precisely with a single-mode fiber core is so mechanically demanding — the acceptance angle is extremely narrow.
Comparison Table: Core vs. Cladding vs. Coating
| Layer | Material | Function | Affects Light Guiding? |
|---|---|---|---|
| Core | Doped silica glass | Carries the actual signal | Yes — primary light path |
| Cladding | Pure/lower-index silica glass | Reflects light back into core | Yes — creates reflection boundary |
| Coating | Acrylate plastic | Mechanical/environmental protection | No — purely protective |
Best Practices
- Never strip more coating than necessary during termination — exposed, unprotected glass is extremely fragile and prone to micro-cracks.
- Respect minimum bend radius specifications — sharp bends stress the cladding boundary and can cause light to leak out (macro-bending loss).
- Match connector and splice equipment to the correct core size — mixing 50 µm and 62.5 µm multimode fiber, for example, causes major loss at the mismatch point.
- Store and handle bare fiber carefully — the coating is the only thing protecting the glass from moisture and micro-fractures before termination.
Troubleshooting
| Symptom | Structural Cause | Fix |
|---|---|---|
| High loss at a specific splice/connector point | Core size mismatch (e.g., 50 µm to 62.5 µm) | Verify and match core diameters end-to-end |
| Sudden signal loss after cable was bent sharply | Macro-bending loss from exceeding minimum bend radius | Reroute cable, respect bend radius specs (often 10x cable diameter) |
| Random small losses along a cable run | Micro-bending from poor coating/buffering or crush damage | Inspect physical routing and cable management; avoid over-tightened cable ties |
| Fiber breaks easily during handling | Coating stripped or damaged, exposing bare glass | Handle stripped fiber sections minimally and re-coat/protect splice points |
Conclusion
The structure of an optical fiber — core, cladding, and coating — is a masterclass in purposeful engineering. The core carries light, the cladding’s slightly lower refractive index confines that light through total internal reflection, and the coating protects the assembly from the physical world. Understanding this structure is essential for making informed decisions about fiber type selection, handling, and troubleshooting — and it sets the foundation for the next topic: the standards that govern fiber optic interoperability.