WDS mode link between (2) 433ah Routerboard

If anyone can guide me the steps to links two 433ah RB in WDS mode

HI there,

Run this script for ap 1 and ap2 and it should get the link part going with a dynamic wds.

Its easier to make it static once you have a link.

#########AP1
/ interface wireless set wlan1 ssid=wdslink mode=ap-bridge band=5ghz frequency=5180 wds-mode=dynamic disabled=no hide-ssid=yes security-profile=default
/ interface bridge add name=wdsbridge
/ interface bridge port add interface=wlan1 bridge=wdsbridge
/ interface wireless set wlan2 wds-default-bridge=wdsbridge
/ ip add add address=192.168.1.1/24 interface=wdsbridge


########AP2
/ interface wireless set wlan1 ssid=wdslink mode=ap-bridge band=5ghz frequency=5180 wds-mode=dynamic disabled=no hide-ssid=yes security-profile=default
/ interface bridge add name=wdsbridge
/ interface bridge port add interface=wlan1 bridge=wdsbridge
/ interface wireless set wlan2 wds-default-bridge=wdsbridge
/ ip add add address=192.168.1.2/24 interface=wdsbridge

you will need to add default routes.

should get you started

B