Connecting devices MikroTik Connecting to an external Wi-Fi network in client mode is a challenge faced by both system administrators setting up backup channels and regular users wanting to extend their coverage without running cables. Unlike standard home routers, where the "repeater" or "client" function is often implemented through a simple web interface, MikroTik requires manual configuration through Winbox or WebFig, which can be intimidating for beginners. However, with the right approach, the process takes no more than 10 minutes and opens up opportunities for flexible traffic routing.
In this article, we will analyze not only the basic setup of a Wi-Fi connection as a client using popular models as an example (hAP ac², RB4011, RB750Gr3), but also nuances that are rarely mentioned in official documentation. For example, why When using the 802.11r (Fast Transition) protocol, MikroTik may lose connection with some access points from TP-Link and ASUS, or how to bypass MAC address restrictions on public networks. You'll also learn what parameters security-profile are critical for stable operation in client mode, and how to diagnose problems using built-in tools RouterOS.
1. Which MikroTik models support Wi-Fi client mode?
Not all devices MikroTik capable of working in client mode - this depends on availability Wi-Fi module and versions RouterOSFor example, models of the series RB750 (without the "w" index) do not have a wireless adapter, but RB2011 Requires an additional USB module for Wi-Fi connection. Below is a list of devices that support the client function out of the box:
- 📶 hAP ac² (RB962UiGS-5HacT2HnT) — dual-band, ideal for home use;
- 📶 RB4011iGS+5HacQ2HnD-IN — flagship with 10-gigabit ports and powerful Wi-Fi;
- 📶 RBwAPG-5HacT2HnD — for outdoor installation, supports 802.11ac;
- 📶 RB750Gr3 — a budget option, but requires an external USB adapter;
- 📶 RBcAPGi-5acD2nD — a compact option for offices.
Important: Even if your model is on the list, check the version RouterOSFor stable operation in client mode, the recommended version is 6.48.6 or later. Outdated firmware (e.g. 6.43) may not support modern security standards (WPA3) or have bugs when connecting to networks with a hidden SSID.
2. Preparing for setup: what you need to do before connecting
Before configuring MikroTik As a customer, please complete a few mandatory steps. Ignoring them may result in connection issues or even blocking your device from the network.
⚠️ Attention: If you are connecting to a public Wi-Fi network (such as at a cafe or hotel), make sure it is not using port isolation ward (port isolation) or portal capture (captive portal). In this case, MikroTik will not be able to log in automatically, and additional configuration will be required. hotspot client.
Preparation checklist:
Reset the device to factory settings (if the device has already been used)|
Update RouterOS to the latest stable version|
Connect MikroTik to PC via Ethernet (port 1)|
Make sure the target Wi-Fi network is visible in the list of available networks (check via Winbox → Wireless)|
Disable all firewall rules that may block traffic|
-->
Pay special attention nutritionIf you are setting up your device via PoE, make sure that the injector or switch produces sufficient voltage. For example, RB4011 requires 24V, A hAP ac² works from 12V-24VUnstable power supply can cause spontaneous Wi-Fi connection interruptions.
3. Step-by-step configuration of MikroTik in Wi-Fi client mode
Now let's move on to the main part - device configuration. We will use Winbox, as it is the most convenient tool for working with RouterOSIf you don't have one yet Winbox, download it from the official website MikroTik (version for Windows or macOS).
Configuration algorithm:
- Connect to MikroTik via Ethernet or Wi-Fi (if the network is already configured). Open
Winbox, find your device in the list and log in (default login:admin, there is no password). - Go to the section
Wireless(menu on the left). All available Wi-Fi interfaces will be displayed here. If there are several (for example,wlan1Andwlan2), select the one that will be used for connection. - Click the button
Scanand wait for the scan to complete. Find the target network in the list and double-click it. A window with connection settings will open. - Fill in the fields:
Mode: selectstation(client mode);Band:2GHz-B/G/Nor5GHz-A/N/AC(depending on the network);Security Profile: create a new profile or select an existing one (more on this in the next section);Connect: Check this box to establish a connection automatically.
Wireless → Connect List.If the connection is not established, check:
- 🔍 The password entered is correct (case-sensitive!);
- 🔍 Compatibility of safety standards (e.g. MikroTik does not support
WPA3-Enterprisein client mode); - 🔍 The presence of MAC filtering on the access point (possibly yours MikroTik blocked).
4. Setting up a Security Profile: Why it's critical
Security Profile — is a set of security parameters that determines how MikroTik will authenticate to the Wi-Fi network. Incorrect configuration of this profile is the most common cause of connection problems. Let's look at the key parameters:
| Parameter | Meaning | Explanation |
|---|---|---|
Mode |
dynamic keys |
Mandatory for networks with WPA2-PSKIf you choose static keys, the connection will not be established. |
Authentication Types |
WPA2 PSK |
For most home networks. If the network uses WPA3, will be required RouterOS version 7.x. |
Unicast Ciphers |
aes ccm |
Optimal choice for compatibility. tkip is outdated and unsafe. |
Group Ciphers |
aes ccm |
Must match Unicast Ciphers. |
WPA Pre-Shared Key |
Your password | Minimum length: 8 characters. Use Latin letters and numbers. |
Pay special attention to the parameter Group Key Update. If it is installed in 1h, and the access point uses a different value, the connection will be disconnected every hour. For stability, it is recommended to set 1d or disable the update (0s).
⚠️ Attention: If you are connecting to a network with802.1X(Enterprise), MikroTik in client mode does not support authentication viaEAP-TTLSorPEAPIn this case, you will need to use an external RADIUS server or an alternative solution (for example,EoIPtunnel).
5. Problems and solutions: why MikroTik won't connect to Wi-Fi
Even with proper setup, the connection may not work. Below is a list of common errors and how to fix them:
- 🔌 Problem: MikroTik sees the network, but does not connect. Solution: Check if your device's MAC address is blocked by the access point. Some routers (e.g., Ubiquiti UniFi) block unknown devices by default.
- 🔌 Problem: The connection is established, but there is no internet access. Solution: Make sure that in the settings
IP → DHCP Clientthe correct interface is specified (egwlan1). Also check if your firewall is blocking traffic:
/ip firewall filter
add chain=forward action=accept place-before=0
- 🔌 Problem: Low speed or frequent breaks. Solution: Try setting the channel and bandwidth manually in the settings.
WirelessFor example, for2.4GHzinstall20MHzinstead of20/40MHz, if there are many other networks nearby. - 🔌 Problem: MikroTik connects but does not receive an IP address. Solution: Enable DHCP client debugging:
/system logging add topics=dhcp,debug
/log print
If the problem persists, try manually setting the IP address to the same subnet as the access point and specifying a default gateway.
How to check Wi-Fi standards compatibility?
Open a terminal in Winbox and run the command:
/interface wireless info wlan1 once
In the output, pay attention to the fields:
- supported-rates - if it's not here 802.11n or 802.11ac, your device does not support modern standards.
- country - if not specified, some channels (eg 12-14 in 2.4GHz) may be blocked.
6. Connection optimization: how to increase stability and speed
Once connected successfully, you can improve performance by tweaking a few additional settings. Here's what we recommend:
- Disable unnecessary standards: If the access point only supports
802.11n, turn it off802.11b/gin the settingsWirelessThis will reduce interference and increase speed. - Set up
Wireless Connect List: Add the target network to the priority connection list to prevent MikroTik from trying to connect to other networks with a weaker signal. - Use
Nv2orNstreme: These protocols (available in RouterOS) optimize data transmission in interference conditions. Enable them in the settings.Wireless→HT. - Upgrade your antennas: If you use MikroTik at a large distance from the access point, replace standard antennas with directional ones (for example, MikroTik R11e-5HacD with antenna SXTsq 5 ac).
To monitor connection quality, use built-in tools:
/interface wireless registration-table print
/interface wireless scan
Please pay attention to the parameters signal-strength (signal) and tx-rate (transmission speed). If signal-strength below -70dBm, try moving your device closer to the access point or use a signal booster.
7. Alternative connection methods: if the Wi-Fi client doesn't work
If client mode setup does not work, consider alternative options:
- 🔄 WDS (Wireless Distribution System): Allows you to connect two access points over the air, but requires WDS support on both sides. Suitable for connecting two MikroTik or MikroTik with some models Ubiquiti.
- 🔄 EoIP tunnel: If you have access to another device on the target network (for example, a second MikroTik), you can create a tunnel over Wi-Fi. This bypasses the limitations of client mode.
- 🔄 USB Wi-Fi adapter: For models without built-in Wi-Fi (eg. RB750Gr3) you can use a compatible USB adapter (for example, TL-WN722N with chipset
AR9271).
For setup WDS run the following commands:
/interface wirelessset wlan1 master-interface=none
set wlan1 mode=station-wds
/interface wireless connect wlan1 ssid=NetworkName
If you choose EoIP, don't forget to set up routing between networks:
/ip route add dst-address=0.0.0.0/0 gateway=192.168.88.1
8. Security: How to protect MikroTik in client mode
Connection MikroTik Accessing someone else's Wi-Fi network is risky, especially if it's a public hotspot. Here are some precautions:
- 🔒 Disable unnecessary services: In the section
IP → Servicesleave onlywinboxAndssh, the rest (for example,ftp,telnet) turn it off. - 🔒 Set up a firewall: Block incoming connections from the internet except those required for work:
/ip firewall filter
add chain=input action=drop in-interface=wlan1
- 🔒 Use a VPN: If your traffic is sensitive to interception, configure
L2TPorOpenVPNclient on MikroTik to encrypt data. - 🔒 Update RouterOS: Outdated versions may contain vulnerabilities that allow remote access to the device.
For additional security, it is recommended to change the default credentials (admin without a password) and turn it on MAC Winbox access so that connection to the device could only be made from certain MAC addresses.
⚠️ Attention: If you are connecting to a network withcaptive portal(for example, at the airport), MikroTik will not be able to log in automatically. In this case, you will need to either use another device for authorization and then "forward" access through MikroTik, or set uphotspota client with browser emulation (which is difficult and not always possible).
Frequently Asked Questions (FAQ)
Can MikroTik connect to a Wi-Fi network with WPA3?
Yes, but only if you have it installed RouterOS version 7.x. In version 6.x only WPA2-PSKUpdate the firmware via System → Packages → Check For Updates.
Why does MikroTik lose connection every 5-10 minutes?
This is a typical problem when parameters do not match. Group Key Update on the client and the access point. Install on MikroTik meaning 1d or 0s (Disable the update). Also, check if the access point is blocking the device based on time (for example, guest networks often have session limits).
How to connect MikroTik to a hidden Wi-Fi network?
In the settings Wireless manually enter the network name in the field SSID, check the box Default Authenticate and create Security Profile with the correct password. After that, add the network to Connect List.
Is it possible to use MikroTik as a client and an access point at the same time?
Yes, it's called a regime. station-pseudobridgeIn this case, one Wi-Fi interface operates as a client, while the other distributes the internet. However, this mode can reduce performance due to the simultaneous processing of two data streams. For stability, it is better to use two separate devices or a model with two radio modules (e.g., hAP ac²).
How to check if MikroTik is getting an IP address from DHCP?
Run the command:
/ip dhcp-client print
If the status indicates bound, IP received successfully. If searching - check the settings Security Profile and firewall.