RT RW Net Solution

Solusi Profesional MikroTik, PPPoE & RT RW Net

Cara Setting PPPoE Server MikroTik Lengkap + Script Siap Pakai

Cara Setting PPPoE Server MikroTik Lengkap + Script Siap Pakai

 


PPPoE Server adalah metode paling profesional dalam mengelola pelanggan RT RW Net. Dengan sistem ini, setiap user memiliki username dan password sendiri serta pembagian bandwidth yang terkontrol.

Artikel ini akan membahas konfigurasi lengkap PPPoE Server di MikroTik beserta script yang bisa langsung digunakan.


1. Kenapa Harus Menggunakan PPPoE?

Keunggulan PPPoE:

  • User login dengan username & password

  • Mudah monitoring

  • Bisa batasi bandwidth per user

  • Bisa auto disconnect

  • Lebih aman dari pencurian bandwidth


2. Topologi Dasar

Internet ISP

ether1 MikroTik (WAN)

ether2 MikroTik (LAN/PPPoE)

Switch / Access Point

Client


3. Setting IP Address

Masuk ke Terminal MikroTik lalu ketik:

/ip address
add address=192.168.10.1/24 interface=ether2

Penjelasan:
192.168.10.1 adalah gateway untuk client PPPoE.


4. Membuat IP Pool

/ip pool
add name=pppoe_pool ranges=192.168.10.2-192.168.10.254

IP ini akan diberikan otomatis ke client.


5. Membuat Profile PPPoE

/ppp profile
add name=paket1 local-address=192.168.10.1 remote-address=pppoe_pool rate-limit=5M/5M

rate-limit=5M/5M artinya:
Download 5 Mbps
Upload 5 Mbps


6. Membuat PPPoE Server

/interface pppoe-server server
add interface=ether2 service-name=pppoe1 default-profile=paket1 disabled=no

7. Membuat User PPPoE

/ppp secret
add name=user1 password=123 profile=paket1 service=pppoe

Sekarang client bisa login menggunakan:
Username: user1
Password: 123


8. Script Tambahan Monitoring User Aktif

Untuk melihat user aktif:

/ppp active print

Untuk memutus user tertentu:

/ppp active remove [find name="user1"]

9. Tips Profesional

  • Gunakan Bridge jika banyak port LAN

  • Pisahkan WAN & LAN

  • Gunakan firewall basic

  • Backup konfigurasi secara berkala


10. Download Script Lengkap

(Siapkan nanti file .rsc dan upload ke Google Drive Anda, lalu taruh link di sini)


Video Tutorial Lengkap

Tonton di channel kami:
https://www.youtube.com/@gudangtutorial85