The .254 convention
A /24 subnet runs from .0 to .255. The first is the network address and the last is the broadcast address, which leaves .1 through .254 for hosts. Retail vendors take the first. Carriers tend to take the last.
The reason is provisioning. When the gateway sits at .254, the DHCP pool can start at .2 and grow upward through a contiguous block without ever colliding with the router or needing a reserved gap in the middle. For an ISP shipping millions of identical units with a scripted configuration, that uniformity is worth more than matching what everyone else does.
The side effect is that .254 is also the address a network administrator reaches for when assigning a printer or a NAS a fixed address at the top of the range. On a network whose router lives at .1, an unexpected login page at .254 is often exactly that.
Equipment that uses it
| Hardware | Notes |
|---|---|
| BT Home Hub and Smart Hub (all generations) | Also reachable at bthomehub.home on the LAN |
| Technicolor and Thomson gateways | Widely rebranded by ISPs across Europe |
| Arris and Motorola residential gateways | Model-dependent, common on carrier builds |
| AT&T residential gateways (BGW210, BGW320, older 2Wire and Pace units) | The device access code is on the sticker |
| Plusnet, EE, and other BT-derived hubs | Same firmware lineage as BT hardware |
| TP-Link, Zyxel, Draytek | Some business and DSL models |
Carriers reflash hardware to their own defaults, so two units with the same model number in different countries can differ. The gateway command below is the reliable answer.
Signing in
- Join the network the gateway serves, over Wi-Fi or Ethernet.
- Open
http://192.168.1.254. Include the scheme; browsers try HTTPS first and most LAN interfaces answer only on port 80. - Enter the credentials printed on the hardware. BT hubs carry them on a pull-out card in the base or a label on the rear. AT&T gateways print a device access code on the side sticker. Technicolor and Arris units label the underside.
- Change the password after signing in if the interface allows it. Some carrier firmware locks the administrator account, in which case a factory reset restores the printed value.
Only administer equipment you own or are authorised to manage. Reaching another household’s gateway is unauthorised access to a computer system, which the Computer Misuse Act in the United Kingdom and equivalent laws elsewhere treat as a criminal offence.
Confirm the address on your own machine
ipconfig Windows: Default Gateway
route -n get default macOS: gateway
ip route show default Linux: the address after "via"
On iOS the value is the Router row under Settings, Wi-Fi, (i). On Android it is Gateway in the Wi-Fi network details. The router IP guide lists the rest.
If your gateway reports a different address, use it: 192.168.1.1, 192.168.0.1, or 10.0.0.1.
Troubleshooting a page that will not open
The gateway is somewhere else. Run the command above before trying variations by hand.
Try the vendor hostname. BT hubs answer to bthomehub.home, and several carrier units publish a similar local name. These resolve only on the LAN and never on the public internet.
Force HTTP. Type http://192.168.1.254 in full. A private window sidesteps a cached HSTS record.
Disconnect the VPN. Full-tunnel clients can route LAN destinations into the tunnel.
Leave the guest network. Guest SSIDs isolate clients and block the management interface deliberately.
Check your own address. An address in 169.254.0.0/16 means DHCP never answered, as RFC 3927 describes. You are associated with the access point but not on the network. Renew, then power-cycle the hub.
Look for a second router. Many people put their own router behind a carrier gateway. The gateway stays at 192.168.1.254 on its own subnet while your devices sit behind the second router on a different one. Plug into the carrier unit directly, or set it to bridge or IP passthrough mode so there is one router in the chain.
Something else answers. A printer or NAS statically assigned to .254 will serve its own page. Check the device list in your router’s admin interface.
What this address is not
192.168.1.254 falls inside 192.168.0.0/16, one of the three private ranges in RFC 1918. Internet routers discard traffic addressed to it, so it exists only inside your building and millions of other networks use the same value at the same moment.
The address websites record is the public one on your gateway’s WAN interface. Read it on whatsmyip.fyi, and see the ISP, ASN, and approximate location behind it in the full report. Submitting 192.168.1.254 to /ip-lookup returns no registrant, because private space has no owner to return. The public vs private guide covers the distinction.
Questions people ask
- Why do ISP routers use .254 instead of .1?
- So the DHCP pool can run upward from the bottom of the subnet without stepping on the gateway. Putting the router at the top of 192.168.1.0/24 leaves .1 through .253 contiguous for clients, which suits carriers provisioning equipment at scale.
- How do I log into a BT Smart Hub?
- Connect to the hub's network and open http://192.168.1.254, or use the local hostname bthomehub.home. The admin password is printed on the pull-out card or the label on the hub itself.
- Is 192.168.1.254 different from 192.168.1.1?
- They are two addresses in the same subnet. Either can be the router. Which one your gateway uses depends on the vendor, so read your default gateway rather than assuming.
- Can a device other than the router hold 192.168.1.254?
- Yes. Because it sits at the top of the range, it is a popular static address for printers, NAS boxes, and access points. If an unexpected page loads, that is usually why.
Related
Last reviewed 2026-09-04. Reviewed quarterly, or sooner when a vendor changes something.