I'm configuring a dual link with 4 RB411AH and 2 RB450G to gestionate the OSPF and generate a Full-Duplex Link
The dual link works with 5 ghz-turbo and N-streme
I use two guides form wiki, but no one are exactly what I need: http://wiki.mikrotik.com/wiki/Dual_Setup_with_OSPF & http://wiki.mikrotik.com/wiki/Setup_Dua ... _with_OSPF
Does any one know what is wrong??
I need to activate the OSPF in the RB411AH?? How??
that's the project:
it only works when the 2 rb450g have different IP rank (192.168.1.x/24 and 192.168.3.x/24), but when one of the links fails the connection falls
the configuration are the same like the examples, I only add some rules for the different IP rank:
In RB450G - B0:
Code: Select all
/ip address add address=192.168.1.220/24 interface=ether1
/ip address add address=10.100.100.1/24 interface=ether2
/ip address add address=10.101.101.1/24 interface=ether3
/routing ospf network add network=10.100.100.0/24 area=backbone
/routing ospf network add network=10.101.101.0/24 area=backbone
/routing ospf interface add interface=ether3 cost=100
/ip route add dst-address=192.168.3.0/24 gateway=10.100.100.2 distance=1
/ip route add dst-address=192.168.3.0/24 gateway=10.101.101.2 distance=10
Code: Select all
/ip address add address=192.168.3.225/24 interface=ether1
/ip address add address=10.100.100.2/24 interface=ether2
/ip address add address=10.101.101.2/24 interface=ether3
/routing ospf network add network=10.100.100.0/24 area=backbone
/routing ospf network add network=10.101.101.0/24 area=backbone
/routing ospf interface add interface=ether2 cost=100
/ip route add dst-address=192.168.1.0/24 gateway=10.100.100.1 distance=10
/ip route add dst-address=192.168.1.0/24 gateway=10.101.101.1 distance=1
Thanks