I wanted to chime in here to offer the easy way I figured out to do Dual WAN without all the page timeouts. I was having so many issues with it taking several attempts for a page to load, and I realized that with load balance, the router would hop back and forth between WANs while processing page requests. But the router was limited to how many routing rules available, and each IP would need 2 rules for both incoming and outgoing. It took a LOT of researching to figure out what was going on and how to prevent it. Here's what I eventually came up with:
With your router as 192.168.0.1, set up DHCP server with starting and ending pools as
192.168.0.2 and
192.168.1.127 192.168.0.127, respectively. The important number here is that 127.
In my manual assignments, I set each device I wanted to be on the secondary WAN to have an IP at
higher than .128.
Now your network is essentially split into two; the devices w/ IP 127 and below will get an IP automatically, and those 128 and above you have set manually.
Now add the following 4 routing rules under the Dual Wan tab:
| 192.168.0.1/25 | all | Primary WAN | |
| all | 192.168.0.1/25 | Primary WAN | |
| 192.168.0.128/25 | all | Secondary WAN | |
| all | 192.168.0.128/25 | Secondary WAN | |
That's it! All DHCP devices will use the primary WAN, and all my manual devices will use secondary. It's not a traditional load balance, but this does keep my 50+ devices on the network running smoothly. I then monitored my device's usage and placed the more data hungry devices on the WAN with the more favorable connection, and you can do this in an approximate ratio that corresponds to the load balance you desire.