Hi,
With this setup: http://forum.mikrotik.com/viewtopic.php?f=14&t=30815&start=0&hilit=duplex LOOK AT THE LAST IMAGE OF MEDIANET.
Can I make this transparent? It’s possible using MPLS?
I need to use 192.168.1.x in B0 ether1 and 192.168.1.x in R0 ether1. The same subnet in each location.
I have it configured and working with 2 different subnets. How can I make the link with the same subnet?
mrz, it’s possible?
Thanks!
Chupaka
October 16, 2009, 12:04am
2
make two L2 MPLS tunnels and then bond them?..
I don’t used MPLS.
I have to leave the OSPF configuration and apply MPLS to it?
thanks,
Chupaka
October 16, 2009, 11:11am
4
hmmm… you may just create two EoIP tunnels via each link, then bond them and add to bridge - your ports will be bridged through different routers.
p.s. why ‘full duplex’? shouldn’t it be ‘two half-duplex links’?
Ok, next week I’ll try to configure this with 2x 750 and 2 wires instead of the WDS links.
The 2 half duplex are OK, because they’ll have a lot of small connections.
Thanks!
Hi Chupaka,
If I bond the 2xVPLS and one of the 4 APs making WDS is broken, the other link should work?
Chupaka
November 10, 2009, 7:24am
7
sure, why not?
p.s. why WDS? do you need it?
Hi,
I configured this with the 2 links in wds and 2 EoIP tunnels. This work and there is “failover” when one intermediate wlan dies.
Chupaka, if I don’t use WDS, what I have to use AP/station? Now I have the Router2 (left) RB411AH’s as apbridge and the router3 (right) RB411AH’s in wds station, with nstreme and turbo.
I’m using balance rr for the bonding of the 2 eoip tunnels.
It’s possible to change the EoIP configuration with VPLS configuration to have more speed? I don’t know how to make the necessary changes, the LDP seetings and the VPLS peers and IDs.
Here is my code now:
ROUTER2:
/ip address
add address=192.168.1.75/24 broadcast=192.168.1.255 comment="" disabled=no \
interface=bonding1 network=192.168.1.0
add address=10.0.0.1/30 broadcast=10.0.0.3 comment="" disabled=no interface=\
ether4-local-slave network=10.0.0.0
add address=10.0.10.1/30 broadcast=10.0.10.3 comment="" disabled=no \
interface=ether5-local-slave network=10.0.10.0
/interface eoip
add arp=enabled comment="" disabled=no l2mtu=65535 mac-address=02:7C:BC:47:C0:9F mtu=1500 name=eoip-tunnel1 remote-address=\
10.0.0.2 tunnel-id=1
add arp=enabled comment="" disabled=no l2mtu=65535 mac-address=02:DB:F5:AF:9D:5E mtu=1500 name=eoip-tunnel2 remote-address=\
10.0.10.2 tunnel-id=2
/interface bridge
add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes comment="" disabled=no forward-delay=15s l2mtu=1524 \
max-message-age=20s mtu=1500 name=bridge1 priority=0x8000 protocol-mode=none transmit-hold-count=6
/interface bridge port
add bridge=bridge1 comment="" disabled=no edge=auto external-fdb=auto horizon=none interface=ether2-local-master path-cost=10 \
point-to-point=auto priority=0x80
add bridge=bridge1 comment="" disabled=no edge=auto external-fdb=auto horizon=none interface=bonding1 path-cost=10 point-to-point=\
auto priority=0x80
/interface bonding
add arp=enabled arp-interval=100ms arp-ip-targets=192.168.1.76 comment="" disabled=no down-delay=0s lacp-rate=30secs \
link-monitoring=arp mii-interval=100ms mode=balance-rr mtu=1500 name=bonding1 primary=none slaves=eoip-tunnel1,eoip-tunnel2 \
transmit-hash-policy=layer-2 up-delay=0s
ON ROUTER3
/ip address
add address=192.168.1.76/24 broadcast=192.168.1.255 comment="" disabled=no \
interface=bonding1 network=192.168.1.0
add address=10.0.0.2/30 broadcast=10.0.0.3 comment="" disabled=no interface=\
ether4-local-slave network=10.0.0.0
add address=10.0.10.2/30 broadcast=10.0.10.3 comment="" disabled=no \
interface=ether5-local-slave network=10.0.10.0
/interface eoip
add arp=enabled comment="" disabled=no l2mtu=65535 mac-address=\
FE:00:D7:18:1C:61 mtu=1500 name=eoip-tunnel1 remote-address=10.0.0.1 \
tunnel-id=1
add arp=enabled comment="" disabled=no l2mtu=65535 mac-address=\
FE:38:64:F9:DC:96 mtu=1500 name=eoip-tunnel2 remote-address=10.0.10.1 \
tunnel-id=2
/interface bridge
add admin-mac=00:00:00:00:00:00 ageing-time=5m arp=enabled auto-mac=yes \
comment="" disabled=no forward-delay=15s l2mtu=1524 max-message-age=20s \
mtu=1500 name=bridge1 priority=0x8000 protocol-mode=none \
transmit-hold-count=6
/interface bridge port
add bridge=bridge1 comment="" disabled=no edge=auto external-fdb=auto \
horizon=none interface=ether3-local-slave path-cost=10 point-to-point=\
auto priority=0x80
add bridge=bridge1 comment="" disabled=no edge=auto external-fdb=auto \
horizon=none interface=bonding1 path-cost=10 point-to-point=auto \
priority=0x80
/interface bonding
add arp=enabled arp-interval=100ms arp-ip-targets=192.168.1.75 comment="" \
disabled=no down-delay=0s lacp-rate=30secs link-monitoring=arp \
mii-interval=100ms mode=balance-rr mtu=1500 name=bonding1 primary=none \
slaves=eoip-tunnel1,eoip-tunnel2 transmit-hash-policy=layer-2 up-delay=0s
THANKS,