Wi-Fi 2.4G limit 30mpbs

Hi everyone, I’m not an expert but just a geek. I wanted to ask you why my RBWAPG-5HACD2HND AP with 2.4Ghz wi-fi goes at a maximum of 30mpbs while the 5Ghz goes at 180mpbs.
I leave you a screen of the network configuration 2.4
ap.jpg

You can set 20/40MHz eC channel for double the speed.

I set as u said but Max speed is 35mbps

Change frequency to the LEAST occupied one.
I can get close to 100Mb on 2.4GHz IF you make sure nobody else is on the used frequency (which is rarely the case using that band).

And set your country correct.

What is the client device? What is the values ​​in registration table?

I used speedtest
ap test.jpg

as you can see from the post I used the least used frequency but by running the speedtest I always get to 30mpbs

Chart is clipped off at 30Mbps, text under it says that max was 42Mbps. So did your speedtest result also came back at 30Mbps? Are you sure there isn’t sone other bottleneck beyond wifi interface? Try testing by using wired connection via the other ethernet port of your wAP.

If it’s correct what you wrote in opening post about 180Mbps over 5GHz, then the most likely explanation is either interference on 2.4GHz band (“least used channel” is not good enough, it has to be pretty empty) or misconfiguration (e.g. allowing to use legacy encryption, such as WPA/TKIP).
Also: you have “manual Tx power” mode set … what is then Tx power setting? Usually this kind of hokus-pokus is not necessary, it’s fine to leave Tx power to automatic.

export configuration and paste it here please.

This is output:

aug/04/2024 18:07:53 by RouterOS 6.48.1

software id = GYWN-9WP9

model = RBwAPG-5HacT2HnD

serial number =

/interface bridge
add name=bridge1
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa-psk,wpa2-psk eap-methods=“”
management-protection=allowed mode=dynamic-keys name=profile1
supplicant-identity=“” wpa-pre-shared-key=
wpa2-pre-shared-key=
/interface wireless
set [ find default-name=wlan1 ] antenna-gain=0 band=2ghz-b/g/n channel-width=
20/40mhz-eC country=no_country_set disabled=no frequency=2422
frequency-mode=superchannel mode=ap-bridge security-profile=profile1
ssid=“Wi-Fi House 2,4G” station-roaming=enabled wps-mode=disabled
set [ find default-name=wlan2 ] antenna-gain=0 band=5ghz-a/n/ac
channel-width=20/40mhz-Ce country=no_country_set disabled=no
frequency-mode=manual-txpower mode=ap-bridge security-profile=profile1
ssid=“Wi-Fi House 5G” station-roaming=enabled tx-power=30 tx-power-mode=
all-rates-fixed wps-mode=disabled
/user group
set full policy=“local,telnet,ssh,ftp,reboot,read,write,policy,test,winbox,pas
sword,web,sniff,sensitive,api,romon,dude,tikapp”
/interface bridge port
add bridge=bridge1 interface=wlan1
add bridge=bridge1 interface=wlan2
add bridge=bridge1 interface=ether1
/ip neighbor discovery-settings
set discover-interface-list=!dynamic
/interface list member
add interface=ether1 list=WAN
add interface=wlan2 list=LAN
add interface=wlan1 list=LAN
/ip dhcp-client
add disabled=no interface=bridge1
/system clock
set time-zone-name=Europe/Rome
/system identity
set name=“AP Distribuzione”

I tried setting the tx power to superchannel and it improved slightly, I went to 55 mbps.

  1. You’re running ROS 6.x, so better use “/export hide-sensitive” and remove serial-number or other sensitive information please.
  2. Please upgrade to latest ROS 6.49.15
  3. improve basic settings
/interface wireless set [ find default-name=wlan1 ] band=2ghz-onlyn country=italy frequency-mode=regulatory-domain station-roaming=disabled wireless-protocol=802.11
  1. according to your freq. usage screenshot: channel 2422 is bad. has > 50% usage. 2442/2457 way better.
/interface wireless set [ find default-name=wlan1 ] frequency=2442
  1. but first try frequency auto selection instead of fixed frequency:
