Secure Lockscreen forced when using Cert Storage - Galaxy S III Q&A, Help & Troubleshooting

My university uses wifi with eduroam auth method (http://www.eduroam.org/). In order tu use this wifi I have to download and install a certificate.
But when I do that, I am forced to use a Pattern, Pin or Password Lockscreen. On HTC Roms and AOSP Roms I can store certs with default Lockscreen.
Is there any way to change this?
Sent from my GT-I9300 using xda-app

You should not need a certificate... at least if they are using the valid eduroam spec. (Although they always keep telling you to install their cert...)
Try the following settings:
SSD: eduroam
Security: 802.1x EAP
EAP Method: PEAP
Phase2: MSCHAPv2
CA Cert: unspecified
User Cert: unspecified
Identity: [email protected]
Anonymous identitiy: [email protected]
Password: your-password
I've never once had to install a certificate on any of the operating systems or devices I've used with Eduroam in Luxembourg, France and Germany.
Since they are _supposedly_ compatible across the globe down to Antarctica it should work for you too

d4fseeker said:
You should not need a certificate... at least if they are using the valid eduroam spec. (Although they always keep telling you to install their cert...)
Try the following settings:
SSD: eduroam
Security: 802.1x EAP
EAP Method: PEAP
Phase2: MSCHAPv2
CA Cert: unspecified
User Cert: unspecified
Identity: [email protected]
Anonymous identitiy: [email protected]
Password: your-password
I've never once had to install a certificate on any of the operating systems or devices I've used with Eduroam in Luxembourg, France and Germany.
Since they are _supposedly_ compatible across the globe down to Antarctica it should work for you too
Click to expand...
Click to collapse
sorry for posting in an old thread but it's such an annoying issue and it's so hard to find answers...
if i select 802.1x EAP my phone make me choose a way to lock screen (pattern,pin,password), otherwise i can't set up the network at all!

Related

[MOD] LEAP/PEAP wifi

This mod take a couple of minutes to complete and allows for PEAP wifi connections. Requires root access and ADB knowledge.
I AM NOT RESPONSIBLE FOR ANY ISSUES YOU CREATE WITH THIS. IT IS A ROUGH GUIDE AND WORKS FOR ME. DO AT OWN RISK.
Tutorial For Adding LEAP/PEAP Wifi
1. Open Command prompt window in Windows.
2. Go to your directory that you have Android SDK in.
3. Change directory to Tools. So for eg. C:\Android\Tools
4. Type in adb devices. You should see your device. If not install ADB driver. Google it.
5. Type in adb pull /data/misc/wifi/wpa_supplicant .conf c:\wpa_supplicant.conf
6. This stores wpa_supplicant.conf on your C: drive.
7. Open file with wordpad.
8. Add the following to the files:
for PEAP add this code:
network={
ssid="Your SSID"
key_mgmt=WPA-EAP
identity="Your Username"
password="Your Password"
}
for LEAP use this:
network={
ssid="Your SSID"
scan_ssid=1
key_mgmt=IEEE8021X
auth_alg=OPEN SHARED LEAP
eap=LEAP
identity="Your Identity"
password="Your Password"
}
9. Save the file.
10. Type push c:\wpa_supplicant.conf /data/misc/wifi/wpa_supplicant .conf
11. Now the important part. If you miss this your wifi will not work after reboot.
12. Type adb shell
13. Should get # prompt.
14. Type su.
15. Type cd /data/misc/wifi
16. Type chown 1010 wpa*
17. Type chgrp 1010 wpa*
18. Close command prompt window and enjoy LEAP/PEAP wifi.
What is the difference between the two?
A question that might help the unacknowledged
EAP and LANs
EAP originated with the dial-up PPP protocol in order to support protocols beyond PAP and CHAP. For use on packet networks, EAP Over LAN (EAPOL) was created. EAPOL added new message types and allowed an Ethernet header to be prefixed onto EAP messages so they could be transmitted via Ethernet. Following are various EAP methods used mostly in wireless networks, but also in wired networks. See 802.1X, WPA and 802.11i.
EAP-TLS (EAP-Transport Layer Security)
Uses the handshake protocol in TLS, not its encryption method. Client and server authenticate each other using digital certificates. Client generates a pre-master secret key by encrypting a random number with the server's public key and sends it to the server. Both client and server use the pre-master to generate the same secret key.
EAP-TTLS (EAP-Tunneled TLS)
Like EAP-TLS above except only the server has a certificate to authenticate itself to the client first. As in EAP-TLS, a secure connection (the "tunnel") is established with secret keys, but that connection is used to continue the authentication process by authenticating the client and possibly the server again using any EAP method or legacy method such as PAP and CHAP.
PEAP (Protected EAP)
Similar to EAP-TTLS above except it does not support legacy methods. It only moves EAP frames. Windows XP natively supports PEAP.
LEAP (Light EAP, Cisco LEAP)
From Cisco, first implementation of EAP and 802.1X for wireless networks. Uses preshared keys and MS-CHAP protocol to authenticate client and server to each other. Server generates and sends session key to access point. Client computes session key independently based on data received in the CHAP challenge.
EAP-FAST
(EAP-Flexible Authentication via Secure Tunneling)
Enhancement to LEAP from Cisco that provides an encrypted tunnel to distribute preshared keys known as "Protected Access Credential" (PAC) keys. PAC keys may be continuously refreshed to prevent dictionary attacks. EAP-FAST is defined in Cisco's Cisco Compatible Extensions (see CCX).
EAP-SIM (GSM Cellphones)
For GSM phones that switch between cellular and Wi-Fi networks, depending on which is in range. The Subscriber Identity Module (SIM) smart card in the GSM phone (see GSM) contains the secret key used for challenge/response authentication and deriving session keys for encryption.
Click to expand...
Click to collapse
Source:www.pcmag.com/encyclopedia_term
thanks
Thanks for the help clarifying that for peoples.... its finally great to be able to use the WiFi at school... would be nice to implement it automatically, I can't write the code.... but if anyone would like too it would really add to the community....
Maybe I'm misunderstanding this but i know when i try to use LEAP at school, it already has options and what not for it on my phone, none of this is necessary for me
I know with my school which is (PEAP) you couldn't input a username just a password! so if you are having troubles connecting to a LEAP or PEAP connection this is a way to workaround and get it working. If you can already connect don't worry about it! this is for those who cant connect and get crappy data in class! haha
Does this work with MS-CHAP ? How do I define it?
Thanks!
MS-CHAP already works out of the box. At least I can connect at work with PEAP, MS-CHAPv2. Could be a CM 5 thing though.
Thanks for posting this! while it did not directly solve my problem, it made me redouble my efforts to get on my company's wlan with my N1. I have tried this many times over the years with various phones including UIQ3, WM6 and never got anywhere. I always assumed that there was some sort of certificate or windows domain stuff going on.
So this morning I did a wireshark trace and put my laptops drivers into debug logging to find out how my laptop connects.
A bit of googling for the stuff I found enabled me to get a working supplicant.conf on the third attempt and I am amazed!
Appear to be using WPA2 Enterprise with EAPOL LEAP with CCMP encryption on Cisco access points.
Here is the network part of my wpa_supplicant.conf in case it helps anyone:
network={
ssid="SSID"
scan_ssid=1
key_mgmt=WPA-EAP IEEE8021X
auth_alg=SHARED LEAP
group=CCMP
eap=LEAP
identity="DOMAIN\User"
password="Password"
}
maedox said:
MS-CHAP already works out of the box. At least I can connect at work with PEAP, MS-CHAPv2. Could be a CM 5 thing though.
Click to expand...
Click to collapse
Doesn't work for me on stock rom.
What works for PEAP with MSCHAPv2 in my school is:
network={
ssid="<ssid>"
scan_ssid=1
key_mgmt=IEEE8021X
eap=PEAP
identity="<userid>"
password="<password>"
phase2="auth=MSCHAPV2"
priority=2
}
(Previously posted on my blog at http://zitseng.com/archives/2729)
It works, Thanks!
There's a way of doing that without root access:
code.google.com/p/android/issues/detail?id=1871
Step 16 17
when i type
16. Type chown 1010 wpa*
17. Type chgrp 1010 wpa*
i get the error:
"no such user '1010'"
"chgrp: not found"
what is it mean?
Is there anything I may have done wrong?
tanks
Doesn't work for me for some reason. Do you think having CM6 RC3 would make a difference? Not that I could see it doing so.
I've tried a few of the above suggestions but none work for me
The worst thing is it worked fine before I updated my Nexus One to FroYo!
my current settings for the uni are:
network={
ssid="UoN-secure"
key_mgmt=WPA-EAP IEEE8021X
eap=PEAP
identity="username"
password="password"
phase2="auth=MSCHAPV2"
}
Any help would be appreciated
The problem I am having is that it will not keep the Phase 2 auth - MSCHAPV2 setting when I set it up. Every time I go back into the ssid settings (modify network) it has reverted back to "none". However the information above was pulled from the phone so it obviously is storing the MSCHAPV2 setting, just doesn't seem to be using it!
actually cm6 rc3 should have support for Leap/PEAP i have been using it for a while without this hack.... what type of connection are you trying to connect too?

[Q] Connecting to 802.x Fails on Froyo

My school runs a network with the settings detailed here:
* Network Name (SSID): UMASS-SECURE1X
* Authentication Mode: WPA2 Enterprise
* Encryption Type: AES
* Authentication Method: PAP
* EAP Type: EAP-TTLS
I had no problem connecting to the school network until i installed Froyo (AXURE 2.1). I tried 3 different roms (Onyx, Axure, Stock) and nothing can connect to the school network. If it means anything when ever i go in to edit the network settings the network stays as a TTLS but the second auth changes back to none.
is there a fix and is this a known issue?
already discussed here
if you cant find your specific problem start a new thread

[Q] Installing cert files and connecting to wifi network on Touchpad running CM9

Hi eveyrone I am trying to connect to my university wifi eduroam using the settings below:
Wireless Network Settings
SSID: eduroam
Security: WPA2 Enterprise (802.11i)
Encryption: AES
Authentication: 802.1X
802.1x Types: EAP/TTLS MSCHAPv2
EAP/PEAP MSCHAPv2
Outer Identity: [email protected]
Username: [email protected]
Password: Password
Domain: [leave blank]
How can I achieve this? So far I've tried saving the crt file in the root folder of the SD card and installing it via Security > Install from SD card but I'm not sure how to take it from here.
Would appreciate any help on this matter.

[Q] ICS .41en.EU Retail VPN

Hi,
i am having a problem with the VPN IPSec settings: I cannot enter a FQDN in the VPN Server settings, the input field only accepts an IP address. Does anyone know where the config file is saved so i can try to edit it manually?

[Q] WEP defaults to Shared Key Authentication

My rooted Samsung Galaxy SCL couldn't connect to a WEP wifi network.
After analyzing traffic I found it was using SKA authentication instead of Open Authentication.
The line it uses in wpa_supplicant.conf is:
auth_alg=OPEN SHARED
If I change it to this it works:
auth_alg=OPEN
- 1. Is this normal? According to some manual "OPEN SHARED" should try both methods, but it looks it was only trying the later.
- 2. Shouldn't the interface ask me whether i want Open or Shared?
- 3. I know I shouldn't be using wep.

Categories

Resources