Ubiquiti Router Login
Ubiquiti makes two distinct product lines for home and business networking — UniFi (enterprise-grade, controller-managed) and EdgeMax / EdgeRouter (professional with direct web admin). They're popular among network enthusiasts, home lab builders, and IT professionals who want enterprise features without enterprise pricing. Both lines require more configuration knowledge than consumer routers — Ubiquiti assumes you know what VLANs, subnets, and routing tables are.
UniFi vs. EdgeMax — Key Differences
| Feature | UniFi | EdgeRouter |
|---|---|---|
| Management | UniFi Network app (controller) | Direct web GUI at 192.168.1.1 |
| Default credentials | UI.com account (Dream Machine) or admin/ubnt (older) | ubnt / ubnt |
| Target user | Home lab, enterprise, IT admins | Advanced home, small business |
| Access points | UniFi APs managed from same controller | Separate management (not unified) |
| Learning curve | Steeper — controller model is unfamiliar | Moderate — traditional router UI |
| Command line | SSH available | CLI with EdgeOS (VyOS-based) |
UniFi Dream Machine — Login
The UniFi Dream Machine (UDM) and Dream Machine Pro (UDM-Pro) are Ubiquiti's integrated gateway + controller devices — one box that runs the UniFi Network application and manages all your UniFi APs, switches, and cameras.
- Connect to UDM ethernet or WiFi
- Open
http://192.168.1.1 - On first setup: create a local admin account or link to your UI.com account
- The UniFi Network dashboard shows your topology, device status, and traffic
Newer UDM devices require a UI.com account for setup by default, though a local-only option exists. If you previously set up cloud access, you can also reach the console at unifi.ui.com.
EdgeRouter — Login
- Connect via ethernet to a LAN port (port 1 is usually the LAN on EdgeRouter X)
- Go to
https://192.168.1.1— EdgeRouter uses HTTPS with a self-signed certificate (accept the browser warning) - Username: ubnt Password: ubnt
- EdgeRouter immediately prompts for a password change — this is required before configuration begins
- Run the Basic Setup Wizard to configure WAN interface, DHCP, and default firewall
UniFi Network Application (Self-Hosted Controller)
For setups without a Dream Machine, the UniFi Network Application is a Java-based controller you run on a server, NAS, or cloud VM. It adopts and manages UniFi APs and switches, but is not itself a router.
# Docker install
docker run -d \
--name unifi \
-p 8443:8443 \
-p 3478:3478/udp \
-p 10001:10001/udp \
-v unifi_data:/config \
--restart unless-stopped \
lscr.io/linuxserver/unifi-network-application
Access at https://localhost:8443 (self-signed cert warning expected).
Troubleshooting
| Problem | Fix |
|---|---|
| EdgeRouter 192.168.1.1 shows certificate error | Expected — EdgeRouter uses HTTPS with self-signed cert. Click Advanced → Proceed. |
| ubnt/ubnt rejected on EdgeRouter | Password was changed or device was adopted — factory reset: hold reset 10 seconds |
| Dream Machine forces UI.com signup | Local-only option available during setup — skip cloud at the UI.com login prompt |
| UniFi AP stuck in "Adopting" | AP and controller must be on same VLAN — or inform AP of controller IP via SSH: set-inform http://[controller-ip]:8080/inform |
| EdgeRouter internet not working after wizard | Check WAN interface type — DHCP for cable/fiber, PPPoE (with credentials) for most DSL |