Ich hab nach der Anleitung im wiki versucht mit Hilfe von wpa_supplicant ein WPA-verschlüsseltes WLAN zu bauen.
Es hat auch 1x funktioniert, aber nach einem reboot wars dann wieder weg. Ich weiß leider auch nicht mehr, was zum erfolg geführt hat.
/etc/wpa_supplicant.conf
Code: Alles auswählen
# 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
ctrl_interface_group=0
eapol_version=1
ap_scan=0
fast_reauth=1
### Associate with any open access point
### Scans/ESSID changes can be done with wpa_cli
#network={
# ssid=""
# key_mgmt=NONE
#}
network={
ssid="MEINESSID"
proto=WPA
scan_ssid=1
key_mgmt=WPA-PSK
pairwise=TKIP
group=TKIP
#psk="acsii"
psk=mein key als hex
}
die /etc/default/wpa_supplicant sieht so aus:
Code: Alles auswählen
# /etc/default/wpasupplicant
# WARNING! Make sure you have a configuration file!
ENABLED=1
# Useful flags:
# -D <driver> Wireless drive, typically optional.
# -i <ifname> Interface
# -c <config file> Configuration file
# -d Debugging (-dd for more)
# -w Wait for interface to come up
# See the manual page wpa_supplicant(1) for more options and information.
OPTIONS="-w -i wlan0 -D ndiswrapper -c /etc/wpa_supplicant.conf -B"
ich finde den fehler einfach nicht!
ich hoffe, ihr könnt mir helfenn
Gruß
BeerCase