How to Find Your IP Address on Windows 11
Finding your IP address on Windows 11 takes just a few clicks through the Settings app . Your IP address is a unique string of numbers, such as 192.168.1.5, that identifies your computer on a home network or the internet.
Every Windows 11 PC uses two types of IP addresses. Your private IP address lets devices talk to each other at home, while your public IP address is what websites see when you go online.
You can find your IP address on Windows 11 through the Settings app by navigating to Network & internet, or via the Command Prompt by typing “ipconfig”. Both methods will display your IPv4 and IPv6 addresses.
Understanding Your IP Addresses
Windows 11 uses an IP address to connect your computer to a network, split into two main types: IPv4 and IPv6. You also have a private IP address for your home network and a public IP address that websites and services see when you browse the internet.
You also have two kinds of IP addresses:
- Private IP Address: This is the address your device gets from your router when it connects to your home network (also called your Local Area Network, or LAN). Other devices on your network use this address to see and talk to your computer. It’s like your house number on your street. This address isn’t directly visible from the internet.
- Public IP Address: This is the address your Internet Service Provider (ISP) assigns to your router. It’s the address that the rest of the internet sees when your devices connect. It’s like your neighborhood’s zip code – it identifies your whole network to the outside world.
Knowing your IP address can be super helpful for troubleshooting network issues, setting up port forwarding for games or servers, or even just understanding how your network is configured.
Method 1Finding Your Private IP Address in Settings
The Windows 11 Settings app lets you find your private IP address in a few quick clicks. Open Settings, go to Network & internet, and select your Wi-Fi or Ethernet connection to view your active IPv4 address and network details immediately.
- Open Settings. You can do this by clicking the Start button and then clicking the gear icon for Settings, or by pressing
Ctrl+Ion your keyboard. - Navigate to Network & internet. In the Settings window, look for "Network & internet" in the left-hand sidebar and click on it.
- View your network properties. Your current network connection will be listed. Click on "Properties" next to the network you're currently using (e.g., Wi-Fi or Ethernet).💡TipIf you have multiple network adapters, make sure you click on the one that's actually connected and active.
If you have multiple network adapters, make sure you click on the one that's actually connected and active.
- Find your IP addresses. Scroll down the Properties page. You'll see sections for "IPv4 address" and "IPv6 address." These are your private IP addresses for your current network connection.
Your computer displays your private IP addresses on the network connection Properties page. Scroll down the Properties page to find sections labeled "IPv4 address" and "IPv6 address." Do not confuse these with the "Default gateway" address. The default gateway is typically your router's IP address, which your computer uses to send information outside your local network.


