How to Find the IP Address for Your Router

Every device on your home network communicates through your router, and at the center of that communication is an IP address. Whether you're trying to access your router's admin panel, troubleshoot a connection issue, or set up port forwarding, knowing how to find your router's IP address is a fundamental networking skill. Here's exactly how to do it across every major platform.

What Is a Router's IP Address?

Your router actually has two IP addresses:

  • Local (private) IP address — This is the address used inside your home network. It's how your devices talk to the router. The most common default addresses are 192.168.1.1 or 192.168.0.1, though manufacturers and ISPs sometimes use others like 10.0.0.1.
  • Public (external) IP address — This is the address the wider internet sees. It's assigned by your ISP and shared across all devices on your network.

For most tasks — like accessing your router's admin dashboard — you need the local IP address. This is what we'll focus on.

How to Find Your Router's IP Address on Windows

Method 1: Command Prompt

  1. Press Windows + R, type cmd, and hit Enter.
  2. In the Command Prompt window, type ipconfig and press Enter.
  3. Look for the section labeled "Default Gateway" under your active network adapter (usually Ethernet or Wi-Fi).
  4. The number listed there is your router's local IP address.

Method 2: Network Settings

  1. Go to Settings → Network & Internet.
  2. Click on Wi-Fi or Ethernet, then click on your connected network.
  3. Scroll down to the Properties section and look for "Default gateway."

How to Find Your Router's IP Address on macOS

  1. Open System Settings (or System Preferences on older macOS versions).
  2. Click Network, then select your active connection (Wi-Fi or Ethernet).
  3. Click Details (or Advanced on older versions), then navigate to the TCP/IP tab.
  4. The "Router" field shows your router's local IP address.

Alternatively, open Terminal and type:

netstat -nr | grep default 

The IP address next to "default" is your router's gateway address.

How to Find Your Router's IP Address on iPhone or iPad 📱

  1. Open Settings → Wi-Fi.
  2. Tap the (i) icon next to your connected network.
  3. Scroll down to the IPv4 Address section.
  4. The "Router" field displays your router's IP address.

How to Find Your Router's IP Address on Android

The exact path varies slightly by manufacturer and Android version, but the general approach is:

  1. Go to Settings → Network & Internet → Wi-Fi.
  2. Tap on your connected network.
  3. Look for "Gateway" or "Router" — you may need to tap "Advanced" or a network details option to see it.

Some Android devices don't display the gateway by default. In that case, installing a free network utility app can surface this information quickly.

How to Find Your Router's IP Address on Linux

Open a terminal and type:

ip route | grep default 

The IP address following "via" is your router's gateway address. You can also use route -n for a more detailed routing table.

Accessing Your Router's Public IP Address 🌐

If you need your public IP address — the one your ISP assigns — the process is simpler:

  • Visit any "what is my IP" website in a browser. These services detect and display your external IP automatically.
  • Note that public IP addresses change unless your ISP provides a static IP. Most residential connections use dynamic IPs that can shift periodically.
IP TypeWhat It IdentifiesTypical Use
Local / PrivateYour router on your home networkAdmin access, port forwarding, network config
Public / ExternalYour network on the internetRemote access, hosting, ISP troubleshooting

What to Do Once You Have the IP Address

Type your router's local IP address directly into a browser's address bar (not the search bar). This opens your router's admin interface, where you can:

  • Change your Wi-Fi name (SSID) and password
  • Set up port forwarding rules
  • Review connected devices
  • Update router firmware
  • Configure DNS settings

You'll typically need a username and password to log in. Many routers default to admin / admin or admin / password, though most modern routers prompt you to create unique credentials during setup. If you've never changed these, check the label on the back or bottom of your router — manufacturers often print the default login credentials there.

When the Default IP Doesn't Work

If typing 192.168.1.1 or 192.168.0.1 doesn't load anything, a few factors could be at play:

  • Your ISP or router manufacturer uses a non-standard default gateway — always use the ipconfig / ip route method above to confirm the actual address rather than guessing.
  • You're on a mesh network — mesh systems sometimes assign different gateway addresses, and the primary node may have its own dedicated app rather than a browser-based admin panel.
  • Your device is connected via a different network segment — if you have both a router and a separate modem, the gateway address your device sees may point to the modem rather than the router.

Variables That Change the Process

Finding your router's IP is rarely difficult, but the exact steps depend on your specific situation:

  • Operating system and version — each OS surfaces network information differently, and newer OS updates occasionally reorganize settings menus
  • Network setup complexity — a single home router is straightforward; a setup with a modem, router, Wi-Fi extenders, or a mesh system introduces additional layers
  • ISP-provided equipment — some ISPs lock down router admin access or use proprietary apps instead of a standard browser interface
  • Corporate or institutional networks — IT departments often restrict access to gateway settings, and the admin interface may be unavailable to end users entirely

The method that works smoothly for someone on a basic home setup with Windows may look completely different for someone on a mesh network checking from an Android phone. Your specific combination of hardware, software, and network architecture determines which path gets you there fastest.