DPSK Config Issues on GLINET MT3000

Hello, I am trying to configure DPSK on my Glint router running the default OpenWRT. Below is my config. My goal is to have 4 networks/vlans in total and just one SSID. Then whichever psk the user joins the wifi on is what determines which network they get put into. With my current config my main lan wifi is still working but I am not able to authenticate to the guest or iot networks with their respective PSKs. Has anyone deployed DPSK on a GLinet router before?

config wifi-device 'radio0'
	option type 'mac80211'
	option path 'platform/18000000.wifi'
	option channel 'auto'
	option band '2g'
	option htmode 'HE20'
	option cell_density '0'

config wifi-device 'radio1'
	option type 'mac80211'
	option path 'platform/18000000.wifi+1'
	option channel 'auto'
	option band '5g'
	option htmode 'HE80'
	option cell_density '0'

config wifi-iface 'wifinet0'
	option device 'radio1'
	option network 'LAN'
	option mode 'ap'
	option ssid ‘test’
	option encryption 'sae-mixed'
	option key ‘xxxxxx’

config wifi-iface 'wifinet1'
	option device 'radio0'
	option mode 'ap'
	option ssid ‘test’
	option encryption 'sae-mixed'
	option key ‘xxxxxx’
	option network 'LAN'

config wifi-vlan
        option name 'guest'
        option network 'GUEST'
        option vid '50'

config wifi-station
        option key ‘xxxxxx’
        option vid '50'

config wifi-vlan
        option name 'iot'
        option network 'IOT'
        option vid '40'

config wifi-station
        option key ‘xxxxxx’
        option vid '40'

then you should ask gl.inet, not us ...


It appears you are using firmware that is not from the official OpenWrt project.

When using forks/offshoots/vendor-specific builds that are "based on OpenWrt", there may be many differences compared to the official versions (hosted by OpenWrt.org). Some of these customizations may fundamentally change the way that OpenWrt works. You might need help from people with specific/specialized knowledge about the firmware you are using, so it is possible that advice you get here may not be useful.

You may find that the best options are:

  1. Install an official version of OpenWrt, if your device is supported (see https://firmware-selector.openwrt.org).
  2. Ask for help from the maintainer(s) or user community of the specific firmware that you are using.
  3. Provide the source code for the firmware so that users on this forum can understand how your firmware works (OpenWrt forum users are volunteers, so somebody might look at the code if they have time and are interested in your issue).

If you believe that this specific issue is common to generic/official OpenWrt and/or the maintainers of your build have indicated as such, please feel free to clarify.

Oh sorry I am running openWRT on it so I thought I could ask here.

are you running the "gl.inet openwrt", or one DL:ed from the link in my last post ?

I flashed it with regular openWRT from the page on the last post. I just mentioned the hardware as I am not sure if it is a hardware compatibility issues or a config problem. I have not been able to find any posts on people running DPSK with GL INET routers or much documentation on the topic in general.

I figured it out and have it working now. I was using WPA2/WPA3 mixed. I switched to WPA3 only which still did not work but when I went to WPA2 only it works!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.