Useful if your SSIDs are identical for 5GHz and 2.4GHz. Having your SSIDs setup like this seems to confuse Synology DSM, and for me it would always connect to the 2.4GHz network.

I had this particular issue where my TP-Link T4U ac wifi adapter for my Synology kept dropping down to using the 2.4GHz network, which slows it down dramatically.

To fix this, here’s what I did. Your mileage may vary, and you may end up disconnecting your Synology from the network, so make sure you have another way of getting to it (such as Ethernet) before proceeding with any of this!

SSH to the DiskStation, login as admin.

sudo -s to root account (same password as admin account)

sudo -s

Make a copy of your existing wifi config file inside /usr/syno/etc/wifi/

For me, I did:

cp
/usr/syno/etc/wifi/wifi_client_00:11:22:33:44:DD:EE
/usr/syno/etc/wifi/wifi_client_00:11:22:33:44:DD:EE.bak

Edit the original file with vi. If you don’t know how to use vi, do a web searhc (it’s not hard, but not easy either).

vi
/usr/syno/etc/wifi/wifi_client_00:11:22:33:44:DD:EE

What you need to do is remove reference to the 2.4ghz network, which you can identify from the bssid, which is the MAC address of your router’s 2.4ghz radio. Once you’re done, the file should just contain details for the bssid that’s your 5ghz network. On my router, the MAC address for the 5GHz network was one hex number higher than the 2.4GHz network.

Next, make a copy of the wpa_supplicant file in /usr/syno/etc. For me, this was called: wpa_supplicant.conf.wlan0

cp /usr/syno/etc/wpa_supplicant.conf.wlan0 /usr/syno/etc/wpa_supplicant.conf.wlan0.bak

Now edit the file, and change the bssid (which will be the 2.4ghz bssid MAC address) to the bssid MAC address of the 5ghz network.

vi /usr/syno/etc/wpa_supplicant.conf.wlan0 

Reboot the Synology diskstation, and when it comes back, it should be on the 5GHz network.