How to Find Your Local IP Address on Windows 10 & 11

How to Find Your Local IP Address on Windows 10 & 11

Understanding your local IP address is fundamental for network troubleshooting, configuring printers, setting up file sharing, or accessing your router’s admin panel. Unlike your public IP (visible to the internet), your local IP is assigned by your router and identifies your device on your home or office network. Windows 10 and 11 offer multiple methods to retrieve this information, ranging from quick graphical clicks to command-line precision. Below are the most reliable, step-by-step approaches.

Method 1: Using the Settings App (Windows 10 & 11)

The Settings app provides the most user-friendly, visual method. It is ideal for users who prefer a graphical interface without memorizing commands.

  1. Press Windows + I to open Settings.
  2. Navigate to Network & Internet.
  3. Select Wi-Fi (if connected wirelessly) or Ethernet (if using a cable).
  4. Click on the connected network name (e.g., “HomeWiFi_5G” or “Network”).
  5. Scroll down to the Properties section.
  6. Look for IPv4 address. This is your local IP (e.g., 192.168.1.25). You will also see the subnet mask and default gateway (your router’s IP).

Windows 11 Note: The layout is nearly identical, but the network properties page may display the IP directly under the “IP assignment” field as “IPv4 address: 192.168.x.x”.

Method 2: Using the Taskbar Network Icon (Quick Glance)

For an extremely fast check without opening full settings, use the network flyout.

  1. Click the Network/Wi-Fi icon in the system tray (far right of the taskbar, near the clock).
  2. Select Network & Internet settings (link at the bottom of the pop-up).
  3. Click Properties under your current connection.
  4. The IP address appears under IPv4 address.

Alternative (Windows 11 only): If you hover your mouse over the network icon, most versions will show the connection name but not the IP directly. The above method provides the quickest visual path.

Method 3: Using the Command Prompt (All Windows Versions)

The Command Prompt remains the most powerful and consistent method across all Windows versions. It is essential for scripting, advanced troubleshooting, and when GUI elements are unresponsive.

  1. Press Windows + R, type cmd, and press Enter. Or, search for “Command Prompt” in the Start Menu and open it.
  2. Type the following command and press Enter:
    ipconfig
  3. Scroll through the output until you find your active network adapter.
    • For Wi-Fi: Look for the section labeled Wireless LAN adapter Wi-Fi.
    • For Ethernet: Look for Ethernet adapter Ethernet.
    • (Ignore sections labeled “Loopback” or “Tunnel”).
  4. Locate the line that says IPv4 Address. The value next to it (e.g., 192.168.0.105) is your local IP.

Pro Tip: To see only the IP address without all other details, use the command ipconfig | findstr /i "IPv4". This filters the output to show only IPv4 addresses.

Method 4: Using Windows PowerShell (Modern & Scriptable)

PowerShell offers similar capabilities to Command Prompt but with more robust scripting potential. It is the default terminal in Windows 11.

  1. Right-click the Start button and select Windows Terminal (Admin) or Windows PowerShell.
  2. Type the following command and press Enter:
    Get-NetIPAddress -AddressFamily IPv4 -InterfaceIndex (Get-NetConnectionProfile).InterfaceIndex
  3. This command automatically filters for the active network adapter. Look for the IPAddress property in the result.

Simpler PowerShell Method (for quick lookup):

  1. Type ipconfig (PowerShell understands this legacy command).
  2. Or, use the cleaner Get-NetIPConfiguration | Select-Object -ExpandProperty IPv4Address | Select-Object -ExpandProperty IPAddress.

Method 5: Using the Control Panel (Classic View)

For users accustomed to older Windows interfaces, the Control Panel still houses the network adapter properties.

  1. Press Windows + R, type control, and press Enter.
  2. Go to Network and Sharing Center.
  3. Click your active connection (e.g., “Ethernet” or “Wi-Fi”).
  4. In the status window that opens, click Details.
  5. The IPv4 Address is listed in the Connection Details dialog box.

Understanding the Information You Find

When you locate your IP address, you will typically see a number like 192.168.x.x, 10.0.x.x, or 172.16.x.x. These are private IP ranges reserved for local networks. Your router assigns this via DHCP (Dynamic Host Configuration Protocol).

Key accompanying values you will see:

  • Subnet Mask: Usually 255.255.255.0. Defines which part of the address is the network and which is the host.
  • Default Gateway: This is your router’s local IP address (e.g., 192.168.1.1). You use this address to access your router’s admin interface.
  • DNS Servers: The servers that translate domain names (like google.com) into IP addresses.

Troubleshooting Common Issues

Why am I seeing an APIPA address (169.254.x.x)?
An address starting with 169.254 means your device could not contact a DHCP server (your router). This indicates a network failure. Check your cable, Wi-Fi adapter, or router status. No manual activity will function correctly with this address.

Why does my IP address start with “::”?
You are looking at an IPv6 address. Most home networks still primarily use IPv4. Ensure you are looking for the IPv4 Address field. If only IPv6 is shown, your router may be configured for IPv6-only, which is uncommon.

My IP address changed after restarting the router.
This is normal behavior for DHCP. Your router dynamically assigns addresses. If you need a fixed address for port forwarding or printer sharing, configure a static IP either on the router (preferred) or within Windows network settings.

When to Use Each Method

Scenario Recommended Method
Quick visual check Settings app or Taskbar icon
No mouse available / remote admin Command Prompt (ipconfig)
Scripting or automation PowerShell (Get-NetIPAddress)
Legacy system / no Settings app Control Panel (Network and Sharing Center)
Need multiple network details ipconfig /all in Command Prompt

Important Security Note

Your local IP address is not directly accessible from the internet unless you have specifically set up port forwarding or are using a remote access tool that bypasses your router. Sharing your local IP (e.g., 192.168.1.15) with someone inside your network is safe, but never expose it to untrusted external sources. Always ensure Windows Firewall is enabled to block unsolicited inbound connections.

Leave a Comment