Editing User:Magick777/WISPr WiFi Autologin

Warning: You are not logged in. Your IP address will be recorded in this page's edit history.
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 4: Line 4:
== Use cases ==
== Use cases ==
-
* Auto-login at free, local FON/BTWiFi or similar hotspots
+
* Auto-login at free, local and national FON/BTWiFi or similar hotspots
* True 'wireless ISP roaming' i.e. auto-login via FON / iPass / WeRoam partner networks
* True 'wireless ISP roaming' i.e. auto-login via FON / iPass / WeRoam partner networks
* Multi-network, multi-credential auto-login with multiple WISPr networks
* Multi-network, multi-credential auto-login with multiple WISPr networks
Line 51: Line 51:
* get involved in whether we connect to the SSID or not (we should just do auth)
* get involved in whether we connect to the SSID or not (we should just do auth)
-
=== Design challenges on N900 ===
+
=== Design challenges ===
'''* Our WISPr client needs to speak XML, HTTP and HTTPS from CLI
'''* Our WISPr client needs to speak XML, HTTP and HTTPS from CLI
Line 59: Line 59:
'''Option 1''': keep python client as it is, using httplib + ssl. Users will just have to install ssl.
'''Option 1''': keep python client as it is, using httplib + ssl. Users will just have to install ssl.
-
'''Option 2''': update python client to use urllib2 and openssl
+
'''Option 2''': update python client to use [https://pypi.python.org/pypi/ndg-httpsclient ndg-httpsclient] if it works under python 2.5
-
'''Option 3''': update python client to use [https://pypi.python.org/pypi/ndg-httpsclient ndg-httpsclient] if it works under python 2.5
+
'''Option 3''': update python client to use [https://pypi.python.org/pypi/pycurl pycurl], let libcurl do the fetching & carrying
-
'''Option 4''': update python client to use [https://pypi.python.org/pypi/pycurl pycurl], let libcurl do the fetching & carrying
+
'''Option 4''': find an alternative to python
Line 77: Line 77:
* The density of BTWiFi hotspots means that one can sometimes reach two or three possible routers, all connected to the same captive portal. This can sometimes (rarely) lead to unexpected effects, if disconnected from one network and connected to another one that shares the same portal; the portal views us as logged in, but our traffic remains blocked.  
* The density of BTWiFi hotspots means that one can sometimes reach two or three possible routers, all connected to the same captive portal. This can sometimes (rarely) lead to unexpected effects, if disconnected from one network and connected to another one that shares the same portal; the portal views us as logged in, but our traffic remains blocked.  
-
* In particular, this has been noted when switching from BtWiFi to BTWiFi-with-Fon, and it is imagined that they share a web portal but not a DHCP server. This caused problems for the perl client (which presumes by the absence of a redirect that we are connected) but not for the python client, which tests whether it is connected by verifying the content of an HTTP GET request. Of course, it creates a dependency on the availability of a remote server and I don't much like the script's default of fetching "www.yahoo.co.jp"; we don't need an entire HTML page to confirm that we are online, but we do need to keep the check in some form.
+
* In particular, this has been noted when switching from BtWiFi to BTWiFi-with-Fon, and it is imagined that they share a web portal but not a DHCP server. This caused problems for the perl client (which presumes by the absence of a redirect that we are connected) but not for the python client, which tests whether it is connected by verifying the content of an HTTP GET request. Of course, it creates a dependency on the availability of a remote server and I don't much like the script's default of fetching "www.yahoo.co.jp"; we don't need an entire HTML page to confirm that we are online, but we do need to keep the check in some form.  
-
== N900 PyWISPr client ==
 
-
See also http://talk.maemo.org/showthread.php?t=90777
 
-
=== Changelog & sources ===
 
-
* Began life as an N900 fork of https://bitbucket.org/tamias/pywispr
 
-
* Run from sh as per http://softwareswirl.blogspot.co.uk/2011/06/starting-python-script-intelligently.html
 
-
* Exit automatically on successful login, don't wait for user input (exit @ line 266)
 
-
* Replaced the slow online check (a Yahoo web scrape) with Google's generate_204 check
 
-
** logic http://www.chromium.org/chromium-os/chromiumos-design-docs/network-portal-detection
 
-
** code from https://github.com/cdown/wifilogin/blob/master/wifilogin/connection.py
 
-
** used for Chromium OS and Android; backend shouldn't go away any time soon
 
-
** reduces unnecessary bandwidth use, somewhat faster, works better internationally
 
-
==== Still to do ====
 
-
* consider whether we really need to check first for a captive portal and then make the same request again to obtain the same redirect and look for credentials? Why can we not combine the two, make a single request that serves both as online check and invitation for a WISPr redirect, and act on the response we receive? This might speed things up.
 
-
* consider whether we can replace the dependency on httplib + SSL with something that is readily available through apt, such as pycurl
+
See also http://talk.maemo.org/showthread.php?t=90777
-
 
+
-
* add (limited) user notifications
+
-
** notify on captive portal without WISPr support? browser option?
+
-
** notify on captive portal with WISPr support but no valid credentials?
+
-
** notify on access granted (or refused)
+
-
** do not notify the user about doing nothing (i.e. already online)
+
-
 
+
-
* provide a usable CLI mode as well as automation
+
-
** ability to override username and password
+
-
** ability to logout from last used LogoutURL, mainly for testing
+
== WISPr Networks ==
== WISPr Networks ==
Line 164: Line 141:
* Portugal
* Portugal
** Zon with FON
** Zon with FON
 +
 +
== Changelog for N900 PyWISPr client ==
 +
 +
* Begins as a N900 fork of https://bitbucket.org/tamias/pywispr
 +
* Run from sh as per http://softwareswirl.blogspot.co.uk/2011/06/starting-python-script-intelligently.html

Learn more about Contributing to the wiki.


Please note that all contributions to maemo.org wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see maemo.org wiki:Copyrights for details). Do not submit copyrighted work without permission!


Cancel | Editing help (opens in new window)