Verschlüsselung für WLAN

Homepage: http://hostap.epitest.fi/wpa_supplicant/

Lizenz: GPL

Konfiguration

Normalerweise wird eine Konfigurationsdatei erstellt, z.B. /etc/wpa_supplicant.conf

# Minimal /etc/wpa_supplicant.conf to associate with open
#  access points. Please see
#  /usr/share/doc/wpasupplicant/wpa_supplicant.conf.gz for more complete
#  configuration parameters.

ctrl_interface=/var/run/wpa_supplicant
ap_scan=2

# WPA-PSK
network={
    ssid="home_zone"
    scan_ssid=1
    key_mgmt=WPA-PSK
    proto=WPA
    pairwise=TKIP
    group=TKIP
    psk="SuperDuperGummiBaum"
    priority=3
} 

# WPA2-PSK
fast_reauth=1
network={
    ssid="office_zone"
    scan_ssid=1
    key_mgmt=WPA-PSK
    proto=WPA RSN
    pairwise=CCMP TKIP
    group=CCMP TKIP
    psk="EssigWeinTrinker"
    priority=2
} 

Auch muss /etc/network/interfaces geändert werden:

auto wlan0
iface wlan0 inet dhcp
   pre-up wpa_supplicant -Bw -Dwext -iwlan0 -c/etc/wpa_supplicant.conf
   post-down killall -q wpa_supplicant

KategorieNetzwerk

WpaSupplicant (zuletzt geändert am 2008-08-30 02:22:34 durch JonesHamatoma)