Problem with transparent bridge using WDS.
Posted: Wed Apr 10, 2013 8:39 pm
at my job we have a remote location that needs to be connected to our LAN. i ordered 2 of the Groove A-2HN AP's and 2 helical antenna's. i set them up using the method described below....
original article ---> http://wiki.mikrotik.com/wiki/Transpare ... o_Networks
i changed frequency (to 2.4 band, matched chanel # on both ends), SSID and IP addresses.
the link between the 2 miktoriks are good (-34/-36 Rx/Tx; SNR=~86). the problem im having is being able to ping anything past the "Station" (C) from the laptop.
weird thing is that the "Station" can ping everything else on the network. has to be something simple.
[attachment=1]Bridge.jpg[/attachment][attachment=0]PING.JPG[/attachment]
Any ideas???
original article ---> http://wiki.mikrotik.com/wiki/Transpare ... o_Networks
Transparent Bridge, using WDS
You can also use WDS to bridge 2 networks transparently.
Configure wireless interface wlan1 on AP:
[admin@AP]> interface wireless set wlan1 ssid=mikrotik frequency=5805 \
\... mode=bridge wds-mode=dynamic disabled=no
Do the same configuration on Client wireless interface (wlan1):
[admin@Client]> interface wireless set wlan1 ssid=mikrotik frequency=5805 \
\... mode=bridge wds-mode=dynamic disabled=no
Check whether the WDS link is established:
[admin@AP] interface wireless wds> print
Flags: X - disabled, R - running, D - dynamic
0 RD name="wds1" mtu=1500 mac-address=00:0B:6B:31:02:4B arp=enabled
disable-running-check=yes master-interface=wlan1
wds-address=00:0B:6B:31:08:22
[admin@AP] interface wireless wds>
Create a bridge interface on AP, and add wlan1 and ether1 interfaces to the bridge. The WDS interface will be added automatically to the bridge if you specify wds-default-bridge parameter:
[admin@AP]> interface bridge add name=wds-bridge
[admin@AP]> interface bridge port set wlan1,ether1 bridge=wds-bridge
[admin@AP]> interface wireless set wlan1 wds-default-bridge=wds-bridge
Do the same on Client:
[admin@Client]> interface bridge add name=wds-bridge
[admin@Client]> interface bridge port set wlan1,ether1 bridge=wds-bridge
[admin@Client]> interface wireless set wlan1 wds-default-bridge=wds-bridge
Add IP address on AP:
[admin@AP]> ip address add address=10.1.0.1/24 interface=wds-bridge
And on Client:
[admin@Client]> ip address add address=10.1.0.2/24 interface=wds-bridge
i changed frequency (to 2.4 band, matched chanel # on both ends), SSID and IP addresses.
the link between the 2 miktoriks are good (-34/-36 Rx/Tx; SNR=~86). the problem im having is being able to ping anything past the "Station" (C) from the laptop.
weird thing is that the "Station" can ping everything else on the network. has to be something simple.
[attachment=1]Bridge.jpg[/attachment][attachment=0]PING.JPG[/attachment]
Any ideas???