/interface wireless set [ find default-name=wlan1 ] frequency=auto
  1. best to use this channel width:
/interface wireless set [ find default-name=wlan1 ] channel-width=20/40mhz-XX
  1. if that overlaps with other channels, try to use 20mhz channel width instead:
/interface wireless set [ find default-name=wlan1 ] channel-width=20mhz
  1. I assume you use this device indoors:
/interface wireless set [ find default-name=wlan1 ] installation=indoor

Good luck!

Hi, I tried some suggestions you gave me and it actually brought some improvements. Speedtest increased from 29mpbs to 45.
I leave the configuration I used:

# aug/09/2024 07:55:08 by RouterOS 6.49.15
# software id = GYWN-9WP9
#
# model = RBwAPG-5HacT2HnD
# serial number = <edit>
/interface bridge
add name=bridge1
/interface list
add name=WAN
add name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
add authentication-types=wpa-psk,wpa2-psk eap-methods="" \
    management-protection=allowed mode=dynamic-keys name=profile1 \
    supplicant-identity=""
/interface wireless
set [ find default-name=wlan1 ] band=2ghz-onlyn channel-width=20/40mhz-XX \
    country=italy disabled=no frequency=auto installation=indoor mode=\
    ap-bridge security-profile=profile1 ssid="Wi-Fi House 2,4G" \
    wireless-protocol=802.11 wps-mode=disabled
set [ find default-name=wlan2 ] antenna-gain=0 band=5ghz-a/n/ac \
    channel-width=20/40mhz-Ce country=no_country_set disabled=no \
    frequency-mode=manual-txpower mode=ap-bridge security-profile=profile1 \
    ssid="Wi-Fi House 5G" station-roaming=enabled tx-power=30 tx-power-mode=\
    all-rates-fixed wps-mode=disabled
/user group
set full policy="local,telnet,ssh,ftp,reboot,read,write,policy,test,winbox,pas\
    sword,web,sniff,sensitive,api,romon,dude,tikapp"
/interface bridge port
add bridge=bridge1 interface=wlan1
add bridge=bridge1 interface=wlan2
add bridge=bridge1 interface=ether1
/ip neighbor discovery-settings
set discover-interface-list=!dynamic
/interface list member
add interface=ether1 list=WAN
add interface=wlan2 list=LAN
add interface=wlan1 list=LAN
/ip dhcp-client
add disabled=no interface=bridge1
/system clock
set time-zone-name=Europe/Rome
/system identity
set name="AP Distribuzione"

May I ask you if you can also kindly give me some advice on the PTP?
I have two antennas the same as my access point and they are about 20 meters apart.
Approximately 550mbps arrives in the router while the antennas can only deliver 200mbps.
I await yours. Thank you

Do you have to use wpa on wifi ?
It’s a rather slow security protocol. Try to avoid if you can and only use wpa2.

You still use auto frequency selection. Can be next reboot performance becomes a lot worse.
Try to see which frequency is the least used and set your frequency manually.

Why do you set no country on 5GHz ?

What’s the question about PTP ??
Are those client devices connection to that wAP ?
What type are they ?

For PTP this is che topic http://forum.mikrotik.com/t/poe-limit-to-200mbps/176725/1

Set channel-width=20/40/80mhz-Ceee !

Ok, thank you.
Can u help me with PTP as previous post ? Thanks

If there is interference, wider channel may decrease throughput.
WiFi is CSMA/CA, it means it will stop transmitting if it detects another transmission at just 3 dB above the noise floor.
If the noise floor is at -100 dBm and you get a signal from your neighbor at -97 dBm, your equipment will stop transmitting.
Even if your neighbor does not actively use WiFi, the AP will broadcast beacons 10 times a second, each of which lasts just a few milliseconds, but it’s enough to wreck havoc on TCP connections.
If there are 10 APs on the same frequency, the amount of beacons transmitted is so large that it becomes almost unusable for everyone.
Please try a UDP speed test. I feel that you’d get at least twice the throughput.