wireless icon indicating copy to clipboard operation
wireless copied to clipboard

Add support for connecting to SSID without password

Open DriesX opened this issue 8 years ago • 4 comments

It doesn't work when trying to connect to an open SSID.

In my case I use it on raspberry pi and in the wpa_supplicant.conf file the following has to be set when no or an empty password is provided to the connect function.

network={
            ssid="YOUR OPEN NETWORK SSID"
            key_mgmt=NONE
}

DriesX avatar Dec 02 '16 14:12 DriesX

I have yet to test a RPi but on MacOS (networksetup driver), the following works:

from wireless import Wireless
w = Wireless()
w.connect("OPENNETWORK", "")

I'll see if there's an easy case to check for blank password for the wpa case.

ayman avatar Jan 12 '19 01:01 ayman

Actually #22 seems to do this about right.

ayman avatar Jan 12 '19 01:01 ayman

Hi! I essentially don’t maintain this repo any longer, but I’m happy to merge whatever / hand off the keys to the repo to someone else.

Josh

Sent from my iPhone

On Jan 11, 2019, at 5:23 PM, ayman [email protected] wrote:

Actually #22 seems to do this about right.

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

joshvillbrandt avatar Jan 12 '19 03:01 joshvillbrandt

I could oversee a few pull requests if you granted me access.

ayman avatar Jan 13 '19 21:01 ayman