Toujours pas de WIFI, pourtant après de nOmbreux essais

Hello, :smiley:

  1. Créer le fichier suivant :

avec le texte suivant :

#Canaux Wifi utilisés en France + puissance max autorisée #Channel 1 to 13 Txpower max 20dBm options cfg80211 ieee80211_regdom=EU

  1. Pour faire tes tests
    Créer les fichiers suivants dans ton Home :

avec le texte suivant :

[code]#!/bin/bash

sudo rm /var/lib/dhcp/dhclient.leases >&2
FACE=eth0

if [ ! -a /var/run/wpa_supplicant/${FACE} ]; then
sudo rm /var/run/wpa_supplicant/${FACE} >&2
sudo killall wpa_supplicant
sleep 1
fi

Ton ESSID

ESSID=‘Livebox-7A6F’

sudo ifconfig ${FACE} down

20dBm, sous réserve que ta carte soit capable de délivrer cette puissance

sudo iwconfig ${FACE} txpower 20dBm
sudo iwconfig ${FACE} mode managed
sudo iwconfig ${FACE} rate 1MB
sudo ifconfig ${FACE} up

sleep 3

sudo wpa_supplicant -B -Dwext -i ${FACE} -c wpa_${ESSID}.conf

sleep 7

iwconfig ${FACE} | grep -i “Not-Associated” >/dev/null

if [ $? -eq 0 ]; then
echo "Access Point: Not-Associated !"
exit 1
else
sudo dhclient -v ${FACE}
fi

exit 0[/code]

avec le texte suivant :

ctrl_interface=/var/run/wpa_supplicant ap_scan=1 network={ ssid="Livebox-7A6F" scan_ssid=1 psk=[Le password] }

  1. Puis faire un reboot.

Ensuite, tu lances le script “test.sh”.
Et tu fais tes tests.
Ce n’est pas la solution miracle, mais si ça peut t’aider… :slightly_smiling:
Bye

P.-S.: Tu dois avoir installé “sudo”.

Euh mouais…
Mais comment on fait pour lancer le script ? On double clique sur le fichier ? Sinon qu’appelles tu par “test” ? Ceci est susceptible de faire fonctionner la connection ou ça va me renvoyer un rapport de… je sais pas quoi d’ailleurs ? Enfin, qu’est ce qu’il va me dire le script ?
Merci d’avance.

Hello,

Initiation à Bash : trustonme.net/didactels/148.html
Il va falloir que tu fasses quelques recherches sur la Toile. :083
Je sais que ma réponse est frustrante… :017

Apparemment, ton modèle de portable ne devrait poser aucune difficulté. :041
lefinnois.net/wp/index.php/2 … 1/#more-99

Bye :wink:

Tu fais

. ./test.sh

Si tu n’as pas installé sudo, tu le fais en root en virant les sudo.
Ça devrait te faire une connexion en t’indiquant si ça coince.

Il ya des lignes inutiles (adresse MAC par exemple)

[quote=“fran.b”]…Il ya des lignes inutiles (adresse MAC par exemple)[/quote]C’est corrigé :smiley:

Ok bah merci, je vais tester ça et je vous poste le plus vite possible le résultat de cette manip. ! Merci encore.

Voila, j’ai essayé et il me semble que c’est encore un échec… :doh: Je ne suis pas sur que j’ai réussi réellement car j’ai un peu galéré pour exécuter le script (c’était la première fois que j’utilisais bash !!). Bref c’est bien, comme ça j’apprend…

Bon après le lancement du script, il me renvoie le code suivant :

[code]root@aymeric-laptop:/home/aymeric# /home/aymeric/test.sh
Error for wireless request “Set Tx Power” (8B26) :
SET failed on device eth0 ; Invalid argument.
Internet Systems Consortium DHCP Client 4.1.1-P1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:0e:9b:26:95:0a
Sending on LPF/eth0/00:0e:9b:26:95:0a
Sending on Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 5
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 9
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 15
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 7
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
[/code]

