192.168.88.1 — MikroTik Router Login
ssh admin@192.168.88.1About 192.168.88.1
192.168.88.1 is the default management IP for all MikroTik RouterOS devices — a unique address chosen to avoid conflicts with the common 192.168.1.1 and 192.168.0.1 addresses. MikroTik devices are configured via three interfaces: the browser-based WebFig, the dedicated Winbox Windows app, or command-line via SSH or serial console. All three provide full RouterOS access.
Access Methods Compared
| Method | How to Access | Best For |
|---|---|---|
| WebFig | Browser → http://192.168.88.1 | Quick settings, remote access, any OS |
| Winbox | Download from mikrotik.com, connect by IP or MAC | Full GUI, device discovery, Windows users |
| SSH | ssh admin@192.168.88.1 | Scripting, automation, advanced config |
| Serial console | USB/RS232 cable to router | Recovery when network access is lost |
Default Login Credentials
| Username | Password | Notes |
|---|---|---|
| admin | (blank — no password) | ALL MikroTik RouterOS devices ship this way |
Critical: MikroTik ships every device with a blank admin password. On RouterOS 7.4 and newer, the first login wizard forces password creation. On older firmware, the system lets you in without any password. Either way — set a password immediately. Unprotected MikroTik devices exposed to the internet have been mass-exploited in botnet attacks.
First Login — Essential Security Steps
- Set admin password: System → Users → click "admin" → enter Password → OK
- Run Quick Set: The Quick Set page (accessible from the top of WebFig or Winbox) provides a safer default configuration — WAN, LAN, NAT, and basic firewall in one screen. Recommended for first-time users.
- Disable unused services: IP → Services → disable Telnet (port 23), FTP (21), and API (8728/8729) unless you specifically need them. Keep SSH and Winbox, disable the rest.
- Update RouterOS: System → Packages → Check for Updates. MikroTik releases frequent patches; stay current.
- Restrict management access by IP: IP → Services → for each service, set "Available From" to your LAN subnet (e.g., 192.168.88.0/24) so management cannot be accessed from the internet.
Popular MikroTik Models
| Model | Type | WiFi | Common Use |
|---|---|---|---|
| hAP ac² (RB952Ui) | Home/office router | WiFi 5 (AC) | Consumer-usable with full RouterOS |
| hAP ax² (C52iG) | Home/office router | WiFi 6 (AX) | Current hAP flagship |
| hEX (RB750Gr3) | 5-port wired router | None | Compact gigabit gateway, ~$59 |
| hEX S (RB760iGS) | Wired router + SFP | None | SFP port for fiber ONT |
| RB4011iGS+RM | Rack router | None | 10-port, SFP+, high performance |
| Chateau 5G (RBD53G) | 5G LTE router | WiFi 6 | Cellular backup/primary |
| CRS series | Cloud Router Switch | None | Managed switches with routing |
Quick Set — Fastest Path to Working Internet
If you want internet working quickly without deep RouterOS knowledge, use Quick Set. In WebFig or Winbox, click QuickSet at the top. This single screen handles:
- WAN configuration (DHCP, PPPoE, or static) — select your ISP connection type
- LAN IP and DHCP server settings
- WiFi configuration (on WiFi-capable models)
- Firewall — "Protect Router" and "Protect LAN" checkboxes add sensible default firewall rules
Quick Set is sufficient for most home and small office deployments. Advanced features (VLANs, BGP, OSPF, traffic shaping, hotspot) are available in the full interface.
RouterOS Features That Distinguish MikroTik
VLAN support: Full 802.1Q VLAN configuration. Create separate network segments for IoT, guest, management — far more flexible than consumer routers.
Traffic shaping / QoS (Queues): Per-IP or per-connection rate limiting and prioritization. Useful for ISPs and multi-tenant setups.
BGP and OSPF: Full dynamic routing protocols. MikroTik is used by ISPs running actual internet infrastructure.
Hotspot: Captive portal with voucher-based authentication. Used in hotels, cafes, and apartment buildings.
Scripting: RouterOS has a full scripting language. Schedule tasks, automate failover, trigger actions on events.
Dual-WAN failover: Configure multiple WAN connections with automatic failover and load balancing.
Troubleshooting
192.168.88.1 unreachable: MikroTik devices in factory state have a DHCP server serving the 192.168.88.x range. Verify your device got a 192.168.88.x address. If the IP was changed, use Winbox — it can find MikroTik devices on the local network by scanning for MAC addresses regardless of IP.
Locked out: Hard reset by holding the reset button for 5 seconds while powered on. On most models, the LED flashes when reset is registered. The device boots into a safe mode or factory state depending on hold duration (check model-specific docs at help.mikrotik.com).
No internet after initial setup: MikroTik factory default has no firewall rules and no NAT. If you did not use Quick Set, you need to configure a masquerade NAT rule: IP → Firewall → NAT → add rule with chain=srcnat, out-interface=your WAN interface, action=masquerade.