Watch TCP build a reliable pipe from unreliable packets.
In this interactive Infrastructure lesson from Stencel Academy you don't just read — you type real commands like sudo tcpdump -n host 203.0.113.10, curl -s https://api.stencel.ai/health and watch the machine respond on a live, animated map. It is part of the free How Infrastructure Works course.
Builds on: Packets & Routing.
ss -tni state established — The kernel's live view of the pipe: rtt, cwnd, bytes acked.sysctl net.ipv4.tcp_syn_retries — Lost SYNs are retried with backoff — reliability starts at packet one.sudo tcpdump -n 'tcp[tcpflags] & tcp-syn != 0' — Filter to connection openings only.curl --max-time 2 https://10.0.9.9/ — A SYN nobody answers: retransmit, retransmit, give up.