Fehlermeldung bei wpa_supplicant

dhchris

dhchris

Racing Tux
Hi Zusammen...

ich hab heut versucht die WPA Verschlüsselung via wpa_supplicant zum laufen zu bekommen.
Leider hab ich keine Ahnung von der Ausgabe. Kann mir jemand weiterhelfen?

Code:
schleppi:/home/chris# wpa_supplicant -i eth1 -c /etc/wpa_supplicant.conf -D ipw -w -dd
Initializing interface 'eth1' conf '/etc/wpa_supplicant.conf' driver 'ipw' ctrl_interface 'N/A'
Configuration file '/etc/wpa_supplicant.conf' -> '/etc/wpa_supplicant.conf'
Reading configuration file '/etc/wpa_supplicant.conf'
ctrl_interface='/var/run/wpa_supplicant'
ctrl_interface_group=0
eapol_version=1
ap_scan=1
fast_reauth=1
Line: 15 - start of a new network block
ssid - hexdump_ascii(len=14):
     54 75 78 48 6f 6d 65 4e 65 74 77 6f 72 6b         TuxHomeNetwork
scan_ssid=1 (0x1)
proto: 0x1
key_mgmt: 0x2
auth_alg: 0x1
pairwise: 0x8
PSK (ASCII passphrase) - hexdump_ascii(len=10): [REMOVED]
PSK (from passphrase) - hexdump(len=32): [REMOVED]
Line 23: removed CCMP from group cipher list since it was not allowed for pairwise cipher
Priority group 0
   id=0 ssid='TuxHomeNetwork'
Initializing interface (2) 'eth1'
EAPOL: SUPP_PAE entering state DISCONNECTED
EAPOL: KEY_RX entering state NO_KEY_RECEIVE
EAPOL: SUPP_BE entering state INITIALIZE
EAP: EAP entering state DISABLED
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wpa_driver_ipw_init is called
SIOCGIWRANGE: WE(compiled)=19 WE(source)=16 enc_capa=0x0
  capabilities: key_mgmt 0x0 enc 0x3
Own MAC address: 00:13:ce:6d:40:89
wpa_driver_ipw_set_wpa: enabled=1
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
wpa_driver_ipw_set_key: alg=none key_idx=0 set_tx=0 seq_len=0 key_len=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
Failed to set encryption.
wpa_driver_ipw_set_key: alg=none key_idx=1 set_tx=0 seq_len=0 key_len=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
Failed to set encryption.
wpa_driver_ipw_set_key: alg=none key_idx=2 set_tx=0 seq_len=0 key_len=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
Failed to set encryption.
wpa_driver_ipw_set_key: alg=none key_idx=3 set_tx=0 seq_len=0 key_len=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
Failed to set encryption.
wpa_driver_ipw_set_countermeasures: enabled=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
wpa_driver_ipw_set_drop_unencrypted: enabled=1
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
Setting scan request: 0 sec 100000 usec
Added interface eth1
Wireless event: cmd=0x8b06 len=8
RTM_NEWLINK, IFLA_IFNAME: Interface 'eth1' added
RTM_NEWLINK, IFLA_IFNAME: Interface 'eth1' added
State: DISCONNECTED -> SCANNING
Starting AP scan (specific SSID)
Scan SSID - hexdump_ascii(len=14):
     54 75 78 48 6f 6d 65 4e 65 74 77 6f 72 6b         TuxHomeNetwork
CTRL-EVENT-TERMINATING - signal 2 received
Removing interface eth1
State: SCANNING -> DISCONNECTED
No keys have been configured - skip key clearing
EAPOL: External notification - portEnabled=0
EAPOL: External notification - portValid=0
wpa_driver_ipw_set_wpa: enabled=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
wpa_driver_ipw_set_drop_unencrypted: enabled=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
wpa_driver_ipw_set_countermeasures: enabled=0
ioctl[IPW_IOCTL_WPA_SUPPLICANT]: Operation not supported
No keys have been configured - skip key clearing
Cancelling scan request

Und hier meine config:

Code:
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=0

eapol_version=1
ap_scan=1
fast_reauth=1

### Associate with any open access point
###  Scans/ESSID changes can be done with wpa_cli
network={
        ssid="WLANHomeNetwork"
        scan_ssid=1
        proto=WPA
        key_mgmt=WPA-PSK
        auth_alg=OPEN
        pairwise=TKIP
        psk="testtest"

der psk und die ssid sind genau so im AP eingetragen.

Gruß, Chris
 
Probiers mal mit der hier, hat zumindest bei mir funktioniert:

ctrl_interface=/var/run/wpa_supplicant
### Associate with any open access point
### Scans/ESSID changes can be done with wpa_cli
network={
ssid="WLANHomeNetwork"
psk="testtest"
key_mgmt=WPA-PSK
}
 
Geklaut:

Probier mal mit -D wext anstatt -D ipw ...

Dieser ioctl geht nur bis zur Wireless Extension 17 (also bis Kernel
2.6.12, siehe auch cat /proc/net/wireless). 2.6.13 besitzt WE18,
2.6.14 WE19. Ab diesen Kerneln mußt du bei wpa_supplicant den Treiber
wext anstelle von ipw benutzen.
Aus meinen Erfahrungen funktioniert das allerdings nur, wenn die SSID
nicht versteckt ist.
 
Zuletzt bearbeitet:
EDIT:

@ GoodSpeed1978

DANK DIR!!! es hat endlich geklappt...

Hatte erst noch nen kleinen Fehler drin und jetzt läuft das WPA mit der -D wext Option.

Darf ich fragen wo du diese her hast???

Werd dann sogleich noch n HowTo schreiben wenn ichs fertig konfiguiert hab.

Gruß
Chris
 
Zuletzt bearbeitet:
EDIT:

@ GoodSpeed1978

DANK DIR!!! es hat endlich geklappt...

Hatte erst noch nen kleinen Fehler drin und jetzt läuft das WPA mit der -D wext Option.

Darf ich fragen wo du diese her hast???

Werd dann sogleich noch n HowTo schreiben wenn ichs fertig konfiguiert hab.

Gruß
Chris

Steht doch in der Doku zu wpa_supplicant:

Code:
ipw = Intel ipw2100/2200 driver (old; use wext with Linux 2.6.13 or newer)

http://hostap.epitest.fi/gitweb/gitweb.cgi?p=hostap.git;a=blob_plain;f=wpa_supplicant/README
 

Ähnliche Themen

NagiosGrapher 1.7.1 funktioniert nicht

Rollei Mini Wifi Camcorder

WLAN funktioniert nicht

Displayport + externer Monitor zeigt bei startx nichts erst bei DVI

wpa_supplicant Problem gentoo

Zurück
Oben