Every IP address belongs to a special-use category defined by IANA: some are globally routable and can be geolocated, while others are private, loopback, link-local, or reserved and never appear on the public internet. This tool classifies any IPv4 or IPv6 address and explains what it reveals — useful when auditing logs, URLs, or configuration files.
How it works
The checker inspects the leading bits of the address against the IANA registries:
- IPv4 is parsed as four octets and matched against ranges like
10.0.0.0/8,172.16.0.0/12,192.168.0.0/16(private),127.0.0.0/8(loopback),169.254.0.0/16(link-local),100.64.0.0/10(carrier-grade NAT), and the RFC 5737 documentation blocks. - IPv6 is fully expanded (handling
::compression and zone IDs) and matched against::1(loopback),fc00::/7(unique-local),fe80::/10(link-local),ff00::/8(multicast),2001:db8::/32(documentation), and2000::/3(global unicast). - Anything not in a reserved range is reported as public / globally routable.
Privacy notes
A public result means the address is unique on the internet and can be mapped to an ISP and approximate location — so leaking it in a screenshot, log, or URL exposes network topology. A private result means the address is reused behind NAT and reveals only internal structure, which is far lower risk. The tool runs entirely locally, so it never reveals the address it is examining.