Frequently Asked Question

Get Local IP Address
Last Updated 7 days ago

Get Local IP Address

Q: How to obtain the current LAN IP address in Windows 10, Windows 11, and Windows Server 2025

To find your local LAN (internal network) IP address on Windows 10, Windows 11, or Windows Server 2025, follow the steps below. These methods are consistent across all three operating systems and use the same tools.


Method 1: Using Command Prompt (cmd)

This is the most reliable method and works on all versions of Windows.

  1. Open Command Prompt
  • Press Windows key + R to open the Run dialog.
  • Type cmd and press Enter.
  • Alternatively, search for "Command Prompt" in the Start menu and open it.
  1. Run the ipconfig command
     ipconfig
  • In the Command Prompt window, type the following and press Enter:
  1. Locate your IPv4 address
  • Look for the section titled "Ethernet adapter" or "Wireless LAN adapter", depending on your connection type.
  • Under this section, find the line that says "IPv4 Address".
  • The value next to it is your local LAN IP address (e.g., 192.168.1.10).

Example output:

   Ethernet adapter Ethernet:
   
      Connection-specific DNS Suffix  . :
      IPv4 Address. . . . . . . . . . : 192.168.1.10
      Subnet Mask . . . . . . . . . . : 255.255.255.0
      Default Gateway . . . . . . . . : 192.168.1.1
✅ Note: If you're using Wi-Fi, look under "Wireless LAN adapter" instead.

Method 2: Using PowerShell

PowerShell provides a more structured output and is preferred for scripting.

  1. Open PowerShell
  • Press Windows key + X and select "Windows PowerShell" or "Windows Terminal" (if installed).
  • Alternatively, search for "PowerShell" in the Start menu and open it.
  1. Run the following command

Type the following and press Enter:

   ipconfig | findstr "IPv4"

This will return only the IPv4 address lines, making it easier to read.

Example output:

   IPv4 Address. . . . . . . . . . : 192.168.1.10
???? Tip: If you want to see all network interfaces, use: ``powershell ipconfig ``

Method 3: Using Settings App (GUI)

You can also find your IP address via the graphical interface.

  1. Open Settings
  • Press Windows key + I to open the Settings app.
  1. Go to Network & Internet
  • Click on "Network & Internet".
  1. Select your connection
  • Click on "Wi-Fi" (if using wireless) or "Ethernet" (if using a wired connection).
  1. View IP address
  • Scroll down to the "Properties" section.
  • Look for "IPv4 address" under the network details.
  • The value shown is your local LAN IP address.

Method 4: Using Control Panel (Legacy Method)

This method is still valid on older systems or where the modern UI is not preferred.

  1. Open Control Panel
  • Press Windows key + R, type control, and press Enter.
  1. Navigate to Network and Sharing Center
  • Click on "Network and Sharing Center".
  1. Click on your active connection
  • Under "View your active networks", click on the name of your current network (e.g., "Wi-Fi" or "Ethernet").
  1. Check the IP address
  • The "IPv4 Address" will be listed under the network properties.

Troubleshooting Tips

  • If ipconfig shows "169.254.x.x" as your IP address, your device is not receiving a valid IP from the router. This is a link-local address, indicating a DHCP failure.
  • Check your router’s connectivity.
  • Restart your router and your computer.
  • Run ipconfig /release followed by ipconfig /renew in Command Prompt.
  • If you're using a VPN, the local LAN IP may differ from your public IP. The ipconfig command shows your internal network address, not your public internet-facing IP.
  • For Windows Server 2025, the process is identical. Use the same steps via Command Prompt or PowerShell.

Summary

Method Steps Best For
Command Prompt ipconfig Quick, reliable, all systems
PowerShell `ipconfig findstr "IPv4"` Scripting, automation
Settings App Network & Internet > Connection > Properties Users who prefer GUI
Control Panel Network and Sharing Center > Active connection Legacy users

Final Check: After running ipconfig, verify that the IP address is in the typical private range:

  • 192.168.x.x
  • 10.x.x.x
  • 172.16.x.x to 172.31.x.x

These are standard private IP ranges used in home and business networks.

If you still cannot find your IP address, ensure your device is connected to the network and try restarting your network adapter or router.

This FAQ was generated and/or edited by GAIN, GENs Artificial Intelligence Network and should not be considered 100% accurate. Always check facts and do your research, things change all the time. If you are unsure about any information provided, please raise a support ticket for clarification.
This website relies on temporary cookies to function, but no personal data is ever stored in the cookies.
OK
Powered by GEN UK CLEAN GREEN ENERGY

Loading ...