IP WHOIS looks up who holds an IP address or an autonomous system number in the regional internet registries, returning the network block, the routing ASN, the organization and its abuse contact.
Why IP WHOIS is different from domain WHOIS
Domain names are managed by registries and registrars under ICANN, one authority per TLD. IP addresses and AS numbers are managed by five Regional Internet Registries (RIRs): ARIN (North America), RIPE NCC (Europe, Middle East, Central Asia), APNIC (Asia-Pacific), LACNIC (Latin America and the Caribbean), and AFRINIC (Africa). Each RIR allocates blocks to ISPs and organizations in its region and publishes the registration data through WHOIS and RDAP.
A domain WHOIS answer describes ownership of a name. An IP WHOIS answer describes a delegation: which registry holds the block, which organization it was assigned to, and which autonomous system currently announces it on the internet's routing table (BGP). The same IP can show a registrant address in one country and a routing origin in another, because the address holder and the network operator running the routes are not always the same entity, especially with hosting providers and CDNs.
- Regional registries: ARIN, RIPE NCC, APNIC, LACNIC, AFRINIC - each authoritative for its own address space
- IANA delegates blocks to the RIRs; RIRs sub-delegate to ISPs, hosting providers and end users
- RDAP (RFC 9082 / RFC 9083) is replacing legacy port-43 WHOIS as the structured, machine-readable query protocol
Reading a netblock (CIDR) record
A netblock record ties a CIDR range to a registered organization. The CIDR notation (e.g. 192.0.2.0/24) states the network address and the prefix length: the number after the slash is how many leading bits are fixed for the network, leaving the rest for hosts. A /24 fixes 24 bits and leaves 8 for host addressing, an IPv4 block of 256 addresses.
| Field | Example | Meaning |
|---|---|---|
| CIDR | 192.0.2.0/24 | Network prefix and mask length for the announced block |
| netname | EXAMPLE-NET | Registry-internal label the holder gave the block |
| Country | FR | Country associated with the registration, not necessarily where traffic is served |
| Origin AS | AS64500 | Autonomous system currently announcing this prefix in BGP |
ASN records: routing identity, not physical location
An autonomous system number identifies a network that runs its own routing policy on the internet. ASNs are 16-bit (1-65534, with private ranges reserved) or, since the pool ran short, 32-bit (up to 4294967295) per RFC 6793. An ASN record lists the registered holder, the announced prefix count, and how many other networks peer with it upstream or downstream.
A high announced-prefix count usually means a large ISP or cloud provider; a handful of prefixes with few peers usually means an end-user network or a small hosting company multihomed for redundancy. Peering counts are a rough proxy for how central a network is in the routing mesh, not a measure of its traffic volume.
Abuse contacts and how registries publish them
RIRs require each allocated block to carry an abuse contact - an email address (and sometimes phone number) the registry expects to reach a real operations team, not a shared inbox that goes unread. This is the correct channel for reporting spam, scanning, DDoS traffic, or compromised hosts traced to that netblock; contacting the registrant's domain WHOIS abuse address is the wrong path when the complaint is about network behavior rather than a website.
Abuse contacts sit at the netblock level, so a large hosting provider often shows one abuse address covering thousands of customer IPs. That is expected: it routes the report to the provider's abuse desk, which then locates the specific customer internally.
RDAP vs legacy WHOIS for IP data
Traditional WHOIS (RFC 3912) is a plain-text protocol over TCP port 43 with no standard output format - each registry formats fields differently, which makes automated parsing brittle. RDAP (RFC 9082 for the query protocol, RFC 9083 for the JSON response format) replaces it with structured, self-describing JSON and a proper bootstrap mechanism (RFC 9224) that tells a client which authoritative server to query for a given address block. Most RIRs now serve RDAP as the primary interface, with legacy WHOIS kept for compatibility.
FAQ
Why does the same IP show a different country than where the website is actually hosted?
The registration country reflects where the address block was allocated, which is usually the holding organization's headquarters or regional office. Content delivery networks and cloud providers route traffic globally from many physical locations while the IP block itself stays registered to one regional entity.
What is the difference between the netblock holder and the origin AS?
The netblock holder is the organization the registry allocated the address range to. The origin AS is whichever autonomous system is currently announcing that range in BGP. Large organizations sometimes lease space to a hosting provider that announces it under its own ASN, so the two can differ.
Can I look up who owns a private IP address like 10.0.0.1 or 192.168.1.1?
No. Ranges reserved by RFC 1918 (10.0.0.0/8, 172.16.0.0/12, 192.168.0.0/16) are not globally routed and have no registry entry - they are reused independently inside millions of private networks, so a WHOIS query against one is meaningless outside its own network.
Why do some IP WHOIS lookups return no abuse contact?
Abuse contact fields became mandatory relatively recently in some registries and were backfilled unevenly for older allocations. A missing field usually means an older, small block rather than an error in the lookup.
What does a high number of announced prefixes for an ASN actually indicate?
It correlates with the size of a network's address footprint, typically large ISPs, cloud providers or content networks that operate many distinct blocks. It says nothing about traffic volume or reliability by itself.
Is an ASN lookup the same as a traceroute?
No. A traceroute shows the path packets take hop by hop; an ASN lookup shows registration and routing-origin metadata for a network as a whole. Traceroute output can be cross-referenced with ASN data to see which networks a path crosses, but the two tools measure different things.
Related tools
- Domain WHOIS lookup - registrar, registrant status and expiry for domain names rather than IP space
- Geolocation, hosting provider and connection details for a single IP, complementary to the RIR registration data here
- Resolve the PTR record for an IP to see its hostname, a separate lookup from registry ownership
- Audit a domain's DNS configuration once you have identified the network it resolves to