-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
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
Is there a way to connect to hidden wireless networks #12
Comments
Not without modification, but it should be pretty easy if you want to test it. Can't guarantee that it will work though. I am not sure how connecting to a hidden endpoint is supposed to be implemented, but my guess is that you manually need to specify all the network settings that the OS normally provides when it finds a wireless endpoint. The modifications you probably need to do to test are: Change Wifi._client to be a public variable. Test script part:Define the access point settings manuallyThe wireless access point settings are returned by OS as the WlanAvailableNetwork struct, start with manually creating an instance of that one with the following properties specified to match your hidden network:
Get your hands on a WlanInterfaceCreate an instance of Instantiate and connect to AccessPointCreate an instance of AccessPoint where you pass in the WlanInterface you just retrieved and the WlanAvailableNetwork you defined with your network settings. Then just run the method Connect() on the AccessPoint and it should connect to the wireless network. If it does not, a ToString() on the AccessPoint should give a hint for the reason. |
Thanks, I will give it a try. I was going down that rout but getting it all messed Thanks Ken CaHow On Thu, Mar 19, 2015 at 4:23 PM, Robin Andersson [email protected]
|
@kcahow How did your test go? |
How to create an instance of AccessPoint without an constructor? I also trying to connect to a hidden network... |
Is there any progress? `var network = new WlanAvailableNetwork();
with ap.ToString() returning |
I think the maintainer is no longer supporting this library. |
@Inoverse did you manage? did you find a workaround? |
Nope. It's over a year ago. |
see #32 I got it to get it working on our environment |
We have the requirement to be able to connect to a hidden wireless endpoint, one that is not broadcast. Is this possible right now?
The text was updated successfully, but these errors were encountered: