How to View Your Router's IP Address (On Any Device or OS)

Your router has two IP addresses that matter: the public IP (visible to the internet) and the private/local IP (used inside your home or office network). Knowing how to find both — and understanding which one you actually need — depends on what you're trying to do and what device you're using.

What Is a Router IP Address?

Every router sits at the intersection of two networks. On one side is your local network (your phones, laptops, smart TVs). On the other is the internet. Each side gets its own IP address.

  • Private/Gateway IP — also called the default gateway — is typically something like 192.168.1.1 or 10.0.0.1. This is the address you use to access your router's admin panel.
  • Public IP — assigned by your ISP — is what the outside world sees when your devices connect to the internet. This one changes periodically unless you've paid for a static IP.

Most people searching "how to view router IP address" are looking for the gateway IP so they can log into their router settings. A smaller group needs the public IP for remote access, gaming, or hosting.

How to Find Your Router's Private IP (Default Gateway)

On Windows

  1. Open Command Prompt (search cmd in the Start menu)
  2. Type ipconfig and press Enter
  3. Look for Default Gateway under your active network adapter

The address listed — often 192.168.0.1 or 192.168.1.1 — is your router's local IP.

Alternatively: Go to Settings → Network & Internet → Status → View your network properties and scroll to "Default gateway."

On macOS

  1. Open System Settings (or System Preferences on older macOS)
  2. Go to Network, select your active connection (Wi-Fi or Ethernet)
  3. Click Details (or Advanced), then the TCP/IP tab
  4. The Router field shows your gateway IP

Terminal shortcut: type netstat -nr | grep default and the first result is your gateway.

On iPhone or iPad

  1. Go to Settings → Wi-Fi
  2. Tap the (i) icon next to your connected network
  3. Scroll down to find the Router field

On Android 📱

Steps vary slightly by manufacturer and Android version, but the general path is:

  1. Go to Settings → Wi-Fi (or Connections → Wi-Fi)
  2. Tap the network name or gear icon
  3. Look for Gateway or tap Advanced to expand network details

Some Android builds show this immediately; others bury it under "IP settings → Static" where gateway becomes visible after switching the toggle (you don't need to save static settings — just view the field).

On Linux

Open a terminal and type:

ip route | grep default 

The IP after via is your router's address.

How to Find Your Public IP Address

Your public IP is assigned by your ISP and is the same for all devices on your network (unless you're using a VPN).

The simplest method on any device: open a browser and search "what is my IP" — Google and most search engines display it instantly at the top of results.

You can also visit sites like ipinfo.io or ifconfig.me directly in a browser.

⚠️ Note: If you're connected to a VPN, the IP shown will be the VPN server's address, not your actual ISP-assigned IP.

Comparing the Two IP Types

Private/Gateway IPPublic IP
Typical format192.168.x.x, 10.0.x.xVaries (IPv4 or IPv6)
Assigned byYour routerYour ISP
Changes?Rarely (set in router config)Yes, unless static
Used forAccessing router admin panelInternet identity, remote access
Visible outside network?NoYes

Variables That Affect What You See

The exact steps and results differ based on several factors:

  • Operating system version — Windows 10 vs. 11, macOS Ventura vs. Monterey, Android 12 vs. 14 all have slightly different UI paths
  • Network type — Ethernet connections and Wi-Fi connections may show different adapters in ipconfig, so you need to look at the right one
  • Router brand and ISP setup — Some ISPs use 192.168.0.1, others use 192.168.1.1, and some business or mesh routers use entirely different subnets like 10.0.0.1
  • Mesh or multi-router setups — In mesh networks, the "gateway" your device connects to may be a satellite node, not the main router. The main router's IP may differ from what ipconfig shows
  • VPN or network virtualization — VPN software can create virtual adapters that appear as separate gateways, which makes identifying the correct one less straightforward

When the Gateway IP Doesn't Work in a Browser

Finding the IP is step one. Actually reaching the router admin panel is a different matter. If you type the gateway IP into a browser and nothing loads:

  • Make sure you're on the same network as the router
  • Try both http:// and https:// prefixes
  • Some routers use a hostname like routerlogin.net instead of a numeric IP
  • Firmware or ISP customization can restrict admin panel access to certain devices only

What the Right Answer Looks Like for Different Users

A home user on a single-router setup running Windows will typically get what they need from ipconfig in under 30 seconds. A macOS user in the same setup has an equally clean path through System Settings.

But someone on an Android phone running through a mesh network with a VPN active is navigating three layers of variables simultaneously — the gateway their phone sees may not be the router they actually want to administer. 🔍

Someone trying to find their public IP for remote access or port forwarding is solving a different problem than someone looking for the gateway to change DNS settings — even though both start by asking the same question.

Which situation you're in, what device you're on, and what you actually need to do with the IP once you have it — those details determine which of these paths leads somewhere useful for you.