Optimizing MikroTik hAP ax³ (C53UiG+5HPaxD2HPaxD) WiFi Speeds

RouterOS 7.18 fixed everything for me, recommend to UPDATE IT ASAP, the configuration is exactly the same as 7.15.3, but now it oprates even better, it connects devices correctly as AX and AC, not the A/N weird connection

Just use the same configuration as the first post, it works perfectly now, with no extra steps

# Reset WiFi interfaces
/interface wifi reset numbers=0,1

# 2.4GHz Configuration (wifi2)
/interface wifi
set [ find default-name=wifi2 ] \
  channel.frequency=2401-2483 \
  channel.skip-dfs-channels=all \
  channel.width=20/40mhz \
  configuration.country="YOUR_COUNTRY_HERE" \
  configuration.dtim-period=3 \
  disabled=no \
  mode=ap \
  mtu=1500 \
  name=2.4Ghz \
  security.authentication-types=wpa2-psk,wpa3-psk \
  security.passphrase="YOUR_STRONG_PASSWORD_HERE" \
  security.ft=yes \
  security.ft-over-ds=yes \
  security.wps=disable \
  ssid="YOUR_WIFI_NAME_HERE" \
  steering.rrm=yes \
  steering.wnm=yes

# 5GHz Configuration (wifi1)
set [ find default-name=wifi1 ] \
  channel.frequency=5170-5835 \
  channel.skip-dfs-channels=all \
  channel.width=20/40/80mhz \
  configuration.country="YOUR_COUNTRY_HERE" \
  configuration.dtim-period=3 \
  disabled=no \
  mode=ap \
  mtu=1500 \
  name=5.0Ghz \
  security.authentication-types=wpa2-psk,wpa3-psk \
  security.passphrase="YOUR_STRONG_PASSWORD_HERE" \
  security.ft=yes \
  security.ft-over-ds=yes \
  security.wps=disable \
  ssid="YOUR_WIFI_NAME_HERE" \
  steering.rrm=yes \
  steering.wnm=yes

Notes:

  • Replace YOUR_COUNTRY_HERE, YOUR_WIFI_NAME_HERE and YOUR_STRONG_PASSWORD_HERE.