AI Insights
Generate a summary and suggested tags for this post.
Kadang MikroTik yang tadinya online tiba-tiba client LAN tidak bisa internet. Bisa karena kabel, IP, DNS, NAT, atau gateway. Artikel ini memandu kamu diagnosa step-by-step supaya tidak asal reboot.

Urutan Cek yang Benar
Mulai dari lapisan paling bawah ke atas — fisik → IP → routing → DNS → NAT. Kalau melompat, kamu bisa keliru diagnosa.
1. Cek Kabel & Interface
- Lampu port ether menyala?
- Di Interfaces, status
R(running)? - Kabel tidak putus/kendor?
/interface print
2. Cek IP Address
Pastikan interface WAN & LAN punya IP:
/ip address print
Jika WAN tidak dapat IP → cek DHCP Client / PPPoE. Kalau IP muncul 169.254.x.x = DHCP gagal.
3. Cek Gateway (Default Route)
/ip route print
Cari route 0.0.0.0/0 dengan flag A S (active static) atau A D (dynamic). Kalau tidak ada → set gateway manual atau enable "Add Default Route" di DHCP/PPPoE.
Test Konektivitas Bertahap

Test bertahap dari MikroTik sendiri:
/ping 192.168.1.1 # gateway lokal
/ping 8.8.8.8 # internet raw IP
/ping google.com # test DNS
/tool traceroute 8.8.8.8| Hasil | Diagnosa |
|---|---|
| Semua fail | Kabel/interface bermasalah |
| Ping gateway OK, 8.8.8.8 fail | Default route salah/tidak ada |
| Ping 8.8.8.8 OK, domain fail | DNS bermasalah |
| Ping OK dari MikroTik, client fail | NAT belum di-set |
4. Cek DNS
/ip dns print
:put [:resolve "google.com"]Kalau resolve error → set DNS 1.1.1.1 atau 8.8.8.8, dan aktifkan Allow Remote Requests.
5. Cek NAT Masquerade
/ip firewall nat print
Wajib ada rule: chain=srcnat out-interface=<WAN> action=masquerade. Tanpa ini, MikroTik online tapi client tidak.
Common Cases

| Gejala | Penyebab Umum | Solusi Cepat |
|---|---|---|
| Semua LAN no internet | NAT/gateway hilang | Cek route + masquerade |
| Cuma satu client fail | IP conflict / firewall | Cek DHCP lease, drop rule |
| Kadang online kadang tidak | Cable loose / lease pendek | Ganti kabel, perpanjang lease |
| Download lemot | Bandwidth full / queue salah | Cek Queue Simple |
| DNS lambat | ISP DNS lag | Ganti ke 1.1.1.1 |
Cek Log MikroTik
Log adalah sahabat troubleshooter:
/log print where topics~"error"
/log print where topics~"pppoe"
/log print where topics~"dhcp"Kesimpulan
Troubleshooting internet MikroTik itu berurutan: fisik → IP → route → DNS → NAT. Jangan asal reboot. Dengan urutan ini, 90% masalah bisa ketemu dalam 5 menit. Sisanya biasanya di sisi ISP atau modem — bukan MikroTik.
