Troubleshooting Internet Connectivity on MikroTik
"The Internet is down" is the most common complaint in any network. Before calling your ISP, work through this structured diagnostic process to determine if the problem is in your router, your ISP connection, or further upstream.
Step 1: Verify the WAN Interface Has an IP
/ip address printIf your WAN interface (ether1, pppoe-out1) has no IP address, the ISP link is down or misconfigured.
For DHCP WAN:
/ip dhcp-client printFor PPPoE:
/interface pppoe-client print statusStep 2: Check the Default Route
/ip route print where dst-address=0.0.0.0/0Without an active (A) default route, the router has no path to the Internet. Check if the WAN interface is up.
Step 3: Ping the ISP Gateway
/ip route print # note the gateway IP
/ping 203.0.113.1 # ping the gatewayIf the gateway doesn't respond, the problem is on the ISP link — modem, fiber ONT, or the ISP's router. Try power-cycling the modem and waiting 2 minutes.
Step 4: Ping a Public IP (Bypassing DNS)
/ping 8.8.8.8If the ISP gateway responds but 8.8.8.8 doesn't, your ISP may be filtering or routing is broken upstream. Contact your ISP.
Step 5: Test DNS Resolution
/resolve google.comIf step 4 (ping by IP) works but resolve fails, DNS is broken. Check:
/ip dns printEnsure servers has valid IPs. Try manually resolving with a different server:
/resolve google.com server=8.8.8.8Step 6: Check Client Connectivity Separately
If the router itself has Internet, but clients don't:
# From a client, can it reach the router?
/ping 192.168.10.1 # from client
# Can clients reach the router's LAN IP?
/ping 192.168.10.50 # from router to a clientIf clients can reach the router but not Internet: check NAT masquerade and the firewall forward chain.
/ip firewall nat print
/ip firewall filter printStep 7: Check for Firewall Blocking
The firewall might block traffic from clients going out:
/ip firewall filter print where chain=forwardMissing "established/related" accept rule is a common issue after firewall edits.
Common Root Causes Summary
| Symptom | Likely Cause |
|---|---|
| WAN has no IP | ISP link down, modem/ONT issue |
| No default route | WAN interface down |
| Gateway unreachable | Physical WAN issue |
| IP ping works, DNS fails | DNS server misconfigured |
| Router has internet, clients don't | NAT or forward chain firewall issue |
| Intermittent drops | MTU issue (PPPoE), ISP line quality |
Work top-down: WAN physical → WAN IP → routing → NAT → firewall → DNS. Most issues are found in the first three steps.
