What Is a Router IP Address?
A router IP address is the private, local-network address your router uses to identify itself to every device connected to it. Networking documentation calls this the default gateway — the address your computer sends traffic to whenever it needs to reach something outside the local network, including the internet. It's also the address you type into a browser to open the router's built-in configuration page, where you can change the Wi-Fi name and password, set up port forwarding, or update which DNS servers your network uses.
Router IP addresses come from the private address space defined in RFC 1918, which reserves three blocks specifically so they never route on the public internet: 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16. Home routers almost always pick an address from the 192.168.0.0/16 block because it comfortably fits a typical home network (up to 254 usable addresses per /24 subnet) without wasting address space the way the much larger 10.0.0.0/8 block would.
This is different from your public IP address, which your ISP assigns to your router and which websites see when you connect to them. You can check your public IP with the What Is My IP tool — it will show a completely different address than the one in your router's admin panel, because your router performs Network Address Translation (NAT) to translate between the two.
Every device on your home network — laptops, phones, smart TVs, printers — gets its own private IP address from the router, typically via DHCP, but they all share the same default gateway: the router's own IP address.
How to Find Your Router's IP Address {#how-to-find}
The method depends on which device you're using. All four approaches read the same underlying default gateway value from your network configuration — none of them require guessing.
Windows:
- Press
Win + R, typecmd, and press Enter. - Type
ipconfigand press Enter. - Look for Default Gateway under your active adapter (Wi-Fi or Ethernet) — that's your router's IP address.
macOS:
- Open System Settings → Wi-Fi (or Network).
- Click your active connection, then Details…
- Select the TCP/IP tab. The Router field shows your router's IP address.
iPhone / iPad:
- Open Settings → Wi-Fi.
- Tap the (i) icon next to your connected network.
- Scroll to IPv4 Address — the Router field lists the gateway.
Android:
- Open Settings → Wi-Fi.
- Tap the gear icon next to your connected network.
- Look for Gateway or Router under the network details (path varies slightly by manufacturer).
Linux:
Open a terminal and run:
ip route | grep default
The address immediately after default via is your router's IP.
Default Router IP Addresses by Brand
If you can't check your device's network settings, most routers ship with one of a small set of factory-default addresses. This table covers the most common defaults; always confirm with ipconfig or your router's label if the login page doesn't load.
| Brand | Common Default IP | Notes |
|---|---|---|
| Linksys | 192.168.1.1 | Some newer mesh models use 192.168.1.1 via the Linksys app |
| Netgear | 192.168.1.1 | Orbi mesh systems also default to 192.168.1.1 |
| TP-Link | 192.168.0.1 or 192.168.1.1 | Deco mesh systems use 192.168.68.1 |
| ASUS | 192.168.1.1 | Some models default to 192.168.50.1 |
| D-Link | 192.168.0.1 | — |
| Xfinity / Comcast gateways | 10.0.0.1 | Common on Comcast-provided modem-router combos |
| Frontier (DSL/fiber) | 192.168.0.254 | — |
| BT Smart Hub (UK) | 192.168.1.254 | — |
The default gateway falls back to whatever the manufacturer configured out of the box; it always changes if you've customized your network's subnet, so treat this table as a starting point, not a guarantee.
How to Log Into Your Router Admin Panel {#login-guide}
-
Find the IP address using one of the methods above, or check the sticker on the bottom or back of the router — most list the default gateway, username, and password directly.
-
Open a browser and type the IP address into the address bar — not a search engine. Typing
192.168.1.1into Google's search box searches the web; typing it into the address bar loads the router's login page. -
Enter the admin credentials. The default username/password is usually printed on the router label (
admin/admin,admin/password, or blank). If you or your ISP changed it, you'll need those credentials — or a factory reset if they're lost. -
Once logged in, you can update the Wi-Fi network name and password (also called the network security key — see the network security key guide for how that's different from your admin password), change DNS servers, set up port forwarding, or view connected devices.
-
Confirm the admin port is reachable before assuming the router is unresponsive — the Port Scanner can check whether a device on your LAN is accepting connections on the expected port, which helps rule out a firewall or service issue versus a wrong IP address.
Common Issues & Troubleshooting
The page won't load at all. Confirm you're connected to the correct Wi-Fi network — if you're on a guest network or a VPN, you may be routed through a different gateway entirely. Re-check the default gateway with ipconfig (Windows) or ip route (Linux) rather than relying on a brand default from memory.
"This site can't be reached" in the browser. Make sure you typed the IP into the address bar, not the search bar, and that HTTPS isn't being forced — try http://192.168.1.1 explicitly if https:// returns a certificate warning, since most consumer routers serve the admin panel over plain HTTP on the local network.
Wrong username or password. If you never changed the default credentials, check the label on the router itself. If they were changed and forgotten, most routers require a physical factory reset (holding a recessed button for 10–30 seconds) — this wipes custom Wi-Fi settings too, so treat it as a last resort.
Multiple routers on the network (router behind a router). If your ISP's modem-router combo is in a different subnet than a second router you've added, you may need to find the gateway for the correct hop — run traceroute to see which device answers first, which tells you which one is acting as your actual default gateway.
IP address conflicts after a firmware update. Some routers change their default LAN IP after a factory reset or firmware upgrade. If the address you previously used stops responding, re-run the discovery steps above rather than assuming the router is offline.
Frequently Asked Questions
Q: What is the default IP address for most routers?
192.168.1.1 is the most common default, used by Linksys, Netgear, and many ASUS models. TP-Link and D-Link often default to 192.168.0.1 instead, so check your specific device if the first address doesn't load.
Q: Is my router's IP address the same as my public IP address?
No. The router's IP (e.g., 192.168.1.1) is a private address valid only inside your home network, per RFC 1918. Your public IP is assigned by your ISP and is what external sites see — check yours with the What Is My IP tool.
Q: Why can't I access 192.168.1.1 even though it's my router's default?
Your router may use a different default gateway, especially if it's a mesh system or ISP-provided combo unit. Run ipconfig (Windows) or check Network settings (Mac/iOS/Android) to get the exact address instead of guessing from a brand default.
Q: Can two devices on my network have the same IP as the router?
No — every device on a subnet must have a unique IP address, and the router's own gateway address is reserved and excluded from the DHCP pool it hands out to other devices.
Q: Does changing my router's IP address affect my Wi-Fi password?
No, they're independent settings. The router's IP (default gateway) controls how devices route traffic; the Wi-Fi password (network security key) controls who can join the network. You can change one without touching the other.
Q: How do I find the IP addresses of other devices on my network, not just the router?
Log into the router's admin panel and look for a "connected devices" or "DHCP client list" page, which lists every device's local IP and MAC address. The MAC address lookup guide explains how to identify a device's manufacturer from that MAC address if the device name isn't clear.
Q: What port does the router admin panel use?
Most consumer routers serve the admin interface on port 80 (HTTP) or 8080, occasionally 443 (HTTPS). If the page won't load, the Port Scanner can confirm whether the expected port is actually open on the router's IP.
Key Takeaways
- ✓ Your router's IP address (default gateway) is a private RFC 1918 address, distinct from your public IP.
- ✓
192.168.1.1and192.168.0.1cover the majority of consumer routers, but always confirm withipconfigor Network settings rather than assuming. - ✓ Type the IP directly into a browser's address bar — searching for it in a search engine won't reach the login page.
- ✓ Default admin credentials are usually printed on the router label; a factory reset is the fallback if they're lost.
- ✓ If the admin page won't load, verify you're checking the correct gateway for your actual network, not a cached or guest-network address.
Next Steps
Now that you can reach your router's admin panel, check your public IP address to see what the outside world sees versus your private router IP, or run an IP Lookup to see ownership and geolocation details tied to your public address. If you're troubleshooting your home Wi-Fi password specifically, read What Is a Network Security Key — it's a different setting from your router's admin login. For a broader look at how private addressing works across your whole network, see What Is My IP Address, Explained. If your WAN connection needs to stay reachable at a fixed address — for a home server or remote access setup — see Static vs Dynamic IP Address: Key Differences to decide whether you actually need one.