← Back to all articles

What an IP Lookup Reveals — and What It Cannot

IPPrivacy

What you can learn

  • Approximate location: usually city level, with errors of tens or even hundreds of kilometres;
  • Carrier and ASN: which network it belongs to and what kind of line it is (broadband / datacenter / mobile);
  • Classification: whether it is a datacenter IP and whether a proxy or VPN is in use;
  • Reverse DNS: which domain, if any, points at the address.

What you cannot learn

  • Name, phone number, street address: those live in carrier records, not public databases;
  • Precise coordinates: the latitude/longitude in lookup results is usually the city or datacenter centre, not where you are;
  • Your device and browser: screen size, fonts and timezone are collected by page scripts, independent of the IP.
InformationAvailable from IPAccuracy
Country / cityYesCity level, sometimes far off
CoordinatesSometimesNetwork egress only, imprecise
Carrier / ASNYesReasonably accurate
Device fingerprintNoCollected by browser scripts

Why lookups are often wrong

IP geolocation databases infer from registration records and network probing. Home broadband addresses are dynamically assigned and change often; CDNs, proxies and cloud providers put many users behind one egress; mobile egress is concentrated in provincial capitals. Treat IP location as a rough hint, never as a serious geographic determination.

Practical privacy advice

  1. Do not hand out precise location permission: the browser location API — not the IP — is the real source of positioning;
  2. Know what a VPN does: it swaps your egress IP, but the provider still sees your traffic and logged-in accounts still link back to you;
  3. Mind the browser fingerprint: fonts, canvas output and timezone identify you far more reliably than an IP;
  4. Secure what is public: an exposed IP gets scanned constantly — closing unused ports matters more than hiding the address.

Real-world scenarios: three common misconceptions

  1. "Changing my IP hides me": cookies and browser fingerprints persist, and a logged-in session still ties activity together.
  2. "The provincial capital shown is my city": carrier egress is registered centrally, city-level at best — not a precise location.
  3. "The IP never changes": broadband addresses rotate on reconnect; only datacenter IPs are relatively stable — account for this in allowlists.

Common questions

Does changing my IP make me anonymous? No — cookies, fingerprints and account logins still tie activity together. Why does it show a provincial capital? Carrier egress is centralised and registered there. Does an IP change? Broadband addresses rotate periodically or on reconnect, while datacenter IPs stay stable.

Advice for site owners and teams

  • Never make IP your only risk signal: home addresses rotate and mobile or corporate proxies share egresses, so false positives are common — combine with device signals, login behaviour and rate limits;
  • Log it, do not hoard it: IPs in access logs are personal data; set a retention window and stay within your stated purpose;
  • Harden anything exposed: close unused ports, restrict admin access by source, patch promptly — far more effective than hiding the address;
  • Measure across regions: egress differs a lot between carriers and regions, so run periodic probes from several places rather than trusting one monitor.

Try it: IP address lookup

Proxy chains and determining the real source

  • Reading X-Forwarded-For: it reads "client, proxy1, proxy2…" left to right; only the entry counted from a trusted proxy is reliable, and taking the first is trivially spoofable;
  • Vendor real-IP headers: Cloudflare sends CF-Connecting-IP and others have equivalents — prefer them over parsing XFF yourself;
  • Multiple hops: corporate egress often NATs and chains proxies, so logs record the last hop; correlate with timestamps and other identifiers;
  • Anonymity is limited: even behind a proxy, browser fingerprints, timezone and language can reveal the real environment.