Skip to main content

Posts

Showing posts with the label Routing

Cara Membuat Static Route dengan mikrotik lebih dari 2

Langkah.. Penjelasan  DAC (Dynamic Active Connected) --> otomatis ketika kita menambahkan ip address AS (Active Static) -->  Konfigurasi Static Router router 1: dst-addr= 0.0.0.0/0 gw= 10.10.0.1 --> menuju ke internet  dst-addr=10.10.2.0/24 gw=10.10.1.2 --> menuju roter 3  dst-addr=10.10.3.0/24 gw 10.10.1.2 --> menuju router 4 router 2: dst-addr=0.0.0.0/24 gw=10.10.1.1--> menuju ke internet dst-addr=10.10.3.0/24 gw 10.10.2.2 --> menuju router 4 router 3: dst-addr=0.0.0.0/24 gw=10.10.2.1 --> menuju internet router 4: dst-addr=0.0.0.0/24 gw=10.10.3.1 Konsepnya sama dengan Simple Static Router yang telah di jelaskan sebelumnya cuma kita harus mengenalkan ip router yang ada di bawah router paling atas dengan gateway yang menuju router satu tingkat dibawahnya

Routing Static Mikrotik

Lets make a simple routing setup illustrated in image below Ether1 of Router1 is connected to ISP and will be the gateway of our networks. Router2 is connected to ether2 of Router1 and will act as a gateway for clients connected to it from LAN2. Router1 also connects one client to ether3. Our goal is to create setup so that clients from LAN1 can reach clients from LAN2 and all of them can connect to internet. Configuration Lets consider that ISP gave us an address 10.1.1.2/30 and gateway is 10.1.1.1 Router1:  /ip address add address=10.1.1.2 interface=ether1 add address=172.16.1.1/30 interface=ether2 add address=192.168.1.1/24 interface=ether3 /ip route add gateway=10.1.1.1 add dst-address=192.168.2.0/24 gateway=172.16.1.2 Router2:  /ip address add address=172.16.1.2/30 interface=ether1 add address=192.168.2.1/24 interface=ether2 /ip route add gateway=172.16.1.1 If you look at configuration then you will see that on Router1 we added route to desti...