-
Notifications
You must be signed in to change notification settings - Fork 13
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
connman_curses doesn't make clear which wireless interface is using when two or more wireless interfaces are available #5
Conversation
Hi, Again, see #6, it's more connman's job: connman status signals (used to update/display the services/AP list) don't include which interface detected the AP. |
Take a look at the 'Ethernet' property in the ConnMan service API to distinguish between devices/MAC addresses. |
BTW, the string 'psk' actually means WPA/WPA2 in plaintext. |
@pfl thank you for the hint! finding that wifi's interface is in the ethernet field is not obvious for sure. experts are very welcome. |
From my point of view it's enough =). I couldn't stop however noticing the blank spaces in the signal strength field, would make sense to take the required chars from that field so the essid field can display the whole names? The state field has a good amount of empty spaces too. I can help testing multiple interfaces (is there a branch from where to pull these modifications?) Thanks for your continue support. |
Yes I can steal some spaces there by renaming "Signal strength" to "Signal" so the alignment is kept.
We can't touch these ones, the state string can be quite long connman doc.
Thanks ! I will put them there alan-mushi/connman-json-client branch issue5. |
I agree that security field is much cryptic |
Yes I agree (there was a reserve/note in the commit about this), We can "gain" 4 char by removing |
@jobol Is there a problem with this PR ? If it's about the length of the "security" field I might be able to glean some characters here and there but in the end the minimal screen resolution is fairly small. |
@alan-mushi No problem with the submission and happy to merge it :)
Hello,
Recently I've started using
connman_curses
with two wireless interfaces simultaneously and I've found some confusing behaviors (they may be only confusing to me). I'll open a ticket per issue and you'll see if it's a real problem or not =). The first one is, when two or more wireless interfaces are available (it may be applicable to other technologies)connman_curses
doesn't make clear which interface is using.Testcase
connman_curses
wifi technology
connman_curses
shows repeated some APs and doesn't specify which interface detects which AP and therefore I have no way to select conscientiously which interface connects to a specific AP.In the above image some AP essids are repeated, eg. INFINITUMl8p4 , not all of them are repeated because one of the wireless interfaces is more sensitive than the other.
Expected behavior
I think
connman_curses
should state which wireless interface is detecting which AP or should list only once every AP detected if no specification is displayed, in that case it should use the interface with better range detection by default.