DUAL WAN LOAD BALANCING
DUAL WAN LOAD BALANCING When We have two ISP and we want two merge these two ISP and get one out put as single out put like 4mb + 4mb= 8mb Paste this script to Terminal after correcting Name of interfaces according to script. DSL MODEM IP’S DSL MODEM 1 = 192.168.1.1 DSL MODEM 2 = 192.168.2.1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 /ip address add address=192.168.0.1/24 network=192.168.0.0 broadcast=192.168.0.255 interface=Local add address=192.168.1.2/24 network=192.168.1.0 broadcast=192.168.1.255 interface=WAN1 add address=192.168.2.2/24 network=192.168.2.0 broadcast=192.168.2.255 interface=WAN2 /ip dns set allow-remote-requests=yes cache-max-ttl=1w cache-size=5000KiB max-udp-packet-size=512 servers=8.8.8.8 /ip firewall mangle add chain=input in-interface=WAN1 action=mark-connection new-connection-mark=WAN1_conn add cha...