Method 2Finding Your Private IP Address in Control Panel
The classic Control Panel provides another way to find your private IP address through your network adapter status. Open Control Panel, navigate to Network and Sharing Center, click your active connection, and view the connection details to see your IPv4 address.
- Open Control Panel. You can search for "Control Panel" in the Start menu search bar and open it. Make sure you're in "Icon view" (you can change this at the top right of the Control Panel window) and click on "Network and Sharing Center."
- Access your connection details. In the Network and Sharing Center, you'll see your active network connection listed next to "Connections." Click on the name of your network connection (e.g., "Wi-Fi (NetworkName)" or "Ethernet").
- View the details. A new window will pop up showing the status of your connection. Click the "Details..." button.
- Locate your IP addresses. In the "Network Connection Details" window, you'll find your "IPv4 Address" and "IPv6 Address" listed under the adapter's details. You’ll also see other useful information like your default gateway and DNS server addresses here.
Method 3Finding Your Private IP Address in Task Manager
Task Manager displays your private IP address directly on the performance tab without opening menu settings. Press Ctrl+Shift+Esc to open Task Manager, select the Performance tab, click your network adapter, and check the IP address listed at the bottom.
- Open Task Manager. The fastest way is to press
Ctrl+Shift+Escon your keyboard. - Go to the Performance tab. Click on the "Performance" tab in Task Manager.
- Select your network adapter. In the left-hand pane, you'll see different performance categories. Click on the network adapter you're currently using, like "Wi-Fi" or "Ethernet."
- See your IP address. On the right side of the window, you'll see various statistics for that network adapter. Look for the "IPv4 address" and "IPv6 address" listed there. They might be a bit further down the list.
Your IP address appears in the network adapter's statistics. On the right side of the window, locate the "IPv4 address" and "IPv6 address" entries, which may be further down the list. This view shows your IP address and real-time network activity.
Method 4Finding Your Private IP Address Using the Command Prompt (ipconfig)
The ipconfig command in Command Prompt quickly reveals your private IP address. Open Command Prompt from the Start menu, type the command ipconfig and press Enter, then locate the IPv4 Address listed under your active network adapter.
- Open Command Prompt or Windows Terminal. Search for "Command Prompt" or "Windows Terminal" in the Start menu and open it. Running it as an administrator is optional but not required for this command.
- Run the ipconfig command. Type the following command and press
Enter:
ipconfig /all
The/allswitch tellsipconfigto show you a lot more detailed information about all your network adapters.
- Find your IP addresses. Scroll through the output. You'll see sections for each of your network adapters (like "Ethernet adapter" or "Wireless LAN adapter"). Under the adapter that's connected, look for "IPv4 Address" and "IPv6 Address."
💡TipThe output also shows your physical address (MAC address) and whether DHCP is enabled, which is how your router assigns IP addresses automatically.
Method 5Finding Your Private IP Address Using PowerShell (Get-NetIPConfiguration)
The Get-NetIPConfiguration command in Windows PowerShell displays your private IP address and network configuration details. Open PowerShell, type the command Get-NetIPConfiguration and press Enter, then read your IPv4Address from the resulting output on your screen.
- Open Windows PowerShell. Search for "Windows PowerShell" in the Start menu and open it. Again, running as administrator isn't required for this.
- Run the Get-NetIPConfiguration command. Type the following command and press
Enter:
Your IP addresses appear in the command output. This command lists your network adapters and their assigned IP addresses, such as IPv4Address and IPv6Address for your active connection. PowerShell commands can often be piped and manipulated further to extract specific pieces of information.
Method 6Finding Your Public IP Address Using Command Prompt (curl)
The curl command in Command Prompt fetches and displays your public IP address directly from an external service. Open Command Prompt, type the command curl https://api.ipify.org and press Enter, and your public IP address will appear on the next line.
- Open Command Prompt or Windows Terminal. As before, search for "Command Prompt" or "Windows Terminal" in the Start menu and open it.
- Use the curl command. Type the following command and press
Enter. This command asks an external website for your public IP address.
curl -4 ifconfig.me
Note: Ifcurlisn't recognized, you might need to enable it in Windows Features or use a different method. However, it's generally available in recent Windows 11 builds.
- See your public IP. The command will then display your public IPv4 address directly in the terminal window.
Warning: Your public IP address can change over time, especially if your ISP assigns them dynamically. Websites and services might also show you a different IP if you're using a VPN.
Method 7Finding Your Public IP Address Using PowerShell (Invoke-WebRequest)
The Invoke-WebRequest command in Windows PowerShell lets you check your public IP address using an online API service. Open PowerShell, type the command Invoke-WebRequest -Uri "https://api.ipify.org" | Select-Object -ExpandProperty Content and press Enter to see your public IP.
- Open Windows PowerShell. Search for "Windows PowerShell" in the Start menu and open it.
- Run the Invoke-WebRequest command. Type the following command and press
Enter:
Invoke-WebRequest -Uri "https://api.ipify.org" | Select-Object -ExpandProperty Content
This command fetches the content from thehttps://api.ipify.orgwebsite, which is just your public IP address.
- View your public IP. Your public IPv4 address will be displayed right there in the PowerShell window.
Method 8Finding Your Public IP Address Using Websites
IP checker websites offer the fastest way to find your public IP address without running any commands or opening system tools. Open any web browser like Chrome or Edge, visit a site like whatismyip.com or ipchicken.com, and your public IP address displays instantly on the page.
- Open your web browser. Any browser will do – Chrome, Edge, Firefox, etc.
- Visit an IP checker website. Go to a site like:
https://www.whatismyip.com/
https://www.ipchicken.com/
https://www.whatismyip.com.au/
You can also search Google for "what is my IP address."
- See your public IP. The website will automatically detect and display your public IPv4 address prominently on the page. Many sites will also show your approximate location and your ISP.
Tip: These websites are also useful for checking your IPv6 address if you have one configured.
Summary
Finding your IP address in Windows 11 is simple using Settings, Control Panel, Task Manager, or commands like ipconfig and Get-NetIPConfiguration for private network addresses. To check your public IP address visible to the internet, use curl commands in PowerShell or visit an online IP checker website.
Was this guide helpful?
About the Author
Richard
Tech Writer, IT Professional
Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.
No comments yet — be the first to share your thoughts!