Les premières lignes, encore une fois je ne sais ce que ça veut dire ; en revanche les dernières, je les ai déjà vu lors d’un #ifup eth0 avec les fichiers interfaces configurés je crois ou un #dhclient eth0 ou quelque chose du genre. Enfin visiblement ça ne fonctionne encore pas…
C’est incroyable ça, y en a pour qui ça fonctionne du premier coup… :laughing:

Déjà, tu peux commenter la ligne “sudo iwconfig ${FACE} txpower 20dBm” en mettant un # au début de la ligne. Ensuite, ça a l’air de coincer au niveau du DHCP. Sinon l’association a l’air de fonctionner. En tapant la commande “iwconfig eth0” dans un terminal, on devrait en avoir la confirmation.

(Je vais considérer que ton routeur Wifi n’est pas en cause.)

Que renvoi la commande suivante :

sudo iptables -L -v

:whistle:

Remplace

[quote]sudo wpa_supplicant -B -Dwext -i ${FACE} -c wpa_${ESSID}.conf[/quote]par

puis donne le fichier /tmp/log, je pense que tu n’es pas associé à ton point d’accès.

Donne aussi le résultat de
iwconfig
après ton essai

Hello, :041

[quote=“fran.b”]… je pense que tu n’es pas associé à ton point d’accès…[/quote]S’il n’avait pas été associé, il aurait eu ce type de message lors de l’exécution du script “test.sh” : “Access Point: Not-Associated !:mrgreen:

Bye :smiley:

Edit : Je ne suis plus sûr de rien. :violin:
:text-imsorry:

J’ai pas bien compris pourquoi tu batailles avec eth0 quand la carte est reconnue en wifi0?

Bonjour tout le monde !
Alors avec les modifications du script “test.sh” faites, ça me donne ceci :

