Hello . I want to create a LAN network between me and 2 friends.
I have the following setup :
3 Routerboards :
Station1 -------> <--------------- My RB (Ap) --------------> <------------------- Station2
Station1 has its own antenna for the AP and so does Station2
Here is my setup scripts
AP
# --configure wireless access point--
/interface wireless
set wlan1 disabled=no ssid=MPLS frequency=5180 band=5ghz mode=bridge
# --configure IP--
/ip address
add address=172.16.0.1/30 interface=wlan1
# --enable LDP--
/mpls ldp
set enabled=yes lsr-id=172.16.0.1 transport-address=172.16.0.1
/mpls ldp interface
add interface=wlan1
# --configure VPLS tunnel--
/interface vpls
add name=vpls1 remote-peer=172.16.0.2 vpls-id=1:1 disabled=no
# --add bridge and bridge ports --
/interface bridge add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=vpls1
station
# --configure wireless access point--
/interface wireless
set wlan1 disabled=no ssid=MPLS band=5ghz mode=station
# --configure IP--
/ip address
add address=172.16.0.2/30 interface=wlan1
# --enable LDP--
/mpls ldp
set enabled=yes lsr-id=172.16.0.2 transport-address=172.16.0.2
/mpls ldp interface
add interface=wlan1
# --configure VPLS tunnel--
/interface vpls
add name=vpls1 remote-peer=172.16.0.1 vpls-id=1:1 disabled=no
# --add bridge and bridge ports --
/interface bridge add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=vpls1
-------------------------------------------------------OK Link 2 ------------------------------------------------------------
AP
# --configure wireless access point--
/interface wireless
set wlan2 disabled=no ssid=MPLS band=2.4ghz-b/g mode=bridge
# --configure IP--
/ip address
add address=172.16.0.5/30 interface=wlan2
# --enable LDP--
/mpls ldp
set enabled=yes lsr-id=172.16.0.5 transport-address=172.16.0.5
/mpls ldp interface
add interface=wlan2
# --configure VPLS tunnel--
/interface vpls
add name=vpls2 remote-peer=172.16.0.6 vpls-id=2:2 disabled=no
# --add bridge and bridge ports --
/interface bridge port
add bridge=bridge1 interface=vpls2
2nd Station
# --configure wireless access point--
/interface wireless
set wlan1 disabled=no ssid=MPLS band=2.4ghz-b/g mode=station
# --configure IP--
/ip address
add address=172.16.0.6/30 interface=wlan1
# --enable LDP--
/mpls ldp
set enabled=yes lsr-id=172.16.0.6 transport-address=172.16.0.6
/mpls ldp interface
add interface=wlan1
# --configure VPLS tunnel--
/interface vpls
add name=vpls1 remote-peer=172.16.0.5 vpls-id=2:2 disabled=no
# --add bridge and bridge ports --
/interface bridge add name=bridge1
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=vpls1
When i setup the first link everything works fine, but as soon as i add the second set of commands i can only access my 2nd friends network.
From what i can see is that the routing protocols pick up a loop in the network (Don't know how ???) but i get that one is designated and the other disabled. I can't remember where I read that, but if some one can perhaps help me with this matter I will appreciate it!.
Thanks in advance