Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
^_^ Seems my issue was two-fold then. After I get around to fixing my driver I'll try testing this patch too. On Tue, Jun 2, 2015 at 6:45 AM, Praneeth Bodduluri wrote: > Thanks Tim and Patrik. Applied the patch - Works as expected. > > Cheers, > Praneeth > > On Mon, Jun 1, 2015 at 2:08 PM, Patrik Flykt > wrote: > >> On Mon, 2015-06-01 at 07:45 +0200, Peter Meerwald wrote: >> > > Thanks a lot for the patch. Will give it a shot today. >> > > >> > > A little off-topic - Is there a way I can track the progress of this >> patch >> > > making its way into master? >> > >> > not sure; hopefully Patrik comments on it soon on the mail list >> >> If nothing is heard in a week, ping me again on the mailing list. In >> that case I have either forgotten something or busy with some other >> stuff. This time the patches have been applied. >> >> Reporting the bug in JIRA doesn't in practise expedite the patch. All >> JIRA notifications come at least to me, and I we'll anyway need a patch >> on the mailing list. And I'm quite able to miss stuff in JIRA also after >> the initial issue comments... >> >> >> Cheers, >> >> Patrik >> >> > ___ > connman mailing list > connman@connman.net > https://lists.connman.net/mailman/listinfo/connman ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
Thanks Tim and Patrik. Applied the patch - Works as expected. Cheers, Praneeth On Mon, Jun 1, 2015 at 2:08 PM, Patrik Flykt wrote: > On Mon, 2015-06-01 at 07:45 +0200, Peter Meerwald wrote: > > > Thanks a lot for the patch. Will give it a shot today. > > > > > > A little off-topic - Is there a way I can track the progress of this > patch > > > making its way into master? > > > > not sure; hopefully Patrik comments on it soon on the mail list > > If nothing is heard in a week, ping me again on the mailing list. In > that case I have either forgotten something or busy with some other > stuff. This time the patches have been applied. > > Reporting the bug in JIRA doesn't in practise expedite the patch. All > JIRA notifications come at least to me, and I we'll anyway need a patch > on the mailing list. And I'm quite able to miss stuff in JIRA also after > the initial issue comments... > > > Cheers, > > Patrik > > ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
On Mon, 2015-06-01 at 07:45 +0200, Peter Meerwald wrote: > > Thanks a lot for the patch. Will give it a shot today. > > > > A little off-topic - Is there a way I can track the progress of this patch > > making its way into master? > > not sure; hopefully Patrik comments on it soon on the mail list If nothing is heard in a week, ping me again on the mailing list. In that case I have either forgotten something or busy with some other stuff. This time the patches have been applied. Reporting the bug in JIRA doesn't in practise expedite the patch. All JIRA notifications come at least to me, and I we'll anyway need a patch on the mailing list. And I'm quite able to miss stuff in JIRA also after the initial issue comments... Cheers, Patrik ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
> Thanks a lot for the patch. Will give it a shot today. > > A little off-topic - Is there a way I can track the progress of this patch > making its way into master? not sure; hopefully Patrik comments on it soon on the mail list you may want to report a bug and link to the patch at https://01.org/jira regards, p. -- Peter Meerwald +43-664-218 (mobile) ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
Hey Peter, Thanks a lot for the patch. Will give it a shot today. A little off-topic - Is there a way I can track the progress of this patch making its way into master? Warm Regards, Praneeth ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
> I have been trying without success, to get connman[1.26] to connect to > unauthenticated WiFi [Open WiFi] with a configuration file in > /var/lib/connman. I am able to connect with connmanctl by using the service > of the open wifi - but cannot seem to set auto-connect to yes without > trying to connect with connmanctl at least once. > > If I place a configuration file with WPA2 credentials in /var/lib/connman - > The connman daemon picks it up and auto connects. I am unable to find any > documentation regarding this. Am I missing something or is this a bug? posted a patch, see https://lists.connman.net/pipermail/connman/2015-May/019258.html hope it helps, p. -- Peter Meerwald +43-664-218 (mobile) ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Re: Connecting to unauthenticated wifi with configuration file in /var/lib/connman
I had this same issue, but it turned out the problem was with my driver and had nothing to do with connman. You can test to confirm by calling wpa_supplicant directly like this: wpa_supplicant -D wext -B -i wlan0 -c <(echo 'network={ ssid="dlink" }') You just change the "dlink" part to the SSID of your router. (You may have to shut off connman first) Then watch your /var/log/syslog to see the result. You'll also need to do "dhclient wlan0" to get an IP address if it does connect. You can also confirm your configuration... It should look like the following and be a .config file in /var/lib/connman/: [service_dlink] Type=wifi Name=dlink IPv4=dhcp On Fri, May 22, 2015 at 9:53 AM, Praneeth Bodduluri wrote: > Hello all, > > I have been trying without success, to get connman[1.26] to connect to > unauthenticated WiFi [Open WiFi] with a configuration file in > /var/lib/connman. I am able to connect with connmanctl by using the service > of the open wifi - but cannot seem to set auto-connect to yes without > trying to connect with connmanctl at least once. > > If I place a configuration file with WPA2 credentials in /var/lib/connman - > The connman daemon picks it up and auto connects. I am unable to find any > documentation regarding this. Am I missing something or is this a bug? > > > Thanks and Best Regards, > Praneeth > ___ > connman mailing list > connman@connman.net > https://lists.connman.net/mailman/listinfo/connman ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman
Connecting to unauthenticated wifi with configuration file in /var/lib/connman
Hello all, I have been trying without success, to get connman[1.26] to connect to unauthenticated WiFi [Open WiFi] with a configuration file in /var/lib/connman. I am able to connect with connmanctl by using the service of the open wifi - but cannot seem to set auto-connect to yes without trying to connect with connmanctl at least once. If I place a configuration file with WPA2 credentials in /var/lib/connman - The connman daemon picks it up and auto connects. I am unable to find any documentation regarding this. Am I missing something or is this a bug? Thanks and Best Regards, Praneeth ___ connman mailing list connman@connman.net https://lists.connman.net/mailman/listinfo/connman