Recent content by Gazal

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

  1. Gazal

    Dual WAN Routing Rules for Asus RT-N66U

    I did get it working. Check here: http://www.snbforums.com/threads/load-balanced-dual-wan-routing-rules.23381. Sent from my XT1092 using Tapatalk
  2. Gazal

    Load Balanced Dual WAN - Routing Rules

    Finally, this is what worked for me: #!/bin/sh sleep 2 touch /tmp/000wanstarted for i in /proc/sys/net/ipv4/conf/*/rp_filter ; do echo 0 > $i done ip rule del fwmark 0 table 100 ip rule del fwmark 1 table 200 ip route flush cache iptables -t mangle -F PREROUTING ip rule add fwmark...
  3. Gazal

    Load Balanced Dual WAN - Routing Rules

    Putting the script in nat-start helped. However I've still not been able to accomplish my requirement. I'd like all my regular traffic to go through wan1 and traffic from applications running within the router to go through wan0. So instead of iptables -t mangle -A PREROUTING -i br0 -j MARK...
  4. Gazal

    Load Balanced Dual WAN - Routing Rules

    Thank you very much. I added a similar script in /jffs/scripts/wan-start. I tried to check whether the rules had been applied using "iptables -t nat -L", but couldn't see anything related to marking packets. And I also tried to run a traceroute from the router, all hits went through wan1_gateway.
  5. Gazal

    Load Balanced Dual WAN - Routing Rules

    I tried reading through those forums. There is a lot of information about selective routing between VPN and WAN, but can someone point me in the right direction for how to do something similar between primary WAN and secondary WAN?
  6. Gazal

    Load Balanced Dual WAN - Routing Rules

    Hi, I have an Asus RT-N66U (asuswrt-merlin 376.49_5) configured in Dual WAN mode. My primary WAN is faster but with a fair usage limit. My secondary WAN is slower but unlimited. I use transmission and pyload for managing downloads from the router. How can I set a routing rule to enforce...
  7. Gazal

    Dual WAN Routing Rules for Asus RT-N66U

    I have dual WAN in load balanced configuration. The Routing Rules configuration is only available in load balanced mode. If this is not possible, what might routing rules be used for ?
  8. Gazal

    Dual WAN Routing Rules for Asus RT-N66U

    Hi, I have an Asus RT-N66U (asuswrt-merlin 376.49_5) configured in Dual WAN mode. My primary WAN is faster but with a fair usage limit. My secondary WAN is slower but unlimited. I use transmission and pyload for managing downloads from the router. How can I set a routing rule to enforce...
Top