I wanna bound 6 ports into 3 LAG. The problem occurs when I’m not able to ping though one router to toher router. The phisical distribution is something like:

- | Yellow |, is administrative port with VLAN 10 for administration proposes.
- | Purple |, is a bounded interfice, the propose is to service DHCP for all VLANs.
- |****| Black/RedFill |****|, is WAN propose.
- || Black/BlackFill ||, no propose
- | Blue |, is a bounded interfice, the propose is to take for example client DHCP petitions.
- | Red |, is a bounded interfice, the propose is to take for example guest DHCP petitions.
I can’t ping through Gateway to DHCP server on VLAN interfaces, on vlan interfaces. Maybe I missconfig routing configuration. I never work with Bridge VLANs option. I’m really stuck with this laboratory.
Gateway 12 port Router
/interface bridge
add name=Administrative
add name=Antennas
add name=Clients
add name=Guests
add name=Phone
add name=Workers
/interface ethernet
set [ find default-name=ether12 ] comment=eth-12 mac-address=D4:CA:6D:B0:BB:AC \
name=LAG-1.1
set [ find default-name=ether11 ] comment=eth-11 name=LAG-1.2
set [ find default-name=ether10 ] comment=eth-10 mac-address=D4:CA:6D:B0:BB:AA \
name=LAG-2.1
set [ find default-name=ether9 ] comment=eth-9 name=LAG-2.2
set [ find default-name=ether2 ] comment=eth-2 name=LAG-3.1
set [ find default-name=ether3 ] comment=eth-3 mac-address=D4:CA:6D:B0:BB:A3 name=\
LAG-3.2
set [ find default-name=ether1 ] comment=eth-1 name=Phisical-Gestion
set [ find default-name=ether4 ] comment=eth-4 name=WAN
set [ find default-name=ether5 ] disabled=yes
set [ find default-name=ether6 ] disabled=yes
set [ find default-name=ether7 ] disabled=yes
set [ find default-name=ether8 ] disabled=yes
/interface bonding
add mode=802.3ad name=LAG-1 slaves=LAG-1.1,LAG-1.2 transmit-hash-policy=\
layer-2-and-3
add mode=802.3ad name=LAG-2 slaves=LAG-2.2,LAG-2.1
add mode=802.3ad name=LAG-3-DHCP slaves=LAG-3.1,LAG-3.2 transmit-hash-policy=\
layer-2-and-3
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/lora servers
add address=eu.mikrotik.thethings.industries down-port=1700 name=TTN-EU up-port=\
1700
add address=us.mikrotik.thethings.industries down-port=1700 name=TTN-US up-port=\
1700
/queue simple
add name=Phones priority=3/3 target=Phone
/tool user-manager customer
set admin access=own-routers,own-users,own-profiles,own-limits,config-payment-gw
/interface bridge vlan
add bridge=Administrative tagged=LAG-1,LAG-2,LAG-3-DHCP untagged=Phisical-Gestion \
vlan-ids=10
add bridge=Antennas tagged=LAG-1,LAG-2 vlan-ids=40
add bridge=Clients tagged=LAG-1,LAG-3-DHCP vlan-ids=20
add bridge=Guests tagged=LAG-2 vlan-ids=60
add bridge=Workers tagged=LAG-2,LAG-3-DHCP vlan-ids=30
add bridge=Phone tagged=LAG-2 vlan-ids=50
/ip address
add address=192.10.0.1/16 interface=Administrative network=192.10.0.0
add address=192.20.0.1/16 interface=Clients network=192.20.0.0
add address=192.30.0.1/16 interface=Workers network=192.30.0.0
add address=192.40.0.1/16 interface=Antennas network=192.40.0.0
add address=192.50.0.1/16 interface=Phone network=192.50.0.0
add address=192.60.0.1/16 interface=Guests network=192.60.0.0
add address=192.10.0.1/16 interface=Phisical-Gestion network=192.10.0.0
/ip firewall nat
add action=masquerade chain=srcnat out-interface=WAN
/ip route
add distance=1 dst-address=192.10.0.2/32 gateway=LAG-3-DHCP
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set ssh disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/lcd
set color-scheme=dark enabled=no touch-screen=disabled
/system identity
set name=MotherFuckingBoss
/tool user-manager database
set db-path=user-manager
[admin@MotherFuckingBoss] >
DHCP 5 port Router
/interface bridge
add fast-forward=no name=Antenas
add fast-forward=no name=Clientes
add fast-forward=no name=Gestion
add fast-forward=no name=Invitados
add fast-forward=no name=Phone
add fast-forward=no name=Trabajadores
/interface wireless
set [ find default-name=wlan1 ] ssid=MikroTik
/interface ethernet
set [ find default-name=ether2 ] comment=eth-2 name=LAG-DHCP-1.1
set [ find default-name=ether3 ] comment=eth-3 mac-address=B8:69:F4:43:9B:4A \
name=LAG-DHCP-1.2
set [ find default-name=ether1 ] comment=eth-1 name=Phisical-Administration
set [ find default-name=ether4 ] disabled=yes
set [ find default-name=ether5 ] disabled=yes
/interface bonding
add mode=802.3ad name=LAG-DHCP slaves=LAG-DHCP-1.1,LAG-DHCP-1.2 \
transmit-hash-policy=layer-2-and-3
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip pool
add name=Gestion ranges=192.10.1.0-192.10.255.254
add name=Clientes ranges=192.20.1.0-192.20.255.254
add name=Trabajadores ranges=192.30.1.0-192.30.255.254
add name=Antenas ranges=192.40.1.0-192.40.255.254
add name=Phone ranges=192.50.1.0-192.50.255.254
add name=Invitados ranges=192.60.1.0-192.60.255.254
/ip dhcp-server
add address-pool=Gestion disabled=no interface=Gestion name=Gestion
add address-pool=Clientes disabled=no interface=Clientes name=Clientes
add address-pool=Trabajadores disabled=no interface=Trabajadores name=\
Trabajadores
add address-pool=Phone disabled=no interface=Phone name=Phone
add address-pool=Invitados disabled=no interface=Invitados name=Invitados
add address-pool=Antenas disabled=no interface=Antenas name=Antenas
/interface bridge vlan
add bridge=Gestion tagged=LAG-DHCP untagged=Phisical-Administration vlan-ids=10
add bridge=Clientes tagged=LAG-DHCP vlan-ids=20
add bridge=Trabajadores tagged=LAG-DHCP vlan-ids=30
add bridge=Antenas tagged=LAG-DHCP vlan-ids=40
add bridge=Phone tagged=LAG-DHCP vlan-ids=50
add bridge=Invitados tagged=LAG-DHCP vlan-ids=60
/ip address
add address=192.10.0.2/16 interface=Gestion network=192.10.0.0
add address=192.20.0.2/16 interface=Clientes network=192.20.0.0
add address=192.30.0.2/16 interface=Trabajadores network=192.30.0.0
add address=192.40.0.2/16 interface=Antenas network=192.40.0.0
add address=192.50.0.2/16 interface=Phone network=192.50.0.0
add address=192.60.0.2/16 interface=Invitados network=192.60.0.0
add address=192.10.0.2/16 interface=LAG-DHCP network=192.10.0.0
add address=192.20.0.2/16 interface=LAG-DHCP network=192.20.0.0
add address=192.30.0.2/16 interface=LAG-DHCP network=192.30.0.0
add address=192.40.0.2/16 interface=LAG-DHCP network=192.40.0.0
add address=192.50.0.2/16 interface=LAG-DHCP network=192.50.0.0
add address=192.60.0.2/16 interface=LAG-DHCP network=192.60.0.0
/ip dhcp-server network
add address=192.10.0.0/16 dns-none=yes gateway=192.10.0.1
add address=192.20.0.0/16 gateway=192.20.0.1
add address=192.30.0.0/16 gateway=192.30.0.1
add address=192.40.0.0/16 gateway=192.40.0.1
add address=192.50.0.0/16 gateway=192.50.0.1
add address=192.60.0.0/16 gateway=192.60.0.1
/system identity
set name=DHCP
/system routerboard settings
set silent-boot=no
[admin@DHCP] >