02At what layer should this load balancer operate? Explain the trade-off between L4 and L7.▼mediumNewCloudflareGoogleMeta2 repliesunlockedA staple of every networking round, and the follow-up is always about TLS termination. Knowing which layer sees what decides most of the answer.Open full answer →
03What happens between typing a URL and the page rendering? Go as deep as you can.▼medium★ EssentialNewMetaGoogleCloudflare2 repliesunlockedThe oldest question in systems interviewing and still the best, because it is unbounded: the interviewer stops you when you run out of depth, and where you stop is the score.Open full answer →
05A busy proxy is failing to open new connections. TIME_WAIT is in the hundreds of thousands. What is happening?▼hardNewCloudflareGooglePhonePe2 repliesunlockedThe classic ephemeral port exhaustion question. Most candidates know the phrase TIME_WAIT; far fewer know which side accumulates it and why the popular fix is dangerous.Open full answer →
14Your service is collecting thousands of CLOSE_WAIT sockets. What does that state mean and how do you hunt the cause?▼hard★ EssentialNewNetflixUberLinkedIn○ sign inA growing backlog of sockets waiting for the application to close its side usually points at lifecycle handling. Here is the hunt from ss output to the pool timeout that caused it.Open full answer →
21Small requests succeed but large uploads hang mid-flight. What is your leading theory and how do you prove it?▼medium★ EssentialNewCloudflareFlipkartUber◆ premiumThe signature is unmistakable once seen: handshakes complete, then the connection freezes at the same byte count every time. Here is the probe sequence and the fixes, ranked.Open full answer →
24One stream across a 10Gbps transatlantic link crawls while ping looks perfect. What is limiting the throughput?▼hardNewNetflixCloudflareLinkedIn◆ premiumLatency fine, loss low, link idle, yet a single copy takes hours. The arithmetic of bandwidth-delay product settles this question before any tool opens.Open full answer →
31Connections through our load balancer reset after exactly 350 seconds of silence. Where do you look and what do you tune?▼mediumNewJPMorgan ChaseInfosysPhonePe◆ premiumA reset at a suspiciously round number is a fingerprint, not a bug. Matching client keepalives to the lowest timer in the path is the fix; here is the full ladder of knobs.Open full answer →
38Long-haul transfers crawl while ping stays flat. When do you switch congestion control from cubic to BBR?▼hard★ EssentialNewGoogleCloudflareNetflix◆ premiumLoss-based versus model-based congestion avoidance decides whether your WAN transfers fill the pipe or die on the first stray drop. Here is the operator's decision, not the RFC summary.Open full answer →
09TCP retransmissions are spiking but the network team says there is no packet loss. Who is right?▼hardNewGoogleCloudflareMeta2 repliesunlockedBoth can be right, which is the whole point. Retransmissions mean a segment was not acknowledged, and the network is only one of the places that can happen.Open full answer →