Hi all,
I’m trying to create a bond btw the hEXs router and CRS switch. Followed the instructions on the official documentation page and tried following a bunch of youtube vidoes, but I can’t get the link active. I have tried both giving the bonds their own ip addresses and adding the bonds to the existing bridge with no luck. Both the links remains inactive no matter what i try.
Here are my configs
# RouterOS 7.14.2
# model = hEXs
/interface bridge
add admin-mac=xx:xx:xx:xx:xx:xx auto-mac=no comment=defconf name=bridge port-cost-mode=short
/interface ethernet
set [ find default-name=ether1 ] auto-negotiation=no
set [ find default-name=ether2 ] auto-negotiation=no
/interface bonding
add mode=802.3ad name=bond1 slaves=ether1,ether2 transmit-hash-policy=layer-2-and-3
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/ip pool
add name=dhcp ranges=10.1.0.151-10.1.0.254
/ip dhcp-server
add address-pool=dhcp interface=bridge lease-time=1w name=defconf
/interface bridge port
add bridge=bridge comment=defconf ingress-filtering=no interface=ether3 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf ingress-filtering=no interface=ether4 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf ingress-filtering=no interface=ether5 internal-path-cost=10 path-cost=10
add bridge=bridge interface=bond1
/ip firewall connection tracking
set udp-timeout=10s
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=PPPoE list=WAN
/ip dhcp-server network
add address=10.1.0.0/24 comment=defconf gateway=10.1.0.1 netmask=24
/ip address
add address=10.1.0.1/24 comment=defconf interface=bridge network=10.1.0.0
# RouterOS 7.14.2
# model = CRS310-8G+2S+
/interface bridge
add admin-mac=xx:xx:xx:xx:xx:xx auto-mac=no comment=defconf name=bridge port-cost-mode=short
/interface ethernet
set [ find default-name=ether7 ] auto-negotiation=no speed=1G-baseT-full
set [ find default-name=ether8 ] auto-negotiation=no speed=1G-baseT-full
/interface bonding
add mode=802.3ad name=bond1 slaves=ether7,ether8 transmit-hash-policy=layer-2-and-3
/interface list
add name=WAN
add name=LAN
/interface bridge port
add bridge=bridge comment=defconf interface=ether1 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether2 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether3 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether4 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether5 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=ether6 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=sfp-sfpplus1 internal-path-cost=10 path-cost=10
add bridge=bridge comment=defconf interface=sfp-sfpplus2 internal-path-cost=10 path-cost=10
add bridge=bridge interface=bond1
/ip firewall connection tracking
set udp-timeout=10s
/interface list member
add interface=lo list=WAN
add interface=bridge list=LAN
/ip address
add address=10.1.0.2/24 comment=defconf interface=bridge network=10.1.0.0
I would please appreciate if someone can point me in the right directions.
Thanks!