How to Find Your IP Address on Any Operating System
The 30-second answer. Every device has at least two IP addresses. The one your operating system shows you in its settings (192.168.x.x or similar) is the private address your router gave you on your LAN. The address a website actually sees is your public IP — that one comes from your ISP and applies to your whole household. To check the public one instantly, open ip8.com or run a deeper lookup at IP Details.
Two IP addresses, two questions
The phrase “your IP address” is ambiguous on purpose: there are two answers, and which one you need depends on what you are trying to do. If you are setting up a printer, port-forwarding a game, or telling a colleague where to SSH on your home network, you want your private IP. If you are diagnosing geographic blocking, configuring a firewall rule on a remote service, or signing a server up for a static address with an SaaS, you want your public IP.
The widget below makes the relationship concrete. Click each layer of a typical home network to see which IP applies and who is allowed to see it.
A typical home network has at least three IP addresses doing different jobs. Click any layer to see what role it plays.
192.168.1.42This is the address your router handed your laptop/phone via DHCP. It is private — only useful inside your home network. The OS dialogs in this article all show you exactly this number.
A practical consequence: every device behind your router shares the same public IP. From the outside it is impossible to distinguish your phone, your laptop, and your smart-TV without additional clues like the User-Agent header or a login cookie. That is why a single “suspicious login” from your home address can affect every account in the family — to the server, you are all the same source.
Finding your local IP — pick your OS
The shortcut on every OS is the same: open the network settings for the connection you are currently using, and the IP is one or two clicks deep. The tabs below walk through each common operating system. If you live in a terminal, every guide also lists the single-line command equivalent.
🪟 Windows 11
Settings app, no terminal required.- 1Open SettingsPress Win + I, or right-click the Start button and choose Settings.
- 2Network & internetIn the left sidebar pick "Network & internet".
- 3Pick your connectionClick "Wi-Fi" if you are on wireless, or "Ethernet" if you are wired.
- 4Open the active networkOn Wi-Fi, click the network name at the top to expand it. On Ethernet you will already see the details.
- 5Read the addressScroll to "IPv4 address" (and "IPv6 address" right below it). That is your local IP on this network.
ipconfig | findstr IPv4Open Windows Terminal or Command Prompt and run this — it filters ipconfig output down to your IPv4 lines.
Two things to remember as you read your address:
- If the number starts with
192.168.,10., or anything in172.16–172.31, you are looking at a private address. That is normal — it is the one you want for everything inside your home. - If the OS shows you something like
169.254.x.x, the device failed to get a DHCP lease. That is a connectivity problem, not an IP — fix the network first and the real address will appear.
Finding your public IP
Because the public address belongs to your router (not your device), the OS dialogs never show it. The fastest way to find it is to ask a server: any website you visit already sees it, so the easy answer is to load a service whose only job is to echo it back. Loading ip8.com does exactly that at the top of the page, and ip8.com/ipdetails does it with the full enrichment your IP carries.
Power users sometimes prefer the command line. Any of these one-liners will print your public IP without opening a browser:
curl https://ip8.com/api/ip
(Invoke-WebRequest https://ip8.com/api/ip).Content
If you get a different answer from a command line and from a browser, you are almost certainly running a VPN or proxy in one but not the other — that is normal and exactly what the next widget illustrates.
What your public IP actually says about you
Knowing the number is one thing — knowing what other people read from it is another. Even though your IP looks like a meaningless string of digits, a stack of public databases turns it into a surprisingly detailed snapshot the instant a request leaves your router. Click the example profiles below to see how the same lookup tells a very different story depending on the kind of connection.
None of this requires permission — any service can look these up the instant a request comes in. Click an example to see how the picture changes depending on the kind of connection. Data below is illustrative; the addresses are from blocks reserved for documentation/training so they will not resolve to anyone real.
24.83.115.42None of the data on the panel above is sensitive in isolation — but combined, it is more than enough to power geographic content licensing, fraud scoring, ad targeting, and rate limiting. Sites that decide to challenge or block you use this exact set of signals. Sites that profile you add a few more, like browser fingerprint and timing patterns; we cover those separately in our browser fingerprinting deep-dive.
Common gotchas
- IPv6 takes priority. Modern OSes assign both an IPv4 and an IPv6 address. Some servers will prefer your IPv6, others will fall back to IPv4 — so the “public IP” you see can change between two services even on the same connection.
- VPNs and corporate proxies override everything. If a VPN is on, the address every external site sees is the VPN exit, regardless of what your OS still shows in its LAN settings. Toggle the VPN off if you specifically need your real public IP for a support ticket.
- Mobile networks lie about location. Carrier IPs are typically assigned from a centralized gateway. Even sober tools will place you in the city that owns the gateway, not the city you are physically in. If that matters, prefer Wi-Fi for the test.
- Restarting the router can change the public IP. Residential connections usually have dynamic public IPs assigned by DHCP from your ISP. Power-cycling the modem often nudges the ISP to hand out a new one — useful if a service has soft-banned the current address.
Run a full lookup on your own IP
Now that you know which address is which, the most useful follow-up is to look up the public one end-to-end: geolocation, ASN, reverse DNS, blocklist status, and known proxy/VPN flags. Our IP Details tool runs the same checks the major fraud-detection vendors do and shows you exactly what a website sees the instant you visit.
Open IP Details