Hello,
I have a cAP ax configured with one SSID for 2.4 GHz and another different one for 5 GHz and my phone doesn’t seem to be able to automatically reconnect to the 5 GHz band if I move outside its range and come back. I need to manually open the WiFi settings in the phone, select the saved SSID, then the phone asks for the password and just clicking on next (and don’t typing it again), it reconnects without issues. Its like if I have set something in the configuration that makes the phone think the security or password has changed and doesn’t reconnect automatically. Once connected it all works without issues.
This is my current configuration:
/interface bridge
add name=local
/interface list
add name=WAN
add name=LAN
/interface wifi channel
add band=2ghz-n disabled=no frequency=2412-2472 name=channel_2g width=20/40mhz
add band=5ghz-ac disabled=no frequency=5170-5250,5250-5330,5490-5730 name=channel_5g width=20/40mhz
/interface wifi security
add authentication-types=wpa2-psk disabled=no encryption=ccmp name=security_2g
add authentication-types=wpa2-psk,wpa3-psk disabled=no encryption=ccmp name=security_5g
/interface wifi configuration
add antenna-gain=7 channel=channel_2g country=<Country> disabled=no mode=ap name=config_2g security=security_2g \
ssid=<SSID>
add antenna-gain=12 channel=channel_5g country=<Country> disabled=no mode=ap name=config_5g security=\
security_5g ssid=<SSID>
/interface wifi
set [ find default-name=wifi2 ] channel=channel_2g channel.frequency=2412,2437,2462 configuration=config_2g \
configuration.mode=ap disabled=no name=wifi_2g security=security_2g
set [ find default-name=wifi1 ] channel.frequency=5180-5240,5720-5865 configuration=config_5g \
configuration.mode=ap disabled=no name=wifi_5g
/interface bridge port
add bridge=local interface=ether1
add bridge=local interface=wifi_2g
add bridge=local interface=wifi_5g
/ip neighbor discovery-settings
set discover-interface-list=!dynamic
/ipv6 settings
set disable-ipv6=yes
/interface list member
add interface=ether1 list=WAN
add interface=local list=LAN
/interface ovpn-server server
add mac-address=FE:BB:62:1E:27:A9 name=ovpn-server1
/ip address
add address=192.168.3.2/23 interface=ether1 network=192.168.2.0
/ip cloud
set update-time=no
/ip dns
set servers=1.1.1.1,1.0.0.1
/ip hotspot profile
set [ find default=yes ] html-directory=hotspot
/ip ipsec profile
set [ find default=yes ] dpd-interval=2m dpd-maximum-failures=5
/ip route
add disabled=no dst-address=0.0.0.0/0 gateway=192.168.3.1 routing-table=main suppress-hw-offload=no
/ip service
set telnet disabled=yes
set ftp disabled=yes
set www disabled=yes
set api disabled=yes
set api-ssl disabled=yes
/ip smb shares
set [ find default=yes ] directory=pub
/ip ssh
set host-key-type=ed25519 strong-crypto=yes
/system clock
set time-zone-name=<TZ>
/system identity
set name="MikroTik - cAP"
/system note
set show-at-login=no
/system ntp client
set enabled=yes
/system ntp client servers
add address=0.europe.pool.ntp.org
add address=1.europe.pool.ntp.org
add address=2.europe.pool.ntp.org
add address=3.europe.pool.ntp.org
/system scheduler
add interval=1d name="Disable WLAN" on-event="system script run DisableWLAN" policy=\
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=2025-01-27 start-time=\
00:00:00
add interval=1d name="Enable WLAN" on-event="system script run EnableWLAN" policy=\
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon start-date=2025-01-27 start-time=\
07:30:00
/system script
add dont-require-permissions=no name=DisableWLAN owner=manager policy=\
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source=\
"interface wifi disable wifi_5g"
add dont-require-permissions=no name=EnableWLAN owner=manager policy=\
ftp,reboot,read,write,policy,test,password,sniff,sensitive,romon source="interface wifi enable wifi_5g"
Does anyone see anything in the configuration that might be causing this behaviour?