Working WiFi Configuration for 2.4GHz/5GHz (RouterOS v7.17.2)
Hey everyone!
After some trial and error, I finally got my MikroTik WiFi setup working smoothly on RouterOS 7.17.2. Sharing my config here in case it helps anyone else. This includes both 2.4GHz and 5GHz bands with WPA2/WPA3 and Fast Transition (802.11r) enabled.
Configuration:
Reset WiFi interfaces (optional, but I did it for a clean start)
2.4GHz Configuration (wifi2)
5GHz Configuration (wifi1)
Notes:
Feel free to ask questions or suggest improvements. Happy to share more details!
Hey everyone!
After some trial and error, I finally got my MikroTik WiFi setup working smoothly on RouterOS 7.17.2. Sharing my config here in case it helps anyone else. This includes both 2.4GHz and 5GHz bands with WPA2/WPA3 and Fast Transition (802.11r) enabled.
Configuration:
Reset WiFi interfaces (optional, but I did it for a clean start)
Code:
/interface wifi reset numbers=0,1
Code:
/interface wifiset [ find default-name=wifi2 ] \ aaa.interim-update=disabled \ mac-caching=disabled \ channel.frequency=2401-2483 \ channel.skip-dfs-channels=all \ channel.width=20/40mhz \ configuration.country="United States" \ configuration.dtim-period=3 \ disabled=no \ mode=ap \ multicast-enhance=enabled \ ssid="YOUR_WIFI_NAME" \ station-roaming=no \ datapath.bridge-cost=1 \ client-isolation=no \ interworking.esr=no \ hotspot20=no \ hotspot20-dgaf=no \ internet=no \ uesa=no \ wan-at-capacity=no \ wan-symmetric=no \ mtu=1500 \ name=2.4Ghz \ security.authentication-types=wpa2-psk,wpa3-psk \ security.passphrase="YOUR_STRONG_PASSWORD" \ security.connect-priority=1/2 \ security.disable-pmkid=no \ security.eap-accounting=no \ security.ft=yes \ security.ft-mobility-domain=0x1 \ security.ft-over-ds=yes \ security.ft-preserve-vlanid=no \ security.sae-anti-clogging-threshold=disabled \ security.sae-max-failure-rate=disabled \ security.wps=disable \ steering.rrm=yes \ steering.wnm=yes
Code:
/interface wifiset [ find default-name=wifi1 ] \ aaa.interim-update=disabled \ mac-caching=disabled \ channel.frequency=5170-5835 \ channel.skip-dfs-channels=all \ channel.width=20/40/80mhz \ configuration.country="United States" \ configuration.dtim-period=3 \ disabled=no \ mode=ap \ multicast-enhance=enabled \ ssid="YOUR_WIFI_NAME" \ station-roaming=no \ datapath.bridge-cost=1 \ client-isolation=no \ interworking.esr=no \ hotspot20=no \ hotspot20-dgaf=no \ internet=no \ uesa=no \ wan-at-capacity=no \ wan-symmetric=no \ mtu=1500 \ name=5.0Ghz \ security.authentication-types=wpa2-psk,wpa3-psk \ security.passphrase="YOUR_STRONG_PASSWORD" \ security.connect-priority=0/1 \ security.disable-pmkid=no \ security.eap-accounting=no \ security.ft=yes \ security.ft-mobility-domain=0x1 \ security.ft-over-ds=yes \ security.ft-preserve-vlanid=no \ security.sae-anti-clogging-threshold=disabled \ security.sae-max-failure-rate=disabled \ security.wps=disable \ steering.rrm=yes \ steering.wnm=yes
- Replace YOUR_WIFI_NAME and YOUR_STRONG_PASSWORD with your actual SSID and password.
- Some settings were included from experiments. No clue if they matter, but I left them in since everything works!
Feel free to ask questions or suggest improvements. Happy to share more details!
Statistics: Posted by dollarbr — Sun Feb 16, 2025 10:01 pm