Community discussions

MikroTik App
 
peri
just joined
Topic Author
Posts: 4
Joined: Mon Sep 07, 2020 12:26 pm

Roaming Issue on CAPsMAN

Tue Aug 15, 2023 4:16 am

I'm a MikroTik user who has set up a WiFiWave2 network with support for the 802.11kvr roaming protocol. However, I'm encountering some issues in the operation of the network, and I'm seeking your assistance and insights to address these problems.

Here's a brief overview of my hardware setup:

CAPsMAN Controller: RB5009UPr+S+
CAPs (Access Points):
2 x C52iG-5HaxD2HaxD
2 x C53UiG+5HPaxD2HPaxD
All devices are running RouterOS version 7.11rc3.

Configuration on RB5009UPr+S+ (CAPsMAN Controller):
/interface bridge
add name=BRG-LAN-76
/interface bridge port
add bridge=BRG-LAN-76 ingress-filtering=no interface=ETH-2-LAN
...
/interface wifiwave2 security
add authentication-types=wpa2-psk,wpa3-psk disabled=no ft=yes ft-over-ds=yes \
    name=WLAN-PROFILE
/interface wifiwave2 configuration
add channel.band=2ghz-n frequency=2412-2472 width=20mhz country=China disabled=no \
    name=2GHz_N security=WLAN-PROFILE ssid=LINK-2G steering.rrm=yes wnm=yes
add channel.band=5ghz-ax skip-dfs-channels=disabled width=20/40/80mhz country=China \
    disabled=no mode=ap name=5GHz_AX security=WLAN-PROFILE ssid=LINK steering.rrm=yes \
    wnm=yes
/interface wifiwave2 capsman
set ca-certificate=auto enabled=yes interfaces=BRG-LAN-76 package-path="" \
    require-peer-certificate=no upgrade-policy=suggest-same-version
/interface wifiwave2 provisioning
add action=create-dynamic-enabled disabled=no master-configuration=5GHz_AX \
    name-format=%I-5G- supported-bands=5ghz-ax
add action=create-dynamic-enabled disabled=no master-configuration=2GHz_N \
    name-format=%I-2G- supported-bands=2ghz-n
Configuration on hAPax^3 and hAPax^2 (CAPs):
/interface bridge
add name=BRG-LAN
/interface bridge port
add bridge=BRG-LAN interface=all
/interface wifiwave2
set [ find default-name=wifi1 ] configuration.manager=capsman mode=ap disabled=no \
    name=WLAN-1-5G
set [ find default-name=wifi2 ] configuration.manager=capsman mode=ap disabled=no \
    name=WLAN-2-2G
/interface wifiwave2 cap
set discovery-interfaces=BRG-LAN enabled=yes
The Issue:
After initial configuration, the network works well, and roaming for various devices, including Android and some iOS devices, functions correctly. However, after a period of time, typically around 1 day, some iOS devices (such as iPhone 13 and iPad mini 5 with the latest updates) experience a roaming issue. These devices fail to switch APs even when they are in close proximity to a new AP. Restarting the WiFi on the affected devices usually restores proper roaming behavior. Android devices do not exhibit this issue.

I'm unsure whether the problem lies in my configuration or if there might be a bug in RouterOS. I'd greatly appreciate any suggestions, solutions, or insights you could provide to help me troubleshoot and resolve this roaming issue.

Thank you in advance for your assistance and support!

Best regards,
peri
 
User avatar
Frederick88
Frequent Visitor
Frequent Visitor
Posts: 51
Joined: Thu Jun 24, 2021 12:34 pm

Re: Roaming Issue on CAPsMAN

Mon Sep 18, 2023 1:59 pm

 
İmposss
newbie
Posts: 48
Joined: Sat Jan 16, 2021 5:30 pm

Re: Roaming Issue on CAPsMAN

Mon Sep 18, 2023 4:44 pm

hi you can try "ft-over-ds=yes" to no.

