J'ai configurer mon pc apres avoir installer FC6 mais le probleme est que n'arrive pas a me connecter en wifi
Voila ce que cela me donne:
# wpa_supplicant -Dwext -ieth1 -c /etc/wpa_supplicant/wpa_supplicant.conf
Trying to associate with 3e:40:25:00:97:b4 (SSID='CoupeDecale' freq=0 MHz)
Associated with 3e:40:25:00:97:b4
WPA: Unsupported EAPOL-Key descriptor version 0.
WPA: Unsupported EAPOL-Key descriptor version 0.
WPA: Unsupported EAPOL-Key descriptor version 0.
WPA: Unsupported EAPOL-Key descriptor version 0.
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
CTRL-EVENT-DISCONNECTED - Disconnect event - remove keys
Trying to associate with 3e:40:25:00:97:b4 (SSID='CoupeDecale' freq=0 MHz)
Trying to associate with 3e:40:25:00:97:b4 (SSID='CoupeDecale' freq=0 MHz)
Associated with 3e:40:25:00:97:b4
WPA: Key negotiation completed with 3e:40:25:00:97:b4 [PTK=TKIP GTK=TKIP]
CTRL-EVENT-CONNECTED - Connection to 3e:40:25:00:97:b4 completed (auth)
CTRL-EVENT-TERMINATING - signal 2 received
Je pense bien que j'ai bien configurer mes deux reseaux la connexion au niveau du wpa_supplicant.conf car j'ai garder la meme configuration que celle que j'avait sous FC5
Le fichier wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=wheel
network={
ssid="CoupeDecale"
scan_ssid=1
proto=WPA
key_mgmt=WPA-PSK
pairwise=TKIP
psk="maclewpa"
}
Le script wifi_wpa qui est dans le /etc/init.d
#!/bin/bash
# wifi : wpa supplicant init
if [ -x /usr/sbin/wpa_supplicant ];
then
/usr/sbin/wpa_supplicant -D wext -i eth1 -c /etc/wpa_supplicant/wpa_supplicant.conf -B
if !(dhclient eth1);
then
echo "Echec de la configuration DHCP"
else
echo "Configuration DHCP réussie !"
fi
fi
exit 0
J'ai installé le pilote ipw2200 et il y'avait pas de probleme signale a l'installation
Merci d'avance:)