I'm testing an ax1800 in hopes of using it to replace my x86 based openwrt router. I've noticed that there doesn't appear to be any way to set up the multi-wan feature such that some clients prefer one wan device and other clients prefer another like I can in mwan3. Am I just not looking in the right place or is this really not possible? If not is there any reason not to install mwan3? If I do that do I need to remove kmwan?
Hi,
How did you set it up at mwan3?
The router page doesn't have a place to set it up, as an example for Ethernet and Repeater, with kmwan you can use the following command in SSH:
echo “101 wan1_eth0” >> /etc/iproute2/rt_tables
echo “102 wan2_sta0” >> /etc/iproute2/rt_tables
ip route add default via (wan1 gateway) dev eth0 table 101
ip route add default via (wan2 gateway) dev sta0 table 102
ip rule add from (device A's ip) lookup wan1_eth0 pri 101
ip rule add from (device B's ip) lookup wan2_sta0 pri 102
1 Like