It was working with problems for me too. It disrupts the connection between AP and router. The Ethernet interface was disconnected and connected again at a lower speed and remained at 100mbps.

edit:it is fixed
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Fri Jan 17, 2025 2:46 pm

i've similar problem with roaming on my Android Oneplus and my Notebook with Intel AX.
i tested with and without ft and steering (rrm, wnm), but i had same results, wifi drops and reconnects
here my wifi conf on capsman 7.17
/interface wifi datapath
add disabled=no name=datapath-guest vlan-id=200
/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 name=sec-lan
add authentication-types=wpa2-psk,wpa3-psk disabled=no encryption=ccmp,gcmp,ccmp-256,gcmp-256 ft=yes ft-over-ds=yes name=sec-guest
/interface wifi steering
add disabled=no name=steering-lan neighbor-group=dynamic-Home-WiFi-9a91126b rrm=yes wnm=yes
add disabled=no name=steering-guest neighbor-group=dynamic-Guest-WiFi-1c2b9b73 rrm=yes wnm=yes
/interface wifi configuration
add antenna-gain=0 country=Italy disabled=no name=cfg-lan security=sec-lan ssid=Home-WiFi steering=steering-lan
add datapath=datapath-guest disabled=no name=cfg-guest security=sec-guest ssid=Guest-WiFi steering=steering-guest
/interface wifi capsman
set ca-certificate=WiFi-CAPsMAN-CA-789A18C31229 certificate=WiFi-CAPsMAN-789A18C31229 enabled=yes interfaces=bridge-vlan70-cap package-path="" require-peer-certificate=yes upgrade-policy=suggest-same-version
/interface wifi provisioning
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=5ghz-ax
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=2ghz-ax
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Fri Jan 17, 2025 3:27 pm

To have roaming working for all devices, I had to add connect-priority=0/1 on security besides ft=yes and ft-over-ds=yes.

