Quote:
Originally Posted by Paddy-1
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