AI Insights
Generate a summary and suggested tags for this post.
IP Static adalah konfigurasi IP address yang di-input manual dan tidak berubah-ubah. Di MikroTik, ini pola paling umum untuk interface LAN, koneksi ke server, atau ISP yang kasih IP publik statis.
Artikel ini membahas cara setting IP Static di MikroTik lewat Winbox dari nol.

Kapan Pakai IP Static?
| Skenario | Cocok untuk Static? |
|---|---|
| Interface LAN MikroTik | ✅ Wajib |
| Server (web, database) | ✅ Ya |
| ISP leased line | ✅ Ya |
| Access Point management | ✅ Ya |
| Laptop biasa | ❌ Cukup DHCP |
| Modem consumer | ❌ Pakai DHCP Client |
Memahami Notasi CIDR
Sebelum input IP, kamu harus paham notasi /24 (CIDR):
/24= 255.255.255.0 (254 host per subnet)/25= 255.255.255.128 (126 host)/16= 255.255.0.0 (65k host)
Contoh: 192.168.1.1/24 artinya IP 192.168.1.1 dengan subnet 255.255.255.0.
Langkah Setting IP Static

1. Buka Winbox → IP → Addresses
Klik + (add).
2. Isi Konfigurasi
- Address:
192.168.1.1/24(IP + prefix) - Network: (biarkan auto-fill)
- Interface:
ether2(port yang mau di-set)
Klik Apply → OK.
3. Verifikasi
Cek daftar IP:
/ip address print
Kalau muncul di list dengan flag (no flags) — artinya sudah aktif.
Contoh Topology dengan IP Static

| Perangkat | IP | Interface MikroTik |
|---|---|---|
| MikroTik (gateway) | 192.168.1.1 | ether2 |
| Laptop kantor | 192.168.1.10 | ether2 (via switch) |
| PC admin | 192.168.1.11 | ether2 (via switch) |
| Server file | 192.168.1.20 | ether2 (via switch) |
Setting IP Static di Client (Windows)
Supaya laptop bisa terhubung ke MikroTik:
- Control Panel → Network → Change adapter settings
- Klik kanan adapter → Properties → IPv4
- Pilih Use the following IP address:
- IP:
192.168.1.10 - Subnet:
255.255.255.0 - Gateway:
192.168.1.1 - DNS:
8.8.8.8,1.1.1.1
- IP:
Common Mistake
| Kesalahan | Akibat | Solusi |
|---|---|---|
| Lupa prefix /24 | IP dianggap /32 (host only) | Selalu tulis prefix |
| Salah subnet mask | Client tidak bisa ping | Samakan subnet |
| IP conflict | Perangkat drop koneksi | Pastikan IP unik |
| Gateway beda subnet | No internet | Gateway harus 1 subnet |
Kesimpulan
Setting IP Static di MikroTik intinya cuma satu perintah di menu IP → Addresses. Yang penting kamu paham konsep subnet dan prefix (CIDR) supaya tidak salah alokasi IP.
Lanjut ke artikel setting DNS, NAT Masquerade, dan Gateway untuk menyempurnakan konfigurasi router.
