Mesh wds: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 6: Line 6:




--Configuration of the AP Mesh router--
==Configuration of the AP Mesh router==


*Add the Bridge interface
*Add the Bridge interface

Revision as of 14:18, 24 January 2006

This article shows how to make Mesh kind setup using RouterOS secured WDS and RSTP bridging.

To make full functional Mesh kind setup requires the RouterOS v2.9.11 or newer with 'wireless-test' and 'rstp-bridge-test' packages enabled. For the wireless card the Atheros chipset based card which is supported in the RouterOS should be used.

In this example all APs will have one ethernet card and one wireless card.


Configuration of the AP Mesh router

  • Add the Bridge interface
/interface bridge add name=bridge1 protocol-mode=rstp
  • Add Ethernet and Wireless interfaces to the bridge group
/interface bridge port add interface=ether1 bridge=bridge1
/interface bridge port add interface=wlan1 bridge=bridge1
  • Configure the Wireless card as AP and to support WDS
/interface wireless set wlan1 mode=ap-bridge band=2.4ghz-b/g frequency=2437 ssid=mesh wds-mode=dynamic wds-default-bridge=bridge1  disabled=no
  • Create WPA2-EAP security profile
/interface wireless security-profiles add name=WPA2 mode=dynamic-keys authentication-types=wpa2-eap unicast-ciphers=aes-ccm  group-ciphers=aes-ccm eap-methods=eap-tls tls-mode=no-certificates 
  • Specify the connect list to apply WPA2 security profile for the WDS links

The communication between the APs using WDS will be encrypted using WPA2 security profile, but the clients will be able to connect to the APs without the encryption.

/interface wireless connect-list add interface=wlan1 security-profile=WPA2