Skip to main content

Simple Static Route Mikrotik

Hai .....
Share  tutorial Static Route , 1 ISP menggunakan 2 router mikrotik untuk 2 network segment IP berbeda

Router A
Ether1 dari  terhubung dengan Gateway dari ISP , 
Ether 2 terhubung dengan Switch hub 192.168.1.0/24 yang berfungsi menghubungkan client di LAN1
Ether 3 terhubung dengan Ether 1 di router B sebagai gateway untuk klien terhubung dari LAN2
Router B
Ether 2 terhubung dengan Switch Hub 192.168.2.0/24 yang berfungsi menghubungkan client di LAN2

Konfigurasi
Asumsi  bahwa ISP memberikan alamat 139.193.111.111 dan gateway 139.193.111.1 
Router A:


/ip address add address=139.193.111.111/24 interface=ether1-Gateway
add address=192.168.1.202/24 interface=ether2-LAN
add address=172.16.1.1/30 interface=ether3-Routing

/ip route add dst-address=0.0.0.0/0 gateway=139.193.111.1 add dst-address=192.168.2.0/24 gateway=172.16.1.2



Router B :

/ip address add address=172.16.1.2/30 interface=ether1-Gateway add address=192.168.2.1/24 interface=ether2-LAN 

/ip route add dst-address=0.0.0.0/0 gateway=172.16.1.1




 Test Ping dari Router B ke IP Router A : 

 

Ping Client LAN1


Ping google.com dari Router B


Semoga Membantu 



Taufan M

Comments

Popular posts from this blog

[Arsip] Uninstal Zimbra Mail Server

UnInstalling Zimbra on Linux Uninstall Directions for Linux/All Other Operating Systems As root: 1) Run the commands: su – zimbra zmcontrol stop exit (you should be root after you run exit) 2a) Run the command:  ps -ef | grep -i zimbra If you see running processes 2b) Kill any lingering processes:  kill -9 <pid> 3a) Run the command:  df If you see "amavisd" 3b) run command:  umount /opt/zimbra/amavisd<-new-blah>/tmp 4)  cd /<tmp_tar_install_dir>/zcs/ 5) Run the command:  ./install.sh -u 6) Run the following commands to complete the unistall: rm -rf /opt/zimbra rm -rf /var/log/*zimbra* rm -rf /tmp/*zimbra* rm -rf /tmp/hsperfdata* rm -rf /tmp/install.* rm -rf /tmp/*swatch* rm -rf /tmp/log* Ensure that you removed ALL the files owned by the user zimbra AND that contain the name "zimbra" in: /var/log/ /tmp/ 7) Run the following commands to delete the users and groups: userdel zimbra userdel postfix groupdel zimbra groupdel postfix 8) Remove th...

Membuat fungsi “terbilang” Excel menggunakan macro VBA

Jika Anda ingin menerjemahkan Angka menjadi Kata-kata , contohnya saja dalam pembuatan Form Kwitansi suatu Transaksi , anda dapat membuatnya dengan menggunakan aplikasi Microsoft Excel dan Macro Visual Basic Application ( VBA ) .saya menggunakan Excel 2007 Untuk membuatnya silahkan ikuti langkah-langkah dibawah ini :  buka Microsoft Excel , lalu tekan alt+F11  Setelah Muncul Microsoft Visual Basic , lalu pilih Insert > module Isikan code Seperti diatas  silahkan anda download source code nya disini !! Save Book ( ctrl+S)   Save As type : pilih Excel Macro - Enable Workbook  (*.xlsm) lalu klik Save  pilih File > Close and return to microsoft excel , macro sudah dibuat , sekarang kita tinggal test macro tersebut Tempatkan cell A2 , pilih Formulas > Insert Function lalu pilih Category User Defined Terlihat Function terbilang yang sudah dibuat tadi di VBA , klik Ok Akan Tampil Form Seperti diatas ,  Nilai_angka  arahkan ke Cell A1 ( ters...