Why Your Router Uses 192.168.x.x and What That Actually Means
Almost every home router assigns addresses from the 192.168.x.x range. This is not accidental — it is one of three private IP ranges defined by RFC 1918, and understanding it explains how your whole home network works.
Power on a home router anywhere in the world and it will almost certainly hand out addresses like 192.168.0.1, 192.168.1.100, or 192.168.1.254. These addresses belong to the 192.168.0.0/16 block — one of three private address ranges reserved by RFC 1918 that are never routed on the public internet.
The 192.168.0.0/16 Block
The 192.168.0.0/16 range covers 65,536 addresses, from 192.168.0.0 to 192.168.255.255. Home routers typically use a /24 subnet within this range — most commonly 192.168.0.0/24 or 192.168.1.0/24 — which provides 254 usable host addresses. That is more than enough for a household or small office.
Why the Same Addresses Can Exist Everywhere
Millions of home networks simultaneously use the same 192.168.1.x addresses without conflict because these addresses are private — they are never sent over the public internet. Your router performs NAT (Network Address Translation): outbound traffic from your 192.168.1.x device has its source address rewritten to your router's single public IP before leaving your network. Return traffic is translated back. The public internet only ever sees your public IP.
How DHCP Assigns Addresses
Your router runs a DHCP server that automatically assigns an IP address from the local subnet to each device that connects. When your phone joins the Wi-Fi, it broadcasts a request and the router replies with an available address, a subnet mask (255.255.255.0 for a /24), a default gateway (the router itself), and DNS server addresses. The whole exchange takes milliseconds.
The Router's Address
Your router occupies the first usable address in the subnet — 192.168.1.1 or 192.168.0.1 in most configurations. This is the gateway address: all traffic destined for addresses outside the local subnet is sent here. The router then forwards it toward the public internet, performing NAT on the way out.
What Changes When You Change the Subnet
If you change your router's LAN to use 10.0.0.0/24 instead of 192.168.1.0/24, all devices on the network receive new addresses from the 10.x range. Traffic still routes correctly — the only difference is the address range being used. This matters if you need to connect to a corporate VPN that also uses 192.168.x.x addresses, because split-tunnelling cannot tell the two networks apart. Switching your home router to 10.0.0.0/24 or 172.16.0.0/24 resolves the conflict. Use the CIDR calculator to verify any subnet before changing your router config.