[code]root@aymeric-laptop:/home/aymeric# /home/aymeric/test.sh
Internet Systems Consortium DHCP Client 4.1.1-P1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/00:0e:9b:26:95:0a
Sending on LPF/eth0/00:0e:9b:26:95:0a
Sending on Socket/fallback
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 16
No DHCPOFFERS received.
No working leases in persistent database - sleeping.
[/code]
Quand au fichier /tmp/log, il est affreusement long… Et c’est encore incompréhensible pour moi ! Je vous le colle quand même ? Oui, bon allé c’est parti… Mais en fait je crois qu’il me renvoie 12 fois la même chose ?!ioctl[SIOCSIWGENIE]: Operation not supported Initializing interface 'eth0' conf 'wpa_Livebox-7A6F.conf' driver 'wext' ctrl_interface 'N/A' bridge 'N/A' Configuration file 'wpa_Livebox-7A6F.conf' -> '/home/aymeric/wpa_Livebox-7A6F.conf' Reading configuration file '/home/aymeric/wpa_Livebox-7A6F.conf' ctrl_interface='/var/run/wpa_supplicant' ap_scan=1 Priority group 0 id=0 ssid='Livebox-7A6F' Initializing interface (2) 'eth0' SIOCGIWRANGE: WE(compiled)=22 WE(source)=19 enc_capa=0x0 capabilities: key_mgmt 0x0 enc 0x3 flags 0x0 WEXT: Operstate: linkmode=1, operstate=5 Own MAC address: 00:0e:9b:26:95:0a wpa_driver_wext_set_wpa Driver does not support WPA. wpa_driver_wext_set_key: alg=0 key_idx=0 set_tx=0 seq_len=0 key_len=0 wpa_driver_wext_set_key: alg=0 key_idx=1 set_tx=0 seq_len=0 key_len=0 wpa_driver_wext_set_key: alg=0 key_idx=2 set_tx=0 seq_len=0 key_len=0 wpa_driver_wext_set_key: alg=0 key_idx=3 set_tx=0 seq_len=0 key_len=0 wpa_driver_wext_set_countermeasures wpa_driver_wext_set_drop_unencrypted RSN: flushing PMKID list in the driver Setting scan request: 0 sec 100000 usec WPS: UUID based on MAC address - hexdump(len=16): de 09 ac 2e 35 62 57 c6 98 48 62 06 5e c9 ce 51 WPS: Build Beacon and Probe Response IEs WPS: * Version WPS: * Wi-Fi Protected Setup State (0) WPS: * Version WPS: * Wi-Fi Protected Setup State (0) WPS: * Response Type (2) WPS: * UUID-E WPS: * Manufacturer WPS: * Model Name WPS: * Model Number WPS: * Serial Number WPS: * Primary Device Type WPS: * Device Name WPS: * Config Methods (0) WPS: * RF Bands (3) 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 Added interface eth0 RTM_NEWLINK: operstate=0 ifi_flags=0x11043 ([UP][RUNNING][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Trying to get current scan results first without requesting a new scan to speed up initial association Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 EAPOL: disable timer tick Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED ioctl[SIOCSIWGENIE]: Operation not supported wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 5 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPAioctl[SIOCSIWGENIE]: Operation not supported ioctl[SIOCSIWGENIE]: Operation not supported : using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0xioctl[SIOCSIWGENIE]: Operation not supported ioctl[SIOCSIWGENIE]: Operation not supported 8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notificatioioctl[SIOCSIWGENIE]: Operation not supported n - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based oioctl[SIOCSIWGENIE]: Operation not supported ioctl[SIOCSIWGENIE]: Operation not supported n WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' aioctl[SIOCSIWGENIE]: Operation not supported dded Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7ioctl[SIOCSIWGENIE]: Operation not supported ioctl[SIOCSIWGENIE]: Operation not supported A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 secioctl[SIOCSIWGENIE]: Operation not supported 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ioctl[SIOCSIWGENIE]: Operation not supported ioctl[SIOCSIWGENIE]: Operation not supported ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. Added BSSID 00:18:e7:3c:78:82 into blacklist No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (broadcast SSID) Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: oioctl[SIOCSIWGENIE]: Operation not supported perstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wext_associate wpa_driver_wext_set_psk Association request to the driver failed Setting authentication timeout: 5 sec 0 usec EAPOL: External notification - EAP success=0 EAPOL: External notification - EAP fail=0 EAPOL: External notification - portControl=Auto RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b06 len=8 RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b04 len=12 Authentication with 00:18:e7:3c:78:82 timed out. BSSID 00:18:e7:3c:78:82 blacklist count incremented to 2 No keys have been configured - skip key clearing State: ASSOCIATING -> DISCONNECTED wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 EAPOL: External notification - portEnabled=0 EAPOL: External notification - portValid=0 EAPOL: External notification - EAP success=0 Setting scan request: 0 sec 0 usec State: DISCONNECTED -> SCANNING Starting AP scan (specific SSID) Scan SSID - hexdump_ascii(len=12): 4c 69 76 65 62 6f 78 2d 37 41 36 46 Livebox-7A6F Scan requested (ret=0) - scan timeout 30 seconds RTM_NEWLINK: operstate=0 ifi_flags=0x11003 ([UP][LOWER_UP]) RTM_NEWLINK, IFLA_IFNAME: Interface 'eth0' added Wireless event: cmd=0x8b19 len=8 Received 195 bytes of scan results (1 BSSes) New scan results available Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted Try to find non-WPA AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 skip - blacklisted No APs found - clear blacklist and try again Removed BSSID 00:18:e7:3c:78:82 from blacklist (clear) Selecting BSS from priority group 0 Try to find WPA-enabled AP 0: 00:18:e7:3c:78:82 ssid='Livebox-7A6F' wpa_ie_len=22 rsn_ie_len=0 caps=0x11 selected based on WPA IE selected WPA AP 00:18:e7:3c:78:82 ssid='Livebox-7A6F' Trying to associate with 00:18:e7:3c:78:82 (SSID='Livebox-7A6F' freq=2412 MHz) Cancelling scan request WPA: clearing own WPA/RSN IE Automatic auth_alg selection: 0x1 WPA: using IEEE 802.11i/D3.0 WPA: Selected cipher suites: group 8 pairwise 8 key_mgmt 2 proto 1 WPA: set AP WPA IE - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 WPA: clearing AP RSN IE WPA: using GTK TKIP WPA: using PTK TKIP WPA: using KEY_MGMT WPA-PSK WPA: Set own WPA IE default - hexdump(len=24): dd 16 00 50 f2 01 01 00 00 50 f2 02 01 00 00 50 f2 02 01 00 00 50 f2 02 No keys have been configured - skip key clearing wpa_driver_wext_set_drop_unencrypted State: SCANNING -> ASSOCIATING wpa_driver_wext_set_operstate: operstate 0->0 (DORMANT) WEXT: Operstate: linkmode=-1, operstate=5 wpa_driver_wextioctl[SIOCSIWGENIE]: Operation not supported

Ensuite la commande iwconfig eth0 me revoie ça :

root@aymeric-laptop:/home/aymeric# iwconfig eth0 eth0 IEEE 802.11-DS ESSID:"" Mode:Managed Frequency:2.412 GHz Access Point: Invalid Bit Rate=1 Mb/s Tx-Power=17 dBm Sensitivity=0/65535 Retry limit:16 RTS thr:off Fragment thr:off Encryption key:****-****-****-****-****-****-** [4] Security mode:open Power Management:off Link Quality=0/100 Signal level=-106 dBm Noise level=-97 dBm Rx invalid nwid:14915 Rx invalid crypt:0 Rx invalid frag:0 Tx excessive retries:0 Invalid misc:84353 Missed beacon:0
Est-ce normal que le ESSID ne soit pas renseigné ?

La commande suivantes me renvoie :

[code]root@aymeric-laptop:/home/aymeric# iptables -L -v
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination[/code]

Et enfin pour répondre à Triangle, ma carte WIFI est reconnue et s’appelle dans iwconfig, wifi0 mais aussi eth0. Or, lorsque je lance un essai de connection avec wifi0, ça va encore moins loin parce qu’il me dit ceci : Ignoring unknown interface wifi0=wifi0. Il semble donc que ce soit bien eth0 qui permette de me connecter et non pas wifi0. Après, à vrai dire, je n’en sais trop rien !

Hello,
Driver does not support WPA” --> C’est plutôt inquiétant… :doh:
Désolé de ne pas pouvoir te venir en aide… :mrgreen:
Bye :banana-parachute:

P.-S.: Pour enfoncer le clou ! :078
Les caractéristiques techniques de la carte Cisco aironet MPI350 (75,3 Kio - PDF) : [size=150]ICI[/size]

:violence-duel:

Mince ! Mais pourquoi, c’est quand même terrible ça ! J’ai lu partout que le WIFI était supporté tout seul par Debian (enfin je veux dire sans avoir besoin de batailler) sur ce type de matériel et…
D’autant que ça a déjà fonctionné lors d’une installation mais en WEP par contre.
Et oui en WEP est-ce que ça pourrait fonctionner et comment (parce que pour le moment ça bloque aussi en WEP !) ?? Tant pis pour le WPA s’il n’y a que ça !

Merci quand même !

C’est bien ce que je craignais. C’est un pbm qui a lieu sur les Ralink sous linux, (Debian n’est pas le pbm).

Peux tu donner le résultat de lspci -n et lspci -nn, on va regarder un peu mieux cette carte… [il peut y avoir un module plus récent, on peut compiler un wpa_supplicant adapté etc)

Ouff… J’ai cru que c’était peine perdu à moins de tenter une réinstallation puisque ça a fonctionné un jour lors d’une installation par internet : il avait réussi a télécharger tous les paquets dont il avait besoin par WIFI mais il y avait eu un bug lors de l’install à proprement parlé. J’avais donc réessayé en filaire et c’est la dessus que je suis maintenant mais depuis, pas de WIFI :angry: .
J’ai réussi à me faire un petit système sympa, rapide, et tout alors ça m’embêterait quand même beaucoup !
Bref voila le code des commandes que tu m’as renseigné :

aymeric@aymeric-laptop:~$ lspci -n 00:00.0 0600: 8086:3340 (rev 03) 00:01.0 0604: 8086:3341 (rev 03) 00:1d.0 0c03: 8086:24c2 (rev 01) 00:1d.1 0c03: 8086:24c4 (rev 01) 00:1d.2 0c03: 8086:24c7 (rev 01) 00:1d.7 0c03: 8086:24cd (rev 01) 00:1e.0 0604: 8086:2448 (rev 81) 00:1f.0 0601: 8086:24cc (rev 01) 00:1f.1 0101: 8086:24ca (rev 01) 00:1f.3 0c05: 8086:24c3 (rev 01) 00:1f.5 0401: 8086:24c5 (rev 01) 00:1f.6 0703: 8086:24c6 (rev 01) 01:00.0 0300: 1002:4c59 02:00.0 0607: 1180:0476 (rev aa) 02:00.1 0607: 1180:0476 (rev aa) 02:00.2 0c00: 1180:0552 (rev 02) 02:01.0 0200: 8086:101e (rev 03) 02:02.0 0280: 14b9:a504
et aymeric@aymeric-laptop:~$ lspci -nn 00:00.0 Host bridge [0600]: Intel Corporation 82855PM Processor to I/O Controller [8086:3340] (rev 03) 00:01.0 PCI bridge [0604]: Intel Corporation 82855PM Processor to AGP Controller [8086:3341] (rev 03) 00:1d.0 USB Controller [0c03]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 [8086:24c2] (rev 01) 00:1d.1 USB Controller [0c03]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 [8086:24c4] (rev 01) 00:1d.2 USB Controller [0c03]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 [8086:24c7] (rev 01) 00:1d.7 USB Controller [0c03]: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) USB2 EHCI Controller [8086:24cd] (rev 01) 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev 81) 00:1f.0 ISA bridge [0601]: Intel Corporation 82801DBM (ICH4-M) LPC Interface Bridge [8086:24cc] (rev 01) 00:1f.1 IDE interface [0101]: Intel Corporation 82801DBM (ICH4-M) IDE Controller [8086:24ca] (rev 01) 00:1f.3 SMBus [0c05]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller [8086:24c3] (rev 01) 00:1f.5 Multimedia audio controller [0401]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller [8086:24c5] (rev 01) 00:1f.6 Modem [0703]: Intel Corporation 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller [8086:24c6] (rev 01) 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc Radeon Mobility M6 LY [1002:4c59] 02:00.0 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev aa) 02:00.1 CardBus bridge [0607]: Ricoh Co Ltd RL5c476 II [1180:0476] (rev aa) 02:00.2 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C552 IEEE 1394 Controller [1180:0552] (rev 02) 02:01.0 Ethernet controller [0200]: Intel Corporation 82540EP Gigabit Ethernet Controller (Mobile) [8086:101e] (rev 03) 02:02.0 Network controller [0280]: AIRONET Wireless Communications Cisco Aironet Wireless 802.11b [14b9:a504]

