-
Notifications
You must be signed in to change notification settings - Fork 61
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
Network: Add wifi hybrid mode #766
Comments
Add a simultaneous managed/AP option, set by default on raspberry |
Good guide for the raspberry |
Current wireless modes are managed, monitor and ap. Add a hybrid mode which simultaneously provides managed and ap, and set it by default on sample-nodes (download images) where possible. |
Using the raspberry guides involves using udev rules and mac addresses. This is not feasible for distributed images as the mac address is unknown on user systems. Move the config up the stack. |
|
Can use canonical interface name instead of physical: The interface then gets renamed immediately: |
Need to programatically obtain this list in a python structure so we can expose in -api and start to make decisions and present to the user. Parsing iwlist output is not ideal, try and find better underlying source of data. |
Control with python. Need to figure out:
|
Wireless tools provide iwconfig, iwlist etc. Different packages:
Python:
|
python iwlib doesn't provide anything about combinations. Need to look at the source code for iwlist, and then code it into a new python library. |
PyRIC contains the mechanisms necessary to extract combinations without any other 3rdparty support, but not the code to do so yet. It's probably the best way long term. |
Add 'iw' package to support parsing 'iw list'. |
Near impossible to parse iw output, notwithstanding warning from iw: Do NOT screenscrape this tool, we don't consider its output stable. Instead, use netlink/pyric to extract the combinations in a proper python structure: |
Can't get it to work with rpi3. Have to start with managed interface first, then add an AP. Interfaces are created, but don't seem to be useable although the AP shows up in other devices. |
Add a filesystem/SD file flag to boot the system into AP mode. This is useful if normal wifi or network configuration fails for any reason, and particularly useful in the field.
The text was updated successfully, but these errors were encountered: