Hello
i m beginner with networking but for a project i need to connect multiple hap ax3 to others hap ax3.
i tried to mix some informations i found on this forum but also on the Mikrotik wiki.
Config "main" routeur
STATION BRIDGE (ip addr 192.168.88.1)
/interface/bridge
add name=bridge protocol-mode=none
/interface bridge port
add bridge=bridge interface=ether2
add bridge=bridge interface=wifi1
/interface bridge port
set [find where interface=ether2 or interface=wifi1] frame-types=admit-only-vlan-tagged ingress-filtering=yes
/interface bridge vlan/
add bridge=bridge tagged=ether2,wifi1 vlan-ids=10
add bridge=bridge tagged=ether2,wifi1,bridge vlan-ids=99
/interface vlan
add interface=bridge name=MGMT vlan-id=99
/ip address
add address=192.168.99.11/24 interface=MGMT
/interface vlan
add interface=ether2 name=MGMT vlan-id=99
/ip address
add address=192.168.99.12/24 interface=MGMT
/interface wifiwave2 security
add authentication-types=wpa3-psk name=wlan_sec
/interface wifiwave2
set wifi1 configuration.country=France .mode=station-bridge \ .ssid="TEST" disabled=no security.authentication-types=wpa3-psk \ .passphrase=Password1!
Config 2nd routeur (ip addr 192.168.88.2)
AP
/interface/bridge
add name=bridge protocol-mode=none
/interface bridge port
add bridge=bridge interface=ether2
add bridge=bridge interface=wifi1
/interface bridge port
set [find where interface=ether2 or interface=wifi1] frame-types=admit-only-vlan-tagged ingress-filtering=yes
/interface bridge vlan/
add bridge=bridge tagged=ether2,wifi1 vlan-ids=10
add bridge=bridge tagged=ether2,wifi1,bridge vlan-ids=99
/interface vlan
add interface=bridge name=MGMT vlan-id=99
/ip address
add address=192.168.99.21/24 interface=MGMT
/interface vlan
add interface=ether2 name=MGMT vlan-id=99
/ip address
add address=192.168.99.22/24 interface=MGMT
/interface wifiwave2 security
add authentication-types=wpa3-psk name=wlan_sec
/interface wifiwave2
set wifi1 configuration.country=France .mode=station \ .ssid="TEST" disabled=no security.authentication-types=wpa3-psk \ .passphrase=Password1!
i am able to connect 2 routers each other (it’s working well and i am able to perform iperf between the two sides of the bridge with 2 pc) but i m not able to connect a third one (on the third one i duplicate the AP config but with the ip address 192.168.88.3).
I updated the hap ac3 with the 7.12.1 package (both routeros and wifiwave2)
where did i go wrong?
BR,
Alan