Seri lengkap panduan MikroTik dari nol hingga mahir. 8 volume, 40+ bab, mencakup Fundamental, Basic Config, Routing, Firewall, Hotspot, QoS, Wireless, hingga Advanced (VLAN, VPN, Failover, Load Balancing). Setiap bab dilengkapi konfigurasi lengkap via CLI dan WinBox.
VOLUMES8
BAB40+
BACA10+ JAM
CONFIGCLI + WINBOX
ABDUR ROZAK, S.Kom.
Web Developer & Network Educator - abdurrozak.my.id
ABDURROZAK.MY.ID // DAFTAR VOLUME
8 VOLUME SERI LENGKAP
Pilih volume untuk mulai belajar
VOLUME 1
MIKROTIK FUNDAMENTAL
Memahami dasar RouterOS & networking. Arsitektur, CLI basics, teori jaringan.
5 BABFONDASI
VOLUME 2
BASIC CONFIGURATION
Konfigurasi router dari nol. Interface, IP, DHCP, DNS, NAT.
5 BABPRAKTIS
VOLUME 3
ROUTING
Memahami routing & internet gateway. Static, OSPF, default route.
5 BABADVANCED
VOLUME 4
FIREWALL
Keamanan jaringan dengan firewall. Filter, mangle, address list.
5 BABSECURITY
VOLUME 5
HOTSPOT
Membangun sistem hotspot. Captive portal, user manager, voucher.
Membangun jaringan wireless. AP, station, WDS, CAPsMAN.
5 BABWIRELESS
VOLUME 8
ADVANCED
VLAN, VPN, Failover, Load Balancing. Topik tingkat lanjut.
5 BABEXPERT
VOLUME 1 / 8
MIKROTIK FUNDAMENTAL
Memahami dasar RouterOS & networking. Volume ini membangun fondasi teori dan konsep yang penting sebelum masuk ke konfigurasi praktis.
BAB5LEVELFondasiWAKTU60 MENIT
1.1
VOLUME 1 FUNDAMENTAL
PENGENALAN ROUTEROS
Apa Itu RouterOS?
RouterOS adalah sistem operasi jaringan berbasis Linux kernel yang dikembangkan oleh MikroTik (Latvia, 1996). RouterOS mengubah hardware standar menjadi router canggih dengan fitur enterprise: routing, firewall, VPN, hotspot, QoS, wireless, dan banyak lagi - semua dalam satu platform.
# Lihat menu utama (tekan ?)[admin@MikroTik] > ?# Navigasi ke sub-menu/ip/ip address# Kembali ke parent..# Kembali ke root/# Auto-complete dengan TAB/ip ad [TAB] -> /ip address
# Lihat help command/ip address add?
KOMPETENSI BAB 1.3
Memahami sintaks CLI RouterOS
Mampu navigasi menu CLI
Menggunakan auto-complete TAB
1.4
VOLUME 1 FUNDAMENTAL
AKSES ROUTER
4 Metode Login
WINBOX
GUI resmi, paling mudah. Download di mikrotik.com
WEBFIG
Via browser di http://192.168.88.1
SSH
Via terminal/PuTTY, port 22
SERIAL
Kabel serial/USB-TTL untuk recovery
VIA CLI
VIA WINBOX
SSH LOGIN
# Via terminal Linux/Mac/Windowsssh admin@192.168.88.1
# Password: (kosong untuk default)# Ganti password admin/user set admin password="P@ssw0rdKuat!"# Ganti identity router/system identity set name="ROUTER-KANTOR"# Set zona waktu/system clock set time-zone-name="Asia/Jakarta"
1
LOGIN VIA WINBOX
1. Jalankan WinBox.exe, klik tab Neighbors.
2. Pilih router yang muncul, isi Login: admin, Password: (kosong).
3. Klik Connect.
4. Menu System -> Identity: ganti nama router.
5. Menu System -> Users: double-click admin, ganti password.
KOMPETENSI BAB 1.4
Mampu login via WinBox, WebFig, SSH
Mampu ganti password admin
Mampu set identity router
1.5
VOLUME 1 FUNDAMENTAL
FILE SYSTEM & BACKUP
Jenis File di RouterOS
TIPE
EKSTENSI
FUNGSI
Backup binary
.backup
Full config, encrypted
Export script
.rsc
Text-based, portable
Firmware
.npk
Package update
Certificate
.crt/.key
SSL/TLS
VIA CLI
VIA WINBOX
CLI - BACKUP
# Backup binary (encrypted)/system backup save name="backup-2026" password="BackupPass!"# Export ke script/export file="config-2026"# Lihat file/file print# Restore/system backup load name="backup-2026"
1
MENU FILES
1. Menu Files -> klik Backup.
2. Isi nama file, password (opsional), klik Backup.
3. Drag & drop file ke desktop untuk download.
4. Untuk restore: upload file, klik Restore.
KOMPETENSI BAB 1.5
Membedakan jenis file backup
Mampu backup dan restore konfigurasi
Mampu export konfigurasi ke script
VOLUME 2 / 8
BASIC CONFIGURATION
Konfigurasi router dari nol. Interface, IP address, DHCP, DNS, dan NAT - fondasi konfigurasi praktis.
BAB5LEVELPraktisWAKTU75 MENIT
2.1
VOLUME 2 BASIC CONFIG
INTERFACE & BRIDGE
Konsep Interface
Interface = port/koneksi di router. Setiap interface punya nama (ether1-5, wlan1, dll). Bridge menggabungkan beberapa interface menjadi satu broadcast domain (seperti switch virtual).
VIA CLI
VIA WINBOX
CLI - INTERFACE & BRIDGE
# Lihat interface/interface print# Rename interface/interface ethernet set ether1 name=WAN comment="Ke ISP"/interface ethernet set ether2 name=LAN comment="Jaringan lokal"# Buat bridge/interface bridge add name=bridge-lan# Masukkan interface ke bridge/interface bridge port add bridge=bridge-lan interface=LAN# Verifikasi/interface bridge print/interface bridge ports print
1
MENU INTERFACES & BRIDGE
1. Menu Interfaces -> double-click ether1 -> Name = WAN.
2. Ulangi untuk ether2: Name = LAN.
3. Menu Bridge -> + -> Name = bridge-lan.
4. Tab Ports -> + -> Interface = LAN -> OK.
KOMPETENSI BAB 2.1
Mampu rename interface
Mampu buat bridge dan masukkan interface
Mengerti peran bridge sebagai virtual switch
2.2
VOLUME 2 BASIC CONFIG
IP ADDRESSING & SUBNETTING
Format IPv4 & CIDR
CIDR
SUBNET MASK
USABLE HOST
USE CASE
/30
255.255.255.252
2
Point-to-point
/24
255.255.255.0
254
LAN standar
/20
255.255.240.0
4094
Medium network
/16
255.255.0.0
65534
Large network
VIA CLI
VIA WINBOX
CLI - IP ADDRESS
# Lihat IP/ip address print# Tambah IP di bridge/ip address add address=192.168.1.1/24 interface=bridge-lan network=192.168.1.0# Ubah IP/ip address set [find interface=bridge-lan] address=192.168.100.1/24# Hapus IP/ip address remove [find interface=bridge-lan]
OSPF adalah dynamic routing protocol yang menggunakan algoritma Dijkstra untuk mencari jalur terpendek. Cocok untuk jaringan multi-router dalam satu area.
3. Untuk logging: Action = log, Log Prefix = DROP-INPUT:.
KOMPETENSI BAB 4.5
Mampu buat Layer 7 protocol
Mampu block aplikasi berdasarkan L7
Mampu setup firewall logging
VOLUME 5 / 8
HOTSPOT
Membangun sistem hotspot. Captive portal, user manager, voucher system, dan implementasi hotspot untuk bisnis WiFi.
BAB5LEVELBusinessWAKTU75 MENIT
5.1
VOLUME 5 HOTSPOT
HOTSPOT SETUP
Apa Itu Hotspot?
Hotspot = captive portal yang memaksa user login sebelum bisa akses internet. Cocok untuk kafe, hotel, kampus, RT/RW Net.
VIA CLI
VIA WINBOX
CLI - HOTSPOT SETUP
# Setup Hotspot (wizard)/ip hotspot setup# Wizard akan tanya:# Hotspot interface: bridge-lan# IP address: 192.168.88.1/24# DNS name: (kosongkan)# SMTP server: (kosongkan)# Hotspot IP pool: pool-hotspot# User: admin# Password: (buat password admin hotspot)# Cek hotspot/ip hotspot print/ip hotspot user print/ip hotspot active print
1
MENU IP -> HOTSPOT -> HOTSPOT SETUP
1. Menu IP -> Hotspot -> Hotspot Setup.
2. Pilih interface bridge-lan -> Next.
3. Isi IP, DNS name (kosongkan), SMTP (kosongkan), pool, admin user & password.
4. Klik Finish.
KOMPETENSI BAB 5.1
Memahami konsep hotspot captive portal
Mampu setup hotspot via wizard
Mampu cek status hotspot
5.2
VOLUME 5 HOTSPOT
USER & VOUCHER
Manajemen User Hotspot
VIA CLI
VIA WINBOX
CLI - USER HOTSPOT
# Buat user voucher/ip hotspot user add name="voucher1jam" password="vcr1jam" profile=default limit-uptime=1h comment="Voucher 1 jam"/ip hotspot user add name="voucher1hari" password="vcr1hari" profile=default limit-uptime=1d# Buat profile dengan bandwidth limit/ip hotspot user profile add name="basic" rate-limit="2M/5M" shared-users=1/ip hotspot user profile add name="premium" rate-limit="10M/20M" shared-users=3# Lihat user aktif/ip hotspot active print# Logout user/ip hotspot active remove [find user="voucher1jam"]
3. Untuk profile: tab User Profiles -> +: Name = basic, Rate Limit = 2M/5M, Shared Users = 1.
KOMPETENSI BAB 5.2
Mampu buat user voucher
Mampu buat user profile dengan bandwidth limit
Mampu manage user aktif
5.3
VOLUME 5 HOTSPOT
USER MANAGER (UM)
User Manager Package
User Manager adalah package terpisah untuk manajemen user hotspot yang lebih advanced. Bisa generate voucher massal, cetak, dan kelola via web interface.
VIA CLI
VIA WINBOX
CLI - USER MANAGER
# Aktifkan package user-manager/system package enable user-manager
/system reboot# Setup User Manager/tool user-manager database set compat="1.3"# Buat router/tool user-manager router add name="router1" address=192.168.88.1 shared-secret="rahasia"# Buat profile/tool user-manager profile add name="1jam" validity="3h" session-time="1h"/tool user-manager profile add name="sehari" validity="24h" session-time="unlimited"# Generate user voucher/tool user-manager user add username="v001" password="v001" profile="1jam"# Generate massal/tool user-manager user create-and-activate-profile="v002-v010" profile="1jam"# Akses web User Manager:# http://192.168.88.1/userman
1
MENU SYSTEM -> PACKAGES
1. Menu System -> Packages: cari user-manager, klik Enable.
2. Reboot router.
3. Menu User Manager (muncul di sidebar) -> Setup router, profiles, users.
4. Akses web di http://192.168.88.1/userman.
KOMPETENSI BAB 5.3
Mampu aktifkan package User Manager
Mampu setup router dan profile di UM
Mampu generate voucher massal
5.4
VOLUME 5 HOTSPOT
WALLED GARDEN & LOGIN PAGE
Walled Garden
Walled Garden = situs yang bisa diakses TANPA login hotspot. Berguna untuk izinkan WhatsApp, situs penting, dll.
# Lihat user aktif/ip hotspot active print# Lihat detail user/ip hotspot active print detail# Lihat statistik/ip hotspot print stats# Logout user paksa/ip hotspot active remove [find user="voucher1jam"]
# Lihat history login/ip hotspot cookie print# Cek user yang sudah expired/ip hotspot user print where limit-uptime>0
1
MONITORING VIA WINBOX
1. Menu IP -> Hotspot -> tab Active: lihat user yang sedang online.
2. Menu IP -> Hotspot -> tab Users: lihat semua user.
3. Klik user -> Logout untuk logout paksa.
KOMPETENSI BAB 5.5
Mampu monitoring user hotspot aktif
Mampu logout user paksa
Mampu cek statistik hotspot
VOLUME 6 / 8
QOS
Manajemen bandwidth dengan Simple Queue & Queue Tree. PCQ, burst, priority, dan implementasi QoS production-ready.
BAB5LEVELPerformanceWAKTU75 MENIT
6.1
VOLUME 6 QOS
SIMPLE QUEUE DASAR
Apa Itu Simple Queue?
Simple Queue = cara termudah untuk limit bandwidth per-IP/subnet. Cocok untuk kebutuhan dasar.
3. Untuk MAC filter: tab Access List -> +: MAC Address = AA:BB:CC:DD:EE:01, Authentication = ✓, Forwarding = ✓.
4. Tab Wireless: Default Authentication = NO (hanya MAC di list yang bisa connect).
KOMPETENSI BAB 7.2
Membedakan WPA, WPA2, WPA3
Mampu konfigurasi security profile
Mampu setup MAC filter access list
7.3
VOLUME 7 WIRELESS
STATION & WDS
Mode Station & WDS
Station = mode client, connect ke AP lain. WDS (Wireless Distribution System) = menghubungkan beberapa AP secara wireless.
VIA CLI
VIA WINBOX
CLI - STATION & WDS
# Mode Station (client ke AP lain)/interface wireless set wlan1 \
mode=station-bridge \
ssid="AP-UTAMA" \
scan-list=2437 \
security-profile=wifi-secure# Mode WDS AP (AP dengan WDS)/interface wireless set wlan1 \
mode=wds-ap-bridge \
wds-default-bridge=bridge-lan \
default-tunnel-mode=802.11# Scan AP sekitar/interface wireless scan duration=10s
1
MODE STATION & WDS
1. Menu Interfaces -> wlan1.
2. Tab Wireless: Mode = station bridge (untuk client) atau wds ap bridge (untuk AP dengan WDS).
3. Untuk scan: tab Wireless, klik Scan.
KOMPETENSI BAB 7.3
Memahami mode station dan WDS
Mampu konfigurasi station bridge
Mampu scan AP sekitar
7.4
VOLUME 7 WIRELESS
CAPsMAN MULTI-AP
CAPsMAN - Centralized AP Management
CAPsMAN = fitur untuk mengelola banyak AP dari satu router pusat. Semua AP (CAP) dikonfigurasi dari controller (CAPsMAN).
VIA CLI
VIA WINBOX
CLI - CAPsMAN
# Di Controller (CAPsMAN)# 1. Buat configuration/caps-man configuration add name=cfg-wifi ssid="KANTOR-WIFI" security-passphrase="P@ssw0rd!" security.authentication-types=wpa2-psk security.encryption=aes-ccm datapath.bridge=bridge-lan# 2. Buat provisioning/caps-man provisioning add action=create-enabled master-configuration=cfg-wifi# 3. Buat interface/caps-man interface add configuration=cfg-wifi name=cap-wifi1# 4. Lihat CAP yang terhubung/caps-man registration-table print# Di CAP (Access Point)# Set mode ke CAP/caps-man manager set enabled=yes discovery-interface=bridge-lan# CAP akan otomatis dapat konfigurasi dari controller
1
MENU CAPsMAN
Di Controller:
1. Menu CAPsMAN -> Configuration -> +: Name = cfg-wifi, SSID = KANTOR-WIFI, Security = WPA2-PSK.
1. Menu IP -> Firewall -> tab Mangle -> +: Chain = prerouting, In. Interface = LAN, tab Extra: PCC Classifier = both-addresses:2/0, Action = mark-connection, New Connection Mark = conn-WAN1.
2. Tambah rule lagi: PCC Classifier = both-addresses:2/1, New Connection Mark = conn-WAN2.
3. Tambah 2 rule untuk mark-routing berdasarkan connection-mark.
4. Menu IP -> Routes -> +: buat route per routing-table.
KOMPETENSI BAB 8.5
Memahami konsep load balancing PCC
Mampu konfigurasi PCC mangle
Mampu setup routing dan NAT per ISP
SERI LENGKAP SELESAI
SELAMAT!
Kamu telah menyelesaikan 8 volume seri MikroTik Mastery. Dari fundamental hingga advanced, dari basic config hingga VLAN/VPN/Failover/Load Balancing. Kamu sekarang memiliki kompetensi lengkap untuk menjadi MikroTik expert.