/ip address
add address=10.0.0.1/24 interface=wlan1 (goes to Router B)
/ip route
add gateway=10.0.0.2 dst-address=10.0.1.0/24 (routes Router B's localnet to Router B)
add gateway=10.0.0.2 dst-address=192.168.1.0/24 (routes Router C's localnet to Router B)
/ip address
add address=10.0.0.2/24 interface=wlan1 (goes to Router A)
add address=10.0.1.1/24 interface=wlan2 (goes to Router C)
/ip route
add gateway=10.0.1.2 dst-address=192.168.1.0/24 (routes Router C's localnet to Router C)
add gateway=10.0.0.1 (routes all other non-local ips back to Router A)
/ip address
add address=10.0.1.2/24 interface=wlan1 (goes to Router B)
add address=192.168.1.1/24 interface=wlan2 (goes to customer)
/ip route
add gateway=10.0.1.1 (routes all non-local ips back to Router B)
Dear SurferTim ;Yes, it works good. I use this, except I have two relays in the middle.
To avoid confusion, I will use these references to your routers:
The ap is Router A
The RB433 is Router B
The cpe end is Router C.
This is what I would do:
Router ARouter BCode: Select all/ip address add address=10.0.0.1/24 interface=wlan1 (goes to Router B) /ip route add gateway=10.0.0.2 dst-address=10.0.1.0/24 (routes Router B's localnet to Router B) add gateway=10.0.0.2 dst-address=192.168.1.0/24 (routes Router C's localnet to Router B)
Router CCode: Select all/ip address add address=10.0.0.2/24 interface=wlan1 (goes to Router A) add address=10.0.1.1/24 interface=wlan2 (goes to Router C) /ip route add gateway=10.0.1.2 dst-address=192.168.1.0/24 (routes Router C's localnet to Router C) add gateway=10.0.0.1 (routes all other non-local ips back to Router A)
Code: Select all/ip address add address=10.0.1.2/24 interface=wlan1 (goes to Router B) add address=192.168.1.1/24 interface=wlan2 (goes to customer) /ip route add gateway=10.0.1.1 (routes all non-local ips back to Router B)