I’m Implement 3 sites each site have 5units of CAP ax and got same experience. When my customers connected to 5GHz the WIFI get connected but didn’t get IP neither traffic passthrough ethernet while 2.4GHz work just find
I’ve 1 bridge with ether,wifi1 and wifi2 as member port. Problem happened no matter I’m set up config as individual AP or controlled with CAPsMAN.
As a certified Mikrotik trainer you should know in those cases a FULL config export is needed (minus passwd, serial, …).
Not only the parts you think are needed because you’re leaving out parts which may be relevant.
E.g. where is wifi1 connected to a bridge ?
Are there multiple bridges ? (not recommended)
How’s the complete VLAN config ?
wifi1 and wifi2 are dynamic connected to bridge through datapath as show in highlighted attach image but it’s doesn’t matter because even we put it manually to a bridge the result is not different.
there is a single bridge call “Guest”
there’re two VLANs, VLAN 60 for Guest network and VLAN 50 for Network Management
It’s just simply AP other config just for ip dhcp-client, ntp and disable ip serivces, this is the whole exported for this AP
# 2024-05-24 13:08:11 by RouterOS 7.14.1
# software id = xxxxxxx
#
# model = cAPGi-5HaxD2HaxD
# serial number = xxxxxxx
/interface bridge
add name=Guest
/interface vlan
add interface=ether1 name=50-Management vlan-id=50
add interface=ether1 name=e1v60 vlan-id=60
/interface wifi datapath
add bridge=Guest disabled=no name=datapath1
/interface wifi security
add authentication-types=wpa-psk,wpa2-psk disabled=no encryption=ccmp name=sec1 passphrase=xxxxxxxx
/interface wifi
set [ find default-name=wifi1 ] channel.band=5ghz-ac .skip-dfs-channels=all .width=20/40mhz configuration.country=Thailand .mode=ap .ssid=GSC_Guest \
datapath=datapath1 disabled=no security=sec1
set [ find default-name=wifi2 ] channel.band=2ghz-n .width=20mhz configuration.country=Thailand .mode=ap .ssid=GSC_Guest_2.4GHz datapath=datapath1 \
disabled=no security=sec1
/system logging action
set 0 memory-lines=5000
set 1 disk-lines-per-file=5000
/interface bridge port
add bridge=Guest interface=e1v60
/ipv6 settings
set disable-ipv6=yes
/interface wifi access-list
add action=accept disabled=no signal-range=-76..120
add action=reject disabled=no signal-range=-120..-77
/ip cloud
set ddns-enabled=yes update-time=no
/ip dhcp-client
add interface=50-Management
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www port=81
set api disabled=yes
set api-ssl disabled=yes
/system clock
set time-zone-name=Asia/Bangkok
/system identity
set name=3rdFloor
/system note
set show-at-login=no
/system ntp client
set enabled=yes
/system ntp client servers
add address=ntp.ku.ac.th
add address=th.pool.ntp.org
/tool bandwidth-server
set enabled=no
/tool graphing interface
add
/tool graphing queue
add
/tool graphing resource
add
ether1 not a part of bridge because we dont' want this AP work with untagged traffic
there is new way on new RouterOS wifi configuration by specific bridge to "datapath" and apply to configuration then wifi will dynamic add to bridge it self as attached image.
this configuration use interface VLAN as you see in this code
I’ve seen hap ax2 5GHz becoming unusable with ROS 7.13.5. I think this might be related to certain guest devices being present.
Hasn’t happened yet since I updated the device to 7.15rc3, maybe the wifi-qcom driver update improved things?