The situation when it is physically impossible to extend the internet cable from the provider to the required room is familiar to many owners of country houses and offices. Often access point is located in the hallway or attic, but a strong signal is needed specifically in the office or living room. In such cases, devices come to the rescue MikroTik, which are capable of working not only as distributors, but also as signal receivers.
Using a router MikroTik in mode client Allows you to connect to an existing Wi-Fi network and share internet via Ethernet to computers, TVs, or game consoles. This is the ideal solution for devices that don't have their own wireless module.
If your goal is not just to get a cable, but to expand the coverage area of ββthe wireless network, then the configuration in mode repeater (or a bridge) would be the optimal choice. This will turn the second router into a transparent extender, maintaining a single network for all devices.
Differences in operating modes: Client, Repeater and Bridge
Before you begin setting up, you need to clearly understand the difference between the modes, as the final network topology depends on this. Mode Station (Client) means that the device connects to another access point and distributes the Internet further, usually creating its own subnet or working through NAT.
In turn, the regime Bridge A bridge combines the wireless interface and wired (LAN) ports into a single logical segment. This allows all devices to see each other while on the same subnet, which is critical for printers, media servers, and other systems. smart home.
β οΈ Note: "Repeater" mode in its classic sense (simultaneous reception and transmission on the same frequency) often cuts speed in half. For maximum performance, it's better to use bridge mode with different frequencies or a cable pull.
Devices MikroTik With two radio modules, it is possible to implement a system where one module receives a signal from the main router, and the second distributes it to clients, ensuring stable operation without loss of bandwidth.
Preparing equipment and updating firmware
Any quality setup starts with up-to-date software. Interface RouterOS is constantly being improved, adding new security and wireless stability features. Before you begin, connect your computer to any LAN port on your MikroTik.
Go to the web interface or use the utility WinBox. Go to the menu System β Packages and press the button Check for UpdatesIf a new version is available, update and restart your device.
βοΈ Preparing MikroTik for setup
It's also worth making sure that your device's module is enabled. In the list of interfaces (Interfaces) against wlan1 or wifi1 There shouldn't be a lock icon. If the interface is disabled, click the blue checkmark to enable it.
Setting up Station mode: connecting to a provider via Wi-Fi
This section is dedicated to the scenario when MikroTik It should receive internet from a neighboring router and distribute it via cable. The first step is to disable the default DHCP server on the wireless interface if it's causing a conflict, and set up network scanning.
Go to the menu Wireless (or Wifi (in new versions). Open the tab ScanYou'll see a list of available networks within range. Select the desired network and click the button. ConnectThe device will automatically insert the access point (AP) MAC address and SSID into the interface settings.
Next, you need to configure security. Go to the tab Security ProfilesCreate a new profile or edit an existing one. defaultIn the field Mode select dynamic keys, and in Authentication Types please indicate wpa2 psk (or wpa3, if supported by the provider). In the field WPA2 Pre-Shared Key Enter the Wi-Fi network password.
/interface wireless security-profiles
set [ find default=yes ] authentication-types=wpa2-psk mode=dynamic-keys wpa2-pre-shared-key="YOUR_PASSWORD"
After applying the settings, make sure that the connection status has changed to running And connected to AP. Now yours MikroTik receives an IP address from the main network. To share the internet connection further, configure NAT and a DHCP client on the WAN port (which is now the WLAN port).
Bridge Organization: Creating a Unified Network
If your goal is to make sure that devices connected to the second router can see the devices on the first one (for example, to access network storage), you need to configure BridgeIn this mode, the wireless interface and LAN ports are combined into one virtual switch.
Create a new bridge in the menu Bridge. Add a wireless interface to it (wlan1) and Ethernet ports (ether2-ether5). Important: The port through which the computer is connected for configuration must also be bridged, otherwise you will lose connection after applying the settings.
β οΈ Important: When creating a bridge, the DHCP server on the second router must be disabled so that only the main router distributes addresses. Otherwise, an IP address conflict will occur and the network will crash.
To configure the IP address of the device itself MikroTik In bridge mode, create a virtual interface Bridge (if it hasn't already been created) and assign it a static IP address from the main network subnet, or leave it to obtain an address via DHCP. This will allow you to access its management interface in the future.
Also, check your firewall settings. In bridge mode, filters should allow traffic between the bridge interfaces. When creating a new bridge, the system usually prompts you to add the necessary rules; accept them.
Using two radio modules for retransmission
Dual-band router owners have a significant advantage. They can use one module (for example, 5 GHz) to receive the signal from the provider, and the second (2.4 GHz) to distribute the internet to clients. This eliminates the speed drop typical with single-band repeaters.
In this scenario, configure the interface wlan1 (5 GHz) in mode Station to connect to the internet source. Then create a bridge (bridge-local) and add LAN ports and a second interface to it wlan2 (2.4 GHz), configured in mode AP Bridge.
This configuration allows for a stable back-to-back communication channel at a high frequency, while users can easily connect at the familiar 2.4 GHz frequency. This is the most efficient way to set up a wireless backhaul without running cables.
Why is 5GHz better for backhaul?
The 5 GHz band offers greater throughput and less noise. Using it for backhaul communication between routers frees up the 2.4 GHz band for older smartphones and IoT devices, improving overall network stability.
Problem diagnostics and status table
Even with proper setup, connection issues may still occur. Use the built-in tools for quick diagnostics. MikroTik. Team /interface wireless monitor wlan1 will show the current connection status, signal strength (RSSI) and noise.
Pay attention to the meaning signal strengthThe optimal level is considered to be between -40 and -65 dBm. If the value is below -75 dBm, the connection will be unstable and the speed will drop sharply. In this case, an external antenna or repositioning the device will be necessary.
Below is a table of the main wireless interface statuses that will help you understand at what stage the connection failure occurs.
| Status | Description | Actions |
|---|---|---|
| disabled | The interface is disabled | Enable by checking the box in the Interfaces menu |
| searching | Network search | Check SSID and Frequency |
| associating | Attempting to connect | Check password and encryption type |
| authenticated | Authentication completed | Wait for IP assignment (DHCP) |
| running | The connection is active | The Internet should work |
If the status constantly changes between associating And authenticatedThe problem is almost always an incorrect password or mismatched security standards (e.g., WPA2 vs. WPA3). Make sure the same security profiles are selected on both devices.
Speed ββOptimization and Security
Once you've successfully connected, don't stop there. To improve security, change the default passwords for accessing the management interface. MikroTik and close ports not used for WAN. Disable services telnet, ftp And www, leaving only the protected one https And ssh.
To optimize the speed in the menu Wireless -> Data Rates You can disable older, slower standards (e.g., 1, 2, 5.5 Mbps) if there are no older devices on the network. This will reduce Ethereum overhead.
β οΈ Note: Interfaces and menu names may vary depending on the RouterOS version (v6, v7) and wireless package type (legacy, wave2, wifi-qcom). Always consult the official documentation for your specific model.
Check logs regularly (Log) for authentication or disassociation errors. This will help you quickly identify interference or unauthorized access attempts to your network.
Can MikroTik be used as a repeater for any network?
Technically yes, but there are some nuances. If your main network uses specific settings (MAC filtering, hidden SSID, corporate 802.1x authentication), configuration will require additional steps. For typical home networks (WPA2-Personal), there won't be any issues.
Why does my speed drop when connecting via Wi-Fi?
A wireless connection always has overhead. In repeater mode (single channel), the speed is cut at least in half due to the radio's half-duplex operation. Using two different frequencies (5 GHz input, 2.4 GHz output) minimizes this loss.
Do I need a cable between the routers to set up a bridge?
For initial setup, yes, a cable connection is more reliable. However, if you configure a static IP address on your computer in the same subnet as the MikroTik, you can try setting up the device while connected to the main network via Wi-Fi (Station mode), but this is more difficult for a beginner.
Which MikroTik model is best for a repeater?
For simple tasks, the models of the series are suitable hAP lite or cAPFor more serious tasks and long distances, it is better to choose models with an external antenna, for example, LHG or SXT, or dual-band routers of the series hAP ac or ax.