Using MikroTik routers as wireless receiver (Station or Client mode) is a powerful solution for situations where you need to access the internet via a remote Wi-Fi network and distribute it via cable or create a new local network. Unlike conventional home routers, the equipment MikroTik Allows for flexible traffic management, complex routing rules, and stable connections even in noisy environments. However, the default out-of-the-box configuration often relies on access point mode, requiring the administrator to have a thorough understanding of the interfaces.
The main difficulty is that when the radio module switches to client mode, the device stops broadcasting on that frequency unless a second radio module or virtual interfaces are used. You must manually create a bridge between the wireless interface and the LAN ports, as well as correctly configure the DHCP client to obtain an IP address from the main access point. Errors at this stage result in the device connecting to the ISP but not transmitting internet.
In this guide, we will go through a step-by-step algorithm of actions that will allow you to transform your RouterBOARD into a reliable bridge. We'll cover the nuances of working with 2.4 GHz and 5 GHz frequencies, the specifics of setting up WPA2 security, and speed optimization methods. It is critical to understand that Station mode is not a standard operating mode for all Wi-Fi chips, and its stability directly depends on the drivers and RouterOS version.
Equipment preparation and model selection
Not all MikroTik models are equally well suited for receiving signals. For stable operation as a client, an external antenna is recommended, as the built-in antennas in compact models may not provide the necessary signal strength (RSSI) for a reliable connection over a distance. hAP, cAP or specialized SXT And LHG demonstrate the best results.
Before you begin setup, make sure you have access to the web interface. WinBox or WebFig. This is the primary administration tool, without which in-depth configuration is impossible. You'll also need the network information you'll be connecting to: the network name (SSID), encryption type, and password. Without this information, you won't be able to configure the receiver.
- 📡 The presence of a radio module that supports the required range (2.4 GHz or 5 GHz) for signal reception.
- 🔌 An Ethernet network cable for connecting a computer to the MikroTik LAN port during setup.
- 💻 Installed WinBox utility or an accessible browser for accessing the router's web interface.
It's worth noting that when operating in Station mode, the device can act not only as a simple bridge but also as a firewalled gateway. This provides additional security benefits, as you can isolate your local network from the one you're connecting to. However, this requires more complex configuration of NAT rules and routing.
Basic Wireless Interface Setup
The first step in the configuration process is to switch the wireless interface operating mode. By default, the MikroTik operates in the ap-bridge (access point), which is not suitable for us. We need to change this parameter to station (for older firmware versions) or station-bridge (to create a transparent bridge), or use the mode station-pseudobridge for compatibility with providers that restrict access by MAC address.
Go to the menu Wireless and double-click on the active interface (usually wlan1 or wifi1). In the window that opens, find the field Mode and select station. After that, go to the tab Scanto find available networks. The list will display all nearby access points, along with their signal strength and channel.
⚠️ Attention: When selecting a mode
station-bridgeMake sure your main access point also supports WDS mode or has a compatible driver, otherwise the connection may fail. In most cases, it's better to use the "Wireless Distributed Mode" mode when connecting to other routers (such as ISP routers).stationwith subsequent NAT configuration.
After selecting the network, click the button ConnectIf the password is correct and the security settings match, the connection indicator will change and you will see the status connected to ESSThe device is now physically connected to the remote network, but logical data exchange is not yet established. Network protocols need to be configured.
☑️ Check before connection
Setting up a network bridge and DHCP client
To enable devices connected to your MikroTik's LAN ports to access the internet, you need to combine the wireless interface and Ethernet ports into a single logical segment. This is accomplished using a mechanism called BridgeCreate a new bridge in the menu Bridge and add ports to it ether1, ether2 and your wireless interface wlan1.
However, simply port binding isn't enough. Your router needs to obtain an IP address from the main network. To do this, go to the menu IP -> DHCP Client You need to add a new client. In the field Interface select the one created earlier bridge-local or directly to the wireless interface if the bridge is not used to obtain the address. Make sure the checkbox is checked. Use Peer DNS active to automatically register DNS server addresses.
| Parameter | Meaning / Action | Description |
|---|---|---|
| Interface | wlan1 / bridge | The interface on which the DHCP client operates |
| Use Peer DNS | Yes | Automatically obtain DNS from your provider |
| Add Default Route | Yes | Create a default route through the received gateway |
| Status | Bound | Successful IP address acquisition status |
If the DHCP client has received the status bound and you see the assigned IP address, gateway, and DNS, meaning a logical connection has been established. Check internet access by running the command ping 8.8.8.8 from the terminal (New Terminal). The absence of a response may indicate the need to adjust firewall or NAT rules.
What to do if IP is not received?
If the DHCP client status remains "searching" or "rebinding," check whether the main access point is blocking new devices by MAC address. Also, make sure the wlan1 interface isn't configured with a static IP that conflicts with the ISP's network. Try temporarily disabling the firewall with the /ip firewall disable 0 command for diagnostic purposes.
Organizing Wi-Fi distribution (Repeater mode)
Often, the need arises to not only receive a signal, but also distribute it further, creating your own Wi-Fi network. To do this, you need to launch a second virtual interface on the MikroTik or use a second radio module, if available. In the menu Wireless press the button + (Add New) and select the interface type, then in the field Master Interface Please specify your primary receiving interface.
For the new virtual interface (wlan2 or wlan1_1) set the operating mode ap-bridgeThis will turn your MikroTik into an access point for clients. Don't forget to set the network name (SSID) and configure the security profile (Security Profile) to protect your local network from outsiders. In the security profile, select the mode dynamic keys and encryption method TKIP+AES.
Traffic isolation is crucial. Since we both receive and distribute internet, it's essential to ensure that your network clients don't have direct access to devices on the provider's network. This can be achieved by properly configuring rules. Firewall and enabling the option Default Forward Only for trusted interfaces. You should also check your NAT settings to ensure that traffic from your clients is routed through the external IP.
- 🔐 Create a separate Security Profile with a complex password for your shared network.
- 🚫 Disable the "Default Authenticate" option on the receiving interface if you do not want to connect to open networks automatically.
- 📶 Make sure that the receive and transmit channels do not match if you are using a single radio module (this will reduce the speed by half).
Optimizing connection speed and stability
Speed in Station mode is highly dependent on signal strength and channel width. For diagnostics, use the tool Sniffer or built-in monitoring in the wireless interface window. Pay attention to the parameter CCQ (Client Connection Quality) — shows the connection quality as a percentage. Values below 60% indicate serious signal problems or interference.
In the wireless interface settings (Wireless -> tab Advanced) you can force the channel width (20/40/80 MHz). In the noisy air of an apartment building, it is often more advantageous to force the width 20 MHz, sacrificing theoretical maximum speed for the sake of ping stability and the absence of interruptions. It's also worth experimenting with security protocols: switching from any to a specific standard (for example, 802.11ac or 802.11n) can remove unnecessary delays.
Don't forget about antennas. The antenna orientation on the MikroTik is critical. Even rotating the device by 10-15 degrees can change the signal strength by 3-5 dBm, significantly impacting speed. Use external high-gain antennas if the distance to the signal source is great.
⚠️ Attention: Interfaces and available settings may vary depending on the installed RouterOS version (v6, v7) and license type (Level 3, 4, 5, 6). Some features, such as certain encryption protocols or 160 MHz channel width, may not be available on older models or require a license upgrade.
Troubleshooting and Common Mistakes
The most common problem is that the device connects to Wi-Fi, but the internet doesn't work. In 90% of cases, this is due to a missing default route or incorrect DNS. Check the routing table (IP -> Routes). There should be an entry with a prefix 0.0.0.0/0 and a gateway running through the wireless interface. If there is no route, check the client's DHCP settings.
Another common error is an IP address conflict. If your MikroTik local network is on a subnet 192.168.88.0/24 (standard for MikroTik), and the ISP network you're connecting to uses the same range, a conflict will occur. You'll need to change the router's IP address and the DHCP server's address pool to unique ones, for example, 192.168.10.1.
For deep diagnostics, use the utility Torch (Tools -> Torch). It allows you to see passing traffic in real time. Launch Torch on the interface wlan1 and try opening any website. If you see ICMP (ping) or TCP packets but there's no response, the problem is with your ISP or NAT settings. If there are no packets at all, the problem is with your Wi-Fi connection.
Why doesn't MikroTik see 5 GHz networks?
Make sure your country is selected in the "Country" field in the Wireless settings (Wireless tab). Some countries have restrictions on the use of certain 5 GHz channels. Also, check if your specific model supports it (card) 802.11ac/ax standard. Older cards can only operate in the 2.4 GHz band.
Is it possible to use MikroTik as a Wi-Fi booster without losing speed?
It's impossible to completely avoid speed loss when using a single radio module for both receiving and transmitting, as the device operates in half-duplex mode (transmitting and receiving alternately). Speed will drop by at least 50%. To maintain speed, a model with two radio modules (Dual Band), where one receives and the other transmits, is required.
How do I reset my settings if I've lost access?
There's a reset button on the device. With the power on, press and hold it for about 10-15 seconds until the ACT indicator starts flashing. Then release the button. The device will reboot with factory settings. The IP address will return to its default value (usually 192.168.88.1).
Do I need a special license for Station mode?
For basic Station mode (client), a Level 3 license, which is included by default on most devices, is sufficient. However, if you plan to create multiple virtual interfaces (more than one per radio) or use advanced WDS features, a Level 4 license or higher may be required.