Are you trying to log in? RouterOS through WinBox, WebFig or SSH, but instead of the usual interface you see an annoying message: «Connection refused» or "Connection refused". Flashing indicators on the case MikroTik They look normal, the cable is connected, but access is blocked. Is the situation familiar? This error is one of the most common among administrators. MikroTik, and its causes range from trivial (“forgot my password”) to systemic (“file system crash after power outage”).
In this article we will look at all possible scenarios, at which MikroTik connection refuses, from basic checks to recovery through Netinstall. We will pay special attention hidden firewall settings that block access even with correct logins, and a rare bug with MAC addresseswhich appears after a firmware update. If you're not a networking expert, don't worry: each section contains step-by-step instructions with "for dummies" explanations.
1. Check the physical connection: cables, ports, indicators
Start with the simplest - physical level. The "connection refused" error may appear if MikroTik it just doesn’t “see” your device. Here's what to check:
- 🔌 Ethernet cable: Try a different patch cord (especially if you are using an unshielded
UTP Cat.5eat a distance of more than 50 meters). Broken wires or poor crimping are a common cause of intermittent connections. - 💡 Port LEDs: Front panel MikroTik The green/orange LED should be lit next to the port to which the cable is connected. If it blinks red or does not light up at all, the port is inactive.
- 🖥️ PC network card: Make sure that the adapter is enabled on your computer and is configured to receive IP via
DHCP(if MikroTik gives out addresses). Check inDevice Manager, is there an exclamation mark next to the network adapter?
If you are connecting via Wi-Fi (on models like hAP ac² or RB4011), make sure that:
- 📶 The network is visible in the list of available ones and is not hidden (
SSIDnot disabled in settingsWireless). - 🔑 The password was entered correctly (case is important!). On MikroTik the default password is often empty
Wi-Fi, but after the first login it needs to be installed.
If the port LED is blinking orange, this is a sign of a duplex conflict. Try manually setting the speed to 100 Mbps and Full Duplex in the PC network card settings.
2. Basic network settings: IP addresses, gateways, DHCP
The "connection refused" error often occurs due to network address mismatches. For example, if your PC is configured to 192.168.1.100/24, and MikroTik has an IP 192.168.88.1/24 (standard for most models), connection will not be possible. Here's how to check it:
Step 1. Find out the MikroTik IP address:
- If the router is new or has been reset, its IP is most likely
192.168.88.1. - If the IP has changed, try connecting via
MAC address(inWinBoxselect tabNeighbors- everything will be displayed there MikroTik on the local network).
Step 2: Set up your PC's network card:
- Open
Control Panel → Network Connections(Windows) orSystem Settings → Network(macOS/Linux). - Select Ethernet/Wi-Fi connection, go to
Properties → IPv4. - If MikroTik distributes IP over
DHCP, select "Obtain an IP address automatically." If not, enter manually:- IP:
192.168.88.2(if the router192.168.88.1) - Mask:
255.255.255.0 - Gateway:
192.168.88.1
- IP:
Make sure the cable is connected to Ethernet port 1-5 (not to SFP on RB4011 type models)
Check if the port indicator on MikroTik is lit
Configure the PC's IP address on the same subnet as the router
Disable Windows/Linux firewall during diagnostics
Try connecting via a different port or cable -->
If after these manipulations access is still blocked, the problem lies deeper - perhaps MikroTik blocked your MAC address or management service disabled (for example, WinBox or SSH). More on this in the next section.
3. Access blocking: firewall, services, MAC filtering
MikroTik may actively deny connection if:
- 🔥 Firewall (
Firewall) blocks incoming connections to ports8291(WinBox),22(SSH),80/443(WebFig). - 🚫 Management services disabled in
IP → Services. - 🔒 MAC address of your PC added to blacklist (
IP → Firewall → Address List).
How to check and fix:
Method 1: Reset the firewall settings (if you have access via the console):
/ip firewall filter print/ip firewall filter remove [find] # Removes all rules (be careful!)
/ip firewall nat print
/ip firewall nat remove [find] # Removes all NAT rules
Method 2: Enable services manually:
- Connect to MikroTik through
MAC address(tabNeighborsinWinBox). - Go to
IP → Services. - Make sure that you have enabled:
winbox(port8291)ssh(port22)www(port80) orwww-ssl(port443)
Available From should stand 0.0.0.0/0 (allow everyone) or your subnet (for example, 192.168.88.0/24).What to do if there is no access even through the MAC address?
If WinBox doesn't see MikroTik tab Neighbors, try:
1. Connect via Serial Console (need cable USB-to-RS232 and program PuTTY).
2. Use Netinstall for a complete reset (instructions in section 6).
3. Check if the Ethernet port is burnt out (try all ports in turn).
Method 3: Check MAC filtering:
Sometimes MikroTik blocks specific MAC addresses after multiple failed login attempts. To remove the lock:
/ip firewall address-list print
/ip firewall address-list remove [find where list="blacklist"] # Removes all blacklists
WinBox
WebFig (web interface)
SSH (terminal)
MAC Telnet (via Neighbors)
Another way-->
4. Password reset and access restoration
If you are sure that your network and firewall settings are ok, but MikroTik still refuses access, most likely the problem is incorrect login/password or disabled user. By default on new devices:
- Login:
admin - Password: empty (click
Enterwithout input)
If your password has been changed and lost, there are two ways to reset it:
Method 1. Reset via the Reset button (soft reset):
- Press and hold the button
Reseton the body MikroTik (usually near ports). - Wait until the indicator
USRwill start flashing (about 5 seconds). - Release the button - the router will reboot from saving the configuration, but the user's password
adminwill be reset.
Method 2. Hard Reset:
- Turn off the power MikroTik.
- Press and hold the button
Resetand, without releasing it, supply power. - Hold the button 20-30 seconds, while the indicator
USRwill not start flashing quickly. - Release the button - the device will be reset to factory settings (all configurations will be lost!).
A soft reset (5 seconds) saves the settings but resets the password. A hard reset (20+ seconds) erases EVERYTHING, including licenses and configurations.
If after reset MikroTik still won't let me in, maybe the problem is damaged file system (especially if there was a sudden power outage before). In this case, it will only help Netinstall - more about this in section 6.
5. IP address conflicts and ARP problems
Rarely, but aptly: the “connection refused” error can occur due to IP address conflict in the local network or failure in ARP table. For example, if another device on the network uses the same IP as MikroTik, or if ARP cache on your PC is outdated.
How to diagnose:
- Open command prompt (
Win + R → cmd) and do:arp -aCheck if the IP address is listed MikroTik and does it match the correct
MAC address(indicated on the device sticker). - If
MACinvalid, clear cache:arp -d * - Check if there is another device on the network with the same IP:
ping 192.168.88.1 -tIf the answers come, but WinBox does not connect - IP conflict confirmed.
Solution:
- 🔄 Change IP address MikroTik to another (for example,
192.168.89.1) throughSerial Console. - 📵 Disconnect all devices from the network except the PC and MikroTikto eliminate conflict.
- 🔧 In settings MikroTik check
IP → ARPand delete old entries:/ip arp remove [find]
If ping passes, but WinBox does not connect, try connecting via MAC Telnet: in WinBox select tab Connect, enter MAC address router and press Connect.
6. Recovery via Netinstall (as a last resort)
If none of the previous methods helped, most likely MikroTik has damaged firmware or file system crash. This may happen after:
- ⚡ Sudden power outage during configuration recording.
- 🔄 Unsuccessful update
RouterOS. - 🛠️ Incorrect editing of system files through
FTP.
To restore you will need:
- 💻 Windows computer (recommended Windows 10/11).
- 🔌 Network cable (straight, without crossover).
- 🔌 Power supply for MikroTik.
- 📥 Program Netinstall (download from the official website MikroTik).
- 📥 Firmware
RouterOSfor your model (file with extension.npk).
Step by step instructions:
- Disconnect all cables from MikroTik, except power and Ethernet (connect to the port
Ether1). - On your PC, disconnect all network connections except the one you are connected to. MikroTik.
- Configure your PC's IP address manually:
192.168.88.2/24. - Press and hold the button
Reseton MikroTik and serve food. Hold the button 15-20 seconds, while the indicatorUSRwill not start flashing. - Run Netinstall, select your model and download the firmware.
- Click
Net Booting→Install. The process will take 2-5 minutes.
After flashing MikroTik will return to factory settings. Attention: all licenses (for example, Level6) and the configurations will be lost!
What to do if Netinstall does not see MikroTik?
1. Check that the cable is connected to the port Ether1 (on some models only it works in mode Netinstall).
2. Disable Windows Firewall and Antivirus.
3. Try another PC or laptop (sometimes the problem is with the network card drivers).
4. If the indicator USR does not blink after holding Reset, the bootloader may be damaged - repair is required at a service center.
7. Specific errors after updating RouterOS
Update RouterOS may result in a “connection refused” error if:
- 🔄 Firmware incompatible with the device model (for example, trying to install
RouterOS v7on RB750, which only supportsv6). - 🔧 Settings reset
FirewallorServices. - 🔒 The authentication algorithm has changed (in
v7default may be requiredSSH keyinstead of a password).
How to fix:
Problem 1: Incompatible firmware:
If after the update MikroTik stopped responding, try rolling back to the previous version via Netinstall. Download old firmware from official archive and repeat the installation process.
Problem 2. Service settings have been reset:
In new versions RouterOS sometimes services go down WinBox and SSH default. Connect via Serial Console and do:
/ip service enable "winbox"/ip service enable "ssh"
/ip service set "ssh" port=22
Issue 3: Requiring an SSH key:
B RouterOS v7 key authentication may be enabled. To return password login:
/ip ssh set allow-none-crypto=yes
/ip ssh set strong-crypto=yes
| Symptom | Probable Cause | Solution |
|---|---|---|
Doesn't work after update WinBox, but there is ping |
Service disabled winbox in new firmware |
Enable via Serial Console or Netinstall |
SSH requires a key, although the password worked before |
B v7 security settings changed |
Execute the commands above or reset settings |
| The router does not respond to ping, the indicators light up chaotically | Firmware damaged during update | Recovery via Netinstall |
MAC Telnet works, but WinBox - no |
Firewall blocking a port 8291 |
Clear rules Firewall via console |
FAQ: Frequently asked questions about the “Connection refused” error
Is it possible to connect to MikroTik without WinBox?
Yes, there are several alternatives:
- 🌐
WebFig— web interface, available athttp://[router IP]. - 🖥️
SSH— terminal connection (port22). - 🔌
Serial Console- via cableUSB-to-RS232and program PuTTY. - 📡
MAC Telnet- inWinBoxselect tabNeighbors, click onMAC addressrouter and pressConnect.
If all methods fail, the only thing left is Netinstall.
Why does MikroTik still not start up after a reset?
Possible reasons:
- 🔌 You are done soft reset (5 seconds), but the configuration was saved. Try it full reset (20+ seconds).
- 🔒 Installed in the router MAC-bound license, and after reset it requires activation.
- 🔄 The firmware is damaged - required
Netinstall.
How do I know if MikroTik has blocked my IP?
Check the firewall logs:
/log print
Look for entries like:
firewall,info input: in:ether1 out:(none), src-mac 00:11:22:33:44:55, proto TCP (SYN), 192.168.88.100:51234->192.168.88.1:8291, len 40
If there are lines with action=drop, your IP is blocked. Remove the rule:
/ip firewall filter remove [find where action=drop]
Is it possible to restore the configuration after Netinstall?
No, Netinstall completely erases all settings, including:
- 📝 Interface configuration,
Firewall,NAT. - 🔑 Licenses (will have to be reactivated).
- 📡Settings
Wi-Fi,PPPoE,VPN.
We recommend save backups through System → Backup before any changes!
Why does MikroTik deny access only via Wi-Fi?
Probable reasons:
- 📶 Service disabled
wwworwinboxfor interfacewlan1. - 🔒 In settings
WirelessincludedAccess List(white listMAC addresses). - 🔄 IP address conflict between wired and wireless networks.
Solution: connect via cable and check:
/interface wireless access-list print
/ip service print