The /0 Default Route (0.0.0.0/0)

Learn about the /0 default route (0.0.0.0/0), the catch-all route in networking. Matches all IPv4 addresses and serves as the gateway of last resort.

0.0.0.0/0IPv4

Detailed Explanation

The /0 Default Route Explained

The /0 route (written as 0.0.0.0/0) is the default route in IPv4 networking. It uses zero bits for the network portion, meaning it matches every possible IP address.

Key Details

  • Subnet Mask: 0.0.0.0
  • Total Addresses: 4,294,967,296 (all IPv4 addresses)
  • Purpose: Catch-all route, gateway of last resort
  • Matches: Every IPv4 address from 0.0.0.0 to 255.255.255.255

How It Works

In a routing table, routes are matched from most specific to least specific. The /0 route is the least specific possible — it matches everything. When no more specific route exists for a destination, the router forwards the packet using the default route.

Binary Breakdown

00000000.00000000.00000000.00000000

Zero network bits means no part of the address is used for matching. Every address is a "match."

Typical Configuration

On most networks, the default route points to the internet gateway:

Destination: 0.0.0.0/0
Gateway: 192.168.1.1
Interface: eth0

This tells the device: "For any destination I do not have a specific route for, send the packet to 192.168.1.1."

Importance in Networking

Without a default route, a device can only communicate with networks it has explicit routes for. The /0 route is essential for internet connectivity — it ensures packets destined for unknown networks reach a router that can forward them further.

Security Considerations

In firewalls and security groups, 0.0.0.0/0 means "any source" or "any destination." Using it in allow rules opens access from the entire internet, which is a significant security risk. Always limit access to specific CIDR blocks when possible.

IPv6 Equivalent

The IPv6 default route is written as ::/0, which serves the same purpose for IPv6 traffic.

Use Case

A home router uses 0.0.0.0/0 pointing to the ISP's gateway so all internet-bound traffic is forwarded upstream automatically.

Try It — Subnet Calculator

Open full tool