Here's a question that sounds naive and is actually profound: when you load a website hosted on another continent, who decided the path your packets took? There's no internet headquarters, no master map, no company that runs routing. The answer is a thirty-year-old protocol called BGP — Border Gateway Protocol — and understanding it changes how you see every "half the internet is down" headline.
The internet is a federation, not a network
First, reframe what "the internet" is: roughly 70,000+ independent networks — ISPs, cloud providers, big enterprises, universities — each called an autonomous system (AS), each with a number (Google is AS15169). The internet is nothing more than these networks agreeing to exchange traffic. BGP is the language of that agreement.
Routing by gossip
BGP works like neighbourhood gossip between border routers. Each AS advertises to its neighbours: "I can reach these address blocks." Neighbours pass it on, appending themselves: "I can reach those blocks via them." Every advertisement carries the accumulating path of AS numbers it travelled — so routers across the world end up holding, for every destination block, a set of candidate paths, and they generally prefer shorter ones (fewer networks to cross). No one holds a map of the internet; everyone holds directions their neighbours claimed, which is a very different thing.
The elegance: when a cable is cut or a network dies, its routes get withdrawn, the gossip propagates, and traffic re-converges around the damage in seconds to minutes — no coordinator required. This is why the internet survives earthquakes, wars, and backhoes. Now the flaw.
The honour system
Classic BGP has no built-in way to verify that an advertisement is true. If a network announces "I can reach YouTube's addresses," neighbours historically just… believed it. And because routers prefer more-specific announcements, a false, more-specific route can out-compete the real one globally within minutes. This is a BGP hijack, and it's not theoretical: misconfigurations and deliberate hijacks have repeatedly redirected chunks of the world's traffic through the wrong country, blackholed major services, or enabled cryptocurrency theft — including famous incidents where a single small ISP's mistake took a global platform offline. When you see "configuration error at one provider broke the internet for hours," the mechanism underneath is very often BGP propagating a bad announcement at gossip speed.
The fix rolling out across the industry is RPKI — cryptographic statements ("this AS is authorised to announce these blocks") that routers can check before believing gossip. Adoption is real but incomplete, which is the honest state of the art: the internet's routing still runs substantially on trust, patched gradually with cryptography.
Why a Summit post on a beginners' site bothers with BGP: because it completes your mental model. LANs, switches, and OSPF-style routing explain your building; BGP explains the world — and once you know the internet is a gossip federation on the honour system, entire categories of outage news stop being mysterious and start being legible.