Page 1 of 1

2 WAN in same subnet with same gateway

Posted: Thu Nov 11, 2010 8:26 pm
by tehnicadmin
I have this configuration

# ADDRESS NETWORK BROADCAST INTERFACE
0 192.168.10.1/24 192.168.10.0 192.168.10.255 Lan
1 D 89.34.141.161/22 89.34.140.0 89.34.143.255 Internet
2 D 89.34.141.162/22 89.34.140.0 89.34.143.255 Internet1

From wan i have same gateway
the wan ip`s is from provider dinamic DHCP
How can i use this 2 wan connections to increse speed to internet from Lan?

Please help me

Re: 2 WAN in same subnet with same gateway

Posted: Fri Nov 12, 2010 12:00 pm
by mrz

Re: 2 WAN in same subnet with same gateway

Posted: Fri Nov 12, 2010 5:33 pm
by Feklar
/ip route
add dst-address=0.0.0.0/0 gateway=89.34.140.x%Internet
add dst-address=0.0.0.0/0 gateway=89.34.140.x%Internet1
Don't edit it with Winbox after this.

Re: 2 WAN in same subnet with same gateway

Posted: Fri Nov 12, 2010 10:43 pm
by tehnicadmin
Now i make functional this

Image

but i neet to make some tuning for equal balace trafic in MT2

if enyone can help me .....

Re: 2 WAN in same subnet with same gateway

Posted: Tue Mar 17, 2015 3:44 pm
by StNick
/ip route
add dst-address=0.0.0.0/0 gateway=89.34.140.x%Internet
add dst-address=0.0.0.0/0 gateway=89.34.140.x%Internet1
Don't edit it with Winbox after this.
I want to thank you for this post! I have been scratching my head for hours trying to find a way to force a route to be "reachable" via a specific interface. I have four Ethernet interfaces coming into my Mikrotik all with the same gateway. I wanted to use a routing-mark to direct traffic from a specific IP behind NAT through each of the interfaces. However, since they shared the same gateway, all the traffic would go via the first (or last) interface that the Mikrotik brought up.

This has solved my problem, though I have to admit, I am probably not going about this correctly in the first place.