Sure, those are Security settings. They should be set only in Security.
The main thing is to not have any security settings or channel settings set separately on the Configuration. When you open a Configuration entry in WinBox and look at the Channel and Security tab, the only selected entry should be the top one, where you’re choosing the Security or Channel entry that has all the configuration you need. That top line will have a white background, the options below have a gray background, meaning it’s coming from the named Channel or Security entry, not from this Configuration interface.
An example is the authentication-types. It is set properly here:
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk disabled=no encryption=\
ccmp,gcmp,ccmp-256,gcmp-256 ft=yes ft-over-ds=yes group-encryption=ccmp \
group-key-update=1m15s management-protection=allowed name=sec-int wps=\
disable
add authentication-types=wpa2-psk,wpa3-psk disabled=no encryption=\
ccmp,gcmp,ccmp-256,gcmp-256 ft=yes ft-over-ds=yes group-encryption=ccmp \
group-key-update=1m19s management-protection=allowed name=sec-guest wps=\
disable
Two security entries, one main, one guest. Perfect.
But it’s also set here, as security.authentication-types=””, which is not good. Likewise the ft setting is duplicated here as well. I think if you look at the Configuration entries you will see these options with a white background in WinBox. Unset them and let these options be passed via the sec-int and sec-guest configs.
This may have come from using quickset or from an older default. If you want to use CAPsMAN I would recommend cleaning that up so that you know exactly where each option is set and it is set only once.
/interface wifi configuration
add antenna-gain=0 channel=channel5ghz country=Austria disabled=no mode=ap \
name=cfg5 security=sec-int ssid=FAKE
add antenna-gain=5 channel=channel5ghz country=Austria disabled=no name=\
cfg5guest security=sec-guest security.authentication-types="" .ft=yes \
.ft-over-ds=yes ssid=FAKE
add antenna-gain=5 channel=channel2ghz country=Austria disabled=no mode=ap \
name=cfg2 security=sec-int security.authentication-types=\
wpa2-psk,wpa3-psk .encryption=ccmp,gcmp,ccmp-256,gcmp-256 ssid=\
FAKE
add antenna-gain=5 channel=channel2ghz country=Austria disabled=no name=\
cfg2guest security=sec-guest security.authentication-types="" ssid=\
FAKE
And then encryption-types is also set here. As is encryption and mode=ap. You don’t need or want those here. All of that information should be passed via the configuration=cfg5 or cfg5guest entry. Setting it again could create problems when you need a change.
/interface wifi
set [ find default-name=wifi1 ] channel.frequency=5745 configuration=cfg5 \
configuration.mode=ap disabled=no name=wifi5 \
security.authentication-types=wpa2-psk,wpa3-psk .encryption=\
ccmp,gcmp,ccmp-256,gcmp-256
add configuration=cfg5guest configuration.mode=ap disabled=no mac-address=\
FAKE master-interface=wifi5 name=guest5 \
security.authentication-types=wpa2-psk,wpa3-psk .encryption=\
ccmp,gcmp,ccmp-256,gcmp-256