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 →
29Capture a TLS connection in tcpdump. What differs between the TLS 1.2 and 1.3 handshakes, and why does an ops person care?▼mediumNewStripeCloudflareJPMorgan Chase◆ premiumOne round trip versus two is the headline, but the ops-relevant differences hide in what stays plaintext, how resumption works, and which middlewares the change broke.Open full answer →
11TLS renewal is automated and has worked for months. One night every client starts failing certificate verification. What happened?▼mediumNewCloudflareAmazon & AWSFlipkart○ sign inAutomation can renew a certificate without deploying it correctly. Check the served leaf and chain, the client trust store and the exact verification failure.Open full answer →
19Requests pile up at the nginx edge, one core is pegged at 100 percent, and the backends look bored. Walk me through it.▼mediumNewCloudflareFlipkartSwiggy○ sign inOne saturated core on a proxy is rarely about raw traffic volume. It is a parallelism failure with three usual suspects, and the per-thread view names the culprit in minutes.Open full answer →
31After a routine certificate rotation, one service pair fails mTLS with unknown authority while everyone else works. Find the break.▼hardNewStripeJPMorgan ChaseRazorpay◆ premiumThe leaf is valid and the root is trusted, yet verification fails. The gap lives in the middle of the chain, and the exact verify code names it before you open a single config file.Open full answer →