What Is a Default Gateway? (And How to Find Yours)
The Door to the Rest of the Internet
A default gateway is the address your device sends traffic to when the destination is outside your local network — which is almost everything on the internet. In a home or small office, the default gateway is your router. When you load a website, your device hands the packets to the gateway, and the router forwards them out to your ISP and on to the destination.
It is a private IP address on your local network — you do not browse to it, your device routes through it. It is separate from your public IP, which is the address the outside internet sees.
Why It Is Usually 192.168.x.1
Home routers almost always use a private address from the RFC 1918 ranges, and by convention the router takes the first usable address in the subnet. That is why home gateways are so often 192.168.0.1, 192.168.1.1, or 10.0.0.1. It is just a convention, not a rule — but most consumer routers ship with one of these defaults.
How to Find Your Default Gateway
Windows: open Command Prompt and run ipconfig; the "Default Gateway" line shows it. macOS: run netstat -nr | grep default in Terminal, or look under System Settings > Network > Details > TCP/IP ("Router"). iPhone/Android: Settings > Wi-Fi > tap the network > the gateway is shown as "Router." Linux: run ip route and read the address after "default via."
Gateway vs Router: Are They the Same?
In a typical home network, yes — the default gateway IS your router LAN address. "Gateway" describes the role (the exit point to other networks) and "router" describes the device. In larger networks there can be multiple gateways and dedicated routing hardware, so the terms are not always interchangeable, but for home users they point to the same box.
What You Use It For
You connect to your default gateway address to log into your router admin panel — to change the Wi-Fi password, update firmware, set up port forwarding, or check connected devices (useful if you suspect someone is using your Wi-Fi). It is also the first place to look when troubleshooting connectivity: if you can reach the gateway but not the internet, the problem is upstream at your ISP, not on your local network. Scan your own connection with our Port Scanner to see what is exposed.
Frequently Asked Questions
What is a default gateway?
A default gateway is the address your device sends traffic to when the destination is outside your local network. In a home network it is your router, which forwards your packets out to the ISP and the wider internet. It is a private local-network address, separate from your public IP.
How do I find my default gateway?
On Windows run "ipconfig" and read the Default Gateway line. On macOS run "netstat -nr | grep default" or check Network details. On iPhone or Android tap the Wi-Fi network and read the Router field. On Linux run "ip route" and read the address after default via.
What is the default gateway used for?
It is the exit point your device uses to reach other networks, and the address you connect to for logging into your router admin panel to change Wi-Fi settings, update firmware, or set up port forwarding. It is also the first thing to check when troubleshooting connectivity.
Is the default gateway the same as the router?
In a typical home network, yes. The default gateway is the router LAN-side address. Gateway describes the role of exiting to other networks and router describes the device, but for home users they refer to the same box. Larger networks can have multiple gateways.
Why is my default gateway 192.168.1.1?
Home routers use private RFC 1918 address ranges, and by convention the router takes the first usable address in the subnet, so 192.168.0.1, 192.168.1.1, and 10.0.0.1 are common defaults. It is a manufacturer convention rather than a fixed rule.