Observing Ethernet Transmission Delay (Serialization Delay) through inter-frame timing (Δt) across 10/100/1000 Mbps links
Making the invisible visible — measuring Δt on real networks
In networking textbooks, this is known as Transmission Delay.
In real systems, what we directly observe is:
Serialization Delay — the time required to put bits onto the wire.
This lab demonstrates how to directly observe transmission delay (serialization delay) using packet-level timing (Δt).
Specifically:
- Inter-frame timing (Δt) reflects serialization on the wire
- The same behavior appears across 10 / 100 / 1000 Mbps links
- Transmission delay becomes directly measurable
The network transmits bits, not packets.
What we observe as packets is a reconstruction of a continuous bit stream.
transmission delay · serialization delay · packet timing · Δt · ethernet timing
Transmission Delay (Serialization Delay) refers to the time required for a network interface to place an entire frame onto a physical transmission medium; as such, it stands as one of the most fundamental timing structures in packet-switched networks.
In the classic textbook Computer Networking: A Top-Down Approach, Transmission Delay (also known as Serialization Delay) is defined as:
L / R
- L: packet length (bits)
- R: link rate (bps)
It is one of the simplest formulas in networking.
So simple that almost every network engineer knows it —
yet almost no one has ever seen it on the wire.
This lab turns that formula into a measurable reality.
By observing inter-frame spacing (Δt) in real packet captures, we reveal that Ethernet serialization delay is a fixed physical time — directly observable, repeatable, and verifiable across link speeds.
Transmission Delay = Serialization Delay = Δt (inter-frame spacing)
What you see in packet captures is not an approximation.
It is the wire.
- Make Transmission Delay observable
- Map L / R → Δt (inter-frame spacing)
- Validate theory using real packet captures
This experiment is not an approximation.
It is a direct observation of a physical timing property on the wire.
The validity of the measurement is established by isolating serialization delay from all other delay components:
The client and server are directly connected back-to-back, with no switches or routers in the path.
- No forwarding delay
- No buffering or queueing
- No scheduling artifacts
This eliminates all sources of Queuing and Processing Delay.
The physical distance between the two NICs is minimal.
- Cable length: short (lab setup)
- Propagation delay: on the order of nanoseconds
Compared to millisecond-scale serialization delay (at 10 Mbps), propagation delay is effectively negligible.
A hardware TAP (NetOptics Full-Duplex In-Line TAP) is used for monitoring.
- No packet modification
- No traffic shaping
- No additional delay introduced
The TAP provides a faithful copy of the signal without altering timing behavior.
Packets are captured using a dedicated NPM / protocol analyzer.
- Timestamping is performed with microsecond-level precision using a NIC-based capture path.
- No packet drops were observed under test conditions.
Given that the measured inter-frame gap (Δt) is orders of magnitude larger than timestamp uncertainty, the observed timing accurately reflects on-wire serialization behavior.
The measured quantity is:
Δt = time between consecutive frames
On a fully utilized link, frames are transmitted back-to-back, separated only by:
- Serialization time of the frame
- Fixed Ethernet overhead (Preamble + IFG)
Therefore:
Δt ≈ (Frame + Preamble + IFG) / Link Rate
This is exactly the definition of Transmission (Serialization) Delay.
This is not a model of the network.
This is the network itself.
- Continuous TCP data transfer (HTTP download)
- Full-sized Ethernet frames (1518 Bytes)
- Back-to-back packet train under sustained throughput
The HTTP download throughput approaches the link capacity, leaving no idle gap between transmissions.
As a result, the sender emits full-sized Ethernet frames in a continuous back-to-back manner, forming a packet train.
In this regime, the inter-frame spacing (Δt) becomes a direct manifestation of serialization delay (Δt = L / R).
What is measured here is not a derived metric.
It is not inferred.
It is not estimated.
It is directly observed.
This experiment demonstrates that Transmission Delay (L / R) is a physically observable property of the link, manifested as inter-frame spacing (Δt) in real packet captures.
Under continuous transmission, packets form a packet train:
What we observe is not packets — but timing structure:
Frame1 Frame2 Frame3 Frame4 |------| |------| |------| |------| Δt Δt Δt
Each Δt reflects the time required to serialize one frame onto the link —
the physical manifestation of L / R.
| Link Speed | Observed Δt |
|---|---|
| 10 Mbps | ≈ 1.23 ms |
| 100 Mbps | ≈ 0.123 ms |
| 1 Gbps | ≈ 0.012–0.013 ms* |
* At 1 Gbps, Δt is limited by analyzer timestamp resolution.
| Link Speed | Frame Size | On-Wire Size | L/R (Frame) | Δt (Wire-Time) | Observed Δt |
|---|---|---|---|---|---|
| 10 Mbps | 1518 B | 1538 B | 1.214 ms | 1.230 ms | Consistent |
| 100 Mbps | 1518 B | 1538 B | 0.121 ms | 0.123 ms | Consistent |
| 1 Gbps | 1518 B | 1538 B | 12.144 µs | 12.304 µs | ≈ 12–13 µs* |
* Measurement limited by analyzer timestamp resolution (microsecond granularity).
Figure 1. Packet train observed at 10 Mbps showing constant inter-frame spacing (Δt ≈ 1.23 ms), directly corresponding to transmission delay.
📥 Raw Packet Capture
- File:
lab01-fig1-10mbps-server-to-client.pcap - Size: 13.1 MB
- Packets: 8991
Download:
- Direct Download (recommended):
https://raw.githubusercontent.com/comeryu-max/tcp-timing-lab-01-observing-transmission-delay-serialization/main/data/pcap/lab01-fig1-10mbps-server-to-client.pcap
This PCAP file can be used to independently verify Δt ≈ L / R by observing inter-frame spacing in Wireshark.
The observed Δt scales proportionally with link rate, consistent with L / R.
Observed Δt is shown as ~0.012 ms due to timestamp quantization; theoretical value is ~12.304 µs.
The observed Δt scales proportionally with link rate, consistent with L / R.
The observed results align directly with the on-wire serialization model: Ethernet on-wire size includes:
- Frame: 1518 Bytes
- Preamble + SFD: 8 Bytes
- IFG: 12 Bytes
Total = 1538 Bytes
Transmission delay:
Δt = 1538 × 8 / R
Example (10 Mbps):
Δt = (1538 × 8)/ 10Mbps ≈ 1.23 ms
- Design an "ideal" observation environment that isolates Transmission (Serialization) Delay by minimizing Processing, Queuing, and Propagation Delays.
- Use physical-layer TAP for non-intrusive capture
- Capture with high-precision analyzer
- Analyze Δt using Wireshark
At 1 Gbps:
- Theoretical Δt ≈ 12.304 µs
- Observed Δt ≈ 12 µs
Due to timestamp resolution, single-frame measurement reaches quantization limits.
More accurate validation can be achieved by averaging across a packet train.
Transmission Delay is theoretical
❌ Incorrect
✔ It is a deterministic physical time on the wire
L / R is not just a formula. It is a measurable physical reality.
If you can measure Δt,
you are not reasoning about the network —
you are observing it.
This experiment reveals a fundamental truth:
The network is a time-structured system
Implications:
- Packet trains are physically paced
- TCP behavior is time-driven (ACK clock)
- Throughput is not equal to bandwidth
This lab establishes the foundation for:
- Packet Train analysis
- ACK Clock understanding
- Throughput anomalies
- Congestion behavior
👉 Lab 02 — Serialization vs Throughput
When serialization delay is fixed, why does throughput fluctuate?
This is not a visualization.
This is a measurement.
- Transmission Delay — textbook abstraction
- Serialization Delay — physical reality
This lab connects the two through direct measurement.