We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can connect to wifi witch the security is WPA3 on Windows 10
can't connect to wifi witch the security is WPA3 on Windows 10
Windows
No response
2.0.16
wifi.connect({ ssid: 'ssid', password: 'password' }, (err) => { console.log('Connected'); });
if (selectedAp.security.includes('WPA3')) { profile_content += <connectionType>ESS</connectionType> <connectionMode>auto</connectionMode> <autoSwitch>true</autoSwitch> <MSM> <security> <authEncryption> <authentication>WPA3SAE</authentication> <encryption>AES</encryption> <useOneX>false</useOneX> </authEncryption> <sharedKey> <keyType>passPhrase</keyType> <protected>false</protected> <keyMaterial>${key}</keyMaterial> </sharedKey> </security> </MSM>; }
<connectionType>ESS</connectionType> <connectionMode>auto</connectionMode> <autoSwitch>true</autoSwitch> <MSM> <security> <authEncryption> <authentication>WPA3SAE</authentication> <encryption>AES</encryption> <useOneX>false</useOneX> </authEncryption> <sharedKey> <keyType>passPhrase</keyType> <protected>false</protected> <keyMaterial>${key}</keyMaterial> </sharedKey> </security> </MSM>
The text was updated successfully, but these errors were encountered:
Hi, I add this feature in my todo list but I am not sure to have the bandwith for that. Can you write a PR for this feature?
Sorry, something went wrong.
No branches or pull requests
Expected behavior
can connect to wifi witch the security is WPA3 on Windows 10
Current behavior
can't connect to wifi witch the security is WPA3 on Windows 10
Which are the affected features
Which is your operating system?
Windows
Environment
No response
Version of node-wifi
2.0.16
Steps to Reproduce
wifi.connect({ ssid: 'ssid', password: 'password' }, (err) => {
console.log('Connected');
});
Solutions
if (selectedAp.security.includes('WPA3')) {
profile_content +=
<connectionType>ESS</connectionType> <connectionMode>auto</connectionMode> <autoSwitch>true</autoSwitch> <MSM> <security> <authEncryption> <authentication>WPA3SAE</authentication> <encryption>AES</encryption> <useOneX>false</useOneX> </authEncryption> <sharedKey> <keyType>passPhrase</keyType> <protected>false</protected> <keyMaterial>${key}</keyMaterial> </sharedKey> </security> </MSM>
;}
The text was updated successfully, but these errors were encountered: