How to Find Your Gateway IP Address on Any Device
Your gateway IP address is the address of the router or modem that connects your local network to the internet. Every device on your network routes outbound traffic through it — so knowing this address matters when you're troubleshooting connectivity issues, configuring network settings, or accessing your router's admin panel.
Here's how to find it across every major platform, plus what to understand about why the address varies depending on your setup.
What Is a Gateway IP Address?
The default gateway is typically your router's local IP address — the internal address it uses to communicate with devices on your home or office network. It's not your public IP address (the one websites see). It's the private address assigned within your local network, most commonly something like 192.168.1.1 or 192.168.0.1, though this varies by router manufacturer and network configuration.
When your device sends data to a website or service, it first sends that data to the gateway, which then forwards it to the broader internet. Think of it as the exit door from your local network.
How to Find Your Gateway IP on Windows 🖥️
Method 1: Command Prompt
- Press
Windows + R, typecmd, and hit Enter - Type
ipconfigand press Enter - Look for the section matching your active connection (usually Ethernet adapter or Wireless LAN adapter Wi-Fi)
- Find the line labeled Default Gateway — the address next to it is your gateway IP
Method 2: Network Settings
- Open Settings → Network & Internet
- Click on your active connection (Wi-Fi or Ethernet)
- Scroll to Properties or click Hardware properties
- Look for the IPv4 DNS server section — the gateway is typically listed nearby, or navigate to Advanced network settings for full detail
The Command Prompt method is faster and works consistently across Windows 10 and Windows 11.
How to Find Your Gateway IP on macOS
- Open System Settings (or System Preferences on older macOS versions)
- Go to Network
- Select your active connection on the left
- Click Details (or Advanced on older versions)
- Open the TCP/IP tab
- The address listed next to Router is your gateway IP
Alternatively, open Terminal and run:
netstat -nr | grep default The address in the first result under the default route is your gateway.
How to Find Your Gateway IP on iPhone or iPad
- Open Settings → Wi-Fi
- Tap the ⓘ icon next to your connected network
- Scroll down to the Router field
This displays the gateway IP directly. Note that this only works while connected to Wi-Fi — mobile data connections use carrier infrastructure and don't expose a traditional gateway address this way.
How to Find Your Gateway IP on Android 📱
Android varies more by manufacturer and OS version, but the general path is:
- Open Settings → Network & Internet → Wi-Fi
- Tap on your connected network
- Tap Advanced or the pencil/edit icon
- Switch IP settings from DHCP to Static temporarily — the Gateway field will populate with the current address
- You can cancel without saving once you've noted the address
Some Android devices show this information directly under network details without needing to switch to static mode. Samsung devices, for example, often display it under Connection details within Wi-Fi settings.
How to Find Your Gateway IP on Linux
Open a terminal and run either:
ip route | grep default or
route -n In both cases, look for the entry associated with the default route — the IP address in that line is your gateway.
How to Find Your Gateway IP on a Chromebook
- Click the clock in the bottom-right corner
- Select Settings → Network
- Click on your active Wi-Fi connection
- Under the Network tab, the Gateway field shows the address directly
Common Gateway IP Ranges by Router Brand
Different router manufacturers use different default gateway addresses. Knowing the common ones can save time if you're accessing the admin panel directly:
| Manufacturer | Common Default Gateway |
|---|---|
| Linksys | 192.168.1.1 |
| Netgear | 192.168.0.1 or 192.168.1.1 |
| ASUS | 192.168.1.1 |
| TP-Link | 192.168.0.1 or 192.168.1.1 |
| D-Link | 192.168.0.1 |
| Xfinity/Comcast | 10.0.0.1 |
| AT&T | 192.168.1.254 |
These are defaults only — your network administrator or ISP may have changed the gateway address during setup. The methods above will always show the actual current gateway, regardless of defaults.
Why Your Gateway IP Might Differ From What You Expect
Several factors affect which gateway IP your device reports:
- DHCP assignment: Most home networks use DHCP, where the router automatically assigns IP addresses including the gateway. If your router has been reconfigured, the gateway may not match manufacturer defaults.
- Multiple network interfaces: If your device is connected to both Wi-Fi and a VPN, you may see different gateway addresses for each. The active route depends on your network stack's routing table.
- Corporate or enterprise networks: Office environments often use custom subnets (like
10.x.x.xor172.16.x.x) with gateways managed by IT infrastructure rather than a single consumer router. - Virtual machines: VMs running on your device may show their own virtual gateway addresses, separate from your physical network's gateway.
- Mesh networks: In a mesh Wi-Fi setup, the gateway is typically the primary node connected to your modem — but the address your device reports may point to whichever mesh node it's currently connected to, depending on how the mesh system routes traffic internally.
Gateway IP vs. Default Gateway vs. Router IP — Are They the Same?
In most home network contexts, yes — these terms refer to the same address. The default gateway is the routing destination for traffic leaving your local network, and on a home or small office setup, that destination is your router. Your router's local IP and your default gateway are the same address.
In more complex network environments, the gateway and the router may be different devices, or traffic may pass through multiple gateways before reaching the internet. Whether that distinction matters depends entirely on the type of network you're working within.