En attendant, je suis content rien qu’au fait que tu m’aies laisser penser qu’il y a peut être une solution ! Merci d’avance !

Bon, tu utilise le module airo et effectivement il y a des soucis de avec airo et wpa_supplicant. Il suffit de regarder cia.vc/stats/project/airo-wpa par exemple. Quelle est la version de ton noyau? Tu peux déjà essayer de mettre ou de tester un noyau récent afin de voir si ce problème a été réglé récemment au niveau du driver. Je vais voir si je trouve quelque chose (mais pas ce soir…)

Essaye de voir également si tu as un module airo_cs qui fonctionnerait mieux:

rmmod airo

modprobe airo_cs

et essaye de voir si ça marche

Alors, mon noyau semble être le plus récent. Enfin je crois :

aymeric@aymeric-laptop:~$ uname -r 2.6.32-5-686
Autrement, j’ai retenté la connexion avec le module airo_cs plutôt que airo comme tu me l’as conseillé et ça me donne exactement la même chose qu’auparavant…
C’aurait été trop simple ! :mrgreen:

mais il vois rien le wifi !! …

je pense qu’il devrais faire un test sous backtrack 3 voir si ca machine reponds a quelques chose…(slackware ne m’as jamais deçus de ce coté la)

il serais pas trop loin ou mauvaise /reception/connexion par hasard…tout betement !!! :whistle: