Ruta Predeterminada
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://ipfyi.com/iframe/glossary/default-route/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://ipfyi.com/glossary/default-route/
Add a dynamic SVG badge to your README or docs.
[](https://ipfyi.com/glossary/default-route/)
Use the native HTML custom element.
Definición
Una entrada en la tabla de enrutamiento (0.0.0.0/0 en IPv4) que coincide con todas las direcciones de destino no cubiertas por rutas más específicas. Actúa como comodín, generalmente apuntando al enrutador de puerta de enlace de la red.
The Gateway of Last Resort
The default route is sometimes called the gateway of last resort. When a RouterA network device that forwards data packets between different networks by examining destination IP addresses and consulting its routing table. Routers operate at Layer 3 (Network) of the OSI model. examines an incoming packet's destination address and finds no specific matching prefix in its Routing TableA data structure stored in a router that lists known network destinations and the next hop or interface for reaching each one. Routing tables are populated by static configuration or dynamic routing protocols like BGP and OSPF., it falls back to the default route. Without a default route, packets to unknown destinations are simply dropped.
In CIDR notation, the default route is written as 0.0.0.0/0 for IPv4 and ::/0 for IPv6. These prefixes have a prefix length of zero, meaning they match every possible destination address — but always lose to more specific routes due to the longest-prefix-match rule.
Where Default Routes Appear
On home routers and enterprise edge devices, the default route points to the upstream ISP's GatewayA network device (typically a router) that serves as the access point from a local network to other networks. The default gateway is the first hop for traffic destined outside the local subnet.. In data center environments, servers point their default route to the local router or load balancer, which in turn has a default route toward internet uplinks.
Default Routes in BGP
In BGPBorder Gateway Protocol. The routing protocol that exchanges reachability information between autonomous systems, effectively determining how data traverses the internet. Often called the "postal service of the internet." deployments, ISPs may inject a default route into customer sessions rather than advertising the full internet routing table. This is common for smaller customers who do not need per-prefix routing decisions — the ISP handles all routing beyond the customer's own prefixes.
Misconfigured default routes are a frequent source of network outages. If a router loses its specific routes but retains a default pointing the wrong direction, traffic may take an unexpected — and often broken — path. Use Ping Test to verify reachability when troubleshooting default route issues.