Topic: Template for WPA and EAP-TTLS

Here's a template for the University of Prince Edward Island...

It uses WPA with EAP-TTLS and PAP for interal authentication

I fought with it for two weeks before realizing that "key-mgmt" should have been "key_mgmt".... sad

But, here it is and it works fine!

name = WPA with EAP-TTLS
author = Shawn MacLean
version = 1
require identity *Identity password *Password
-----
ctrl_interface=/var/run/wpa_supplicant
network={
        ssid="$_ESSID"
        scan_ssid=$_SCAN
        proto=WPA
        key_mgmt=WPA-EAP       
        pairwise=TKIP
        group=TKIP            
        eap=TTLS       
        identity="$_IDENTITY"   
        password="$_PASSWORD"
        phase2="auth=PAP"
}

Last edited by BigKahunaca (2009-03-24 12:04:13)

Re: Template for WPA and EAP-TTLS

how do i add a CA in this template?