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 →
09A freshly built VM boots and never gets an IP address. Walk me through DHCP and where it fails.▼easyNewTCSInfosysAccentureunlockedEveryone recites the four letters. The scoring answer walks each packet across the wire and knows the places the exchange silently dies.Open full answer →
13Can a Linux host have two default gateways? What actually breaks, and what is the right way to do multihoming?▼mediumNewJPMorgan ChaseGoldman SachsAccenture○ sign inThe answer is yes, and then the real question starts. Asymmetric routing and silent drops punish anyone who treats the routing tables as one flat list.Open full answer →
17How do you run tcpdump on a production host without making things worse, and what do you do with the capture?▼medium★ EssentialNewCloudflareNetflixDatadog○ sign inMost candidates can recite the flags. The scored part is proving you can capture on a saturated box without adding load, then read the file afterward like evidence.Open full answer →
23This host must serve three VLANs with redundant NICs. Explain VLAN subinterfaces and where each bonding mode fits.▼mediumNewIBMAccentureOracle◆ premiumEnterprise loops pair these topics because they test L2 literacy plus vendor coordination together. The scored insight is that LACP spreads flows, not packets, and needs the switch to agree.Open full answer →
37Two hosts should push 10Gbps but the transfer crawls. How do you run a throughput test worth believing?▼medium★ EssentialNewCloudflareNetflixNVIDIA◆ premiumMost throughput tests measure the tester, not the network. Single stream versus parallel, slow start, sender-side retransmits, and the CPU ceiling: how to produce a number you can act on.Open full answer →
46Where does multicast show up in real ops work, and why does it break the moment you move to the cloud?▼easyNewGoldman SachsJPMorgan ChaseTCS◆ premiumVRRP heartbeats, market data feeds, mDNS noise and cluster chatter all ride multicast, and all of it assumes a switched LAN. Why clouds drop it and what replaces it.Open full answer →
01Security groups versus network ACLs: explain stateful and stateless, and give me a case where the difference bites.▼easy★ EssentialNewAmazonMicrosoftAccenture2 repliesunlockedAsked in almost every cloud screen, and most candidates recite the table without ever naming the failure it causes. The ephemeral port range is the whole answer.Open full answer →
04You need to connect forty VPCs plus on-premises. Peering, Transit Gateway or PrivateLink?▼hardNewAmazonJPMorgan ChaseWalmart Global Tech2 repliesunlockedA design question with a clear answer at this scale, and the reasoning is what scores. The three options solve different problems and peering and Transit Gateway connect networks while PrivateLink exposes services.Open full answer →
44Your data transfer line is now the third largest on the bill. Where is it coming from and what do you do?▼hardNewNetflixSnowflakeCloudflare2 replies◆ premiumData transfer is charged in several unrelated ways and reported as one line, so the first job is decomposition. Most surprises are cross-zone chatter between services that never needed to be on different nodes.Open full answer →
45Compliance will not allow model API calls over the public internet. What are your options?▼hardNewJPMorgan ChaseSAPMicrosoft2 replies◆ premiumFour options with genuinely different costs, and the requirement is usually narrower than it first sounds. Establish whether it is about the network path, the data residency, or the provider's retention terms, because those need different answers.Open full answer →
06How does a pod get an IP address, and what happens to traffic between two pods on different nodes?▼hardNewCloudflareGoogleRed Hat2 repliesunlockedThe question that finds out whether you know Kubernetes networking or just use it. The model has three rules and everything about CNI follows from them.Open full answer →
11Why did eBPF-based networking displace iptables in Kubernetes, and what does that change for you?▼hard★ EssentialNewCloudflareUberDatadog2 replies○ sign inCilium became the default CNI on major managed platforms for a reason that is mechanical rather than fashionable. The iptables datapath degrades with service count, and eBPF replaces a linear scan with a map lookup.Open full answer →
63Should we migrate from Ingress to Gateway API? Make the case either way.▼hardNewGoogleRed HatMicrosoft2 replies◆ premiumIngress solved routing by convention and annotation, which meant every controller invented its own. Gateway API's real contribution is not features, it is splitting one object into three so that platform and application teams stop editing the same file.Open full answer →
18What can eBPF-based observability see that a normal agent cannot, and when is it not worth adding?▼mediumNewNetflixCloudflareDatadog○ sign inThe kernel watches syscalls, sockets and short-lived processes that userspace agents polling every few seconds never meet. Know what eBPF adds, what it costs, and the security conversation it starts.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 →
14A busy node drops new connections intermittently; dmesg shows 'nf_conntrack: table full'. Walk me through what is happening.▼hard★ EssentialNewAmazon & AWSCloudflareUber○ sign inEstablished traffic keeps working while new connections die at random, which is exactly why this one confuses people. The table is full of flows that will not be needed again for days.Open full answer →
20After last night's firewall cleanup, calls to one payment vendor hang instead of failing fast. Find the rule that did it.▼mediumNewRazorpayJPMorgan ChaseGoldman Sachs○ sign inA hang suggests missing progress; a refusal suggests an explicit error. Packet evidence distinguishes firewall behavior from routing failures and closed listeners. Then rule counters, not eyeballs, finger the guilty line.Open full answer →
22Same-node pod calls work, cross-node calls time out, and small probes pass while real requests hang. Find the break.▼hard★ EssentialNewAmazon & AWSFlipkartUber◆ premiumSame-node good, cross-node bad is not a random clue, it is nearly a diagnosis. One short decision tree separates overlay reachability, encapsulation blocks, MTU and policy.Open full answer →
39After a VLAN migration, a VIP answers from some subnets and times out from others. Someone shouts duplicate IP. Prove it.▼hardNewWalmart Global TechTCSAccenture◆ premiumDuplicate-IP claims need evidence, and one command provides it. Then the real skill: telling a genuine two-owner clash apart from ARP flux, because the fixes could not be more different.Open full answer →
40New connections to one partner API fail at peak, only through the NAT gateway, while established flows sail on. What is the ceiling?▼expertNewAmazon & AWSMicrosoftStripe◆ premiumBandwidth graphs look healthy and the partner swears they are fine. The wall is ports, not bits: the available source-port budget depends on the gateway and its address allocation.Open full answer →
10Our multi-region architecture quietly doubled the networking bill. Where is the money going?▼mediumNewCloudflareNetflixFlipkartunlockedData transfer appears on nobody's architecture diagram and reliably appears on the invoice. The strong answer enumerates the taxed flows, ranks the levers, and knows which tax is worth paying.Open full answer →
07Training throughput is 40 percent below what the GPU count predicts. The GPUs look fine. Where do you look?▼expertNewNVIDIAMetaMicrosoft2 repliesunlockedAt sixteen GPUs and above, the network is the computer. Collectives run at the speed of the worst link in the group, and placement decides which link that is.Open full answer →