What an IP address is
An IP (Internet Protocol) address is a numeric identifier assigned to every device on a network. There are two types in active use:
- IPv4: 32-bit addresses, written as four
numbers separated by dots (
192.168.1.1). ~4.3 billion possible addresses. We ran out of these globally around 2011. - IPv6: 128-bit addresses, written as
eight groups of hexadecimal (
2001:0db8:85a3:: 8a2e:0370:7334). ~340 undecillion possible addresses. Designed to replace IPv4 but adoption has been slow.
Your device has at least one IP address, often more (IPv4 + IPv6 + multiple network interfaces). When you visit a website, your packets travel from your device's IP to the website's IP and back.
Public vs private IPs
A common confusion. Your device has two IPs:
- Private IP: assigned by your local
router. Typically looks like
192.168.x.x,10.x.x.x, or172.16-31.x.x. Only meaningful inside your home/office network. - Public IP: assigned by your ISP and visible to the wider internet. This is the IP websites see when you connect.
Behind a home router, all your devices share one public IP (via Network Address Translation β NAT). On mobile data, many users share a single carrier IP (via CGNAT β Carrier-Grade NAT).
What your public IP reveals
1. Your ISP
IPs are allocated in blocks to organizations through regional registries (ARIN for North America, RIPE for Europe, etc.). A reverse lookup tells anyone which organization owns the IP block your IP is in. Usually that's your ISP β Comcast, Verizon, AT&T, T-Mobile, etc.
This is the most reliable thing an IP tells someone: who you pay for internet access.
2. Approximate geographic location
IP geolocation databases (MaxMind, IP2Location, IPinfo) maintain mappings of IP blocks to geographic regions. They get this data from:
- ISP-published BGP routing data.
- WHOIS records (which often list the ISP's billing address, not the user's).
- Correlation with mobile device location data (controversial).
- User-reported data.
Accuracy is highest at country level (typically 99%), decent at city level (~70-90% for major cities), and weak at neighborhood/ZIP level (~50% or worse). For ISPs that serve a wide geographic region from a single hub (rural cable, cellular carriers), the accuracy can be terrible β showing your "location" as a city 100+ miles away.
3. Your ASN (Autonomous System Number)
Networks on the internet are organized into Autonomous Systems, each with an ASN. Your IP's ASN tells observers which network you're connected through β usually overlaps with the ISP but provides more granular detail (e.g., "Comcast Business" vs "Comcast Residential").
4. Whether you're on a VPN, proxy, or Tor
IP intelligence services flag IPs known to belong to:
- VPN providers (us, Mullvad, NordVPN, all of them).
- Datacenter / cloud hosting (AWS, Google Cloud, DigitalOcean).
- Tor exit nodes.
- Public proxies.
Sites that want to block VPN/proxy traffic use these databases to identify suspicious connections. Streaming services and some banks use them.
What your IP doesn't reveal
- Your name. The IP-to-customer mapping is held by your ISP. Only legal process (subpoena, court order) can compel that mapping.
- Your exact home address. See above.
- Your activity on websites. The IP is just the source/destination identifier; it doesn't carry the content of what you did.
- Personal details (age, gender, income, etc.). IP-based "demographic" estimates exist but are unreliable inferences, not real data.
How a VPN changes this
When you connect to a VPN:
- Websites see the VPN server's IP, not yours.
- The VPN server's IP belongs to the VPN provider, so reverse lookup identifies the VPN, not you.
- Geolocation shows the VPN server's location, not yours (which may be the same country or a different one depending on which server you picked).
- The IP is shared with other VPN users, so even within the VPN provider, individual users blend in.
The trade-off: the VPN provider now has a position equivalent to your ISP β they can theoretically see your traffic destinations. This is why provider trust matters. A no-log provider (us, Mullvad, IVPN, ProtonVPN) doesn't retain that information, so it can't be subpoenaed, breached, or sold.
IP rotation and dynamic addressing
Most residential ISPs assign IPs dynamically β your IP can change when:
- Your router restarts.
- Your DHCP lease expires (typically days to weeks).
- Your ISP reassigns IP blocks for capacity reasons.
Static IPs are uncommon for residential users and usually require paying extra. Business and enterprise accounts more often have static IPs.
Mobile data is even more dynamic β your IP can change as you move between cell towers, and CGNAT means you share IPs with many other users.
Checking your own IP
Free tools for verifying what your current IP looks like to the outside world:
- /tools/what-is-my-ip/ β our in-house tool, no tracking.
- ipinfo.io β third-party, more detailed.
- iplocation.net β comparison across multiple geolocation databases.
Run these with and without your VPN to see how it changes what's visible.