@nclmrc, you are missing country on the guest network. I think it doesn't matter as it is the slave config, but still...
And antenna-gain is incorrect (and shouldn't be used at all, unless you attach a different antenna to your Routerboard).
At last (I see a lot of things in your config), you are mixing tagged and untagged. I prefer to use explicit VLAN's per network, not only for guest.
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Fri Jan 17, 2025 7:42 pm

Fixed country for slave and remove antenna gain.
What does doing connect priority 0/1?
 
neki
Member Candidate
Member Candidate
Posts: 252
Joined: Thu Sep 07, 2023 10:20 am

Re: Roaming Issue on CAPsMAN

Sat Jan 18, 2025 12:48 am

 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Mon Jan 20, 2025 7:57 pm

Same results, when signal is very poor, wifi drop, and phone reconnects to the new AP
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Mon Jan 20, 2025 8:03 pm

Please show adjusted config and logging.
As well, add RouterOS and firmware version.
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 9:42 am

# 2025-01-21 08:24:02 by RouterOS 7.17
# software id = FZII-NFF9
#
# model = RB5009UG+S+
# serial number = HFE094B31YA
/interface wifi datapath
add client-isolation=yes disabled=no name=datapath-guest vlan-id=200
/interface wifi security
add authentication-types=wpa2-psk,wpa3-psk connect-priority=0/1 disabled=no encryption=ccmp,gcmp,ccmp-256,gcmp-256 ft=yes ft-over-ds=yes name=sec-lan
add authentication-types=wpa2-psk,wpa3-psk connect-priority=0/1 disabled=no encryption=ccmp,gcmp,ccmp-256,gcmp-256 ft=yes ft-over-ds=yes name=sec-guest
/interface wifi steering
add disabled=no name=steering-lan neighbor-group=dynamic-Home-WiFi-9a91126b rrm=yes wnm=yes
add disabled=no name=steering-guest neighbor-group=dynamic-Guest-WiFi-1c2b9b73 rrm=yes wnm=yes
/interface wifi configuration
add country=Italy disabled=no name=cfg-lan security=sec-lan ssid=Home-WiFi steering=steering-lan
add country=Italy datapath=datapath-guest disabled=no name=cfg-guest security=sec-guest ssid=Guest-WiFi steering=steering-guest
/interface wifi capsman
set ca-certificate=WiFi-CAPsMAN-CA-789A18C31229 certificate=WiFi-CAPsMAN-789A18C31229 enabled=yes interfaces=bridge-vlan70-cap package-path="" require-peer-certificate=yes upgrade-policy=suggest-same-version
/interface wifi provisioning
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=5ghz-ax
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=2ghz-ax
You do not have the required permissions to view the files attached to this post.
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 9:54 am

Could you do these steps (at least for testing purposes):
  1. Remove encryption settings (leaving it to ccmp as default)
  2. Remove wpa3-psk
  3. Reboot all CAP's
  4. Remove wifi network from client and add it again (and check if that improved anything?)
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 10:49 am

it's ok?
/interface wifi datapath
add client-isolation=yes disabled=no name=datapath-guest vlan-id=200
/interface wifi security
add authentication-types=wpa2-psk connect-priority=0/1 disabled=no encryption=ccmp ft=yes ft-over-ds=yes name=sec-lan
add authentication-types=wpa2-psk connect-priority=0/1 disabled=no encryption=ccmp ft=yes ft-over-ds=yes name=sec-guest
/interface wifi steering
add disabled=no name=steering-lan neighbor-group=dynamic-Home-WiFi-9a91126b rrm=yes wnm=yes
add disabled=no name=steering-guest neighbor-group=dynamic-Guest-WiFi-1c2b9b73 rrm=yes wnm=yes
/interface wifi configuration
add country=Italy disabled=no name=cfg-lan security=sec-lan ssid=Home-WiFi steering=steering-lan
add country=Italy datapath=datapath-guest disabled=no name=cfg-guest security=sec-guest ssid=Guest-WiFi steering=steering-guest
/interface wifi capsman
set ca-certificate=WiFi-CAPsMAN-CA-789A18C31229 certificate=WiFi-CAPsMAN-789A18C31229 enabled=yes interfaces=bridge-vlan70-cap package-path="" require-peer-certificate=yes upgrade-policy=suggest-same-version
/interface wifi provisioning
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=5ghz-ax
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=2ghz-ax
Last edited by nclmrc on Tue Jan 21, 2025 9:29 pm, edited 1 time in total.
 
massinia
Member Candidate
Member Candidate
Posts: 198
Joined: Thu Jun 09, 2022 7:20 pm

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 11:05 am

@nclmrc
Remove "encryption=ccmp", it's better do not specify encryption.
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 11:35 am

Agree with @massinia (hence I suggested to remove encryption settings).
Hope this makes things better for you. Keep us posted.
 
User avatar
infabo
Forum Guru
Forum Guru
Posts: 1522
Joined: Thu Nov 12, 2020 12:07 pm

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 12:03 pm

Why is manual steering configuration?
/interface wifi steering
add disabled=no name=steering-lan neighbor-group=dynamic-Home-WiFi-9a91126b rrm=yes wnm=yes
add disabled=no name=steering-guest neighbor-group=dynamic-Guest-WiFi-1c2b9b73 rrm=yes wnm=yes
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 12:25 pm

group is dynamic but config is necessary, i think
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 6:51 pm

same result roaming doesn't work, transition from 5ghz to 2ghz work
You do not have the required permissions to view the files attached to this post.
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 8:24 pm

any suggestions on how to configure STP on capsman and caps?
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 8:34 pm

any suggestions on how to configure STP on capsman and caps?
Why?

It seems that the signal is really bad...how come? Disconnectiong with a signal of -90dB isn't strange at all.
Can the device (what is it?) be tested in the -40 to -60 range of the CAP?
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 8:55 pm

when i'm at -90db and phone disconnects, i'm in proximity of the cap of 2nd floor at -40db.
i imagine the transition should happen around -70db/-80db
 
massinia
Member Candidate
Member Candidate
Posts: 198
Joined: Thu Jun 09, 2022 7:20 pm

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 9:17 pm

same result roaming doesn't work, transition from 5ghz to 2ghz work
Do your wireless clients support fast roaming?
In the Auth type tab do you see ft-wpa2/3-psk?
ft.png
when i'm at -90db and phone disconnects, i'm in proximity of the cap of 2nd floor at -40db.
i imagine the transition should happen around -70db/-80db
Maybe connect-priority=0/1 option can help you
You do not have the required permissions to view the files attached to this post.
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Tue Jan 21, 2025 9:22 pm

Just to be sure, this is the only device suffering?

Can you please share all (and complete) configs of all devices? So both CAPsMAN and CAPs?
And don't forget to remove serial.
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 9:03 am

same result roaming doesn't work, transition from 5ghz to 2ghz work
Do your wireless clients support fast roaming?
In the Auth type tab do you see ft-wpa2/3-psk?
ft.png
when i'm at -90db and phone disconnects, i'm in proximity of the cap of 2nd floor at -40db.
i imagine the transition should happen around -70db/-80db
Maybe connect-priority=0/1 option can help you
connect-priority=0/1 done before
You do not have the required permissions to view the files attached to this post.
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 9:13 am

hap ax configuration
/interface bridge
add admin-mac=D4:01:C3:0E:D8:E5 auto-mac=no name=bridge-lan
/interface ethernet
set [ find default-name=ether1 ] name=ether1-lan
set [ find default-name=ether2 ] name=ether2-lan
set [ find default-name=ether3 ] name=ether3-lan
set [ find default-name=ether4 ] name=ether4-lan
set [ find default-name=ether5 ] name=ether5-lan
/interface vlan
add interface=bridge-lan name=bridge-vlan70-cap vlan-id=70
/interface wifi datapath
add bridge=bridge-lan disabled=no name=datapath-bridge-lan
/interface wifi
set [ find default-name=wifi1 ] configuration.manager=capsman .mode=ap datapath=datapath-bridge-lan disabled=no name=wifi1-lan
set [ find default-name=wifi2 ] configuration.manager=capsman .mode=ap datapath=datapath-bridge-lan disabled=no name=wifi2-lan
/interface bridge port
add bridge=bridge-lan interface=ether1-lan
add bridge=bridge-lan interface=ether2-lan
add bridge=bridge-lan interface=ether3-lan
add bridge=bridge-lan interface=ether4-lan
add bridge=bridge-lan interface=ether5-lan
/interface wifi cap
set certificate=CAP-D401C30ED8E5 discovery-interfaces=bridge-vlan70-cap enabled=yes lock-to-caps-man=yes slaves-datapath=datapath-bridge-lan slaves-static=yes
/ip dhcp-client
add interface=bridge-vlan70-cap
/system clock
set time-zone-name=Europe/Rome
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 10:38 am

Think there are some issues with your config, specifically VLAN related. I prefer to use explicit VLAN's and try to avoid VLAN 1 where ever I can.

I used this nice topic to let me be inspired:
viewtopic.php?p=1103942

Be aware that setting the correct VLAN on a wifi interface is done on datapath (configured on the CAPsMAN). When using, check the last config for the AX devices, called "cAP AX wifi configured via CAPsMAN datapath VLAN".
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 11:13 am

i think VLAN it's ok, because when wifi drops, phone reconnects at the new AP immediately, so RSTP, L2, VLAN for me work.
There's a native VLAN untagged for LAN for have only one broadcast domain with wifi and all switch ports, and there are 2 VLAN, one for management of the CAPs and one for guests
Last edited by nclmrc on Wed Jan 22, 2025 11:48 am, edited 1 time in total.
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 11:37 am

Why isn't VLAN filtering enabled on the bridge of the hAP AX?
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 11:47 am

https://help.mikrotik.com/docs/spaces/R ... %22package:
here isn't present vlan filtering on wifi-qcom, is present in wifi-qcom-ac
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 11:59 am

AFAIK, for the VLAN interface (and it's attached DHCP Client), VLAN filtering should be enabled.
 
holvoetn
Forum Guru
Forum Guru
Posts: 7055
Joined: Tue Apr 13, 2021 2:14 am
Location: Belgium

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 12:32 pm

AFAIK, for the VLAN interface (and it's attached DHCP Client), VLAN filtering should be enabled.
That's not what I understood.
At least not for wifi-qcom (wifi-qcom-ac is something else).
My APs don't have VLAN filtering active either.
It would defeat the purpose of using VLANs on caps mode devices.

Only when you also have a different base VLAN (mgmt VLAN, if you want), you need to add that VLAN itf to bridge and move DHCP client to that VLAN itf.
That's all.
VLAN related wifi-ports are added dynamically via datapath (again: for wifi-qcom devices).
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 12:47 pm

Thanks for the additional information, @holvoetn.
And I fully agree on what you are saying, actually I was trying to say the same. I was referring to this part:
/interface bridge
add admin-mac=D4:01:C3:0E:D8:E5 auto-mac=no name=bridge-lan

/interface vlan
add interface=bridge-lan name=bridge-vlan70-cap vlan-id=70

/ip dhcp-client
add interface=bridge-vlan70-cap
Can you post the CAPsMAN config as well, @nclmrc?
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 1:29 pm

/interface bridge
add admin-mac=78:9A:18:C3:12:2A auto-mac=no name=bridge-lan
/interface bridge port
add bridge=bridge-lan interface=ether2-hap-ax2
add bridge=bridge-lan interface=ether3-cap-ax
add bridge=bridge-lan interface=ether4-lan
add bridge=bridge-lan interface=ether5-lan
add bridge=bridge-lan interface=ether6-lan
add bridge=bridge-lan interface=ether7-lan
add bridge=bridge-lan interface=ether8-lan
add bridge=bridge-lan interface=sfp-sfpplus1-lan
add bridge=bridge-dmz interface=veth1-dmz-debian
/interface vlan
add interface=bridge-lan name=bridge-vlan70-cap vlan-id=70
add interface=bridge-lan name=bridge-vlan200-guest vlan-id=200
/ip address
add address=192.168.10.1/24 interface=bridge-lan network=192.168.10.0
add address=172.16.200.1/24 interface=bridge-vlan200-guest network=172.16.200.0
add address=10.70.10.1/24 interface=bridge-vlan70-cap network=10.70.10.0
/interface wifi datapath
add client-isolation=yes disabled=no name=datapath-guest vlan-id=200
/interface wifi security
add authentication-types=wpa2-psk connect-priority=0/1 disabled=no encryption=ccmp ft=yes ft-over-ds=yes name=sec-lan
add authentication-types=wpa2-psk connect-priority=0/1 disabled=no encryption=ccmp ft=yes ft-over-ds=yes name=sec-guest
/interface wifi steering
add disabled=no name=steering-lan neighbor-group=dynamic-Home-WiFi-9a91126b rrm=yes wnm=yes
add disabled=no name=steering-guest neighbor-group=dynamic-Guest-WiFi-1c2b9b73 rrm=yes wnm=yes
/interface wifi configuration
add country=Italy disabled=no name=cfg-lan security=sec-lan ssid=Home-WiFi steering=steering-lan
add country=Italy datapath=datapath-guest disabled=no name=cfg-guest security=sec-guest ssid=Guest-WiFi steering=steering-guest
/interface wifi
# operated by CAP D4:01:C3:0E:D8:E5%bridge-vlan70-cap, traffic processing on CAP
add channel.frequency=5180 .width=20/40/80mhz configuration=cfg-lan configuration.mode=ap disabled=no name=cap-wifi1-lan radio-mac=D4:01:C3:0E:D8:EA
# operated by CAP D4:01:C3:0E:D8:E5%bridge-vlan70-cap, traffic processing on CAP
add channel.frequency=2412 .width=20/40mhz-Ce configuration=cfg-lan configuration.mode=ap disabled=no name=cap-wifi2-lan radio-mac=D4:01:C3:0E:D8:EB
# operated by CAP D4:01:C3:53:89:A8%bridge-vlan70-cap, traffic processing on CAP
add channel.frequency=5180 .width=20/40/80mhz configuration=cfg-lan configuration.mode=ap disabled=no name=cap-wifi3-lan radio-mac=D4:01:C3:53:89:AA
# operated by CAP D4:01:C3:53:89:A8%bridge-vlan70-cap, traffic processing on CAP
add channel.frequency=2452 .width=20/40mhz-Ce configuration=cfg-lan configuration.mode=ap disabled=no name=cap-wifi4-lan radio-mac=D4:01:C3:53:89:AB
# operated by CAP D4:01:C3:0E:D8:E5%bridge-vlan70-cap, traffic processing on CAP
add configuration=cfg-guest configuration.mode=ap disabled=no mac-address=D6:01:C3:0E:D8:EA master-interface=cap-wifi1-lan name=cap-wifi1-guest
# operated by CAP D4:01:C3:0E:D8:E5%bridge-vlan70-cap, traffic processing on CAP
add configuration=cfg-guest configuration.mode=ap disabled=no mac-address=D6:01:C3:0E:D8:EB master-interface=cap-wifi2-lan name=cap-wifi2-guest
# operated by CAP D4:01:C3:53:89:A8%bridge-vlan70-cap, traffic processing on CAP
add configuration=cfg-guest configuration.mode=ap disabled=no mac-address=D6:01:C3:53:89:AA master-interface=cap-wifi3-lan name=cap-wifi3-guest
# operated by CAP D4:01:C3:53:89:A8%bridge-vlan70-cap, traffic processing on CAP
add configuration=cfg-guest configuration.mode=ap disabled=no mac-address=D6:01:C3:53:89:AB master-interface=cap-wifi4-lan name=cap-wifi4-guest
/interface wifi capsman
set ca-certificate=WiFi-CAPsMAN-CA-789A18C31229 certificate=WiFi-CAPsMAN-789A18C31229 enabled=yes interfaces=bridge-vlan70-cap package-path="" require-peer-certificate=yes upgrade-policy=\
    suggest-same-version
/interface wifi provisioning
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=5ghz-ax
add action=create-enabled disabled=no master-configuration=cfg-lan slave-configurations=cfg-guest supported-bands=2ghz-ax
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 4:43 pm

other phone roaming, it's oneplus problem
You do not have the required permissions to view the files attached to this post.
 
erlinden
Forum Guru
Forum Guru
Posts: 2801
Joined: Wed Jun 12, 2013 1:59 pm
Location: Netherlands

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 5:16 pm

It's a bit odd, different behaviour. You might even want to consider using the 7.18beta release for testing purposes.
Also, on your CAPsMAN VLAN filtering is missing on the bridge. If you want to know more about VLAN and MikroTik, have a look at this topic:
viewtopic.php?t=143620
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 5:26 pm

i installed 7.18 beta, with oneplus same problem.
there are many report online, It seems like a problem related to an Android update
however on a fritzbox mesh network, oneplus roams correctly
 
nclmrc
just joined
Posts: 22
Joined: Sat Aug 24, 2019 2:33 am

Re: Roaming Issue on CAPsMAN

Wed Jan 22, 2025 5:34 pm

It's a bit odd, different behaviour. You might even want to consider using the 7.18beta release for testing purposes.
Also, on your CAPsMAN VLAN filtering is missing on the bridge. If you want to know more about VLAN and MikroTik, have a look at this topic:
viewtopic.php?t=143620
i know vlan filtering, i use it when i configure switch port with different untagged vlan.
in these simple cases where's only one native vlan, i prefer use hybrid configuration, native and trunk at the same time.