OpenWrt Router Login and LuCI Setup at 192.168.1.1
OpenWrt uses 192.168.1.1 as the admin address. Fresh installs have username root with no password - set one immediately after first login.
About OpenWrt
OpenWrt isn't a router brand, it's a full Linux distribution that replaces the manufacturer's firmware on hundreds of router models. People flash it for different reasons: features the stock firmware never had (proper VPN clients, ad blocking, SQM), continued security updates for hardware the vendor abandoned years ago, or just to know exactly what their router is running. The trade-off is that you become your own support department.
One warning that belongs this early in the page: check your exact model and hardware revision in the Table of Hardware before flashing anything. A TL-WR841N v13 and v14 are different devices as far as firmware goes, and flashing the wrong image is how routers become paperweights. When the table says a device has 8 MB of flash and 64 MB of RAM, treat that as the practical minimum for current releases.
Official support: OpenWrt Docs
How to Log In
Connect your device via Wi-Fi or Ethernet cable to the OpenWrt router.
Navigate to http://192.168.1.1 in a browser.
Username: root. Password: blank (empty). Check the device label for any customized credentials.
| Model | Admin IP | Username | Password |
|---|---|---|---|
| OpenWrt (all supported models) | 192.168.1.1 | root | blank (empty) |
Default Credentials
| Method | Address | Username | Password | Notes |
|---|---|---|---|---|
| LuCI web UI | 192.168.1.1 | root | blank (empty) | Set password immediately |
| SSH | 192.168.1.1:22 | root | blank (empty) | Same as LuCI root |
| After first setup | 192.168.1.1 | root | your password | Unified LuCI + SSH |
The First Ten Minutes After Flashing
A fresh OpenWrt install is deliberately minimal, and two of its defaults surprise everyone. First: the radios are off. No Wi-Fi at all until you enable it, so do the initial setup over an Ethernet cable. Second: root has no password, and until you set one, SSH and LuCI are wide open to anyone on the LAN.
So, in order: set the root password (System → Administration), then enable wireless (Network → Wireless → Edit: set your SSID, pick WPA2-PSK or WPA3, set the country code so the radio uses legal channels and power for your region, then Enable). The country code step gets skipped constantly and then people wonder why channel 13 or higher 5 GHz channels are missing.
Worth doing while you're in there: check for a point-release update of your image (System → Backup/Flash Firmware accepts sysupgrade images and keeps settings), and save a config backup once things work. Future you will be grateful.
Packages Worth Knowing About
The stock install is lean on purpose; features arrive as packages via System → Software (or opkg over SSH). A few that justify the whole OpenWrt exercise: luci-app-sqm, queue management that genuinely fixes bufferbloat and makes video calls behave on loaded lines, probably the single best reason to run OpenWrt on a home connection. luci-app-adblock (or the bigger adblock-fast) for network-wide ad blocking. luci-app-wireguard for a VPN server that runs circles around most stock firmware implementations.
Remember to hit "Update lists" before searching, package lists aren't cached between reboots on small-flash devices. And resist installing everything that looks shiny, flash space on 8 MB devices runs out fast.
Troubleshooting
Not a bug, the default. Radios ship disabled. Network → Wireless, configure and enable them (see the first-ten-minutes list above).
The router itself has no internet. Verify WAN is up under Network → Interfaces. Classic gotcha: the upstream network also uses 192.168.1.x, which collides with OpenWrt's LAN. Change the OpenWrt LAN to 192.168.2.1 and the conflict disappears.
OpenWrt doesn't do the "hold reset 10 seconds" dance. Instead it has failsafe mode: power-cycle, and when a status LED starts flashing early in boot, press the reset button a few times. The router comes up at 192.168.1.1 with no password over SSH. Run firstboot and reboot to wipe all settings back to defaults, or mount and fix just the broken bit if you know what it is.
Community and Support
Official documentation answers most setup questions, but these communities have thousands of solved threads covering every edge case.
FAQ
What if root/blank does not work?
Then a password was already set, either by you during setup or by whoever flashed the device. Use failsafe mode (see troubleshooting above) and run firstboot to wipe the configuration back to defaults. Note this is different from stock firmware, the reset-button-for-10-seconds trick only triggers a config reset on OpenWrt if the button is held while the system is already fully booted, and even that varies by device.
Can I go back to the manufacturer firmware?
Usually yes, by flashing the vendor's firmware image through LuCI or via the vendor's own recovery mode, but the path differs per device and some vendors sign their images in ways that complicate it. The device's page in the Table of Hardware documents the way back. Check it before you flash, not after.
Does OpenWrt make my Wi-Fi faster?
Raw speed, usually no, sometimes slightly slower on the newest Wi-Fi 6/7 chips where open-source drivers trail the vendor's. Latency under load, dramatically better once SQM is on. If your complaint is "pages hang when someone uploads", OpenWrt fixes your actual problem. If it's "I want bigger speedtest numbers", it probably won't.