Skip to content

Bogon addresses: what are invalid IP ranges?

Reserved IP blocks that should never appear on the public internet — and why they matter for security.

For everyone
Whether you're curious about networking or managing IT systems, this guide explains bogon addresses in practical terms. Check any IP against the bogon list with our bogon check tool.

What are bogon addresses?

Bogon addresses are IP addresses reserved for special purposes and not used for regular internet communication. The term "bogon" comes from "bogus" — these are special IP ranges set aside by internet standards for specific functions like private networks, documentation, and testing.

Why bogon addresses exist. Internet protocols reserve these special addresses for important purposes:

  • Private networks — your home WiFi and office networks (like 192.168.x.x).
  • System functions — computer self-communication (like 127.0.0.1 localhost).
  • Documentation — examples in technical guides and tutorials.
  • Future use — space reserved for new internet features.

Types of bogon addresses

RFC 1918 private addresses

  • 10.0.0.0/810.0.0.0 – 10.255.255.255
  • 172.16.0.0/12172.16.0.0 – 172.31.255.255
  • 192.168.0.0/16192.168.0.0 – 192.168.255.255

Your home WiFi, office network, and router admin pages use these addresses.

Special use addresses

  • 0.0.0.0/8 — current network.
  • 127.0.0.0/8 — loopback addresses.
  • 169.254.0.0/16 — link-local (APIPA).
  • 224.0.0.0/4 — multicast addresses.

System functions like localhost, automatic IP assignment, and group communications.

Standards references

  • RFC 1918: Private Internet Address Allocation.
  • RFC 3927: Dynamic Configuration of IPv4 Link-Local Addresses.
  • RFC 5735: Special-Use IPv4 Addresses.
  • RFC 6890: Special-Purpose IP Address Registries.
  • IANA Registry: Special-Purpose Address Registry.

Complete bogon address list

Here's the comprehensive list of IPv4 bogon addresses that should be filtered at internet boundaries:

Network rangeCIDRDescriptionRFC
0.0.0.0 – 0.255.255.2550.0.0.0/8"This" networkRFC 1122
10.0.0.0 – 10.255.255.25510.0.0.0/8Private network Class ARFC 1918
127.0.0.0 – 127.255.255.255127.0.0.0/8Loopback addressesRFC 1122
169.254.0.0 – 169.254.255.255169.254.0.0/16Link-local addressesRFC 3927
172.16.0.0 – 172.31.255.255172.16.0.0/12Private network Class BRFC 1918
192.0.2.0 – 192.0.2.255192.0.2.0/24Documentation / exampleRFC 5737
192.168.0.0 – 192.168.255.255192.168.0.0/16Private network Class CRFC 1918
198.51.100.0 – 198.51.100.255198.51.100.0/24Documentation / exampleRFC 5737
203.0.113.0 – 203.0.113.255203.0.113.0/24Documentation / exampleRFC 5737
224.0.0.0 – 239.255.255.255224.0.0.0/4Multicast addressesRFC 3171
240.0.0.0 – 255.255.255.255240.0.0.0/4Reserved / experimentalRFC 1112

How bogon addresses work in practice

Home and office networks

Private addresses (192.168.x.x, 10.x.x.x) are used because:

  • Every home can use the same ranges without conflict.
  • Routers automatically handle the translation to public IPs.
  • It saves millions of public IP addresses.
  • Most routers come pre-configured to use these ranges.

System functions

Special addresses serve important purposes:

  • 127.0.0.1 — your computer talking to itself (localhost).
  • 169.254.x.x — automatic IP when DHCP fails.
  • 224.x.x.x — group communications (like streaming).
  • 0.0.0.0 — "any address" in network configurations.
Built-in protection
Modern internet infrastructure automatically handles bogon filtering. Most commercial routers, ISPs, and network equipment have built-in rules that prevent bogon addresses from being routed across the public internet. The average user rarely encounters issues with bogon addresses because this filtering happens automatically.

When you might encounter bogon addresses

Home network setup

When setting up home networks, you'll work with private addresses:

  • Router admin page: usually 192.168.1.1 or 10.0.0.1.
  • Device IPs: your laptop might be 192.168.1.100.
  • Port forwarding: using private IPs for game servers.
  • Network troubleshooting: checking local connectivity.

Office IT management

IT professionals work with bogon addresses for:

  • Internal networks: organising departments with 10.x.x.x.
  • Documentation: using example IPs in network diagrams.
  • Testing: lab environments with reserved addresses.
  • VPN setup: connecting remote offices securely.

Why you don't need to worry

  • Router filtering — consumer and business routers automatically block bogon routing.
  • ISP protection — internet service providers filter bogon traffic at network edges.
  • Built-in standards — network equipment follows RFC standards by default.
  • Automatic updates — modern systems update bogon lists automatically.
  • Protocol design — internet protocols are designed to handle these addresses correctly.

Dynamic bogons and unallocated space

Beyond static reserved ranges, "dynamic bogons" include currently unallocated IPv4 address space that may be allocated in the future. As IPv4 addresses become increasingly scarce:

  • IANA exhaustion — completed in 2011, no more /8 blocks to allocate.
  • RIR exhaustion — regional registries running out of space.
  • Dynamic allocation — previously bogon space being allocated.
  • Filtering updates — networks must update bogon lists regularly.
Important
Static bogon lists become outdated quickly. Use automated feeds from Team Cymru, IANA, or RIR databases for current unallocated space.

Test your network for bogon exposure

Use our bogon detection tool to check any IP address against the bogon list. It provides:

  • Real-time detection — instant identification of bogon addresses.
  • Security warnings — alerts for potentially malicious traffic.
  • RFC references — detailed explanations of why addresses are invalid.
  • Network context — impact analysis for your infrastructure.

Practical examples: using bogon addresses

Example: home network setup

Situation: setting up a home office network.

Using bogon addresses:

  • Router: 192.168.1.1 (admin interface).
  • Work laptop: 192.168.1.10.
  • Home server: 192.168.1.100.
  • Smart devices: 192.168.1.20–50.

Result: everything works perfectly. Your router handles all the internet communication.

Example: testing web applications

Situation: developer testing a web application.

Using bogon addresses:

  • localhost: 127.0.0.1 (testing on your own computer).
  • Examples: 192.0.2.1 (in documentation).
  • Lab network: 10.0.0.x (isolated test environment).
  • Demo servers: 203.0.113.x (safe example IPs).

Result: safe testing without affecting real internet traffic.

Key takeaways: bogon addresses serve important purposes in internet protocols; modern equipment handles bogon filtering automatically; you use bogon addresses every day (home WiFi, localhost); internet infrastructure prevents bogon routing issues; these addresses are defined by international internet standards.

Related reading: What is an IP address? · IP addressing & subnetting · Network diagnostics