View Single Post
Old 11-28-2011, 04:27 PM   #52
Mac_ON
Junior Member
Mac_ON began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Nov 2011
Device: Kindle 3 (WiFi)
Quote:
Originally Posted by Paddy-1 View Post
I'm on Kindle FW v3.3 and tried this - but after all when I'm scanning for Networks - the kindle doesn't find any WiFi at all -and no timeout or error.

Can somebody help me?
Thanx,
Paddy
Hey Paddy,
I had the same problem as you did. The following script worked for me. I just used TTLS/PAP instead of PEAP/MSCHAPV2 and added an anonymous identity (not strictly speaking necessary, but good for privacy).
Code:
#!/bin/sh

sleep 6

id="`wpa_cli list_networks | grep eduroam | cut -f1 | sed -n '1p'`"

exec="`wpa_cli << EOF
set_network $id ssid \"eduroam\"
set_network $id scan_ssid 1
set_network $id key_mgmt WPA-EAP
set_network $id pairwise TKIP
set_network $id group TKIP
set_network $id eap TTLS
set_network $id identity \"LOGIN\"
set_network $id password \"PASSWORD\"
set_network $id anonymous_identity \"ANONYMOUS_IDENTITY\"
set_network $id phase1 \"peaplabel=0\"
set_network $id phase2 \"auth=PAP\"
set_network $id ca_cert \"CERTIFICATE\"
enable_network $id
quit
EOF
`"
echo $exec
Mac_ON is offline   Reply With Quote