Differences between revisions 3 and 4
Revision 3 as of 2008-04-10 15:29:33
Size: 821
Editor: localhost
Comment: converted to 1.6 markup
Revision 4 as of 2008-05-16 13:10:29
Size: 1887
Editor: misi
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
=== Wireless Eduroam Linux Debian (sid) wpasupplicant ===
/etc/network/interfaces
{{{
allow-hotplug eth2
iface eth2 inet manual
        wpa-driver wext
 wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
Line 3: Line 10:
# id_str="niif2"
iface niif2 inet dhcp
}}}

/etc/wpa_supplicant/wpa_supplicant.conf
{{{
# Minimal /etc/wpa_supplicant.conf to associate with open
# access points. Please see
# /usr/share/doc/wpasupplicant/examples/README.wpa_supplicant.conf.gz
# for more complete configuration parameters.
#
# Also see the other files in /usr/share/doc/wpasupplicant/examples/ for
# specific configuration examples.

# path to UNIX socket control interface
ctrl_interface=/var/run/wpa_supplicant

#ap_scan=1
#fast_reauth=1
#WEP104 WEP40
network={
 ssid="eduroam"
     id_str="eduroam"
 eap=TTLS
 identity="misi@niif.hu"
 anonymous_identity="anonymous@niif.hu"
 ca_cert="/etc/ssl/certs/niif_ca_root_x509.pem"
 phase2="auth=PAP"
 group=CCMP TKIP
 pairwise=CCMP TKIP
 key_mgmt=WPA-EAP
 password="jelszó"
}
}}}
----
Obsolated
----

Wireless Eduroam Linux Debian (sid) wpasupplicant

/etc/network/interfaces

allow-hotplug eth2
iface eth2 inet manual
        wpa-driver wext
        wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf

# id_str="niif2"
iface niif2 inet dhcp

/etc/wpa_supplicant/wpa_supplicant.conf

# Minimal /etc/wpa_supplicant.conf to associate with open
#  access points. Please see 
#  /usr/share/doc/wpasupplicant/examples/README.wpa_supplicant.conf.gz
#  for more complete configuration parameters.
#
# Also see the other files in /usr/share/doc/wpasupplicant/examples/ for
#  specific configuration examples.

# path to UNIX socket control interface
ctrl_interface=/var/run/wpa_supplicant

#ap_scan=1
#fast_reauth=1
#WEP104 WEP40
network={
        ssid="eduroam"
        id_str="eduroam"
        eap=TTLS
        identity="misi@niif.hu"
        anonymous_identity="anonymous@niif.hu"
        ca_cert="/etc/ssl/certs/niif_ca_root_x509.pem"
        phase2="auth=PAP"
        group=CCMP TKIP  
        pairwise=CCMP TKIP
        key_mgmt=WPA-EAP
        password="jelszó"
}


Obsolated


Wireless Eduroam Linux Debian (sid) wpasupplicant

cd /etc/ssl/certs/
wget http://www.ca.niif.hu/Certificates/niif_ca_root_x509.pem
ln -sf niif_ca_root_x509.pem  `openssl x509 -hash -noout -in niif_ca_root_x509.pem`.0

Addjuk hozzá az /etc/network/interfaces file-hoz a következőt, úgy hogy az eth2 inteface-t helyetesítsük a megfelelő wireless ethernet eszközzel.

auto eth2
iface eth2 inet dhcp
        wpa-driver wext
        wpa-ssid eduroam
        wpa-eap TTLS
        wpa-identity misi@niif.hu
        wpa-anonymous_identity anonymous@niif.hu
        wpa-ca_cert /etc/ssl/certs/niif_ca_root_x509.pem
        wpa-phase2 auth=PAP
        wpa-group CCMP TKIP
        wpa-pairwise CCMP TKIP
        wpa-key-mgmt WPA-EAP
        wpa-password jelszo

Campus6: Wireless_Eduroam_Linux_Debian_wpasupplicant (last edited 2012-01-30 11:16:19 by mohacsi)