Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Load Balance Mikrotik versi 2.9.

27
Sesuaikan IP masing-masing interface menurut network kita. Note : 10.11.90.1 = IP Local 192.168.1.1 = IP Modem Speedy 1 192.168.2.1 = IP Modem Speedy 2 By JoySolutions.

/ ip address add address=10.11.90.1/24 network=10.11.90.0 broadcast=10.11.90.255 \ interface=local comment="" disabled=no add address=192.168.1.254/24 network=192.168.1.0 broadcast=192.168.1.255 \ interface="Internet" comment="" disabled=no add address=192.168.2.254/24 network=192.168.2.0 broadcast=192.168.2.255 \ interface="Speedy" comment="" disabled=no / ip firewall mangle add chain=prerouting in-interface=local connection-state=new nth=1,1,0 \ action=mark-connection new-connection-mark=santaria1 passthrough=yes \ comment="Load Balancing Client" disabled=no add chain=prerouting in-interface=local connection-mark=santaria1 \ action=mark-routing new-routing-mark=santaria1 passthrough=no comment="" \ disabled=no add chain=prerouting in-interface=local connection-state=new nth=1,1,1 \ action=mark-connection new-connection-mark=santaria2 passthrough=yes \ comment="" disabled=no add chain=prerouting in-interface=local connection-mark=santaria2 \ action=mark-routing new-routing-mark=santaria2 passthrough=no comment="" \ disabled=no / ip firewall nat add chain=srcnat out-interface="Internet" action=masquerade comment="" \ disabled=no add chain=srcnat out-interface="Speedy" action=masquerade comment="" \ disabled=no / ip route add dst-address=0.0.0.0/0 gateway=192.168.2.1 scope=255 target-scope=10 \ routing-mark=santaria1 comment="" disabled=no add dst-address=0.0.0.0/0 gateway=192.168.1.1 scope=255 target-scope=10 \ routing-mark=santaria2 comment="" disabled=no add dst-address=0.0.0.0/0 gateway=192.168.1.1 scope=255 target-scope=10 \ comment="primary connection" disabled=no

You might also like