IT
OmnvertImage • Document • Network

ASN / Prefix Lookup

Map IP to ASN / origin, and list announced prefixes.

Data via Team Cymru DNS; no storage, no tracking.
Results will appear here…
Prefix discovery
IP lookups return origin prefix, country and ASN name if published.
ASN lookup
Query AS numbers directly (AS13335) to fetch the org name fast.
Privacy & freshness
Data is fetched live via DNS (Team Cymru); no results are stored.
Server-sideProcessed server-side

This tool uses a server-side service for processing; uploaded files or requests are not kept for long-term storage.

About

An ASN lookup answers a more useful question than “where is this IP?” — it tells you which network operates the address and which block that address belongs to. Instead of reasoning about one IP, you get the prefix and the operator behind it: an ISP, a data centre, a cloud region, a CDN, or a VPN provider.

An autonomous system is a network under a single routing policy. Each one is assigned a number by a regional registry — RIPE NCC, ARIN, APNIC, LACNIC or AFRINIC — and uses BGP to announce the prefixes it holds to its neighbours. Those announcements are what make an address reachable at all; without one, the address exists on paper and nowhere else. A lookup here returns the origin AS (the network that injected that prefix into the global routing table) together with the exact prefix being announced, which is usually a larger block than people expect from a single address.

Read the prefix, not just the IP. If 203.0.113.45 comes back as part of 203.0.113.0/24 announced by AS64500, then every address from .0 to .255 belongs to the same operator and will behave the same way for policy purposes. Big operators announce dozens of prefixes across more than one ASN, and the split is often historical — an acquisition, a separate business unit, a regional network. For the large clouds, the providers publish machine-readable prefix lists of their own, and those are a better source than any lookup if you are writing firewall rules against AWS, Azure or GCP.

The relationships between autonomous systems explain a lot of odd behaviour. Transit is a paid arrangement: a smaller network pays a larger one to carry its traffic to everywhere else. Peering is settlement-free, two networks exchanging enough traffic with each other that cross-connecting at an internet exchange is cheaper than paying transit for it. When a site is fast from one ISP and slow from another, or latency jumps overnight with no change on your side, the cause is frequently a shift in which of those paths is preferred — not anything on the server.

On the security side this is one of the highest-signal, lowest-effort checks available. Traffic arriving from an ASN that belongs to a VPS or hosting provider is a very different proposition from the same volume spread across residential broadband networks: real customers rarely sign up from a data centre. Investigating a spike, sorting scrapers from users, or explaining why one region sees different behaviour all get easier when you group by ASN rather than by address. It is also the quickest way to check whether an IP in your logs is your own CDN, your monitoring vendor, or something unexpected.

Using ASN for allowlisting is convenient and blunt. Cloudflare, some WAFs and a handful of CDNs let you write a rule against an ASN directly. Most firewalls and load balancers do not, so you end up expanding the ASN into its prefixes and maintaining that list yourself. Prefixes move: an operator can deaggregate a /16 into /24s overnight, sell a block, or shift a customer to a different upstream. Anything meant to outlive a debugging session needs a scheduled refresh and a way to notice when the list changes.

Be clear about what the answer does not mean. ASN tells you who routes an address, not where a person is and not who the end customer is. A residential subscriber, a corporate VPN concentrator and a compromised home router can all sit inside the same ASN with the same registered country. Routing itself is not authoritative either: BGP hijacks and route leaks mean the origin AS in the table isn’t always the legitimate holder of a prefix, which is precisely the problem RPKI route origin validation exists to solve — and that is a separate check from this one.

The lookup runs server-side against public routing and registry data. The address you type isn’t stored, and the tool never sends traffic to the address itself — nothing is probed, scanned or connected to, so looking up an IP is invisible to whoever operates it.

How it works

  1. 1Open ASN / Prefix Lookup and choose your file or enter the required input.
  2. 2Check the settings and start the process.
  3. 3The tool creates the result with temporary server-side processing.
  4. 4Download the output or copy the result when it is ready.

FAQ

What is an ASN?
An Autonomous System Number identifies a network that announces IP prefixes to the internet via BGP. Registries assign them, and every ISP, large hosting provider and CDN that runs its own routing has at least one.
What is a prefix?
A prefix is an IP range in CIDR notation, such as 203.0.113.0/24. It represents a block of addresses announced together as a single routing entry.
Why is the prefix bigger than I expected?
Operators announce blocks, not individual addresses. Even if you look up one IP, the routing table entry covering it is typically a /24 or shorter for IPv4 and a /32 to /48 for IPv6, because routers would collapse under per-address entries.
Is an ASN the same as an ISP?
Often related but not identical. Data centres, cloud providers, universities, banks, exchanges and VPN operators all hold ASNs. A single ISP may also hold several ASNs from mergers or regional networks.
Can two ASNs announce the same prefix?
Yes, and it means one of two things. Anycast services deliberately announce the same prefix from several locations, which is normal. Otherwise a multi-origin AS conflict can indicate a misconfiguration or a route hijack worth investigating.
Why do some ASNs have very large numbers?
The original AS number space was 16-bit, capping at 65535. 32-bit ASNs were introduced in 2007 and are now the default for new assignments, which is why you see numbers in the hundreds of thousands.
How do I tell hosting traffic from consumer traffic?
Look at the operator name and the type of network. Cloud and VPS providers, colocation companies and VPN services show up as hosting; residential ISPs and mobile carriers show up as access networks. It is a signal rather than proof, since businesses also route through data centres.
Can I use ASN for allowlisting?
Some systems accept ASN-based rules directly. Where they don’t, expand the ASN to its prefixes and allowlist those. Either way, schedule a refresh — announced prefixes change more often than people assume.
Does ASN show the exact location?
No. ASN is about network ownership and routing, not geography. A single ASN can announce prefixes used on several continents, and the registered country is the operator’s, not the user’s.
How current is the data?
It reflects publicly visible routing and registry information, which updates continuously but not instantly. For a decision that matters — blocking, contractual, or legal — verify against the registry’s own RDAP or WHOIS record.
Does looking up an IP alert its owner?
No. The lookup queries routing and registry data only. No packet is sent to the address you enter, so there is nothing for its operator to see.