cAPGi-5HaxD2HaxD 2.4GHz CAPsMan Issue

Hello guys,

somehow i m lost to configure an cAPGi-5HaxD2HaxD via capsman to use 2.4GHz. 5Ghz is working, but 2.4Ghz not.

What i dont get is, why the band is showed as 2GHz but the currentchannel is 5GHz?
WifiMikrotik2.4GHZ.png
Thanks for help.

Thats my simple config

/interface wifi channel
add band=2ghz-ax comment=2.4ghz disabled=no name=2.4ghz skip-dfs-channels=disabled width=20mhz
add band=5ghz-ax comment=5ghz disabled=no name=5ghz skip-dfs-channels=disabled width=20/40/80mhz
/interface wifi datapath
add bridge=TRUNK disabled=no name=DP-Guest vlan-id=30
add bridge=TRUNK disabled=no name=DP-Office vlan-id=20
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disable-pmkid=yes disabled=no ft=yes ft-over-ds=yes name=SEC-Guest
add authentication-types=wpa2-psk,wpa3-psk disable-pmkid=yes disabled=no ft=yes ft-over-ds=yes name=SEC-Office
/interface wifi configuration
add channel=2.4ghz country=Germany datapath=DP-Guest disabled=no mode=ap name=2.4GHz-Guest security=SEC-Guest ssid=Hotel-XXX
add channel=2.4ghz country=Germany datapath=DP-Office disabled=no mode=ap name=2.4GHz-Office security=SEC-Office ssid=Office-XXX
add channel=5ghz country=Germany datapath=DP-Guest disabled=no mode=ap name=5GHz-Guest security=SEC-Guest ssid=Hotel-XXX
add channel=5ghz country=Germany datapath=DP-Office disabled=no mode=ap name=5GHz-Office security=SEC-Office ssid=Office-XXX
/interface wifi capsman
set enabled=yes interfaces=V10-Management package-path=/ require-peer-certificate=no upgrade-policy=suggest-same-version
/interface wifi provisioning
add action=create-dynamic-enabled disabled=no master-configuration=5GHz-Office slave-configurations=5GHz-Guest,2.4GHz-Office,2.4GHz-Guest

Your provisioning rule is wrong.

If you want to configure 2 different type of interfaces with your config, you will need 2 rules.
With a filter in there to select 2ghz-ax and 5ghz-ax


Otherwise you can also set channel width with the frequency setting like so: 2412:20
https://help.mikrotik.com/docs/spaces/ROS/pages/224559120/WiFi#WiFi-Channelproperties

1 Like

The issue is with your provisioning rules, you need two separate rules, one for each band use “supported-bands=” attribute to differentiate the matching. “slave-configurations” are there to create virtual CAP interfaces - for guest network for example.
You can find a similar example, for how provisioning rules work here: https://help.mikrotik.com/docs/spaces/ROS/pages/224559120/WiFi#WiFi-CAPsMAN-CAPsimpleconfigurationexample:

1 Like

Thank you guys.
Both answers helped me!