Hello,
I want to setup a repeater (RB941), connected to my main AP (RB951).
So the clients can hop between the main AP and the repeater without losing connection and the range is extended.
Both devices are factory reset with default config, so according to the tutorial I must do:
Main AP:
/ ip address add address=192.168.0.1/24 interface=wlan1
192.168.0.1/24 changed to 192.168.88.2 (start of dhcp range is increased to .10).
/ interface wireless set wlan1 disabled=no mode=ap-bridge band=5ghz frequency=5180 ssid=Main_gw wds-mode=static
Set my AP as I want, wds-mode=static is important here.
/ interface wireless wds add disabled=no wds-address=XX:XX:XX:XX:XX:X2 master-interface=wlan1
no wds-address= MAC of the repeater AP
/ interface bridge add
/ interface bridge port add interface=wlan1 bridge=bridge1
/ interface bridge port add interface=wds1 bridge=bridge1
I can not add wlan1 to bridge-local and bridge1, so I suppose only wds1 needs to be added to the bridge.
Repeater AP:
/ interface wireless set wlan1 disabled=no mode=ap-bridge band=5ghz frequency=5805 ssid=To_clients wds-mode=static
Set my AP as I want and is the same as the main ap, this is working fine, wds-mode=static is important here.
I want to have the same SSID as the main gateway, so that can be the same?
/ interface wireless wds add disabled=no wds-address=XX:XX:XX:XX:XX:X3 master-interface=wlan1
no wds-address= MAC of the main AP
/ interface bridge add
/ interface bridge port add interface=wlan1 bridge=bridge1
/ interface bridge port add interface=wds1 bridge=bridge1
I can not add wlan1 to bridge-local and bridge1, so I suppose only wds1 needs to be added to the bridge.
/ ip adress add address=192.168.0.3/24 interface=wlan1
192.168.0.1/24 changed to 192.168.88.3 (start of dhcp range is increased to .10).
On the second router I can not ping the main router, neither external IP’s and vice versa.
It is not clear now how it can work, isn’t there a second DHCP server running on the repeater AP?
Do I need to start here with an empty configuration?
I’ve read quite a lot about mesh but it is not clear what to choose and how it works.
Thanks