Using devices MikroTik as Client Wi-Fi — a popular solution for expanding a network without laying cables. This mode allows you to connect computers, IP cameras, or even entire office segments to a wireless network via the router's Ethernet ports. However, setting it up requires an understanding of the specifics. RouterOS and features of working with wireless interfaces.
Unlike home routers, where client mode is often activated with one click, MikroTik provides flexibility, but also requires manual configuration. This article covers all the steps: from hardware selection to fine-tuning security and troubleshooting common issues. We'll cover options for different models (RB951Ui-2HnD, hAP ac², SXT LTE6) and scenarios - whether it's connecting to home Wi-Fi or a corporate access point with 802.1X.
Which MikroTik models support Wi-Fi client mode?
Not all devices MikroTik They perform equally well in the client role. Key selection criteria:
- 📶 Availability of a Wi-Fi module: models without a wireless interface (eg RB750Gr3) won't work. Look for the letters in the title.
Hn(2.4 GHz),ac(5 GHz) orax(Wi-Fi 6). - 🔄 Operating modes: devices with
wireless-cm2(For example, cAP ac) support advanced client functions, including roaming. - 🔌 Number of Ethernet ports: to connect end devices you will need at least 1 free port (at SXT he is usually alone).
The best options for different tasks:
| Model | Wi-Fi bands | Max. speed | Peculiarities |
|---|---|---|---|
| RB951Ui-2HnD | 2.4 GHz | 300 Mbps | 5 ports, budget option |
| hAP ac² | 2.4 + 5 GHz | 867 Mbps | Dual band, POE |
| SXT LTE6 | 5 GHz | 867 Mbps | Directional antenna for long-distance connections |
| cAP ac | 2.4 + 5 GHz | 1300 Mbps | Support 802.11ac Wave2, ceiling mounting |
To connect to modern networks with WPA3 or 802.1X choose devices on RouterOS v7+. Obsolete models (eg. RB411) may not support new safety standards.
Preparing the device: resetting and updating the firmware
Before setting up Necessarily update RouterOS to the latest stable version. This will fix bugs with connecting to modern access points and add support for new security standards.
Update instructions:
- Connect to MikroTik via Ethernet or via
WinBox(MAC address). - Go to
System → Packagesand pressCheck For Updates. - Download the latest version from the channel
stable(Nottesting!). - After downloading, run the command in the terminal:
/system package update install - Reboot your device:
/system reboot
If the router was previously used on a different network, perform a reset:
/system reset-configuration no-defaults=yes skip-backup=yes
Update RouterOS to the latest stable version|Reset configuration (if used previously)|Connect power and Ethernet cable to PC|Run WinBox or WebFig|Check device availability by MAC address-->
⚠️ AttentionAfter resetting the settings, all previous configurations (including licenses) will be lost. If you have a Level 4+ license activated, save the key to a file. .key before reset.
Basic Wi-Fi client setup in WinBox
Let's look at the step-by-step configuration using the example of connecting to a home network with WPA2-PSKThis method is suitable for most models (RB951, hAP).
Step 1: Open Wireless V WinBox and double-click on the interface wlan1 (or another wireless interface). Go to the tab Wireless:
- 🔘 Mode: select
station(client mode). - 📡 Band: please specify
2GHz-B/G/Nor5GHz-A/N/ACdepending on the network. - 🔍 Scan List: leave
defaultor enter your network SSID.
Step 2. On the tab HT (for 5 GHz) or N (for 2.4 GHz) set up:
/interface wireless set wlan1 band=2ghz-b/g/n \
channel-width=20/40mhz-Ce \
frequency=auto \
scan-list=default \
wireless-protocol=any \
mode=station
Step 3: Connect to the network in the tab Connect:
- 🔑 Enter SSID precise access.
- 🔐 Choose Security Profile (create a new one if needed).
- 🔄 Click
Connectand wait for the statusconnected.
What to do if MikroTik doesn't find the network?
Check what's in the settings Country your region is indicated (for example, russia or united_states). Some channels (e.g., 12-14 in 2.4 GHz) may be restricted in your country. Also, make sure the access point isn't hiding the SSID—in this case, enter the network name manually in the field. Connect To.
Security settings: WPA2, WPA3, and 802.1X
Connection security is a critical aspect, especially when using MikroTik in office networks. Let's consider three scenarios:
1. WPA2-PSK (home networks)
Create a security profile:
/interface wireless security-profilesadd name=home_wpa2 mode=dynamic-keys authentication-types=wpa2-psk \
unicast-ciphers=aes-ccm group-ciphers=aes-ccm wpa2-pre-shared-key="your_password"
2. WPA3-SAE (modern networks)
Required RouterOS v7.1+:
/interface wireless security-profilesadd name=home_wpa3 mode=dynamic-keys authentication-types=wpa3-sae \
unicast-ciphers=aes-ccm group-ciphers=aes-ccm sae-password="your_password"
3. 802.1X (corporate networks)
To connect to the radius:
/interface wireless security-profilesadd name=office_8021x mode=dynamic-keys authentication-types=wpa2-eap \
eap-methods=eap-tls,tls,peap,ttls \
tls-certificate=none \
tls-mode=verify-certificate \
eap-identity="your_login" \
eap-password="your_password"
⚠️ Attention: When using 802.1X Make sure the system time is correct MikroTik Synchronized with the NTP server. A time discrepancy of more than 5 minutes will result in an authentication error.
| Standard | Minimum RouterOS version | Required settings |
|---|---|---|
| WPA2-PSK | v6.0 | Password (8+ characters) |
| WPA3-SAE | v7.1 | Password (8+ characters), mode sae |
| 802.1X (PEAP) | v6.45 | Login, password, certificate (optional) |
Bridge configuration for transmitting traffic to Ethernet ports
To ensure that devices connected to Ethernet ports MikroTik, received IP addresses from the main network, you need to create bridge between wireless and wired interfaces.
Step 1: Create a bridge and add interfaces:
/interface bridge add name=local_bridge
/interface bridge port add bridge=local_bridge interface=wlan1
/interface bridge port add bridge=local_bridge interface=ether2
/interface bridge port add bridge=local_bridge interface=ether3
Step 2. Configure the DHCP client on the bridge (if the main network assigns addresses automatically):
/ip dhcp-client add interface=local_bridge disabled=no
Step 3: Disable the DHCP server on MikroTik, if it was activated:
/ip dhcp-server disable [find]
To isolate traffic between ports, use VLAN:
/interface bridge vlan add bridge=local_bridge tagged=local_bridge,ether2 untagged=ether3 vlan-ids=10
Connection optimization: power, channels, and roaming
A unique feature of MikroTik is the ability to fine-tune connection settings that are not available in consumer routers. This allows you to stabilize the connection in conditions of interference or over long distances.
1. Setting the transmission power
Power reduction (tx-power) can paradoxically improve communication in conditions of congested airwaves:
/interface wireless set wlan1 tx-power=17
Recommended values:
- 📶
17-20 dBm: for short-range connections (up to 10 m). - 🏠
23-27 dBm: for home networks (up to 30 m). - 🏢
30 dBm: Maximum power for long-distance connections (requires license in some countries).
2. Selecting a channel and width
In manual mode, specify the least loaded channel:
/interface wireless set wlan1 frequency=2437 channel-width=20mhz
3. Setting up roaming (for multiple access points)
If there are multiple access points with the same SSID on the network, enable fast roaming:
/interface wireless set wlan1 adaptive-noise-immunity=ap-and-client-mode \disconnect-timeout=15s \
roaming-trigger=-75
| Parameter | Recommended value | Effect |
|---|---|---|
adaptive-noise-immunity | ap-and-client-mode | Interference suppression |
disconnect-timeout | 15s | Fast reconnection in case of breakage |
roaming-trigger | -75 | Switching at signal level below -75 dBm |
frame-lifetime | 3000 | Reducing packet loss |
Diagnosing problems and troubleshooting errors
Common setup issues MikroTik as a client and ways to solve them:
1. Doesn't connect to the network
- 🔍 Check it out
/interface wireless registration-table print- if the statussearching, the problem is in the security settings. - 📡 Make sure the access point is not using
802.11r(Fast Transition) — MikroTik does not support it in client mode. - 🔄 Reboot your access point - some models block new connections when overloaded.
2. Connects, but there is no internet
- 🌐 Check the routes:
/ip route printIf there is no default route, add it manually. - 🔗 Make sure the bridge (
bridge) includes andwlan1, and Ethernet ports. - 🛡️ Disable the firewall on MikroTik:
/ip firewall filter disable [find](temporarily for testing).
3. Low speed or breaks
- 📉 Reduce
channel-widthto20mhz. - 🔋 Check your power supply—unstable voltage can cause Wi-Fi issues.
- 📡 Change
wireless-protocolonanyor specify a specific standard (802.11n).
For detailed diagnostics, use:
/interface wireless monitor wlan1 once
Please pay attention to the parameters signal-strength (optimal: > -65 dBm) and tx/rx (ratio of sent/received packets).
⚠️ Attention: If in the logs (/log print) an error appears"authentication timeout", the problem is incompatible authentication methods. Try creating a new one.security-profilewith a different typeauthentication-types(For example,wpa2-pskinstead ofwpa-psk).
FAQ: Frequently asked questions about setting up MikroTik as a Wi-Fi client
Is it possible to use MikroTik as a client and an access point at the same time?
Yes, but this will require:
- Tune
wlan1in modestation(client). - Add a virtual interface
wlan2in modeap-bridge(access point). - Connect both interfaces via a bridge (
bridge).
Example command to create a virtual AP:
/interface wireless add master-interface=wlan1 name=wlan2 \
mode=ap-bridge band=2ghz-b/g/n ssid="MyHotspot"
Please note that this will reduce performance by 30-50% due to sharing one physical module.
How to connect MikroTik to a hidden Wi-Fi network (hidden SSID)?
In the interface settings wlan1 please specify:
/interface wireless set wlan1 connect-list="\"hidden=yes \
security-profile=home_wpa2 \
ssid="MyHiddenNetwork"
Parameter hidden=yes allows connection to hidden networks, and connect-list="" disables scanning.
Why does MikroTik lose connection after reboot?
The problem is usually related to:
- Lack of automatic connection: add
connect-list=your_SSID. - Unsaved settings: run
/system configuration save. - IP Conflict: Disable DHCP Server on MikroTik or set up a static IP in the main network range.
Check the logs after reboot:
/log print where message~"wireless"
Is it possible to connect MikroTik to a Wi-Fi network with portal capture (hotspot)?
Yes, but you will need:
- Connect to the network manually via
WinBox. - Open the portal capture in a browser connected to MikroTik via Ethernet.
- After authorization, save cookies (if supported).
For automation, use a script:
/tool fetch url="http://1.1.1.1/login?user=XXX&pass=YYY" keep-result=no
Some hotspot networks block such connections; in this case, additional software will be required on the client device.
How to increase the connection range?
Ways to improve stability at long distances:
- Use directional antennas (eg. SXT or Dynadish).
- Reduce
channel-widthto10mhzor5mhz. - Activate
nv2protocol (only for MikroTik-MikroTik communication):
/interface wireless set wlan1 wireless-protocol=nv2
For distances >500m a high power license will be required (tx-power=30).